SlideShare a Scribd company logo
Building Rich User Experiences
                                      without
                              JavaScript Spaghetti


                                   by Jared Faris
                                   @jaredthenerd




Saturday, March 17, 12
About me




Saturday, March 17, 12
JavaScript




Saturday, March 17, 12
Designers




Saturday, March 17, 12
Developers




Saturday, March 17, 12
The Problem
        Designers tend to think in terms of appearance. Good
                     ones think about usability.

        Only the very best ones think about programmability.


       Developers make it worse by not thinking about design




Saturday, March 17, 12
A Typical Product Lifecycle
                          Somewhat dramatized...




Saturday, March 17, 12
Designer   Developer




Saturday, March 17, 12
We need this
                           feature




Saturday, March 17, 12
I got this




Saturday, March 17, 12
?




Saturday, March 17, 12
Tweaking time...




Saturday, March 17, 12
I got another
                           great idea




Saturday, March 17, 12
Now you tell
                            me




Saturday, March 17, 12
The developer bolts on some more code




Saturday, March 17, 12
And another
                           thing...




Saturday, March 17, 12
grrr




Saturday, March 17, 12
We don’t
                          ‘really’
                         need this




Saturday, March 17, 12
Uh, yeah we
                              do




Saturday, March 17, 12
Saturday, March 17, 12
The developer bolts on some more code




Saturday, March 17, 12
Some time passes

                                ‘Some time’ is defined as:
                  Just long enough that the developer doesn’t remember
                            exactly how his original code works.




Saturday, March 17, 12
I’ve got a new
                             feature




Saturday, March 17, 12
Angry developers
                         can really do this.
                          IT managers be
                              warned.




Saturday, March 17, 12
Protective Beret




Saturday, March 17, 12
More messy code




Saturday, March 17, 12
The last bug




                         Oh wait, one more




Saturday, March 17, 12
Finally




Saturday, March 17, 12
The next day...




Saturday, March 17, 12
Saturday, March 17, 12
Two weeks pass.




Saturday, March 17, 12
I’ve got a new
                             feature
                                          Gahh!




Saturday, March 17, 12
Saturday, March 17, 12
No developers were harmed in the making
                              of this dramatic reenactment.




Saturday, March 17, 12
Additional Features + Short Sighted Architecting
                        = Horrible JavaScript Spaghetti




Saturday, March 17, 12
Why does this happen?

                          This is where you earn audience participation points.




Saturday, March 17, 12
Some Reasons

              • JavaScript isn’t real code
              • We don’t treat client side things as real features
              • We can’t easily test it




Saturday, March 17, 12
This really all boils down to one thing.


                                  We developers suck.




Saturday, March 17, 12
Bonus second lesson


               We developers suck at interacting with designers
                             (or stakeholders).




Saturday, March 17, 12
Three JavaScript Principles

                              • Decouple everything
                              • Make it testable
                              • Push events, not state




Saturday, March 17, 12
Decouple Everything

                    Start thinking about UI pieces as individual JS objects.
                           Remove dependencies between objects.
                           Apply your OO best practices here too.




Saturday, March 17, 12
Make It Testable

                          Separate DOM dependent stuff into a single layer.
                         Put the rest of the stuff in classes that you can test.




Saturday, March 17, 12
Push Events, Not State

                           Know about the Law of Demeter.
                       Let controls worry about their own state.
                 Inform other controls that “X happened to Y”, not “Y is
                                       in X state”




Saturday, March 17, 12
Some Patterns




Saturday, March 17, 12
Mediator Pattern
                   "The essence of the Mediator Pattern is to "Define an
                   object that encapsulates how a set of objects interact.
                   Mediator promotes loose coupling by keeping objects
                    from referring to each other explicitly, and it lets you
                           vary their interaction independently."
                         -Design Patterns: Elements of Reusable Object-Oriented Software




Saturday, March 17, 12
NavControlMediator

                            itemSelected()




                             unselectAll()




                         Events from some
                           other object
Saturday, March 17, 12
Observer Pattern
                 "Define a one-to-many dependency between objects so
                  that when one object changes state, all its dependents
                         are notified and updated automatically."
                         -Design Patterns: Elements of Reusable Object-Oriented Software




                              Think jQuery $(‘.something’).click()


