SlideShare una empresa de Scribd logo
1 de 76
Descargar para leer sin conexión
Aaron Blythe
Continuous Delivery
Pipeline
Aaron Blythe
1
@ablythe
Aaron Blythe
Sr. Automation and System Engineer - Hearst Business Media
http://aaronblythe.org/
Answering Questions
Writing Code
http://www.meetup.com/DevOps-Kansas-City/
Running Meetups
2
@ablythe
3
@ablythe
4
@ablythe
5
@ablythe
6
@ablythe
7
@ablythe
8
@ablythe
9
@ablythe
10
https://twitter.com/ablythe
@ablythe
"Treat your delivery pipeline as the heartbeat of
your organization." @DibbeEdwards #DOES15
11
@ablythe
What is a Pipeline?
12
@ablythe
13
@ablythe
14
@ablythe
15
@ablythe
Mark Burgess
❖ “Every time someone logs into a system interactively, they compromise
everyone’s knowledge of that system”
16
@ablythe
Pipeline Rules
❖ Build binaries only once
❖ Separate environment specifics
❖ Deploy the same way in every environment
❖ Smoke test your deployments
❖ Deploy into a copy of production
❖ Each change should propagate through the pipeline instantly
❖ If any part fails, stop the line
17
@ablythe
18
@ablythe
Thoughtworks Continuous Integration Rules
❖ How to Do It
❖ Developers check out code into their private workspaces.
❖ When done, the commit changes to the repository.
❖ The CI server monitors the repository and checks out changes when they occur.
❖ The CI server builds the system and runs unit and integration tests.
❖ The CI server releases deployable artifacts for testing.
❖ The CI server assigns a build label to the version of the code it just built.
❖ The CI server informs the team of the successful build.
❖ If the build or tests fail, the CI server alerts the team.
❖ The team fix the issue at the earliest opportunity.
❖ Continue to continually integrate and test throughout the project.
❖ Team Responsibilities
❖ Check in frequently
❖ Don’t check in broken code
❖ Don’t check in untested code
❖ Don’t check in when the build is broken
❖ Don’t go home after checking in until the system builds
19
@ablythe
Three Things to Get Right
•Culture
•Workflow
•Tooling
20
@ablythe
Part 1
Culture
2. Workflow
3. Tooling
21
@ablythe
22
@ablythe
Fremont Assembly Plant
http://en.wikipedia.org/wiki/Fremont_Assembly
23
@ablythe
NUMMI plant
http://en.wikipedia.org/wiki/NUMMI
24
@ablythe
Tesla Factory
http://en.wikipedia.org/wiki/Tesla_Factory
25
@ablythe
Netflix Culture Deck
26
@ablythe
Adrian Cockcroft - Formerly Netflix
27
@ablythe
Michael McGarr - Currently Netflix
28
@ablythe
Lean Enterprise
“The long-term value of an enterprise is not
captured by the value of its products and
intellectual property but rather by its ability to
continuously increase the value it provides to
customers-and to create new customers-through
innovation.”
29
@ablythe
30
@ablythe
Mission Control vs. Command and Control
The Prussion Army lost to Napoleon in 1809
Picture courtesy: http://en.wikipedia.org/wiki/Prussian_Army
31
@ablythe
Auftragstaktik
32
@ablythe
2014 State of DevOps Report
9,200 technologists
33
@ablythe
❖ I would recommend this organization as a good place to work.
❖ I have the tools and resources to do my job well.
❖ I am satisfied with my job.
❖ My job makes good use of my skills and abilities.
34
@ablythe
35
@ablythe
36
@ablythe
Part 2
Workflow
3. Tooling
1. Culture
37
@ablythe
38
@ablythe
39
@ablythe
40
@ablythe
41
@ablythe
42
@ablythe
http://assets.en.oreilly.com/1/event/60/Velocity%20Culture%20Presentation.pdf
43
@ablythe
Steve Yegge’s Rant - Summary of Jeff Bezos
❖ 1) All teams will henceforth expose their data and functionality through service interfaces.
❖ 2) Teams must communicate with each other through these interfaces.
❖ 3) There will be no other form of interprocess communication allowed: no direct linking, no direct reads
of another team's data store, no shared-memory model, no back-doors whatsoever. The only
communication allowed is via service interface calls over the network.
❖ 4) It doesn't matter what technology they use. HTTP, Corba, Pubsub, custom protocols -- doesn't matter.
Bezos doesn't care.
❖ 5) All service interfaces, without exception, must be designed from the ground up to be externalizable.
That is to say, the team must plan and design to be able to expose the interface to developers in the
outside world. No exceptions.
❖ 6) Anyone who doesn't do this will be fired.
44
@ablythe
What does that last slide mean?
❖ API!!!!!!
45
@ablythe
http://blog.crisp.se/2013/02/05/yassalsundman/continuous-delivery-vs-continuous-deployment
46
@ablythe
❖ So when can you say you’re doing continuous delivery? I’d say it’s when you
could flip a switch to go to continuous deployment if you decided that was
the best way to deliver value to your customers.
❖ http://continuousdelivery.com/2010/08/continuous-delivery-vs-
continuous-deployment/ - Jez Humble
47
@ablythe
http://blog.crisp.se/2013/02/05/yassalsundman/continuous-delivery-vs-continuous-deployment
48
@ablythe
294 Highlights – Kindle Version
❖ It should always be cheaper to create a new environment than to repair an
old one.
Humble, Jez; Farley, David (2010-07-27). Continuous Delivery: Reliable
Software Releases through Build, Test, and Deployment Automation (Addison-
Wesley Signature Series (Fowler)) (Kindle Location 1633). Pearson Education.
Kindle Edition.
49
@ablythe
Let’s Take a Test!!!!11!!
If your configuration management process is sound, you should be able
to answer “yes” to the following questions:
❖ Could you completely re-create your production system, excluding
production data, from scratch from the version -controlled assets that
you store?
❖ Could you regress to an earlier, known good state of your application?
❖ Can you be sure that each deployed environment in production, in
staging, and in test is set up in precisely the same way?
If not, then your organization is at risk.
50
@ablythe
Gary Gruver - HP Transformation
51
https://medium.com/@aaronblythe/
@ablythe
52
@ablythe
53
@ablythe
54
@ablythe
Command and Control vs. Promise Theory
55
@ablythe
56
@ablythe
Value Stream Mapping
57
@ablythe
Red Mark
58
@ablythe
Kanban to Measure
59
@ablythehttp://www.slideshare.net/dev2ops/dev-ops-kaizen-damon-edwards60
@ablythehttp://www.slideshare.net/dev2ops/dev-ops-kaizen-damon-edwards
61
@ablythehttp://www.slideshare.net/dev2ops/dev-ops-kaizen-damon-edwards
62
@ablythe
Strangler Pattern
https://en.wikipedia.org/wiki/Strangler_fig63
@ablythe
Part 3
Tooling
1. Culture
2. Workflow
64
@ablythe
Continuous Delivery Tools
Workflow PluginDelivery
Many more over the next couple years…
65
@ablythe
Chef Delivery
66
@ablythe
Go (from ThoughtWorks)
67
@ablythe
68
@ablythe
Jenkins
69
@ablythe
Can this actually be done?
70
@ablythe
71
@ablythe
If we delivery faster so what?
72
@ablythe
73
@ablythe
74
@ablythe
Key Takeaways
❖ Focus on culture first and continually
❖ Find largest outlier for lead time, automat that, repeat
❖ Use tooling the developers love and get out of their way
❖ Don’t use big bang; consider the strangler pattern
❖ Use master not branches
75
@ablythe
Reading List
76

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

