SlideShare a Scribd company logo
1 of 42
Download to read offline
Introduce

Flux & React
in practice
Randy Lien
Sr. Front end developer
@randylien
About Me
• Randy Lien
• HTML, CSS, JavaScript, Python
• Backbone/Marionette/React
• @randylien
Preface
• If there are anything I mentioned is not correct,
please feel free to point out.
Agenda
• What is React & Flux
• What is React
• What is Flux
• Case study
• Conclusion
What is React
What is React
• View library created by facebook
• Visual DOM
• Component life cycle
• JSX
JSX
Life Cycle & API
https://www.facebook.com/photo.php?fbid=10154774642145430&set=gm.1491610957781164&type=1&theater
What is Flux
What is Flux
• Application architecture for building user
interfaces
• Unidirectional data flow
• It's more of a pattern rather than a formal
framework
– Dictionary, in your Mac
“The action or process of flowing or flowing out.”
Dr.Brown 

explains
• Flux Capacitor
• Flux = Flow of time.
• Capacitor = Temporary
Storage.
• Flux Capacitor must be
powered by a small Reactor.
• Time space continuum is
circular in nature.
http://backtothefuture.wikia.com/wiki/File:Flux-capacitor-back-to-the-future.jpg
Flux & React
• Flux just like time, it is one
way direction to flow
• Capacitor is Store
• Event trigger from React
• The flow is circular in nature
http://www.8ball.co.uk/media/catalog/product/b/a/back_to_the_future_-_flux_capacitor_-_yel_mens_4_1.jpg
Flux & React
• Flux is an architecture
• Dispatcher
• One direction data flow
• There are many extensions*
for Flux
• React is a library to create View
• Event trigger
• Component life cycle
• Visual DOM
• React is a library to create View
• Event trigger
• Component life cycle
• Visual DOM
• Flux is an architecture
• Dispatcher
• One direction data flow
• There are many extensions*
for Flux
Flux & React
Data flowing
flowing out
Presentation
Flux is circular in nature
http://facebook.github.io/react/img/blog/flux-diagram.png
Store
• Kind of model
• Callback executes Store’s internal methods
• Update data
• It will trigger Store’s change event
• React will get data from Store
• React’s Virtual DOM will handle your data
Important
http://facebook.github.io/react/img/blog/flux-diagram.png
Store & React
store
store store
store
app.js
App get data from Store
app.js
store store store
store
Set Property to your Component
<App player={fluxPlayer} user={fluxUser} />
component
store store store
store
component
component
component
Set Properties to your sub Components
componentstore
component
component
componentstore
store
store
Sub Components get properties
comp
onent
compo
nent
comp
onent
comp
onent
compo
nent
comp
onent
comp
onent
comp
onent
compo
nent
comp
onent
comp
onent
comp
onent
comp
onent
Continue to dispatch properties to sub components
comp
onent
comp
onent
comp
onent
comp
onent
compo
nent
comp
onent
compo
nent
comp
onent
comp
onent
compo
nent
comp
onent
comp
onent
comp
onent
React’s Virtual DOM will handle the value for you
Important
http://facebook.github.io/react/img/blog/flux-diagram.png
Case Study
Use Case 1. Music Player
• Development time: ~4 weeks
• Pure Flux architecture
• 4 Stores (PlayerStore, ChannelStore,
UserStore, AppStore) 30
Components, 40 Constants
DEMO
Use Case 2. Mobile Store
• Development time: ~4 weeks
• Use Fluxxor
• Director as Router
• 9 Stores, 13 Components, 16
Layouts
DEMO
Practices for Flux
• Use console.log in Store
• Data should not be changed in other place.
• Wrap your dynamic React components with tag.
• If you are using 3rd party libraries, you have to
initialise them in componentDidMount.
• If 3rd party library will modify DOM, you should avoid
to assign key on its parent element.
Practices for React
• Use JSX
• Create stateless component
• State is used for internal and Property gives from external.
• Decoupling
• Use shouldComponentUpdate wisely
• Prevent unexpected re-render
• Improve render performance
Conclusion
Conclusion
• Flux is a simple and clear architecture
• Not a framework yet.
• Event driven.
• Everyone should follow the same flow.
• There are many implementations.
Conclusion (cont.)
• React is a view library with Visual DOM
• Developer don’t worry about rendering*
• Has component life cycle & easy API.
• JSX design is good for working on components
and front end designer.
• It’s just JavaScript.
Conclusion (cont.)
• Other things we can do in the future
• Write with ECMAScript 6.
• Using Jest to do testing.
• Functional Reactive Programming should make Flux & React
better.
• Isomorphic App or Server Side Rendering can improve
performance and works for SEO.
• Solution for CSS is working on.
Flux implementation
• http://fluxxor.com/
• https://github.com/spoike/refluxjs
• https://github.com/jmreidy/fluxy
• https://github.com/yahoo/dispatchr
• https://github.com/yahoo/fluxible-app
• https://github.com/kenwheeler/mcfly
• http://deloreanjs.com/
• http://www.jflux.io
Thanks