Saturday, March 17, 12
NavControlMediator

                            itemSelected()
                            viewModel




                             unselectAll()




                         Events from some
                           other object
Saturday, March 17, 12
Knockout.js Template Example




Saturday, March 17, 12
Pub/Sub + Fairy Dust = Service Bus

                           Pub/Sub is great to make sure events propagate.
                         It stats to get brittle with lots of different controls.




Saturday, March 17, 12
Way Too Much Pubbing and Subbing




Saturday, March 17, 12
Service Bus

                 A service bus is another layer that sits outside controls.
                  Controls that want to communicate speak through it.
                  Your controls are then only coupled to a single thing.




Saturday, March 17, 12
Postal.js




Saturday, March 17, 12
Service Bus + Mediator
                • Controls no longer need to know about others.
                • We can remove/replace controls individually.
                • We can add controls that listen to the same events
                without modifying the publisher.
                • We can re-use pieces more easily because they work
                in a standard way.




Saturday, March 17, 12
NavControlMediator

                          itemSelected()
                          viewModel



                                                 Service Bus
                           unselectAll()




                           Events from some
                             other object



                                ReportMediator

                               itemChanged()
                               viewModel




                                unselectAll()




Saturday, March 17, 12
HistoryControl
                         NavControlMediator

                          itemSelected()
                          viewModel



                                                 Service Bus
                           unselectAll()




                           Events from some
                             other object



                                ReportMediator

                               itemChanged()
                               viewModel




                                unselectAll()




Saturday, March 17, 12
Questions About Patterns?




Saturday, March 17, 12
A Typical Product Lifecycle
                              Round Two




Saturday, March 17, 12
We need this
                           feature




Saturday, March 17, 12
I got a few
                          questions




Saturday, March 17, 12
?




Saturday, March 17, 12
Tweaking time...




Saturday, March 17, 12
I got another
                           great idea




Saturday, March 17, 12
Ok, Cool




Saturday, March 17, 12
And another
                           thing...




Saturday, March 17, 12
Done.




Saturday, March 17, 12
Two weeks pass...




Saturday, March 17, 12
I’ve got a new
                             feature




Saturday, March 17, 12
No worries.




Saturday, March 17, 12
Wha? Ohhhk.




Saturday, March 17, 12
A short time later...




Saturday, March 17, 12
Saturday, March 17, 12
Special thanks to




                         He did the frame art
                               Blame me for
                              everything else




Saturday, March 17, 12
Knockout.js - Observer pattern (pub/sub)
                                 http://knockoutjs.com/

                                   Postal.js - Service bus
                           https://github.com/ifandelse/postal.js

                                          My Stuff
                                      @jaredthenerd
                                    jfaris@gmail.com
                               https://github.com/jaredfaris
                                 http://jaredthenerd.com

Saturday, March 17, 12

More Related Content

Viewers also liked

Profile Innovative Hr Solution
Profile Innovative Hr SolutionProfile Innovative Hr Solution
Profile Innovative Hr Solution
SACHDEVNILESH
 
Jurnal digital
Jurnal digitalJurnal digital
Jurnal digital
DigitalReport
 
Tom butler bowdon_-_50_knig_i_velikih_idej__www.freemba.ru_
Tom butler bowdon_-_50_knig_i_velikih_idej__www.freemba.ru_Tom butler bowdon_-_50_knig_i_velikih_idej__www.freemba.ru_
Tom butler bowdon_-_50_knig_i_velikih_idej__www.freemba.ru_anmarketers
 
Being a gentlemen with girls "the definitive way to express yourself and trea...
Being a gentlemen with girls "the definitive way to express yourself and trea...Being a gentlemen with girls "the definitive way to express yourself and trea...
Being a gentlemen with girls "the definitive way to express yourself and trea...
Karim Fathy
 
Standup meets startup concept
Standup meets startup conceptStandup meets startup concept
Standup meets startup concept
Raido Pikkar
 
SeedForum Tallinn keynote 05.03.13
SeedForum Tallinn keynote 05.03.13 SeedForum Tallinn keynote 05.03.13
SeedForum Tallinn keynote 05.03.13
Raido Pikkar
 
