SlideShare a Scribd company logo
1 of 37
Download to read offline
CHOOSING THE RIGHT
COMPONENTS
Dmitriy Kubyshkin
ZALANDO?var keywords = ['ecommerce', 'fashion', 'tech'];
sales({year: 2014, type: 'net'}) >= €2,200,000,000
visits({period: 'month'}) >= 142,000,000
employees({occupation: 'tech'}) >= 800
['Berlin', 'Helsinki', 'Dublin', 'Dortmund',
'Mönchengladbach', 'Erfurt'].join(you)    
LET'S TALK ABOUT COMPONENTS
An individual software component
is a software package, a web
service, a web resource, or a
module that encapsulates a set of
related functions (or data).
- Wikipedia
WHEN IN DOUBT — ASK W3C
Web Components enable Web
application authors to define
widgets with a level of visual
richness and interactivity not
possible with CSS alone, and ease of
composition and reuse not possible
with script libraries today.
- Introduction to Web Components
7+ teams collaborating
on each page
Inconsistencies are expensive
Errors are really expensive
WE WANT MORE
Security / isolation
Speed / small size
Future-proofness
Consistent and small API
Controlled composition
Ease of distribution
A/B Testing support
Good developer experience
Active community
Server-side rendering
THIS IS OUR TEXT INPUT
THIS IS WHAT IT NEEDS TODAY
3 DOM elements ~100 CSS lines 2 JS polyfills
Type in me
WHAT ARE OUR OPTIONS?
<iframe>
PROS
Security / isolation
Works everywhere
Easy to embed
CONS
Doesn't participate in layout
Can't send DOM events
Very resource-intensive
Composition is awkward
W3C HAD SOME IDEAS
PAGE INTEGRATION AND DYNAMIC CONTENT WITH
seamless srcdoc
UNFORTUNATELY BROWSER SUPPORT ISN'T THERE
jQuery Plugins
Probably the most widespread "components" out there
Easy as a pie
$(".z-input").zInput();
Or even just HTML
<input class="z-input" placeholder="Type in me"/>
<script src="z-input.js"></script>
And we have what we want
Type in me
It's not all good, though
No standard API
No isolation
Composition is a gamble
No server-side rendering
Usually low quality
Performance is questionable
WEB COMPONENTS
SOME GOOD STUFF
Standard API
A degree of isolation
Technology independent
Composable by design
SOME BAD STUFF
Awkward API
Vendors don't agree
Questionable distribution
Only client-side
≠ 
IT'S ALL ABOUT SHADOW DOM
There is no spoon spec
BECAUSE IT'S REALLY, REALLY HARD
selection   iframe   SVG   requestFullScreen   requestPointerLock
focus   events   forms   parser changes   URL fragments
stylesheets   multiple shadow roots   node redistribution
POLYFILL EXISTS FOR IE10+
Very complicated and pretty slow.
Not good enough :(
THAT LEAVES US WITH
AWESOME, BUT NOT WITHOUT PROBLEMS
No security / isolation
API is still unstable in some areas
Slow server-side rendering (big chunks take 10-20ms)
The data has to be sent with the markup
Questionable upgrade path
STILL, OUR CHOICE
WELCOME TO THE FUTURE!
FULLY ISOLATED WEB COMPONENTS
Multiple proposals are being evaluated
Big focus on embeddable content
Main Thread
JS Engine
DOM
Page
Context
Component
Context
 
MAIN POINTS
Extended Structured Clone
Security (PCI DSS compliance?)
One context per import
Still the same thread
FOLLOW PROGRESS ON
github.com/w3c/webcomponents
MICROSERVICES IN THE BROWSER
Our experiment with a different approach to component isolation
WHAT'S THE IDEA?
Reverse the problem and make components run in the main
thread, and the user code goes to isolated context.
Main Thread Web Worker
JS Engine
DOM Light DOM
Page
Context
JS Engine
Fragment
Context
API
API
DOES IT WORK?
YES
WELL, SORT OF...
Hover me
ISSUES STILL TO SOLVE
Serializing DOM is awfully slow on Android and Mobile IE
All the required APIs need to be proxied
Events become async and unstoppable
QUESTIONS?
Twitter: @ZalandoTech GitHub: github.com/zalando
Instagram: zalandotech Tech Blog: tech.zalando.com
Jobs: http://tech.zalando.com/jobs

More Related Content

What's hot

Kendo UI 101
Kendo UI 101Kendo UI 101
Kendo UI 101Sam Basu
 
EDMUG Silverlight Talk
EDMUG Silverlight TalkEDMUG Silverlight Talk
EDMUG Silverlight TalkMark Bennett
 
Single Page Application presentation
Single Page Application presentationSingle Page Application presentation
Single Page Application presentationJohn Staveley
 
ASP.NET Loves HTML5, Javascript and CSS3, or what's new in VS2013 for Web Dev...
ASP.NET Loves HTML5, Javascript and CSS3, or what's new in VS2013 for Web Dev...ASP.NET Loves HTML5, Javascript and CSS3, or what's new in VS2013 for Web Dev...
ASP.NET Loves HTML5, Javascript and CSS3, or what's new in VS2013 for Web Dev...Microsoft
 
Tungsten.js: Building a Modular Framework
Tungsten.js: Building a Modular FrameworkTungsten.js: Building a Modular Framework
Tungsten.js: Building a Modular FrameworkAndrew Rota
 
MDA Forum Milan Oct2009
MDA Forum Milan Oct2009MDA Forum Milan Oct2009
MDA Forum Milan Oct2009guest8e11d1
 
Introduction to WOLF Platform As A Service
Introduction to WOLF Platform As A ServiceIntroduction to WOLF Platform As A Service
Introduction to WOLF Platform As A ServiceCloudComputing
 
Making HTML5 Work Everywhere
Making HTML5 Work EverywhereMaking HTML5 Work Everywhere
Making HTML5 Work EverywhereTodd Anglin
 
Web App Development Technologies You Should Know
Web App Development Technologies You Should KnowWeb App Development Technologies You Should Know
Web App Development Technologies You Should KnowVishal Sinhasan
 
Vitali zaidman Do You Need Server Side Rendering? What Are The Alternatives?
Vitali zaidman Do You Need Server Side Rendering? What Are The Alternatives?Vitali zaidman Do You Need Server Side Rendering? What Are The Alternatives?
Vitali zaidman Do You Need Server Side Rendering? What Are The Alternatives?CodeValue
 
Lightning In The Clouds
Lightning In The CloudsLightning In The Clouds
Lightning In The Cloudsgeorge.james
 
Powering Apps with Live Services @ ThatConference
Powering Apps with Live Services @ ThatConferencePowering Apps with Live Services @ ThatConference
Powering Apps with Live Services @ ThatConferenceSam Basu
 
WinJS at NYC Code Camp 2012
WinJS at NYC Code Camp 2012WinJS at NYC Code Camp 2012
WinJS at NYC Code Camp 2012Dmitri Artamonov
 

What's hot (20)

Cloud and BYOD
Cloud and BYODCloud and BYOD
Cloud and BYOD
 
Kendo UI 101
Kendo UI 101Kendo UI 101
Kendo UI 101
 
EDMUG Silverlight Talk
EDMUG Silverlight TalkEDMUG Silverlight Talk
EDMUG Silverlight Talk
 
Single Page Application presentation
Single Page Application presentationSingle Page Application presentation
Single Page Application presentation
 
ASP.NET Loves HTML5, Javascript and CSS3, or what's new in VS2013 for Web Dev...
ASP.NET Loves HTML5, Javascript and CSS3, or what's new in VS2013 for Web Dev...ASP.NET Loves HTML5, Javascript and CSS3, or what's new in VS2013 for Web Dev...
ASP.NET Loves HTML5, Javascript and CSS3, or what's new in VS2013 for Web Dev...
 
Tungsten.js: Building a Modular Framework
Tungsten.js: Building a Modular FrameworkTungsten.js: Building a Modular Framework
Tungsten.js: Building a Modular Framework
 
MDA Forum Milan Oct2009
MDA Forum Milan Oct2009MDA Forum Milan Oct2009
MDA Forum Milan Oct2009
 
Introduction to WOLF Platform As A Service
Introduction to WOLF Platform As A ServiceIntroduction to WOLF Platform As A Service
Introduction to WOLF Platform As A Service
 
Wijmo 2013v1
Wijmo 2013v1Wijmo 2013v1
Wijmo 2013v1
 
Modern Web Applications
Modern Web ApplicationsModern Web Applications
Modern Web Applications
 
Making HTML5 Work Everywhere
Making HTML5 Work EverywhereMaking HTML5 Work Everywhere
Making HTML5 Work Everywhere
 
Web App Development Technologies You Should Know
Web App Development Technologies You Should KnowWeb App Development Technologies You Should Know
Web App Development Technologies You Should Know
 
Vitali zaidman Do You Need Server Side Rendering? What Are The Alternatives?
Vitali zaidman Do You Need Server Side Rendering? What Are The Alternatives?Vitali zaidman Do You Need Server Side Rendering? What Are The Alternatives?
Vitali zaidman Do You Need Server Side Rendering? What Are The Alternatives?
 
Ionic
IonicIonic
Ionic
 
Lightning In The Clouds
Lightning In The CloudsLightning In The Clouds
Lightning In The Clouds
 
Powering Apps with Live Services @ ThatConference
Powering Apps with Live Services @ ThatConferencePowering Apps with Live Services @ ThatConference
Powering Apps with Live Services @ ThatConference
 
6 web development trends to follow in 2021
6 web development trends to follow in 20216 web development trends to follow in 2021
6 web development trends to follow in 2021
 
Visual Studio Code
Visual Studio CodeVisual Studio Code
Visual Studio Code
 
Top web development tools
Top web development toolsTop web development tools
Top web development tools
 
WinJS at NYC Code Camp 2012
WinJS at NYC Code Camp 2012WinJS at NYC Code Camp 2012
WinJS at NYC Code Camp 2012
 

Viewers also liked

Learning
LearningLearning
Learningcorbinb
 
Horizon Towers e-Brochure
Horizon Towers e-BrochureHorizon Towers e-Brochure
Horizon Towers e-BrochureTamouh_LLC
 
Introduction de google analytics
Introduction de google analyticsIntroduction de google analytics
Introduction de google analyticsyou426
 
ZANIMIVOSTI NA POTOVANJU.pptx
ZANIMIVOSTI NA POTOVANJU.pptxZANIMIVOSTI NA POTOVANJU.pptx
ZANIMIVOSTI NA POTOVANJU.pptxandraz-guzaj99
 
Mareen CV and experience certificate
Mareen CV and experience certificateMareen CV and experience certificate
Mareen CV and experience certificatemaureen julin
 
Подготовка к ЕГЭ по английскому языку.Сочинение мнение.
 Подготовка к ЕГЭ  по английскому языку.Сочинение мнение. Подготовка к ЕГЭ  по английскому языку.Сочинение мнение.
Подготовка к ЕГЭ по английскому языку.Сочинение мнение.Светлана Ярмол
 
Tourism industry - Week 4
Tourism industry - Week 4Tourism industry - Week 4
Tourism industry - Week 4Samornpan.k MS
 
Projet carrière i.s
Projet carrière i.sProjet carrière i.s
Projet carrière i.sEric Hebert
 
Toolkit Football contre l'homophobie : 1 - 0
Toolkit Football contre l'homophobie : 1 - 0Toolkit Football contre l'homophobie : 1 - 0
Toolkit Football contre l'homophobie : 1 - 0Football+ Foundation
 
1Events- Dublin Based Event Management Company
1Events- Dublin Based Event Management Company1Events- Dublin Based Event Management Company
1Events- Dublin Based Event Management Company1eventsgroup
 
Brochure Football Kick-Off 2015 FR
Brochure Football Kick-Off 2015 FRBrochure Football Kick-Off 2015 FR
Brochure Football Kick-Off 2015 FRFootball+ Foundation
 
A Millennial's Guide to the Grad School Application Process
A Millennial's Guide to the Grad School Application ProcessA Millennial's Guide to the Grad School Application Process
A Millennial's Guide to the Grad School Application ProcessImpactHubMSP
 

Viewers also liked (20)

Learning
LearningLearning
Learning
 
Horizon Towers e-Brochure
Horizon Towers e-BrochureHorizon Towers e-Brochure
Horizon Towers e-Brochure
 
Introduction de google analytics
Introduction de google analyticsIntroduction de google analytics
Introduction de google analytics
 
ZANIMIVOSTI NA POTOVANJU.pptx
ZANIMIVOSTI NA POTOVANJU.pptxZANIMIVOSTI NA POTOVANJU.pptx
ZANIMIVOSTI NA POTOVANJU.pptx
 
Mareen CV and experience certificate
Mareen CV and experience certificateMareen CV and experience certificate
Mareen CV and experience certificate
 
History of football
History of footballHistory of football
History of football
 
ярмол с а
ярмол с аярмол с а
ярмол с а
 
Подготовка к ЕГЭ по английскому языку.Сочинение мнение.
 Подготовка к ЕГЭ  по английскому языку.Сочинение мнение. Подготовка к ЕГЭ  по английскому языку.Сочинение мнение.
Подготовка к ЕГЭ по английскому языку.Сочинение мнение.
 
Brochure Football Kick-Off 2013
Brochure Football Kick-Off 2013Brochure Football Kick-Off 2013
Brochure Football Kick-Off 2013
 
Clegg Resume 2013
Clegg Resume 2013Clegg Resume 2013
Clegg Resume 2013
 
Tourism industry - Week 4
Tourism industry - Week 4Tourism industry - Week 4
Tourism industry - Week 4
 
Projet carrière i.s
Projet carrière i.sProjet carrière i.s
Projet carrière i.s
 
Toolkit Football contre l'homophobie : 1 - 0
Toolkit Football contre l'homophobie : 1 - 0Toolkit Football contre l'homophobie : 1 - 0
Toolkit Football contre l'homophobie : 1 - 0
 
mohamedidriss cv
mohamedidriss cvmohamedidriss cv
mohamedidriss cv
 
1Events- Dublin Based Event Management Company
1Events- Dublin Based Event Management Company1Events- Dublin Based Event Management Company
1Events- Dublin Based Event Management Company
 
Tourism industry 5
Tourism industry 5Tourism industry 5
Tourism industry 5
 
Famous people
Famous peopleFamous people
Famous people
 
Present continuous presentation
Present continuous presentationPresent continuous presentation
Present continuous presentation
 
Brochure Football Kick-Off 2015 FR
Brochure Football Kick-Off 2015 FRBrochure Football Kick-Off 2015 FR
Brochure Football Kick-Off 2015 FR
 
A Millennial's Guide to the Grad School Application Process
A Millennial's Guide to the Grad School Application ProcessA Millennial's Guide to the Grad School Application Process
A Millennial's Guide to the Grad School Application Process
 

Similar to Choosing the-right-components

Building the next generation of browser apps today
Building the next generation of browser apps todayBuilding the next generation of browser apps today
Building the next generation of browser apps todayRandy Williams
 
Toronto node js_meetup
Toronto node js_meetupToronto node js_meetup
Toronto node js_meetupShubhra Kar
 
HTML5 and CSS3 refresher
HTML5 and CSS3 refresherHTML5 and CSS3 refresher
HTML5 and CSS3 refresherIvano Malavolta
 
DevDays 2011- Let’s get ready for the cloud: Building your applications so th...
DevDays 2011- Let’s get ready for the cloud: Building your applications so th...DevDays 2011- Let’s get ready for the cloud: Building your applications so th...
DevDays 2011- Let’s get ready for the cloud: Building your applications so th...Robert MacLean
 
A brief history_of_vdi_1.0
A brief history_of_vdi_1.0A brief history_of_vdi_1.0
A brief history_of_vdi_1.0Jimmy Chang
 
Thomas Lobinger
Thomas LobingerThomas Lobinger
Thomas LobingerCodeFest
 
Web Application Security Reloaded for the HTML5 era
Web Application Security Reloaded for the HTML5 eraWeb Application Security Reloaded for the HTML5 era
Web Application Security Reloaded for the HTML5 eraCarlo Bonamico
 
Will Web 2.0 applications break the cloud?
Will Web 2.0 applications break the cloud?Will Web 2.0 applications break the cloud?
Will Web 2.0 applications break the cloud?Flaskdata.io
 
Wrangling Large Scale Frontend Web Applications
Wrangling Large Scale Frontend Web ApplicationsWrangling Large Scale Frontend Web Applications
Wrangling Large Scale Frontend Web ApplicationsRyan Roemer
 
Html5 workshop part 1
Html5 workshop part 1Html5 workshop part 1
Html5 workshop part 1NAILBITER
 
H2 Successfully adopt Web Services - Towards agility in the Ecosystem
H2 Successfully adopt Web Services - Towards agility in the EcosystemH2 Successfully adopt Web Services - Towards agility in the Ecosystem
H2 Successfully adopt Web Services - Towards agility in the EcosystemPatrick Koning
 
Implementing Vanilla Web Components
Implementing Vanilla Web ComponentsImplementing Vanilla Web Components
Implementing Vanilla Web Componentssonumanoj
 
Angular from Zero to Mastery - Training (Intermediate)
Angular from Zero to Mastery - Training (Intermediate)Angular from Zero to Mastery - Training (Intermediate)
Angular from Zero to Mastery - Training (Intermediate)Smail LOUNES
 
Business model driven cloud adoption - what NI is doing in the cloud
Business model driven cloud adoption -  what  NI is doing in the cloudBusiness model driven cloud adoption -  what  NI is doing in the cloud
Business model driven cloud adoption - what NI is doing in the cloudErnest Mueller
 
JSFoo-2017 Takeaways
JSFoo-2017 TakeawaysJSFoo-2017 Takeaways
JSFoo-2017 TakeawaysMir Ali
 
The Essentials of Building Cloud-Based Web Apps with Azure
The Essentials of Building Cloud-Based Web Apps with AzureThe Essentials of Building Cloud-Based Web Apps with Azure
The Essentials of Building Cloud-Based Web Apps with AzureIdo Flatow
 
Robin Gadd at FE Briefing on Live@EDU and Cloud Computing for Microsoft Octob...
Robin Gadd at FE Briefing on Live@EDU and Cloud Computing for Microsoft Octob...Robin Gadd at FE Briefing on Live@EDU and Cloud Computing for Microsoft Octob...
Robin Gadd at FE Briefing on Live@EDU and Cloud Computing for Microsoft Octob...robingadd
 
The future of web development write once, run everywhere with angular js an...
The future of web development   write once, run everywhere with angular js an...The future of web development   write once, run everywhere with angular js an...
The future of web development write once, run everywhere with angular js an...Mark Leusink
 

Similar to Choosing the-right-components (20)

Sexy React Stack
Sexy React StackSexy React Stack
Sexy React Stack
 
Building the next generation of browser apps today
Building the next generation of browser apps todayBuilding the next generation of browser apps today
Building the next generation of browser apps today
 
Toronto node js_meetup
Toronto node js_meetupToronto node js_meetup
Toronto node js_meetup
 
HTML5 and CSS3 refresher
HTML5 and CSS3 refresherHTML5 and CSS3 refresher
HTML5 and CSS3 refresher
 
DevDays 2011- Let’s get ready for the cloud: Building your applications so th...
DevDays 2011- Let’s get ready for the cloud: Building your applications so th...DevDays 2011- Let’s get ready for the cloud: Building your applications so th...
DevDays 2011- Let’s get ready for the cloud: Building your applications so th...
 
Lightning talks
Lightning talksLightning talks
Lightning talks
 
A brief history_of_vdi_1.0
A brief history_of_vdi_1.0A brief history_of_vdi_1.0
A brief history_of_vdi_1.0
 
Thomas Lobinger
Thomas LobingerThomas Lobinger
Thomas Lobinger
 
Web Application Security Reloaded for the HTML5 era
Web Application Security Reloaded for the HTML5 eraWeb Application Security Reloaded for the HTML5 era
Web Application Security Reloaded for the HTML5 era
 
Will Web 2.0 applications break the cloud?
Will Web 2.0 applications break the cloud?Will Web 2.0 applications break the cloud?
Will Web 2.0 applications break the cloud?
 
Wrangling Large Scale Frontend Web Applications
Wrangling Large Scale Frontend Web ApplicationsWrangling Large Scale Frontend Web Applications
Wrangling Large Scale Frontend Web Applications
 
Html5 workshop part 1
Html5 workshop part 1Html5 workshop part 1
Html5 workshop part 1
 
H2 Successfully adopt Web Services - Towards agility in the Ecosystem
H2 Successfully adopt Web Services - Towards agility in the EcosystemH2 Successfully adopt Web Services - Towards agility in the Ecosystem
H2 Successfully adopt Web Services - Towards agility in the Ecosystem
 
Implementing Vanilla Web Components
Implementing Vanilla Web ComponentsImplementing Vanilla Web Components
Implementing Vanilla Web Components
 
Angular from Zero to Mastery - Training (Intermediate)
Angular from Zero to Mastery - Training (Intermediate)Angular from Zero to Mastery - Training (Intermediate)
Angular from Zero to Mastery - Training (Intermediate)
 
Business model driven cloud adoption - what NI is doing in the cloud
Business model driven cloud adoption -  what  NI is doing in the cloudBusiness model driven cloud adoption -  what  NI is doing in the cloud
Business model driven cloud adoption - what NI is doing in the cloud
 
JSFoo-2017 Takeaways
JSFoo-2017 TakeawaysJSFoo-2017 Takeaways
JSFoo-2017 Takeaways
 
The Essentials of Building Cloud-Based Web Apps with Azure
The Essentials of Building Cloud-Based Web Apps with AzureThe Essentials of Building Cloud-Based Web Apps with Azure
The Essentials of Building Cloud-Based Web Apps with Azure
 
Robin Gadd at FE Briefing on Live@EDU and Cloud Computing for Microsoft Octob...
Robin Gadd at FE Briefing on Live@EDU and Cloud Computing for Microsoft Octob...Robin Gadd at FE Briefing on Live@EDU and Cloud Computing for Microsoft Octob...
Robin Gadd at FE Briefing on Live@EDU and Cloud Computing for Microsoft Octob...
 
The future of web development write once, run everywhere with angular js an...
The future of web development   write once, run everywhere with angular js an...The future of web development   write once, run everywhere with angular js an...
The future of web development write once, run everywhere with angular js an...
 

Recently uploaded

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 

Recently uploaded (20)

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 

Choosing the-right-components