SlideShare una empresa de Scribd logo
1 de 42
Descargar para leer sin conexión
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

Más contenido relacionado

La actualidad más candente

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
 

La actualidad más candente (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
 

Destacado

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
 

Destacado (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 a 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
 
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
 
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
 
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 a 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
 
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
 
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)
 
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
 

Más de 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
 

Más de 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
 

Último

%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
WSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...masabamasaba
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benonimasabamasaba
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...chiefasafspells
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park masabamasaba
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024VictoriaMetrics
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 

Último (20)

%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
WSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - KeynoteWSO2Con204 - Hard Rock Presentation - Keynote
WSO2Con204 - Hard Rock Presentation - Keynote
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 

Introduce Flux & react in practices (KKBOX)