SlideShare a Scribd company logo
MAXIMILIANO FIRTMAN
Unlocking
Generative AI in
your Web Apps
@f
i
rt
✨
MAXIMILIANO FIRTMAN
MOBILE+WEB DEVELOPER
AUTHOR
Authored 13 books and +70 courses
@FIRT﹒FIRT.DEV
3
web.dev/learn/pwa
I won't be talking about AI
replacing developers
6
I won't be talking about
how to be a 100x developer
using AI tools
I won't be talking about
"Vibe Coding"
So, what am I going to talk
about?
WAP
iOS
Phones
Google Glass
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
I want you to understand
What you can do
Basic AI concepts
What's new in 2025
LLMs, Generative AI and more
We can use Generative AIs
for several tasks without
training specific models
Unlocking Generative AI in your Web Apps
The best conference for developers is
Devoxx impossible happening frontend
The best conference for developers is
Devoxx impossible happening frontend
The best conference for developers is
The best conference for developers is
Spain Barcelona Paris UK
Devoxx impossible happening frontend
The best conference for developers is
Spain Barcelona Paris UK
Devoxx impossible happening frontend
PROMPT RESULT
GPT
PROMPT RESULT
GPT
tokens tokens
Unlocking Generative AI in your Web Apps
Generative AI Models
Companies and Models
Meta
Llama
Google
Gemini / Gemma
Anthropic
Claude
xAI
Grok
OpenAI
GPT / o3
DeepSeek
R1 / V3
AI for Web Developers
Web AI
Cloud AI
Built-in AI
On-device AI
Cloud AI
OpenAI
Microsoft
Azure
GPT / o3
GPT | o3
AWS
Bedrock
DALL-E Llama
Llama
Claude
Hugging Face Mistral
Other
Google AI /
Cloud
Gemini
Gemma
AIs browsing the Web
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
• Uses Bing as search engine
• It honors robots.txt
• The keyword for the User Agent is
ChatGPT-User
Mozilla/5.0 AppleWebKit/537.36
(KHTML, like Gecko); compatible;
ChatGPT-User/1.0; +https://
openai.com/bot
ChatGPT
User
Opt-out for ChatGPT for reading your content
User
-
agent: ChatGPT-User
Disallow: /
robots.txt
AI in web apps
• Summarize
• Infer (sentiment, relevant data, tags)
• Transform
• Extract
• Generate
• Multi-modal support (voice, image)
Capabilities
Unlocking Generative AI in your Web Apps
• User Input detection: profanity, hate
speech, inappropriate content
• Personalization
• Language Translation
• Content Tagging
• Chatbots
Some Ideas
Process of designing and
refining prompts or inputs
for language models to
generate desired output.
Prompt Engineering
Sometimes we need outputs
• Consistent and deterministic
• In specific formats
• To avoid prompt injection
Prompt
Engineering
for
Developers
• Use delimiters for dynamic data
• Ask for the format you need
• Give the model an example
• Explain to the model what to do
when the input is invalid
Specific and
Clear
Instructions
Unlocking Generative AI in your Web Apps
LLMs can hallucinate
The best conference for developers is
Devoxx impossible happening frontend
The best conference for developers is
Devoxx impossible happening frontend
The best conference for developers is
The best conference for developers is
Spain Barcelona Paris UK
Devoxx impossible happening frontend
The best conference for developers is
Spain Barcelona Paris UK
Devoxx impossible happening frontend
Devoxx impossible happening frontend
The best conference for developers is
The best conference for developers is
Devoxx impossible happening frontend
We can play with
temperature
Demo
Connecting Your Data
Create a chatbot that
can answer questions
as our customer
service agent
connecting it to the
user's account
CHATBOT
Use the power of GPT
to search, transform,
summarize and make
decision over your
private data
OWN DATA
Create a method to
answer questions for a
speci
fi
c document or
piece of content
CHAT WITH...
Connecting GPT to our data for
Unless we train our own
LLMs, these models don't
have our own data.
Retrieval-Augmented
Generation (RAG)
Fine-tuning
Most common techniques
AI technique that enriches
prompts with relevant external
data retrieved from a knowledge
base before generating responses.
1-Retrieval-Augmented
Generation (RAG)
USER'S
PROMPT
Your App
Prompt
Embedding
Embeddings
Retrieval-Augmented Generation (RAG)
AI PROVIDER
A technique to map text to
numerical vectors that
capture semantic meaning for
efficient comparison and
processing.
Embeddings
USER'S
PROMPT OUTPUT
AI PROVIDER
Vector DB
Your App
Prompt
Slice of
relevant info
Prompt as
Embedding
Prompt
+ Slice
Embedding Output
Embeddings Model
Retrieval-Augmented Generation (RAG)
AI PROVIDER
Process of updating the
parameters of a pre-trained
language model on a specific
task or domain using a
smaller dataset.
2-Fine Tuning
USER'S
PROMPT
OUTPUT
AI PROVIDER
Your App
Your Data
Prompt
Output
Model
Fine-tuning models
AI PROVIDER
Training
Process
Fine-tuned model
Fine-tuned
model
Unlocking Generative AI in your Web Apps
Now you understand
Use cases
Basic AI concepts
What's new this year?
•AI running client-side
•Web AI
•Built-in AI
•Agents
•MCP Servers
New ideas
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
•Libraries and Frameworks
•Transformers.js
•WebLLM
•They can use:
•Web Assembly (CPU)
•WebGPU
•WebNN
Web AI
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
Demo
•Models built-in in the browser (or
the platform)
•Task APIs for specific purposes:
•Translation
•Summarization
•Image object recognition
•Writer / Re-writer
•Speech
•Prompt API
Built-in AI
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
Unlocking Generative AI in your Web Apps
Demo
System that uses AI to
perceive, reason, and act
autonomously toward a goal,
often combining models,
tools, and memory.
Agent
System that uses AI to perceive, reason,
and act autonomously toward a goal, often
combining models, tools, and memory.
Unlocking Generative AI in your Web Apps
MCP Server
Model Context Protocol
Model Context Protocol
Open protocol that enables
seamless integration between
LLM applications and external
data sources and tools
USER'S
PROMPT
RESULT
GPT
ENHANCED
PROMPT
MCP Server
A backend solution that gives AI
models, through agents, the
context they need and enables
them to take real actions across
tools, APIs, and apps using MCP.
MCP Server
•HTTP-based API with JSON
endpoints
•Implements the MCP protocol
•There are open source SDKs to
start simple
•There are tools to wrap RESTful
APIs into MCP servers
MCP Servers
Simple MCP Server
/
/
.
.
.
imports
/
/
Create server instance
const server = new McpServer({
name: "weather",
version: "1.0.0",
capabilities: {
resources: {},
tools: {},
},
});
Using Anthopic's SDK
Simple MCP Server
server.tool(
"get
-
forecast", "Get weather forecast for a location",
{
latitude: z.number().min(-90).max(90).describe("Latitude of the location"),
longitude: z.number().min(-180).max(180).describe("Longitude of the location"),
},
async ({ latitude, longitude })
=
>
{
/
/
Get forecast data
return {
content: [ { type: "text", text: forecastText } ],
};
},
);
Using Anthopic's SDK
Exciting times!
• Basic concepts
• AI can browse your website
• AI integration in your Apps
• Use your data (RAG or fine-tuning)
• WebAI and Built-in AI
• Agents and MCP Servers
Wrap Up
MAXIMILIANO FIRTMAN
Thanks!
¡Gracias!
@f
i
rt f
i
rt.dev
Some slides are from my course at
✨
Ad