DOES SFO 2016 - Topo Pal - DevOps at Capital One
DOES SFO 2016 - Topo Pal - DevOps at Capital OneDOES SFO 2016 - Topo Pal - DevOps at Capital One
DOES SFO 2016 - Topo Pal - DevOps at Capital One
 
You only have to change on thing to do the DevOps, everything
You only have to change on thing to do the DevOps, everythingYou only have to change on thing to do the DevOps, everything
You only have to change on thing to do the DevOps, everything
 
The Devops Handbook
The Devops HandbookThe Devops Handbook
The Devops Handbook
 
The What and Why of DevOps - DevOps Cardiff - May 2014
The What and Why of DevOps - DevOps Cardiff - May 2014The What and Why of DevOps - DevOps Cardiff - May 2014
The What and Why of DevOps - DevOps Cardiff - May 2014
 
Top Lessons Learned From The DevOps Handbook
Top Lessons Learned From The DevOps HandbookTop Lessons Learned From The DevOps Handbook
Top Lessons Learned From The DevOps Handbook
 
The benefits of using an APM solution while performance testing
The benefits of using an APM solution while performance testingThe benefits of using an APM solution while performance testing
The benefits of using an APM solution while performance testing
 
Oscon 2013 -Your OSS Project Is now served
Oscon 2013 -Your OSS Project Is now servedOscon 2013 -Your OSS Project Is now served
Oscon 2013 -Your OSS Project Is now served
 