More Related Content

What's hot

React.js - The Dawn of Virtual DOM
React.js - The Dawn of Virtual DOMReact.js - The Dawn of Virtual DOM
React.js - The Dawn of Virtual DOMJimit Shah
 
Understanding Facebook's React.js
Understanding Facebook's React.jsUnderstanding Facebook's React.js
Understanding Facebook's React.jsFederico Torre
 
Getting Started with React-Nathan Smith
Getting Started with React-Nathan SmithGetting Started with React-Nathan Smith
Getting Started with React-Nathan SmithTandemSeven
 
Building Reactive webapp with React/Flux
Building Reactive webapp with React/FluxBuilding Reactive webapp with React/Flux
Building Reactive webapp with React/FluxKeuller Magalhães
 
React JS: A Secret Preview
React JS: A Secret PreviewReact JS: A Secret Preview
React JS: A Secret Previewvaluebound
 
React JS - A quick introduction tutorial
React JS - A quick introduction tutorialReact JS - A quick introduction tutorial
React JS - A quick introduction tutorialMohammed Fazuluddin
 
Rethinking Best Practices
Rethinking Best PracticesRethinking Best Practices
Rethinking Best Practicesfloydophone
 
ReactJS presentation
ReactJS presentationReactJS presentation
ReactJS presentationThanh Tuong
 
React for Dummies
React for DummiesReact for Dummies
React for DummiesMitch Chen
 

What's hot (20)

React.js - The Dawn of Virtual DOM
React.js - The Dawn of Virtual DOMReact.js - The Dawn of Virtual DOM
React.js - The Dawn of Virtual DOM
 
How to Redux
How to ReduxHow to Redux
How to Redux
 
Understanding Facebook's React.js
Understanding Facebook's React.jsUnderstanding Facebook's React.js
Understanding Facebook's React.js
 
Workshop React.js
Workshop React.jsWorkshop React.js
Workshop React.js
 
Reactjs
Reactjs Reactjs
Reactjs
 
Redux js
Redux jsRedux js
Redux js
 
Getting Started with React-Nathan Smith
Getting Started with React-Nathan SmithGetting Started with React-Nathan Smith
Getting Started with React-Nathan Smith
 
React js
React jsReact js
React js
 
Building Reactive webapp with React/Flux
Building Reactive webapp with React/FluxBuilding Reactive webapp with React/Flux
Building Reactive webapp with React/Flux
 
React JS: A Secret Preview
React JS: A Secret PreviewReact JS: A Secret Preview
React JS: A Secret Preview
 
Using redux
Using reduxUsing redux
Using redux
 
Intro to React
Intro to ReactIntro to React
Intro to React
 
React JS - A quick introduction tutorial
React JS - A quick introduction tutorialReact JS - A quick introduction tutorial
React JS - A quick introduction tutorial
 
React + Redux for Web Developers
React + Redux for Web DevelopersReact + Redux for Web Developers
React + Redux for Web Developers
 
Rethinking Best Practices
Rethinking Best PracticesRethinking Best Practices
Rethinking Best Practices
 
ReactJS presentation
ReactJS presentationReactJS presentation
ReactJS presentation
 
Redux Universal
Redux UniversalRedux Universal
Redux Universal
 
React for Dummies
React for DummiesReact for Dummies
React for Dummies
 
React.js+Redux Workshops
React.js+Redux WorkshopsReact.js+Redux Workshops
React.js+Redux Workshops
 
React js basics
React js basicsReact js basics
React js basics
 

Viewers also liked

MERN Presentation, January 2015
MERN Presentation, January 2015MERN Presentation, January 2015
MERN Presentation, January 2015Barry Dyck
 
React Native Internals
React Native InternalsReact Native Internals
React Native InternalsTadeu Zagallo
 
Formation sécurité routière sensibilisation collective
Formation sécurité routière sensibilisation collectiveFormation sécurité routière sensibilisation collective
Formation sécurité routière sensibilisation collectivePASCOL
 
Digitacion periodo 2
Digitacion periodo 2Digitacion periodo 2
Digitacion periodo 2IETI SD
 