19.10.2011 ajujaht keynote, raido pikkar
19.10.2011 ajujaht keynote, raido pikkar 19.10.2011 ajujaht keynote, raido pikkar
19.10.2011 ajujaht keynote, raido pikkar
Raido Pikkar
 
Insight uri din online1
Insight uri din online1Insight uri din online1
Insight uri din online1
DigitalReport
 
Push the boundaries of your Business Model& introduction to PM
Push the boundaries of your Business Model& introduction to PM Push the boundaries of your Business Model& introduction to PM
Push the boundaries of your Business Model& introduction to PM
Karim Fathy
 
De Duurzame Stad volgens HKB
De Duurzame Stad volgens HKBDe Duurzame Stad volgens HKB
De Duurzame Stad volgens HKBHKblabla
 
Use all the buzzwords
Use all the buzzwordsUse all the buzzwords
Use all the buzzwords
Jared Faris
 
The Spork / Platypus Average: Content strategy at Red Gate Software
The Spork / Platypus Average: Content strategy at Red Gate SoftwareThe Spork / Platypus Average: Content strategy at Red Gate Software
The Spork / Platypus Average: Content strategy at Red Gate Software
Roger Hart
 
Friends info
Friends infoFriends info
Friends info
OoOShanelOoO
 
Javascript spaghetti stirtrek_5_17
Javascript  spaghetti stirtrek_5_17Javascript  spaghetti stirtrek_5_17
Javascript spaghetti stirtrek_5_17
Jared Faris
 
Prinsip bernoulli 1
Prinsip bernoulli 1Prinsip bernoulli 1
Prinsip bernoulli 1
Shaik Abdul Rahim
 
Dossier cicle superior
Dossier cicle superiorDossier cicle superior
Dossier cicle superiordavid
 
Dossier c.i. 2010 11
Dossier c.i. 2010 11Dossier c.i. 2010 11
Dossier c.i. 2010 11david
 

Viewers also liked (20)

Klasseledelse
KlasseledelseKlasseledelse
Klasseledelse
 
Profile Innovative Hr Solution
Profile Innovative Hr SolutionProfile Innovative Hr Solution
Profile Innovative Hr Solution
 
Jurnal digital
Jurnal digitalJurnal digital
Jurnal digital
 
Tom butler bowdon_-_50_knig_i_velikih_idej__www.freemba.ru_
Tom butler bowdon_-_50_knig_i_velikih_idej__www.freemba.ru_Tom butler bowdon_-_50_knig_i_velikih_idej__www.freemba.ru_
Tom butler bowdon_-_50_knig_i_velikih_idej__www.freemba.ru_
 
Being a gentlemen with girls "the definitive way to express yourself and trea...
Being a gentlemen with girls "the definitive way to express yourself and trea...Being a gentlemen with girls "the definitive way to express yourself and trea...
Being a gentlemen with girls "the definitive way to express yourself and trea...
 
Standup meets startup concept
Standup meets startup conceptStandup meets startup concept
Standup meets startup concept
 
SeedForum Tallinn keynote 05.03.13
SeedForum Tallinn keynote 05.03.13 SeedForum Tallinn keynote 05.03.13
SeedForum Tallinn keynote 05.03.13
 
19.10.2011 ajujaht keynote, raido pikkar
19.10.2011 ajujaht keynote, raido pikkar 19.10.2011 ajujaht keynote, raido pikkar
19.10.2011 ajujaht keynote, raido pikkar
 
Insight uri din online1
Insight uri din online1Insight uri din online1
Insight uri din online1
 
Klasseledelse1
Klasseledelse1Klasseledelse1
Klasseledelse1
 
Push the boundaries of your Business Model& introduction to PM
Push the boundaries of your Business Model& introduction to PM Push the boundaries of your Business Model& introduction to PM
Push the boundaries of your Business Model& introduction to PM
 
Pel eksamen høst 2010
Pel eksamen høst 2010Pel eksamen høst 2010
Pel eksamen høst 2010
 
De Duurzame Stad volgens HKB
De Duurzame Stad volgens HKBDe Duurzame Stad volgens HKB
De Duurzame Stad volgens HKB
 