5 Steps for a High-Performing DevOps Culture
5 Steps for a High-Performing DevOps Culture5 Steps for a High-Performing DevOps Culture
5 Steps for a High-Performing DevOps Culture
 
Design Systems and Your Product
Design Systems and Your ProductDesign Systems and Your Product
Design Systems and Your Product
 
Are You Really Using Kanban?
Are You Really Using Kanban?Are You Really Using Kanban?
Are You Really Using Kanban?
 
Scaling to 150,000 Builds a Month... and Beyond
Scaling to 150,000 Builds a Month... and BeyondScaling to 150,000 Builds a Month... and Beyond
Scaling to 150,000 Builds a Month... and Beyond
 
Devops, the future is here, it's just not evenly distributed yet.
Devops, the future is here, it's just not evenly distributed yet.Devops, the future is here, it's just not evenly distributed yet.
Devops, the future is here, it's just not evenly distributed yet.
 
01 why of dev ops - devopsguys - magentys - final
01   why of dev ops - devopsguys - magentys - final01   why of dev ops - devopsguys - magentys - final
01 why of dev ops - devopsguys - magentys - final
 
DevOpsGuys FutureDecoded 2016 - is DevOps the Answer
DevOpsGuys FutureDecoded 2016 - is DevOps the AnswerDevOpsGuys FutureDecoded 2016 - is DevOps the Answer
DevOpsGuys FutureDecoded 2016 - is DevOps the Answer
 
Slam Dunk with Splunk and Stash Data Center
Slam Dunk with Splunk and Stash Data CenterSlam Dunk with Splunk and Stash Data Center
Slam Dunk with Splunk and Stash Data Center
 
Quality Jam 2017: Elise Carmichael and Corey Pyle "Jumpstarting Your Test Aut...
Quality Jam 2017: Elise Carmichael and Corey Pyle "Jumpstarting Your Test Aut...Quality Jam 2017: Elise Carmichael and Corey Pyle "Jumpstarting Your Test Aut...
Quality Jam 2017: Elise Carmichael and Corey Pyle "Jumpstarting Your Test Aut...
 
Quality Jam 2017: Kevin Dunne "Macro Trends and Useful Tools that 'Get It'"
Quality Jam 2017: Kevin Dunne "Macro Trends and Useful Tools that 'Get It'"Quality Jam 2017: Kevin Dunne "Macro Trends and Useful Tools that 'Get It'"
Quality Jam 2017: Kevin Dunne "Macro Trends and Useful Tools that 'Get It'"
 
Cd syd
Cd sydCd syd
Cd syd
 
Devopsguys DevOps 101 for recruiters
Devopsguys   DevOps 101 for recruitersDevopsguys   DevOps 101 for recruiters
Devopsguys DevOps 101 for recruiters
 