Diplôme de l'Ecole-club Migros: 7 caractéristiques
Diplôme de l'Ecole-club Migros: 7 caractéristiques Diplôme de l'Ecole-club Migros: 7 caractéristiques
Diplôme de l'Ecole-club Migros: 7 caractéristiques Klubschule Migros
 
Tratamiento Hipertermia Maligna
Tratamiento Hipertermia MalignaTratamiento Hipertermia Maligna
Tratamiento Hipertermia Malignatriayvt
 
Como Hacer un Base de Datos
Como Hacer un Base de DatosComo Hacer un Base de Datos
Como Hacer un Base de Datosyaisleth96
 
Roheline printimine
Roheline printimineRoheline printimine
Roheline printimineliisaly
 
EFSLI in brief january 2014
EFSLI in brief january 2014EFSLI in brief january 2014
EFSLI in brief january 2014SILSE Madrid
 
Multi Cover and Resume
Multi Cover and ResumeMulti Cover and Resume
Multi Cover and ResumeVickie Lambert
 
20160113_Infoday TIC-ESP-TRA-Javier Medina
20160113_Infoday TIC-ESP-TRA-Javier Medina20160113_Infoday TIC-ESP-TRA-Javier Medina
20160113_Infoday TIC-ESP-TRA-Javier MedinaRedit
 
Foto Nebot
Foto NebotFoto Nebot
Foto Nebotpavireco
 
Revista: Desde la tradición
Revista: Desde la tradiciónRevista: Desde la tradición
Revista: Desde la tradiciónShukDelMadrij
 
Individual sections development_exercise__1
Individual sections development_exercise__1Individual sections development_exercise__1
Individual sections development_exercise__1lazystudent
 

Viewers also liked (20)

Flux and React.js
Flux and React.jsFlux and React.js
Flux and React.js
 
MERN Presentation, January 2015
MERN Presentation, January 2015MERN Presentation, January 2015
MERN Presentation, January 2015
 
React Native Internals
React Native InternalsReact Native Internals
React Native Internals
 
Flux architecture
Flux architectureFlux architecture
Flux architecture
 
Asturies y cantabria dragui
Asturies y cantabria draguiAsturies y cantabria dragui
Asturies y cantabria dragui
 
Formation sécurité routière sensibilisation collective
Formation sécurité routière sensibilisation collectiveFormation sécurité routière sensibilisation collective
Formation sécurité routière sensibilisation collective
 
Digitacion periodo 2
Digitacion periodo 2Digitacion periodo 2
Digitacion periodo 2
 
Diplôme de l'Ecole-club Migros: 7 caractéristiques
Diplôme de l'Ecole-club Migros: 7 caractéristiques Diplôme de l'Ecole-club Migros: 7 caractéristiques
Diplôme de l'Ecole-club Migros: 7 caractéristiques
 
Tratamiento Hipertermia Maligna
Tratamiento Hipertermia MalignaTratamiento Hipertermia Maligna
Tratamiento Hipertermia Maligna
 
Como Hacer un Base de Datos
Como Hacer un Base de DatosComo Hacer un Base de Datos
Como Hacer un Base de Datos
 
Roheline printimine
Roheline printimineRoheline printimine
Roheline printimine
 
EFSLI in brief january 2014
EFSLI in brief january 2014EFSLI in brief january 2014
EFSLI in brief january 2014
 
Haider Ruf Oktober 2009
Haider Ruf Oktober 2009Haider Ruf Oktober 2009
Haider Ruf Oktober 2009
 
Multi Cover and Resume
Multi Cover and ResumeMulti Cover and Resume
Multi Cover and Resume
 
20160113_Infoday TIC-ESP-TRA-Javier Medina
20160113_Infoday TIC-ESP-TRA-Javier Medina20160113_Infoday TIC-ESP-TRA-Javier Medina
20160113_Infoday TIC-ESP-TRA-Javier Medina
 
Foto Nebot
Foto NebotFoto Nebot
Foto Nebot
 
PLAYAS DE CÁDIZ
PLAYAS DE CÁDIZPLAYAS DE CÁDIZ
PLAYAS DE CÁDIZ
 
Revista: Desde la tradición
Revista: Desde la tradiciónRevista: Desde la tradición
Revista: Desde la tradición
 
Uso de flamintex
Uso de flamintexUso de flamintex
Uso de flamintex
 
Individual sections development_exercise__1
Individual sections development_exercise__1Individual sections development_exercise__1
Individual sections development_exercise__1
 

Similar to Introduce Flux & react in practices (KKBOX)