Use all the buzzwords
Use all the buzzwordsUse all the buzzwords
Use all the buzzwords
 
The Spork / Platypus Average: Content strategy at Red Gate Software
The Spork / Platypus Average: Content strategy at Red Gate SoftwareThe Spork / Platypus Average: Content strategy at Red Gate Software
The Spork / Platypus Average: Content strategy at Red Gate Software
 
Friends info
Friends infoFriends info
Friends info
 
Javascript spaghetti stirtrek_5_17
Javascript  spaghetti stirtrek_5_17Javascript  spaghetti stirtrek_5_17
Javascript spaghetti stirtrek_5_17
 
Prinsip bernoulli 1
Prinsip bernoulli 1Prinsip bernoulli 1
Prinsip bernoulli 1
 
Dossier cicle superior
Dossier cicle superiorDossier cicle superior
Dossier cicle superior
 
Dossier c.i. 2010 11
Dossier c.i. 2010 11Dossier c.i. 2010 11
Dossier c.i. 2010 11
 

Similar to Building Rich User Experiences w/o JavaScript Spaghetti

Engineering Change
Engineering ChangeEngineering Change
Engineering Change
Kellan
 
MonadReader: Less is More
MonadReader: Less is MoreMonadReader: Less is More
MonadReader: Less is More
Sukant Hajra
 
Ux paper prototyping
Ux paper prototypingUx paper prototyping
Ux paper prototyping
Grace Ng
 
Event based modeling - eng
Event based modeling - engEvent based modeling - eng
Event based modeling - eng
Alberto Brandolini
 
Sencha Touch 2
Sencha Touch 2Sencha Touch 2
Sencha Touch 2
Martin de Keijzer
 
Sencha Touch 2
Sencha Touch 2Sencha Touch 2
Sencha Touch 2
Martin de Keijzer
 
UI Animation principles and practice with GSAP
UI Animation principles and practice with GSAPUI Animation principles and practice with GSAP
UI Animation principles and practice with GSAP
Mario Noble
 
Architecting for Change: QCONNYC 2012
Architecting for Change: QCONNYC 2012Architecting for Change: QCONNYC 2012
Architecting for Change: QCONNYC 2012
Kellan
 
Content and Coding are not Commodities
Content and Coding are not CommoditiesContent and Coding are not Commodities
Content and Coding are not Commodities
Benjamin Balter
 
Simonvc basho-nosql-in-a-continuous-delivery-world
Simonvc basho-nosql-in-a-continuous-delivery-worldSimonvc basho-nosql-in-a-continuous-delivery-world
Simonvc basho-nosql-in-a-continuous-delivery-world
Simon Vans-Colina
 
Testing mysql creatively in a sandbox
Testing mysql creatively in a sandboxTesting mysql creatively in a sandbox
Testing mysql creatively in a sandbox
Giuseppe Maxia
 
Cleanweb uk worthing
Cleanweb uk worthingCleanweb uk worthing
Cleanweb uk worthing
Cleanweb UK
 
PyCon talk: Deploy Python apps in 5 min with a PaaS
PyCon talk: Deploy Python apps in 5 min with a PaaSPyCon talk: Deploy Python apps in 5 min with a PaaS
PyCon talk: Deploy Python apps in 5 min with a PaaS
Appsembler
 
Bootstrap tour
Bootstrap tourBootstrap tour
Bootstrap tour
Ashish Sharma
 
Faster mobile sites
Faster mobile sitesFaster mobile sites
Faster mobile sites
Matthew Farina
 
Beware the Shiny!
Beware the Shiny!Beware the Shiny!
Beware the Shiny!
Martha Rotter
 
Pundit
PunditPundit
Pundit
Net7
 
Responsive Web Design & Workflow
Responsive Web Design & WorkflowResponsive Web Design & Workflow
Responsive Web Design & Workflow
houhr
 
Pinterest arch summit august 2012 - scaling pinterest
Pinterest arch summit   august 2012 - scaling pinterestPinterest arch summit   august 2012 - scaling pinterest
Pinterest arch summit august 2012 - scaling pinterest
drewz lin
 