The DevOps First Amendment
The DevOps First AmendmentThe DevOps First Amendment
The DevOps First Amendment
 

Destacado

Salud y enfermedad
Salud y enfermedadSalud y enfermedad
Salud y enfermedad
sirkoky
 
Ninos talentosos superdotdos
Ninos talentosos superdotdosNinos talentosos superdotdos
Ninos talentosos superdotdos
manzanetei
 
Enfermedades infecciosas. Javier Arriola
Enfermedades infecciosas. Javier ArriolaEnfermedades infecciosas. Javier Arriola
Enfermedades infecciosas. Javier Arriola
Mª Estela Quintanar
 
Trabajo cmc, tipos de enfermedades
Trabajo cmc, tipos de enfermedadesTrabajo cmc, tipos de enfermedades
Trabajo cmc, tipos de enfermedades
Mª Estela Quintanar
 
Enfermedades intersticiales del pulmón
Enfermedades intersticiales del pulmónEnfermedades intersticiales del pulmón
Enfermedades intersticiales del pulmón
zoccatelli
 
Diapositivas Enfermedades Mentales
Diapositivas Enfermedades MentalesDiapositivas Enfermedades Mentales
Diapositivas Enfermedades Mentales
irenepullugando
 
Salud y Enfermedad. Determinantes de salud. Noción de Riesgo.
Salud y Enfermedad. Determinantes de salud. Noción de Riesgo.Salud y Enfermedad. Determinantes de salud. Noción de Riesgo.
Salud y Enfermedad. Determinantes de salud. Noción de Riesgo.
Mel PMurphy
 

Destacado (20)

La medicina
La medicina La medicina
La medicina
 
Veteran Urges Support of HB 4036
Veteran Urges Support of HB 4036Veteran Urges Support of HB 4036
Veteran Urges Support of HB 4036
 
Salud y enfermedad
Salud y enfermedadSalud y enfermedad
Salud y enfermedad
 
Sanidad en gatos
Sanidad en gatosSanidad en gatos
Sanidad en gatos
 
Colagenosis
ColagenosisColagenosis
Colagenosis
 
Tipos de enfermedad
Tipos de enfermedadTipos de enfermedad
Tipos de enfermedad
 
Ninos talentosos superdotdos
Ninos talentosos superdotdosNinos talentosos superdotdos
Ninos talentosos superdotdos
 
Enfermedades concepto y generalidades puno 2015
Enfermedades concepto y generalidades puno 2015Enfermedades concepto y generalidades puno 2015
Enfermedades concepto y generalidades puno 2015
 
Tipos de enfermedades
Tipos de enfermedadesTipos de enfermedades
Tipos de enfermedades
 
Enfermedades infecciosas. Javier Arriola
Enfermedades infecciosas. Javier ArriolaEnfermedades infecciosas. Javier Arriola
Enfermedades infecciosas. Javier Arriola
 
Científicos riojanos
Científicos riojanosCientíficos riojanos
Científicos riojanos
 
Enfermedades mentales
Enfermedades mentalesEnfermedades mentales
Enfermedades mentales
 
Trabajo cmc, tipos de enfermedades
Trabajo cmc, tipos de enfermedadesTrabajo cmc, tipos de enfermedades
Trabajo cmc, tipos de enfermedades
 
Tipos de enfermedades
Tipos de enfermedadesTipos de enfermedades
Tipos de enfermedades
 
Historia de la Enfermedad
Historia de la  EnfermedadHistoria de la  Enfermedad
Historia de la Enfermedad
 
Enfermedades intersticiales del pulmón
Enfermedades intersticiales del pulmónEnfermedades intersticiales del pulmón
Enfermedades intersticiales del pulmón
 
Patología general
Patología generalPatología general
Patología general
 
Diapositivas Enfermedades Mentales
Diapositivas Enfermedades MentalesDiapositivas Enfermedades Mentales
Diapositivas Enfermedades Mentales
 