Recommended

Microsoft + OpenAI: Recent Updates (Machine Learning 15minutes! Broadcast #74)
Microsoft + OpenAI: Recent Updates (Machine Learning 15minutes! Broadcast #74)
Naoki (Neo) SATO
 
Applied AI Workshop - Presentation - Connect Day GDL
Applied AI Workshop - Presentation - Connect Day GDL
Marc Teunis
 
Multi-Agent Era will Define the Future of Software
Multi-Agent Era will Define the Future of Software
Ivo Andreev
 
stackconf 2024 | Generative AI Security — A Practical Guide to Securing Your ...
stackconf 2024 | Generative AI Security — A Practical Guide to Securing Your ...
NETWAYS
 
Presentation Azure Chat Bot Project.pptx
Presentation Azure Chat Bot Project.pptx
Anupama Kate
 
AI hype or reality
AI hype or reality
Awantik Das
 
Generative AI in CSharp with Semantic Kernel.pptx
Generative AI in CSharp with Semantic Kernel.pptx
Alon Fliess
 
ChatGPT and AI for web developers - Maximiliano Firtman
ChatGPT and AI for web developers - Maximiliano Firtman
Wey Wey Web
 
AI 2023.pdf
AI 2023.pdf
DavidCieslak4
 
[DSC Europe 24] Tomislav Tipuric - Exploring LLMs across clouds – A Year in t...
[DSC Europe 24] Tomislav Tipuric - Exploring LLMs across clouds – A Year in t...
DataScienceConferenc1
 
Overview of Artificial Intelligence - Technology
Overview of Artificial Intelligence - Technology
NickDAgostino3
 
generative-ai-fundamentals and Large language models
generative-ai-fundamentals and Large language models
AdventureWorld5
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
Matthew Sinclair
 
Exploring AI as tools in your career.pdf
Exploring AI as tools in your career.pdf
videongamesrfun
 
Unleashing the Future: Building a Scalable and Up-to-Date GenAI Chatbot with ...
Unleashing the Future: Building a Scalable and Up-to-Date GenAI Chatbot with ...
confluent
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AI
abhishek36461
 
LLM-based Multi-Agent Systems to Replace Traditional Software
LLM-based Multi-Agent Systems to Replace Traditional Software
Ivo Andreev
 
Kubernetes and AI - Beauty and the Beast - Tobias Schneck - DOAG 24 NUE - 20....
Kubernetes and AI - Beauty and the Beast - Tobias Schneck - DOAG 24 NUE - 20....
Tobias Schneck
 
How Azure helps to build better business processes and customer experiences w...
How Azure helps to build better business processes and customer experiences w...
Maxim Salnikov
 
Enterprise Trends for Gen AI - Berkeley LLM AI Agents MOOC
Enterprise Trends for Gen AI - Berkeley LLM AI Agents MOOC
VincentLui15
 
AI/ml workshop organized by GDG on campus SCOE.pptx
AI/ml workshop organized by GDG on campus SCOE.pptx
sanidhyanaik1907
 
Using the power of Generative AI at scale
Using the power of Generative AI at scale
Maxim Salnikov
 
20240411 QFM009 Machine Intelligence Reading List March 2024
20240411 QFM009 Machine Intelligence Reading List March 2024
Matthew Sinclair
 
Microsoft AI Platform Overview
Microsoft AI Platform Overview
David Chou
 
How to build a generative AI solution.pdf
How to build a generative AI solution.pdf
alexjohnson7307
 
Privacy-first in-browser Generative AI web apps: offline-ready, future-proof,...
Privacy-first in-browser Generative AI web apps: offline-ready, future-proof,...
Maxim Salnikov
 
How to build a generative AI solution A step-by-step guide.pdf
How to build a generative AI solution A step-by-step guide.pdf
ChristopherTHyatt
 
.NET Fest 2018. Олександр Краковецький. Microsoft AI: створюємо програмні ріш...
.NET Fest 2018. Олександр Краковецький. Microsoft AI: створюємо програмні ріш...
NETFest
 
ChatGPT and AI for Web Developers
ChatGPT and AI for Web Developers
Maximiliano Firtman
 
PWA Cheat Sheet 2023
PWA Cheat Sheet 2023
Maximiliano Firtman
 

More Related Content

Similar to Unlocking Generative AI in your Web Apps (20)

AI 2023.pdf
AI 2023.pdf
DavidCieslak4
 
[DSC Europe 24] Tomislav Tipuric - Exploring LLMs across clouds – A Year in t...
[DSC Europe 24] Tomislav Tipuric - Exploring LLMs across clouds – A Year in t...
DataScienceConferenc1
 
Overview of Artificial Intelligence - Technology
Overview of Artificial Intelligence - Technology
NickDAgostino3
 
generative-ai-fundamentals and Large language models
generative-ai-fundamentals and Large language models
AdventureWorld5
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
Matthew Sinclair
 
Exploring AI as tools in your career.pdf
Exploring AI as tools in your career.pdf
videongamesrfun
 
Unleashing the Future: Building a Scalable and Up-to-Date GenAI Chatbot with ...
Unleashing the Future: Building a Scalable and Up-to-Date GenAI Chatbot with ...
confluent
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AI
abhishek36461
 
LLM-based Multi-Agent Systems to Replace Traditional Software
LLM-based Multi-Agent Systems to Replace Traditional Software
Ivo Andreev
 
Kubernetes and AI - Beauty and the Beast - Tobias Schneck - DOAG 24 NUE - 20....
Kubernetes and AI - Beauty and the Beast - Tobias Schneck - DOAG 24 NUE - 20....
Tobias Schneck
 
How Azure helps to build better business processes and customer experiences w...
How Azure helps to build better business processes and customer experiences w...
Maxim Salnikov
 
Enterprise Trends for Gen AI - Berkeley LLM AI Agents MOOC
Enterprise Trends for Gen AI - Berkeley LLM AI Agents MOOC
VincentLui15
 
AI/ml workshop organized by GDG on campus SCOE.pptx
AI/ml workshop organized by GDG on campus SCOE.pptx
sanidhyanaik1907
 
Using the power of Generative AI at scale
Using the power of Generative AI at scale
Maxim Salnikov
 
20240411 QFM009 Machine Intelligence Reading List March 2024
20240411 QFM009 Machine Intelligence Reading List March 2024
Matthew Sinclair
 
Microsoft AI Platform Overview
Microsoft AI Platform Overview
David Chou
 
How to build a generative AI solution.pdf
How to build a generative AI solution.pdf
alexjohnson7307
 
Privacy-first in-browser Generative AI web apps: offline-ready, future-proof,...
Privacy-first in-browser Generative AI web apps: offline-ready, future-proof,...
Maxim Salnikov
 
How to build a generative AI solution A step-by-step guide.pdf
How to build a generative AI solution A step-by-step guide.pdf
ChristopherTHyatt
 
.NET Fest 2018. Олександр Краковецький. Microsoft AI: створюємо програмні ріш...
.NET Fest 2018. Олександр Краковецький. Microsoft AI: створюємо програмні ріш...
NETFest
 
[DSC Europe 24] Tomislav Tipuric - Exploring LLMs across clouds – A Year in t...
[DSC Europe 24] Tomislav Tipuric - Exploring LLMs across clouds – A Year in t...
DataScienceConferenc1
 
Overview of Artificial Intelligence - Technology
Overview of Artificial Intelligence - Technology
NickDAgostino3
 
generative-ai-fundamentals and Large language models
generative-ai-fundamentals and Large language models
AdventureWorld5
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
Matthew Sinclair
 
Exploring AI as tools in your career.pdf
Exploring AI as tools in your career.pdf
videongamesrfun
 
Unleashing the Future: Building a Scalable and Up-to-Date GenAI Chatbot with ...
Unleashing the Future: Building a Scalable and Up-to-Date GenAI Chatbot with ...
confluent
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AI
abhishek36461
 
LLM-based Multi-Agent Systems to Replace Traditional Software
LLM-based Multi-Agent Systems to Replace Traditional Software
Ivo Andreev
 
Kubernetes and AI - Beauty and the Beast - Tobias Schneck - DOAG 24 NUE - 20....
Kubernetes and AI - Beauty and the Beast - Tobias Schneck - DOAG 24 NUE - 20....
Tobias Schneck
 
How Azure helps to build better business processes and customer experiences w...
How Azure helps to build better business processes and customer experiences w...
Maxim Salnikov
 
Enterprise Trends for Gen AI - Berkeley LLM AI Agents MOOC
Enterprise Trends for Gen AI - Berkeley LLM AI Agents MOOC
VincentLui15
 
AI/ml workshop organized by GDG on campus SCOE.pptx
AI/ml workshop organized by GDG on campus SCOE.pptx
sanidhyanaik1907
 
Using the power of Generative AI at scale
Using the power of Generative AI at scale
Maxim Salnikov
 
20240411 QFM009 Machine Intelligence Reading List March 2024
20240411 QFM009 Machine Intelligence Reading List March 2024
Matthew Sinclair
 
Microsoft AI Platform Overview
Microsoft AI Platform Overview
David Chou
 
How to build a generative AI solution.pdf
How to build a generative AI solution.pdf
alexjohnson7307
 
Privacy-first in-browser Generative AI web apps: offline-ready, future-proof,...
Privacy-first in-browser Generative AI web apps: offline-ready, future-proof,...
Maxim Salnikov
 
How to build a generative AI solution A step-by-step guide.pdf
How to build a generative AI solution A step-by-step guide.pdf
ChristopherTHyatt
 
.NET Fest 2018. Олександр Краковецький. Microsoft AI: створюємо програмні ріш...
.NET Fest 2018. Олександр Краковецький. Microsoft AI: створюємо програмні ріш...
NETFest
 

More from Maximiliano Firtman (20)

ChatGPT and AI for Web Developers
ChatGPT and AI for Web Developers
Maximiliano Firtman
 
PWA Cheat Sheet 2023
PWA Cheat Sheet 2023
Maximiliano Firtman
 
Hacking Web Performance en Español - JSConf México 2020
Hacking Web Performance en Español - JSConf México 2020
Maximiliano Firtman
 
The modern PWA Cheat Sheet
The modern PWA Cheat Sheet
Maximiliano Firtman
 
Hacking Web Performance 2019
Hacking Web Performance 2019
Maximiliano Firtman
 
Progressive Web Apps Keynote
Progressive Web Apps Keynote
Maximiliano Firtman
 
Hacking Web Performance
Hacking Web Performance
Maximiliano Firtman
 
Uncovering Secrets of Progressive Web Apps
Uncovering Secrets of Progressive Web Apps
Maximiliano Firtman
 
Hacking Web Performance
Hacking Web Performance
Maximiliano Firtman
 
Hacking Web Performance @ ForwardJS 2017
Hacking Web Performance @ ForwardJS 2017
Maximiliano Firtman
 
La Web Salta al Mundo Físico - Web meets Physical World (spanish)
La Web Salta al Mundo Físico - Web meets Physical World (spanish)
Maximiliano Firtman
 
Progressive Web Apps (español - spanish)
Progressive Web Apps (español - spanish)
Maximiliano Firtman
 
High Performance Web - Full Stack Toronto
High Performance Web - Full Stack Toronto
Maximiliano Firtman
 
Responsive Images and Performance
Responsive Images and Performance
Maximiliano Firtman
 
The Physical World meets the Web
The Physical World meets the Web
Maximiliano Firtman
 
Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile Devices
Maximiliano Firtman
 
Extreme Web Performance for Mobile Device Fluent 2015
Extreme Web Performance for Mobile Device Fluent 2015
Maximiliano Firtman
 
Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014
Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014
Maximiliano Firtman
 
Extreme Web Performance for Mobile Devices - Velocity NY
Extreme Web Performance for Mobile Devices - Velocity NY
Maximiliano Firtman
 
Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile Devices
Maximiliano Firtman
 
ChatGPT and AI for Web Developers
ChatGPT and AI for Web Developers
Maximiliano Firtman
 
Hacking Web Performance en Español - JSConf México 2020
Hacking Web Performance en Español - JSConf México 2020
Maximiliano Firtman
 
Uncovering Secrets of Progressive Web Apps
Uncovering Secrets of Progressive Web Apps
Maximiliano Firtman
 
Hacking Web Performance @ ForwardJS 2017
Hacking Web Performance @ ForwardJS 2017
Maximiliano Firtman
 
La Web Salta al Mundo Físico - Web meets Physical World (spanish)
La Web Salta al Mundo Físico - Web meets Physical World (spanish)
Maximiliano Firtman
 
Progressive Web Apps (español - spanish)
Progressive Web Apps (español - spanish)
Maximiliano Firtman
 
High Performance Web - Full Stack Toronto
High Performance Web - Full Stack Toronto
Maximiliano Firtman
 
Responsive Images and Performance
Responsive Images and Performance
Maximiliano Firtman
 
The Physical World meets the Web
The Physical World meets the Web
Maximiliano Firtman
 
Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile Devices
Maximiliano Firtman
 
Extreme Web Performance for Mobile Device Fluent 2015
Extreme Web Performance for Mobile Device Fluent 2015
Maximiliano Firtman
 
Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014
Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014
Maximiliano Firtman
 
Extreme Web Performance for Mobile Devices - Velocity NY
Extreme Web Performance for Mobile Devices - Velocity NY
Maximiliano Firtman
 
Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile Devices
Maximiliano Firtman
 
Ad

Recently uploaded (20)

WebdriverIO & JavaScript: The Perfect Duo for Web Automation
WebdriverIO & JavaScript: The Perfect Duo for Web Automation
digitaljignect
 
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
caoyixuan2019
 
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Safe Software
 
Python Conference Singapore - 19 Jun 2025
Python Conference Singapore - 19 Jun 2025
ninefyi
 
Securing AI - There Is No Try, Only Do!.pdf
Securing AI - There Is No Try, Only Do!.pdf
Priyanka Aash
 
10 Key Challenges for AI within the EU Data Protection Framework.pdf
10 Key Challenges for AI within the EU Data Protection Framework.pdf
Priyanka Aash
 
" How to survive with 1 billion vectors and not sell a kidney: our low-cost c...
" How to survive with 1 billion vectors and not sell a kidney: our low-cost c...
Fwdays
 
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
Enhance GitHub Copilot using MCP - Enterprise version.pdf
Enhance GitHub Copilot using MCP - Enterprise version.pdf
Nilesh Gule
 
Techniques for Automatic Device Identification and Network Assignment.pdf
Techniques for Automatic Device Identification and Network Assignment.pdf
Priyanka Aash
 
Cyber Defense Matrix Workshop - RSA Conference
Cyber Defense Matrix Workshop - RSA Conference
Priyanka Aash
 
Connecting Data and Intelligence: The Role of FME in Machine Learning
Connecting Data and Intelligence: The Role of FME in Machine Learning
Safe Software
 
You are not excused! How to avoid security blind spots on the way to production
You are not excused! How to avoid security blind spots on the way to production
Michele Leroux Bustamante
 
Daily Lesson Log MATATAG ICT TEchnology 8
Daily Lesson Log MATATAG ICT TEchnology 8
LOIDAALMAZAN3
 
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
Fwdays
 
ReSTIR [DI]: Spatiotemporal reservoir resampling for real-time ray tracing ...
ReSTIR [DI]: Spatiotemporal reservoir resampling for real-time ray tracing ...
revolcs10
 
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Saikat Basu
 
From Manual to Auto Searching- FME in the Driver's Seat
From Manual to Auto Searching- FME in the Driver's Seat
Safe Software
 
"Scaling in space and time with Temporal", Andriy Lupa.pdf
"Scaling in space and time with Temporal", Andriy Lupa.pdf
Fwdays
 
Lessons Learned from Developing Secure AI Workflows.pdf
Lessons Learned from Developing Secure AI Workflows.pdf
Priyanka Aash
 
WebdriverIO & JavaScript: The Perfect Duo for Web Automation
WebdriverIO & JavaScript: The Perfect Duo for Web Automation
digitaljignect
 
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
caoyixuan2019
 
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Safe Software
 
Python Conference Singapore - 19 Jun 2025
Python Conference Singapore - 19 Jun 2025
ninefyi
 
Securing AI - There Is No Try, Only Do!.pdf
Securing AI - There Is No Try, Only Do!.pdf
Priyanka Aash
 
10 Key Challenges for AI within the EU Data Protection Framework.pdf
10 Key Challenges for AI within the EU Data Protection Framework.pdf
Priyanka Aash
 
" How to survive with 1 billion vectors and not sell a kidney: our low-cost c...
" How to survive with 1 billion vectors and not sell a kidney: our low-cost c...
Fwdays
 
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
Enhance GitHub Copilot using MCP - Enterprise version.pdf
Enhance GitHub Copilot using MCP - Enterprise version.pdf
Nilesh Gule
 
Techniques for Automatic Device Identification and Network Assignment.pdf
Techniques for Automatic Device Identification and Network Assignment.pdf
Priyanka Aash
 
Cyber Defense Matrix Workshop - RSA Conference
Cyber Defense Matrix Workshop - RSA Conference
Priyanka Aash
 
Connecting Data and Intelligence: The Role of FME in Machine Learning
Connecting Data and Intelligence: The Role of FME in Machine Learning
Safe Software
 
You are not excused! How to avoid security blind spots on the way to production
You are not excused! How to avoid security blind spots on the way to production
Michele Leroux Bustamante
 
Daily Lesson Log MATATAG ICT TEchnology 8
Daily Lesson Log MATATAG ICT TEchnology 8
LOIDAALMAZAN3
 
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
Fwdays
 
ReSTIR [DI]: Spatiotemporal reservoir resampling for real-time ray tracing ...
ReSTIR [DI]: Spatiotemporal reservoir resampling for real-time ray tracing ...
revolcs10
 
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Saikat Basu
 
From Manual to Auto Searching- FME in the Driver's Seat
From Manual to Auto Searching- FME in the Driver's Seat
Safe Software
 
"Scaling in space and time with Temporal", Andriy Lupa.pdf
"Scaling in space and time with Temporal", Andriy Lupa.pdf
Fwdays
 
Lessons Learned from Developing Secure AI Workflows.pdf
Lessons Learned from Developing Secure AI Workflows.pdf
Priyanka Aash
 
Ad

Unlocking Generative AI in your Web Apps