How to be a Lean Product Developer? @Agile Riga Day 2012
How to be a Lean Product Developer? @Agile Riga Day 2012How to be a Lean Product Developer? @Agile Riga Day 2012
How to be a Lean Product Developer? @Agile Riga Day 2012
Marko Taipale
 

Similar to Building Rich User Experiences w/o JavaScript Spaghetti (20)

Engineering Change
Engineering ChangeEngineering Change
Engineering Change
 
MonadReader: Less is More
MonadReader: Less is MoreMonadReader: Less is More
MonadReader: Less is More
 
Ux paper prototyping
Ux paper prototypingUx paper prototyping
Ux paper prototyping
 
Event based modeling - eng
Event based modeling - engEvent based modeling - eng
Event based modeling - eng
 
Sencha Touch 2
Sencha Touch 2Sencha Touch 2
Sencha Touch 2
 
Sencha Touch 2
Sencha Touch 2Sencha Touch 2
Sencha Touch 2
 
UI Animation principles and practice with GSAP
UI Animation principles and practice with GSAPUI Animation principles and practice with GSAP
UI Animation principles and practice with GSAP
 
Architecting for Change: QCONNYC 2012
Architecting for Change: QCONNYC 2012Architecting for Change: QCONNYC 2012
Architecting for Change: QCONNYC 2012
 
Content and Coding are not Commodities
Content and Coding are not CommoditiesContent and Coding are not Commodities
Content and Coding are not Commodities
 
Simonvc basho-nosql-in-a-continuous-delivery-world
Simonvc basho-nosql-in-a-continuous-delivery-worldSimonvc basho-nosql-in-a-continuous-delivery-world
Simonvc basho-nosql-in-a-continuous-delivery-world
 
Testing mysql creatively in a sandbox
Testing mysql creatively in a sandboxTesting mysql creatively in a sandbox
Testing mysql creatively in a sandbox
 
Cleanweb uk worthing
Cleanweb uk worthingCleanweb uk worthing
Cleanweb uk worthing
 
PyCon talk: Deploy Python apps in 5 min with a PaaS
PyCon talk: Deploy Python apps in 5 min with a PaaSPyCon talk: Deploy Python apps in 5 min with a PaaS
PyCon talk: Deploy Python apps in 5 min with a PaaS
 
Bootstrap tour
Bootstrap tourBootstrap tour
Bootstrap tour
 
Faster mobile sites
Faster mobile sitesFaster mobile sites
Faster mobile sites
 
Beware the Shiny!
Beware the Shiny!Beware the Shiny!
Beware the Shiny!
 
Pundit
PunditPundit
Pundit
 
Responsive Web Design & Workflow
Responsive Web Design & WorkflowResponsive Web Design & Workflow
Responsive Web Design & Workflow
 
Pinterest arch summit august 2012 - scaling pinterest
Pinterest arch summit   august 2012 - scaling pinterestPinterest arch summit   august 2012 - scaling pinterest
Pinterest arch summit august 2012 - scaling pinterest
 
How to be a Lean Product Developer? @Agile Riga Day 2012
How to be a Lean Product Developer? @Agile Riga Day 2012How to be a Lean Product Developer? @Agile Riga Day 2012
How to be a Lean Product Developer? @Agile Riga Day 2012
 

Recently uploaded

ScyllaDB Tablets: Rethinking Replication
ScyllaDB Tablets: Rethinking ReplicationScyllaDB Tablets: Rethinking Replication
ScyllaDB Tablets: Rethinking Replication
ScyllaDB
 
PRODUCT LISTING OPTIMIZATION PRESENTATION.pptx
PRODUCT LISTING OPTIMIZATION PRESENTATION.pptxPRODUCT LISTING OPTIMIZATION PRESENTATION.pptx
PRODUCT LISTING OPTIMIZATION PRESENTATION.pptx
christinelarrosa
 
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
manji sharman06
 
"NATO Hackathon Winner: AI-Powered Drug Search", Taras Kloba
"NATO Hackathon Winner: AI-Powered Drug Search",  Taras Kloba"NATO Hackathon Winner: AI-Powered Drug Search",  Taras Kloba
"NATO Hackathon Winner: AI-Powered Drug Search", Taras Kloba
Fwdays
 