Salud y Enfermedad. Determinantes de salud. Noción de Riesgo.
Salud y Enfermedad. Determinantes de salud. Noción de Riesgo.Salud y Enfermedad. Determinantes de salud. Noción de Riesgo.
Salud y Enfermedad. Determinantes de salud. Noción de Riesgo.
 
Concepto salud enfermedad.
Concepto salud enfermedad.Concepto salud enfermedad.
Concepto salud enfermedad.
 

Similar a Creating a Pipeline - LeanAgileKC 2015

DevOps/Flow workshop for agile india 2015
DevOps/Flow workshop for agile india 2015DevOps/Flow workshop for agile india 2015
DevOps/Flow workshop for agile india 2015
Yuval Yeret
 
The Three Pillars of Continuous Delivery - Boston Continuous Delivery Event
The Three Pillars of Continuous Delivery - Boston Continuous Delivery EventThe Three Pillars of Continuous Delivery - Boston Continuous Delivery Event
The Three Pillars of Continuous Delivery - Boston Continuous Delivery Event
XebiaLabs
 

Similar a Creating a Pipeline - LeanAgileKC 2015 (20)

Continuous Delivery: Delivering Client Value at Light Speed - DevCon 2015
Continuous Delivery: Delivering Client Value at Light Speed - DevCon 2015Continuous Delivery: Delivering Client Value at Light Speed - DevCon 2015
Continuous Delivery: Delivering Client Value at Light Speed - DevCon 2015
 
Infrastructure Automation How to Use Chef For DevOps Success
Infrastructure Automation How to Use Chef For DevOps SuccessInfrastructure Automation How to Use Chef For DevOps Success
Infrastructure Automation How to Use Chef For DevOps Success
 
GeeCON 2015 DevOps and the dark side
GeeCON 2015 DevOps and the dark side GeeCON 2015 DevOps and the dark side
GeeCON 2015 DevOps and the dark side
 
Tools, Culture, and Aesthetics: The Art of DevOps
Tools, Culture, and Aesthetics: The Art of DevOpsTools, Culture, and Aesthetics: The Art of DevOps
Tools, Culture, and Aesthetics: The Art of DevOps
 
Tools Won't Fix Your Broken DevOps
Tools Won't Fix Your Broken DevOpsTools Won't Fix Your Broken DevOps
Tools Won't Fix Your Broken DevOps
 
What business benefits from DevOps 2014
What business benefits from DevOps 2014What business benefits from DevOps 2014
What business benefits from DevOps 2014
 
DevOps & the Dark Side 10 ways to convince your team DevOps is a force for good
DevOps & the Dark Side 10 ways to convince your team DevOps is a force for goodDevOps & the Dark Side 10 ways to convince your team DevOps is a force for good
DevOps & the Dark Side 10 ways to convince your team DevOps is a force for good
 
What do the "Cool Kids" know about DevOps?
What do the "Cool Kids" know about DevOps?What do the "Cool Kids" know about DevOps?
What do the "Cool Kids" know about DevOps?
 
Kanban and DevOps
Kanban and DevOpsKanban and DevOps
Kanban and DevOps
 
Building and Scaling High Performing Technology Organizations by Jez Humble a...
Building and Scaling High Performing Technology Organizations by Jez Humble a...Building and Scaling High Performing Technology Organizations by Jez Humble a...
Building and Scaling High Performing Technology Organizations by Jez Humble a...
 
Jan de Vries - How to convince your boss that it is DevOps that he wants
Jan de Vries - How to convince your boss that it is DevOps that he wantsJan de Vries - How to convince your boss that it is DevOps that he wants
Jan de Vries - How to convince your boss that it is DevOps that he wants
 
DevOps/Flow workshop for agile india 2015
DevOps/Flow workshop for agile india 2015DevOps/Flow workshop for agile india 2015
DevOps/Flow workshop for agile india 2015
 