O365 Developer Bootcamp NJ 2018 - Material
O365 Developer Bootcamp NJ 2018 - MaterialO365 Developer Bootcamp NJ 2018 - Material
O365 Developer Bootcamp NJ 2018 - MaterialThomas Daly
 
Introduction to React native
Introduction to React nativeIntroduction to React native
Introduction to React nativeDhaval Barot
 
They why behind php frameworks
They why behind php frameworksThey why behind php frameworks
They why behind php frameworksKirk Madera
 
Learning React - I
Learning React - ILearning React - I
Learning React - IMitch Chen
 
Supercharge Your SharePoint Framework Webpart with React
Supercharge Your SharePoint Framework Webpart with ReactSupercharge Your SharePoint Framework Webpart with React
Supercharge Your SharePoint Framework Webpart with ReactEric Overfield
 
An evening with React Native
An evening with React NativeAn evening with React Native
An evening with React NativeMike Melusky
 
All about that reactive ui
All about that reactive uiAll about that reactive ui
All about that reactive uiPaul van Zyl
 
WTF: Where To Focus when you take over a Drupal project
WTF: Where To Focus when you take over a Drupal projectWTF: Where To Focus when you take over a Drupal project
WTF: Where To Focus when you take over a Drupal projectSymetris
 
Professionalizing the Front-end
Professionalizing the Front-endProfessionalizing the Front-end
Professionalizing the Front-endJordi Anguela
 
React Native and the future of web technology (Mark Wilcox) - GreeceJS #15
React Native and the future of web technology (Mark Wilcox) - GreeceJS #15React Native and the future of web technology (Mark Wilcox) - GreeceJS #15
React Native and the future of web technology (Mark Wilcox) - GreeceJS #15GreeceJS
 
Reconciling ReactJS as a View Layer Replacement (MidwestJS 2014)
Reconciling ReactJS as a View Layer Replacement (MidwestJS 2014)Reconciling ReactJS as a View Layer Replacement (MidwestJS 2014)
Reconciling ReactJS as a View Layer Replacement (MidwestJS 2014)Zach Lendon
 
MidwestJS 2014 Reconciling ReactJS as a View Layer Replacement
MidwestJS 2014 Reconciling ReactJS as a View Layer ReplacementMidwestJS 2014 Reconciling ReactJS as a View Layer Replacement
MidwestJS 2014 Reconciling ReactJS as a View Layer ReplacementZach Lendon
 
Learn from my Mistakes - Building Better Solutions in SPFx
Learn from my  Mistakes - Building Better Solutions in SPFxLearn from my  Mistakes - Building Better Solutions in SPFx
Learn from my Mistakes - Building Better Solutions in SPFxThomas Daly
 
Automated Visual Regression Testing by Dave Sadlon
Automated Visual Regression Testing by Dave SadlonAutomated Visual Regression Testing by Dave Sadlon
Automated Visual Regression Testing by Dave SadlonQA or the Highway
 
Introduction to react native with redux
Introduction to react native with reduxIntroduction to react native with redux
Introduction to react native with reduxMike Melusky
 

Similar to Introduce Flux & react in practices (KKBOX) (20)

O365 Developer Bootcamp NJ 2018 - Material
O365 Developer Bootcamp NJ 2018 - MaterialO365 Developer Bootcamp NJ 2018 - Material
O365 Developer Bootcamp NJ 2018 - Material
 
Fluxible
FluxibleFluxible
Fluxible
 
Introduction to React native
Introduction to React nativeIntroduction to React native
Introduction to React native
 
React.js at Cortex
React.js at CortexReact.js at Cortex
React.js at Cortex
 
They why behind php frameworks
They why behind php frameworksThey why behind php frameworks
They why behind php frameworks
 
Learning React - I
Learning React - ILearning React - I
Learning React - I
 
Supercharge Your SharePoint Framework Webpart with React
Supercharge Your SharePoint Framework Webpart with ReactSupercharge Your SharePoint Framework Webpart with React
Supercharge Your SharePoint Framework Webpart with React
 
An evening with React Native
An evening with React NativeAn evening with React Native
An evening with React Native
 
React101 v3
React101 v3React101 v3
React101 v3
 
All about that reactive ui
All about that reactive uiAll about that reactive ui
All about that reactive ui
 
Redux Tech Talk
Redux Tech TalkRedux Tech Talk
Redux Tech Talk
 
WTF: Where To Focus when you take over a Drupal project
WTF: Where To Focus when you take over a Drupal projectWTF: Where To Focus when you take over a Drupal project
WTF: Where To Focus when you take over a Drupal project
 