From Natural Language to Structured Solr Queries using LLMs
From Natural Language to Structured Solr Queries using LLMsFrom Natural Language to Structured Solr Queries using LLMs
From Natural Language to Structured Solr Queries using LLMs
Sease
 
Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!
Tobias Schneck
 
MySQL InnoDB Storage Engine: Deep Dive - Mydbops
MySQL InnoDB Storage Engine: Deep Dive - MydbopsMySQL InnoDB Storage Engine: Deep Dive - Mydbops
MySQL InnoDB Storage Engine: Deep Dive - Mydbops
Mydbops
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
Neo4j
 
Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |
AstuteBusiness
 
AWS Certified Solutions Architect Associate (SAA-C03)
AWS Certified Solutions Architect Associate (SAA-C03)AWS Certified Solutions Architect Associate (SAA-C03)
AWS Certified Solutions Architect Associate (SAA-C03)
HarpalGohil4
 
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
zjhamm304
 
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeckPoznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
FilipTomaszewski5
 
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance PanelsNorthern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving
 
Y-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PPY-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PP
c5vrf27qcz
 
Christine's Product Research Presentation.pptx
Christine's Product Research Presentation.pptxChristine's Product Research Presentation.pptx
Christine's Product Research Presentation.pptx
christinelarrosa
 
Day 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio FundamentalsDay 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio Fundamentals
UiPathCommunity
 
What is an RPA CoE? Session 1 – CoE Vision
What is an RPA CoE?  Session 1 – CoE VisionWhat is an RPA CoE?  Session 1 – CoE Vision
What is an RPA CoE? Session 1 – CoE Vision
DianaGray10
 
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptxAI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
Sunil Jagani
 
GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)
Javier Junquera
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
Jason Yip
 

Recently uploaded (20)

ScyllaDB Tablets: Rethinking Replication
ScyllaDB Tablets: Rethinking ReplicationScyllaDB Tablets: Rethinking Replication
ScyllaDB Tablets: Rethinking Replication
 
PRODUCT LISTING OPTIMIZATION PRESENTATION.pptx
PRODUCT LISTING OPTIMIZATION PRESENTATION.pptxPRODUCT LISTING OPTIMIZATION PRESENTATION.pptx
PRODUCT LISTING OPTIMIZATION PRESENTATION.pptx
 
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
 
"NATO Hackathon Winner: AI-Powered Drug Search", Taras Kloba
"NATO Hackathon Winner: AI-Powered Drug Search",  Taras Kloba"NATO Hackathon Winner: AI-Powered Drug Search",  Taras Kloba
"NATO Hackathon Winner: AI-Powered Drug Search", Taras Kloba
 
From Natural Language to Structured Solr Queries using LLMs
From Natural Language to Structured Solr Queries using LLMsFrom Natural Language to Structured Solr Queries using LLMs
From Natural Language to Structured Solr Queries using LLMs
 
Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!
 
MySQL InnoDB Storage Engine: Deep Dive - Mydbops
MySQL InnoDB Storage Engine: Deep Dive - MydbopsMySQL InnoDB Storage Engine: Deep Dive - Mydbops
MySQL InnoDB Storage Engine: Deep Dive - Mydbops
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
 
Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |
 
AWS Certified Solutions Architect Associate (SAA-C03)
AWS Certified Solutions Architect Associate (SAA-C03)AWS Certified Solutions Architect Associate (SAA-C03)
AWS Certified Solutions Architect Associate (SAA-C03)
 
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
 
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeckPoznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
 
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance PanelsNorthern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
 
Y-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PPY-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PP
 
Christine's Product Research Presentation.pptx
Christine's Product Research Presentation.pptxChristine's Product Research Presentation.pptx
Christine's Product Research Presentation.pptx
 
Day 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio FundamentalsDay 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio Fundamentals
 
What is an RPA CoE? Session 1 – CoE Vision
What is an RPA CoE?  Session 1 – CoE VisionWhat is an RPA CoE?  Session 1 – CoE Vision
What is an RPA CoE? Session 1 – CoE Vision
 
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptxAI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
 
GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
 

Building Rich User Experiences w/o JavaScript Spaghetti