The Latest in DevOps: Elite Performance, Productivity, and Scaling - Google
The Latest in DevOps: Elite Performance, Productivity, and Scaling - GoogleThe Latest in DevOps: Elite Performance, Productivity, and Scaling - Google
The Latest in DevOps: Elite Performance, Productivity, and Scaling - Google
 
IT Scalabilty - Continuous Delivery at scale requires more than just a buildp...
IT Scalabilty - Continuous Delivery at scale requires more than just a buildp...IT Scalabilty - Continuous Delivery at scale requires more than just a buildp...
IT Scalabilty - Continuous Delivery at scale requires more than just a buildp...
 
Agile Islands 2020 - Dashboards and Culture
Agile Islands 2020 - Dashboards and CultureAgile Islands 2020 - Dashboards and Culture
Agile Islands 2020 - Dashboards and Culture
 
Agile Tour London 2018: DASHBOARDS AND CULTURE – HOW OPENNESS CHANGES YOUR BE...
Agile Tour London 2018: DASHBOARDS AND CULTURE – HOW OPENNESS CHANGES YOUR BE...Agile Tour London 2018: DASHBOARDS AND CULTURE – HOW OPENNESS CHANGES YOUR BE...
Agile Tour London 2018: DASHBOARDS AND CULTURE – HOW OPENNESS CHANGES YOUR BE...
 
The Three Pillars of Continuous Delivery - Boston Continuous Delivery Event
The Three Pillars of Continuous Delivery - Boston Continuous Delivery EventThe Three Pillars of Continuous Delivery - Boston Continuous Delivery Event
The Three Pillars of Continuous Delivery - Boston Continuous Delivery Event
 
DevOpsing in a Microsoft World - An experience report from Columbia Sportswear
DevOpsing in a Microsoft World - An experience report from Columbia SportswearDevOpsing in a Microsoft World - An experience report from Columbia Sportswear
DevOpsing in a Microsoft World - An experience report from Columbia Sportswear
 
AmsterdamJUG September 2019 - Better software, faster: Principles of Continuo...
AmsterdamJUG September 2019 - Better software, faster: Principles of Continuo...AmsterdamJUG September 2019 - Better software, faster: Principles of Continuo...
AmsterdamJUG September 2019 - Better software, faster: Principles of Continuo...
 
Den Bosch Java User Group April 2020 - Better software, faster - Principles o...
Den Bosch Java User Group April 2020 - Better software, faster - Principles o...Den Bosch Java User Group April 2020 - Better software, faster - Principles o...
Den Bosch Java User Group April 2020 - Better software, faster - Principles o...
 

Más de Aaron Blythe (8)

Guerrilla Marketing: Selling Splunk Internally to your Enterprise
Guerrilla Marketing: Selling Splunk Internally to your EnterpriseGuerrilla Marketing: Selling Splunk Internally to your Enterprise
Guerrilla Marketing: Selling Splunk Internally to your Enterprise
 
ChefConf 2015 Cleaning up the Kitchen
ChefConf 2015 Cleaning up the KitchenChefConf 2015 Cleaning up the Kitchen
ChefConf 2015 Cleaning up the Kitchen
 
What is devops
What is devopsWhat is devops
What is devops
 
Devops KC October Lightning Talk
Devops KC October Lightning TalkDevops KC October Lightning Talk
Devops KC October Lightning Talk
 
Semantic Versioning Lightning Talk
Semantic Versioning Lightning TalkSemantic Versioning Lightning Talk
Semantic Versioning Lightning Talk
 
Interns What Is DevOps
Interns What Is DevOpsInterns What Is DevOps
Interns What Is DevOps
 
Zabbix: Beyond Thunderdome
Zabbix: Beyond ThunderdomeZabbix: Beyond Thunderdome
Zabbix: Beyond Thunderdome
 
Devops kc meetup_5_20_2013
Devops kc meetup_5_20_2013Devops kc meetup_5_20_2013
Devops kc meetup_5_20_2013
 

Último

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Último (20)

Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 

Creating a Pipeline - LeanAgileKC 2015