Professionalizing the Front-end
Professionalizing the Front-endProfessionalizing the Front-end
Professionalizing the Front-end
 
React Native and the future of web technology (Mark Wilcox) - GreeceJS #15
React Native and the future of web technology (Mark Wilcox) - GreeceJS #15React Native and the future of web technology (Mark Wilcox) - GreeceJS #15
React Native and the future of web technology (Mark Wilcox) - GreeceJS #15
 
Reconciling ReactJS as a View Layer Replacement (MidwestJS 2014)
Reconciling ReactJS as a View Layer Replacement (MidwestJS 2014)Reconciling ReactJS as a View Layer Replacement (MidwestJS 2014)
Reconciling ReactJS as a View Layer Replacement (MidwestJS 2014)
 
MidwestJS 2014 Reconciling ReactJS as a View Layer Replacement
MidwestJS 2014 Reconciling ReactJS as a View Layer ReplacementMidwestJS 2014 Reconciling ReactJS as a View Layer Replacement
MidwestJS 2014 Reconciling ReactJS as a View Layer Replacement
 
Learn from my Mistakes - Building Better Solutions in SPFx
Learn from my  Mistakes - Building Better Solutions in SPFxLearn from my  Mistakes - Building Better Solutions in SPFx
Learn from my Mistakes - Building Better Solutions in SPFx
 
Automated Visual Regression Testing by Dave Sadlon
Automated Visual Regression Testing by Dave SadlonAutomated Visual Regression Testing by Dave Sadlon
Automated Visual Regression Testing by Dave Sadlon
 
React Native Firebase
React Native FirebaseReact Native Firebase
React Native Firebase
 
Introduction to react native with redux
Introduction to react native with reduxIntroduction to react native with redux
Introduction to react native with redux
 

More from Hsuan Fu Lien

The Ideas of Clojure - Things I learn from Clojure
The Ideas of Clojure - Things I learn from ClojureThe Ideas of Clojure - Things I learn from Clojure
The Ideas of Clojure - Things I learn from ClojureHsuan Fu Lien
 
Django Girls 2015 - CSS
Django Girls 2015 - CSSDjango Girls 2015 - CSS
Django Girls 2015 - CSSHsuan Fu Lien
 
Django Girls 2015 - HTML
Django Girls 2015 -  HTMLDjango Girls 2015 -  HTML
Django Girls 2015 - HTMLHsuan Fu Lien
 
Immutable, performance and components communication
Immutable, performance and components communicationImmutable, performance and components communication
Immutable, performance and components communicationHsuan Fu Lien
 
What is the next step for a front end beginner
What is the next step for a front end beginnerWhat is the next step for a front end beginner
What is the next step for a front end beginnerHsuan Fu Lien
 
Understand front end developer
Understand front end developerUnderstand front end developer
Understand front end developerHsuan Fu Lien
 
UI Engineering Introduction
UI Engineering IntroductionUI Engineering Introduction
UI Engineering IntroductionHsuan Fu Lien
 
Using Yeoman to develop Web App
Using Yeoman to develop Web AppUsing Yeoman to develop Web App
Using Yeoman to develop Web AppHsuan Fu Lien
 

More from Hsuan Fu Lien (9)

The Ideas of Clojure - Things I learn from Clojure
The Ideas of Clojure - Things I learn from ClojureThe Ideas of Clojure - Things I learn from Clojure
The Ideas of Clojure - Things I learn from Clojure
 
Django Girls 2015 - CSS
Django Girls 2015 - CSSDjango Girls 2015 - CSS
Django Girls 2015 - CSS
 
Django Girls 2015 - HTML
Django Girls 2015 -  HTMLDjango Girls 2015 -  HTML
Django Girls 2015 - HTML
 
React.JS Conf & F8
React.JS Conf & F8React.JS Conf & F8
React.JS Conf & F8
 
Immutable, performance and components communication
Immutable, performance and components communicationImmutable, performance and components communication
Immutable, performance and components communication
 
What is the next step for a front end beginner
What is the next step for a front end beginnerWhat is the next step for a front end beginner
What is the next step for a front end beginner
 
Understand front end developer
Understand front end developerUnderstand front end developer
Understand front end developer
 
UI Engineering Introduction
UI Engineering IntroductionUI Engineering Introduction
UI Engineering Introduction
 
Using Yeoman to develop Web App
Using Yeoman to develop Web AppUsing Yeoman to develop Web App
Using Yeoman to develop Web App
 

Recently uploaded

The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 

Recently uploaded (20)

The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 

Introduce Flux & react in practices (KKBOX)