Ember JS is a framework for building ambitious web applications that aims to make developers more productive out of the box. It provides conventions for common patterns like templates, routing, and components. The document then demonstrates building a simple portal application in Ember JS within 30 minutes to showcase its key concepts like templates, routing, and components in action.
This document discusses custom HTML helpers in ASP.NET MVC. It begins by explaining what HTML helpers are and how they avoid tedious HTML tagging. It then outlines some standard helpers like label, textbox, and dropdown list helpers. The document demonstrates how to create custom helpers using @helper, static methods, and extension methods. It concludes by thanking the audience and providing contact information.
TypeScript and Angular2 (Love at first sight)Igor Talevski
“We love TypeScript for many things… With TypeScript, several of our team members have said things like ‘I now actually understand most of our own code!’ because they can easily traverse it and understand relationships much better. And we’ve found several bugs via TypeScript’s checks. “
– Brad Green, Engineering Director - AngularJS
At Scotch on the Rocks (http://sotr.eu) the sponsors were given a chance to talk about their products. These are the slides that I used to talk about BladeRunnerJS - the developer toolkit focusing on providing modular workflow and application structure to help you built complex HTML5 Single Page Apps.
This document discusses microservices, including their pros and cons. It notes that microservices allow for independent deployment, easier refactoring and isolating failures. However, they require more code, increase operational complexity and can cause consistency issues. The document also covers challenges like communicating between microservices and centralized logging. It provides references for further reading on microservice architectures.
Selling WordPress to Enterprises by Rahul Bansal @ WordCamp Ann ArborrtCamp
Rahul covers how selling WordPress to Enterprises is different, what changes you need to make to on your end and how it changes answer to common questions
Selling WordPress To Enterprises by Rahul Bansal WordCamp NYC 2017rtCamp
Our WordPress journey started with working on small projects as a freelancer.
Over nine years, we have grown to reach the other end of the spectrum, regularly handling large enterprise WordPress projects.
At this scale, the rules for “selling” WordPress change. WordPress’ traditional advantages don’t necessarily apply anymore.
Azure App Configuration with .NET applicationsChristian Nagel
This document discusses using Azure App Configuration to centrally store configuration settings for .NET applications. Azure App Configuration provides a managed configuration store in the cloud with different pricing tiers. It integrates with .NET applications using managed identities for authentication. The document also covers refreshing settings without app restarts, mapping environments to different configuration stores, using feature flags, and integrating with Azure Key Vault for secrets management.
These are the Slides from WordCamp Ahmedabad 2017, In this talk, I covered about the basics of the plugin. How plugins are the key component of WordPress Ecosystem. How Plugins works, Things you should know before writing your first plugin.WordPress way of writing PHP code and all about Plugin Development.
Demo Site used: http://jcijamnagar.com/launch/?curtain_ceremony=true
WP Curtain Raiser Plugin: https://wordpress.org/plugins/wp-curtain-raiser/
Using JavaScript Libraries like D3.js with WordPressJohn Cook
This document discusses using JavaScript libraries like D3.js with WordPress. It provides an overview of JavaScript and how it can be used with WordPress through plugins, themes, and content. It then discusses best practices for including JavaScript libraries and code in WordPress, such as using wp_enqueue_script() to add scripts, the Shortcode API to include scripts in content, or directly in page templates, header.php, or footer.php files. Examples of JavaScript libraries and plugins for adding interactive charts to WordPress content are also provided.
The document discusses Microsoft ASP.NET and beginning object-oriented web design. It covers topics such as ASP.NET architecture, page composition, the page lifecycle, and breakthrough technologies including the Document Object Model, AJAX, and features of SQL Server 2005. The intended audience is beginners learning ASP.NET and object-oriented web design concepts.
This document discusses HTML5 and CSS3. It begins with an overview of HTML5, including what it is, its rise and development history, browser compatibility, and features. It then covers CSS3, explaining that it is split into modules, provides details on the specification and modules, and notes that many CSS3 features can be used now with tools like PIE and Modernizr to enhance websites. It concludes with some disadvantages of HTML5 and CSS3 and provides a contact for questions.
CSS4 may only be in the working draft stage, but that doesn't mean we can't begin to use some of it's capabilities in our current designs. Variables, color manipulation, custom media queries, and custom selectors are just a few of the powerful new features that can be utilized to take our css to the next level. This talk will take a look at the benefits of using postprocessers to write powerful, bleeding-edge CSS and have it work in today's browsers.
No More Cowboy Coding: Modern WordPress Development Workflow That ScalesTom Howard
WordPress now powers over 27% of the internet, yet WordPress development practices and tech infrastructure are still stuck in the past.
If you are tired of bloated themes, losing code, slow sites, strange server bugs, and other WP headaches, this talk is for you.
Learn how to implement modern development practices and tech stacks like those in use at AirBnB and Facebook.
Resource links: http://digitalengine.io/modern-wordpress-development-workflow-talk/
C# 9 - What's the cool stuff? - BASTA! Spring 2021Christian Nagel
C# 9 delivers great new features - among them are top-level statements, records, target-typed new - and source generators. New features with many code samples available in my github repo.
EXPERTALKS: Jul 2012 - Build using GradleEXPERTALKS
This document discusses the build tool Gradle. It notes that while Ant and Maven provide build functionality, they have limitations. Gradle addresses these by providing faster, more concise builds with a Groovy DSL. It is flexible, integrates with Ant, supports dependencies, and is programmable. The document provides examples of basic Gradle usage and recommends resources for learning more.
Alloy is an MVC framework for building mobile apps with Titanium. It uses XML for UI markup and allows apps to be highly customizable. Apps are compiled into CommonJS modules for cross-platform use on iOS and Android. The framework includes features like views, controllers, models, styles, assets, and widgets to build apps. It also provides error checking during compilation to catch issues early. Developers can get started quickly with Alloy through tutorials and documentation available on its website.
Making Visualforce RemoteActions Bulletproof with TypeScriptSimon Goodyear
My Dreamforce '15 presentation which discusses how we can use TypeScript in Visualforce. The video is here; http://salesforce.vidyard.com/watch/XT20D_JUgU4jBe5SjHy_Rg
RemoteAction Apex methods have helped make Visualforce pages more responsive by allowing us to use more JavaScript and still connect easily to our Apex business logic. But with this power comes the brittleness of JavaScript's untyped nature and the disconnect between JavaScript and Apex methods. The errors caused by these issues are runtime errors, which can slow development down. To catch these errors at compile time, the Tooling API can be used to generate TypeScript proxies for RemoteActions. Join us to learn what TypeScript is, how to use it in Visualforce, and see concrete examples of how to generate proxies for Apex RemoteActions.
Ricardo Alcocer gave a presentation on Appcelerator's Alloy framework. He explained that Alloy provides an MVC framework and declarative UI for building scalable Titanium apps using less code. It simplifies development and sets best practices. The presentation demonstrated creating a basic app, adding themes, widgets, and data binding capabilities using Alloy. Upcoming features discussed were debugging in Studio, dynamic styling, and finalizing model-view binding.
Mark Rackley presented on customizing SharePoint using column and view formatters. He discussed what column formatters are, how they can be accessed and used to format list views without changing the underlying data. He covered the basics of using the JSON schema including supported elements, field types, predefined classes and operators. The presentation concluded with demonstrations of column formatters.
Tailwind CSS is a utility-first CSS framework for building custom designs rapidly. It allows developers to have full control over components without relying on predefined styles. Some key benefits of Tailwind CSS include customization through configuration files, not needing to name CSS classes, minimal context switching between HTML and CSS, and fast development speeds. It also has responsive designs and Purge CSS can be used to reduce file sizes significantly after development.
With the advent of NextGen portals, Office 365 becomes less of a box of building blocks and more of a collection of destinations: turn-key solutions ready for you to use. But how will your users reach all those destinations and where should they depart from?
In this session we will show you how to build a solution that integrates information from NextGen portals and offers your users a starting point for their journeys bringing the most relevant information to their finger tips.
My talk from Angular-IL on Angular CDK
Git repo:
https://github.com/eliraneliassy/angular-cdk-talk
Video:
https://www.youtube.com/watch?v=0QAXh2UbsQU
The document discusses hybrid mobile apps, native mobile apps, and NativeScript. Hybrid apps are developed with web technologies like HTML, CSS, and JavaScript but have limitations in terms of performance and plugin availability. Native apps are developed specifically for each platform using languages like Java and Swift but have full access to device capabilities. NativeScript allows developing cross-platform native mobile apps using JavaScript, CSS, and XML, with a single codebase and direct access to native APIs.
Azure App Configuration with .NET applicationsChristian Nagel
This document discusses using Azure App Configuration to centrally store configuration settings for .NET applications. Azure App Configuration provides a managed configuration store in the cloud with different pricing tiers. It integrates with .NET applications using managed identities for authentication. The document also covers refreshing settings without app restarts, mapping environments to different configuration stores, using feature flags, and integrating with Azure Key Vault for secrets management.
These are the Slides from WordCamp Ahmedabad 2017, In this talk, I covered about the basics of the plugin. How plugins are the key component of WordPress Ecosystem. How Plugins works, Things you should know before writing your first plugin.WordPress way of writing PHP code and all about Plugin Development.
Demo Site used: http://jcijamnagar.com/launch/?curtain_ceremony=true
WP Curtain Raiser Plugin: https://wordpress.org/plugins/wp-curtain-raiser/
Using JavaScript Libraries like D3.js with WordPressJohn Cook
This document discusses using JavaScript libraries like D3.js with WordPress. It provides an overview of JavaScript and how it can be used with WordPress through plugins, themes, and content. It then discusses best practices for including JavaScript libraries and code in WordPress, such as using wp_enqueue_script() to add scripts, the Shortcode API to include scripts in content, or directly in page templates, header.php, or footer.php files. Examples of JavaScript libraries and plugins for adding interactive charts to WordPress content are also provided.
The document discusses Microsoft ASP.NET and beginning object-oriented web design. It covers topics such as ASP.NET architecture, page composition, the page lifecycle, and breakthrough technologies including the Document Object Model, AJAX, and features of SQL Server 2005. The intended audience is beginners learning ASP.NET and object-oriented web design concepts.
This document discusses HTML5 and CSS3. It begins with an overview of HTML5, including what it is, its rise and development history, browser compatibility, and features. It then covers CSS3, explaining that it is split into modules, provides details on the specification and modules, and notes that many CSS3 features can be used now with tools like PIE and Modernizr to enhance websites. It concludes with some disadvantages of HTML5 and CSS3 and provides a contact for questions.
CSS4 may only be in the working draft stage, but that doesn't mean we can't begin to use some of it's capabilities in our current designs. Variables, color manipulation, custom media queries, and custom selectors are just a few of the powerful new features that can be utilized to take our css to the next level. This talk will take a look at the benefits of using postprocessers to write powerful, bleeding-edge CSS and have it work in today's browsers.
No More Cowboy Coding: Modern WordPress Development Workflow That ScalesTom Howard
WordPress now powers over 27% of the internet, yet WordPress development practices and tech infrastructure are still stuck in the past.
If you are tired of bloated themes, losing code, slow sites, strange server bugs, and other WP headaches, this talk is for you.
Learn how to implement modern development practices and tech stacks like those in use at AirBnB and Facebook.
Resource links: http://digitalengine.io/modern-wordpress-development-workflow-talk/
C# 9 - What's the cool stuff? - BASTA! Spring 2021Christian Nagel
C# 9 delivers great new features - among them are top-level statements, records, target-typed new - and source generators. New features with many code samples available in my github repo.
EXPERTALKS: Jul 2012 - Build using GradleEXPERTALKS
This document discusses the build tool Gradle. It notes that while Ant and Maven provide build functionality, they have limitations. Gradle addresses these by providing faster, more concise builds with a Groovy DSL. It is flexible, integrates with Ant, supports dependencies, and is programmable. The document provides examples of basic Gradle usage and recommends resources for learning more.
Alloy is an MVC framework for building mobile apps with Titanium. It uses XML for UI markup and allows apps to be highly customizable. Apps are compiled into CommonJS modules for cross-platform use on iOS and Android. The framework includes features like views, controllers, models, styles, assets, and widgets to build apps. It also provides error checking during compilation to catch issues early. Developers can get started quickly with Alloy through tutorials and documentation available on its website.
Making Visualforce RemoteActions Bulletproof with TypeScriptSimon Goodyear
My Dreamforce '15 presentation which discusses how we can use TypeScript in Visualforce. The video is here; http://salesforce.vidyard.com/watch/XT20D_JUgU4jBe5SjHy_Rg
RemoteAction Apex methods have helped make Visualforce pages more responsive by allowing us to use more JavaScript and still connect easily to our Apex business logic. But with this power comes the brittleness of JavaScript's untyped nature and the disconnect between JavaScript and Apex methods. The errors caused by these issues are runtime errors, which can slow development down. To catch these errors at compile time, the Tooling API can be used to generate TypeScript proxies for RemoteActions. Join us to learn what TypeScript is, how to use it in Visualforce, and see concrete examples of how to generate proxies for Apex RemoteActions.
Ricardo Alcocer gave a presentation on Appcelerator's Alloy framework. He explained that Alloy provides an MVC framework and declarative UI for building scalable Titanium apps using less code. It simplifies development and sets best practices. The presentation demonstrated creating a basic app, adding themes, widgets, and data binding capabilities using Alloy. Upcoming features discussed were debugging in Studio, dynamic styling, and finalizing model-view binding.
Mark Rackley presented on customizing SharePoint using column and view formatters. He discussed what column formatters are, how they can be accessed and used to format list views without changing the underlying data. He covered the basics of using the JSON schema including supported elements, field types, predefined classes and operators. The presentation concluded with demonstrations of column formatters.
Tailwind CSS is a utility-first CSS framework for building custom designs rapidly. It allows developers to have full control over components without relying on predefined styles. Some key benefits of Tailwind CSS include customization through configuration files, not needing to name CSS classes, minimal context switching between HTML and CSS, and fast development speeds. It also has responsive designs and Purge CSS can be used to reduce file sizes significantly after development.
With the advent of NextGen portals, Office 365 becomes less of a box of building blocks and more of a collection of destinations: turn-key solutions ready for you to use. But how will your users reach all those destinations and where should they depart from?
In this session we will show you how to build a solution that integrates information from NextGen portals and offers your users a starting point for their journeys bringing the most relevant information to their finger tips.
My talk from Angular-IL on Angular CDK
Git repo:
https://github.com/eliraneliassy/angular-cdk-talk
Video:
https://www.youtube.com/watch?v=0QAXh2UbsQU
The document discusses hybrid mobile apps, native mobile apps, and NativeScript. Hybrid apps are developed with web technologies like HTML, CSS, and JavaScript but have limitations in terms of performance and plugin availability. Native apps are developed specifically for each platform using languages like Java and Swift but have full access to device capabilities. NativeScript allows developing cross-platform native mobile apps using JavaScript, CSS, and XML, with a single codebase and direct access to native APIs.
Connecting your .Net Applications to NoSQL Databases - MongoDB & CassandraLohith Goudagere Nagaraj
The document discusses various ways to connect .NET applications to NoSQL databases like MongoDB and Cassandra. It covers client SDK APIs, REST/SOAP APIs, and SQL-based connectivity options. For SQL connectivity, the document explains that Progress DataDirect drivers normalize the NoSQL data model to expose it through SQL. Examples demonstrate connecting to MongoDB and Cassandra using the MongoDB and Cassandra .NET drivers, their REST APIs, and Progress DataDirect's ODBC drivers with SQL. The document concludes that SQL connectivity requires data normalization but offers familiar skills and easy BI integration.
The document discusses Angular 2.0, React, and Kendo UI. It provides an overview of these frameworks and libraries and demonstrates how Kendo UI can be used with Angular 2.0 and React. Specifically, it discusses integrating Kendo UI components like buttons, sliders, and dropdowns into applications built with Angular 2.0 and React.
The document discusses using Kendo UI wrappers in ASP.NET MVC Core 1.0. It provides an overview of ASP.NET Core 1.0, Kendo UI, and using Kendo UI in ASP.NET Core projects. Tag helpers are introduced as an improved way over HTML helpers to incorporate Kendo UI wrappers in ASP.NET Core views. The presentation includes a demo of using Kendo UI in an ASP.NET Core application.
The document discusses accessing data from business intelligence (BI) tools using DataDirect Cloud (D2C). It introduces D2C and how to configure data sources within it. It then explains how to access data from D2C using various protocols - via ODBC from QlikView, via JDBC from Yellowfin, and via OData from Microsoft Power BI. The summary encourages trying out D2C to access data from BI tools.
Angular 2 introduces significant changes from Angular 1 including being faster, supporting mobile with features like smooth scrolling, and allowing flexible development in JavaScript, TypeScript, or Dart. Key changes are that Angular 2 uses ES6 modules instead of Angular's own modules, most directives now databind to element properties instead of existing, and everything is a component. The presenter then offers to demonstrate some Angular 2 code.
The document discusses .NET Framework 4.6 and .NET Core 1.0. .NET Framework 4.6 provides a full-featured .NET implementation for Windows, while .NET Core 1.0 provides a cross-platform implementation of .NET developed in an open source manner. Both frameworks include innovations like the next generation JIT compiler RyuJIT and SIMD, as well as shared runtime components, compilers, and libraries. ASP.NET Core 1.0 introduces a modular, cross-platform version of ASP.NET that is optimized for server and cloud workloads and allows easier transition from on-premises to cloud applications.
This document discusses JavaScript task runners Gulp and Grunt. It describes common web development tasks like compiling Sass/Less to CSS, concatenating and minifying JavaScript files. Task runners automate repetitive tasks and are also called build systems. Gulp is a streaming build system while Grunt uses configuration over code. Both are useful for modern front-end workflows involving preprocessors, package managers, and building/optimizing assets.
Visual Studio 2015 introduces a new setup experience, the ability to sign into multiple accounts, target multiple platforms including Xamarin mobile apps and Unity games, connect apps to Azure and other services, customize window layouts, use live code analysis with Roslyn, share projects between apps, and get IntelliSense for Bower and NPM packages directly in the code editor. The document provides an overview of new features in Visual Studio 2015 presented by Microsoft MVP Lohith G N.
This document introduces React JS, a JavaScript library for building user interfaces. It discusses that React uses a virtual DOM for efficient updates, implements one-way reactive data flow, and uses composable components. Key aspects of React covered include JSX syntax, the component lifecycle, managing component state, and thinking in React by breaking down requirements into UI components.
This document discusses Kendo UI, an online spreadsheet tool using Kendo UI. It provides an overview of Kendo UI, including what it includes like widgets, frameworks and data visualization. It then discusses the new spreadsheet widget in beta, highlighting key features like cell formatting, multiple sheets and merging cells. Finally, it briefly mentions experimental Angular 2 support and new web component support in Kendo UI.
ES6 introduced 10 new features to the JavaScript language including let and const keywords for block scoping, default parameters, template strings, arrow functions, rest parameters, generators, maps, classes, modules, and more. While feature complete in 2014 and standardized in 2015, browser support is still evolving as vendors implement the new standards. Transpilers like Babel can convert ES6 code to ES5 to provide support across browsers.
This document introduces new enterprise mobile capabilities with Telerik Platform, including data connectors, Screen Builder for visually building screens, offline support for caching and syncing data, AppManager LiveSync for pushing updates to apps, building native Android and iOS apps with NativeScript, and application templates to help jumpstart development. It discusses key challenges enterprises face in mobile development and how Telerik Platform addresses these challenges through its open and modular architecture for designing, building, connecting, testing, managing, measuring and deploying enterprise mobile apps.
This OrionX's 14th semi-annual report on the state of the cryptocurrency mining market. The report focuses on Proof-of-Work cryptocurrencies since those use substantial supercomputer power to mint new coins and encode transactions on their blockchains. Only two make the cut this time, Bitcoin with $18 billion of annual economic value produced and Dogecoin with $1 billion. Bitcoin has now reached the Zettascale with typical hash rates of 0.9 Zettahashes per second. Bitcoin is powered by the world's largest decentralized supercomputer in a continuous winner take all lottery incentive network.
Bridging the divide: A conversation on tariffs today in the book industry - T...BookNet Canada
A collaboration-focused conversation on the recently imposed US and Canadian tariffs where speakers shared insights into the current legislative landscape, ongoing advocacy efforts, and recommended next steps. This event was presented in partnership with the Book Industry Study Group.
Link to accompanying resource: https://bnctechforum.ca/sessions/bridging-the-divide-a-conversation-on-tariffs-today-in-the-book-industry/
Presented by BookNet Canada and the Book Industry Study Group on May 29, 2025 with support from the Department of Canadian Heritage.
מכונות CNC קידוח אנכיות הן הבחירה הנכונה והטובה ביותר לקידוח ארונות וארגזים לייצור רהיטים. החלק נוסע לאורך ציר ה-x באמצעות ציר דיגיטלי מדויק, ותפוס ע"י צבת מכנית, כך שאין צורך לבצע setup (התאמות) לגדלים שונים של חלקים.
Trends Artificial Intelligence - Mary MeekerClive Dickens
Mary Meeker’s 2024 AI report highlights a seismic shift in productivity, creativity, and business value driven by generative AI. She charts the rapid adoption of tools like ChatGPT and Midjourney, likening today’s moment to the dawn of the internet. The report emphasizes AI’s impact on knowledge work, software development, and personalized services—while also cautioning about data quality, ethical use, and the human-AI partnership. In short, Meeker sees AI as a transformative force accelerating innovation and redefining how we live and work.
AI Agents in Logistics and Supply Chain Applications Benefits and ImplementationChristine Shepherd
AI agents are reshaping logistics and supply chain operations by enabling automation, predictive insights, and real-time decision-making across key functions such as demand forecasting, inventory management, procurement, transportation, and warehouse operations. Powered by technologies like machine learning, NLP, computer vision, and robotic process automation, these agents deliver significant benefits including cost reduction, improved efficiency, greater visibility, and enhanced adaptability to market changes. While practical use cases show measurable gains in areas like dynamic routing and real-time inventory tracking, successful implementation requires careful integration with existing systems, quality data, and strategic scaling. Despite challenges such as data integration and change management, AI agents offer a strong competitive edge, with widespread industry adoption expected by 2025.
Ivanti’s Patch Tuesday breakdown goes beyond patching your applications and brings you the intelligence and guidance needed to prioritize where to focus your attention first. Catch early analysis on our Ivanti blog, then join industry expert Chris Goettl for the Patch Tuesday Webinar Event. There we’ll do a deep dive into each of the bulletins and give guidance on the risks associated with the newly-identified vulnerabilities.
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven InfrastructureSafe Software
When projects depend on fast, reliable spatial data, every minute counts.
AI Clearing needed a faster way to handle complex spatial data from drone surveys, CAD designs and 3D project models across construction sites. With FME Form, they built no-code workflows to clean, convert, integrate, and validate dozens of data formats – cutting analysis time from 5 hours to just 30 minutes.
Join us, our partner Globema, and customer AI Clearing to see how they:
-Automate processing of 2D, 3D, drone, spatial, and non-spatial data
-Analyze construction progress 10x faster and with fewer errors
-Handle diverse formats like DWG, KML, SHP, and PDF with ease
-Scale their workflows for international projects in solar, roads, and pipelines
If you work with complex data, join us to learn how to optimize your own processes and transform your results with FME.
Interested in leveling up your JavaScript skills? Join us for our Introduction to TypeScript workshop.
Learn how TypeScript can improve your code with dynamic typing, better tooling, and cleaner architecture. Whether you're a beginner or have some experience with JavaScript, this session will give you a solid foundation in TypeScript and how to integrate it into your projects.
Workshop content:
- What is TypeScript?
- What is the problem with JavaScript?
- Why TypeScript is the solution
- Coding demo
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...Safe Software
The National Fuels Treatments Initiative (NFT) is transforming wildfire mitigation by creating a standardized map of nationwide fuels treatment locations across all land ownerships in the United States. While existing state and federal systems capture this data in diverse formats, NFT bridges these gaps, delivering the first truly integrated national view. This dataset will be used to measure the implementation of the National Cohesive Wildland Strategy and demonstrate the positive impact of collective investments in hazardous fuels reduction nationwide. In Phase 1, we developed an ETL pipeline template in FME Form, leveraging a schema-agnostic workflow with dynamic feature handling intended for fast roll-out and light maintenance. This was key as the initiative scaled from a few to over fifty contributors nationwide. By directly pulling from agency data stores, oftentimes ArcGIS Feature Services, NFT preserves existing structures, minimizing preparation needs. External mapping tables ensure consistent attribute and domain alignment, while robust change detection processes keep data current and actionable. Now in Phase 2, we’re migrating pipelines to FME Flow to take advantage of advanced scheduling, monitoring dashboards, and automated notifications to streamline operations. Join us to explore how this initiative exemplifies the power of technology, blending FME, ArcGIS Online, and AWS to solve a national business problem with a scalable, automated solution.
Down the Rabbit Hole – Solving 5 Training RoadblocksRustici Software
Feeling stuck in the Matrix of your training technologies? You’re not alone. Managing your training catalog, wrangling LMSs and delivering content across different tools and audiences can feel like dodging digital bullets. At some point, you hit a fork in the road: Keep patching things up as issues pop up… or follow the rabbit hole to the root of the problems.
Good news, we’ve already been down that rabbit hole. Peter Overton and Cameron Gray of Rustici Software are here to share what we found. In this webinar, we’ll break down 5 training roadblocks in delivery and management and show you how they’re easier to fix than you might think.
Kubernetes Security Act Now Before It’s Too LateMichael Furman
In today's cloud-native landscape, Kubernetes has become the de facto standard for orchestrating containerized applications, but its inherent complexity introduces unique security challenges. Are you one YAML away from disaster?
This presentation, "Kubernetes Security: Act Now Before It’s Too Late," is your essential guide to understanding and mitigating the critical security risks within your Kubernetes environments. This presentation dives deep into the OWASP Kubernetes Top Ten, providing actionable insights to harden your clusters.
We will cover:
The fundamental architecture of Kubernetes and why its security is paramount.
In-depth strategies for protecting your Kubernetes Control Plane, including kube-apiserver and etcd.
Crucial best practices for securing your workloads and nodes, covering topics like privileged containers, root filesystem security, and the essential role of Pod Security Admission.
Don't wait for a breach. Learn how to identify, prevent, and respond to Kubernetes security threats effectively.
It's time to act now before it's too late!
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...Anish Kumar
Presented by: Anish Kumar
LinkedIn: https://www.linkedin.com/in/anishkumar/
This lightning talk dives into real-world GenAI projects that scaled from prototype to production using Databricks’ fully managed tools. Facing cost and time constraints, we leveraged four key Databricks features—Workflows, Model Serving, Serverless Compute, and Notebooks—to build an AI inference pipeline processing millions of documents (text and audiobooks).
This approach enables rapid experimentation, easy tuning of GenAI prompts and compute settings, seamless data iteration and efficient quality testing—allowing Data Scientists and Engineers to collaborate effectively. Learn how to design modular, parameterized notebooks that run concurrently, manage dependencies and accelerate AI-driven insights.
Whether you're optimizing AI inference, automating complex data workflows or architecting next-gen serverless AI systems, this session delivers actionable strategies to maximize performance while keeping costs low.
Your startup on AWS - How to architect and maintain a Lean and Mean account J...angelo60207
Prevent infrastructure costs from becoming a significant line item on your startup’s budget! Serial entrepreneur and software architect Angelo Mandato will share his experience with AWS Activate (startup credits from AWS) and knowledge on how to architect a lean and mean AWS account ideal for budget minded and bootstrapped startups. In this session you will learn how to manage a production ready AWS account capable of scaling as your startup grows for less than $100/month before credits. We will discuss AWS Budgets, Cost Explorer, architect priorities, and the importance of having flexible, optimized Infrastructure as Code. We will wrap everything up discussing opportunities where to save with AWS services such as S3, EC2, Load Balancers, Lambda Functions, RDS, and many others.
The State of Web3 Industry- Industry ReportLiveplex
Web3 is poised for mainstream integration by 2030, with decentralized applications potentially reaching billions of users through improved scalability, user-friendly wallets, and regulatory clarity. Many forecasts project trillions of dollars in tokenized assets by 2030 , integration of AI, IoT, and Web3 (e.g. autonomous agents and decentralized physical infrastructure), and the possible emergence of global interoperability standards. Key challenges going forward include ensuring security at scale, preserving decentralization principles under regulatory oversight, and demonstrating tangible consumer value to sustain adoption beyond speculative cycles.