SlideShare a Scribd company logo
1 of 161
Download to read offline
Test Your Shit



Friday, July 22, 11
Test Your Shit
                           ...please




Friday, July 22, 11
bob remeika



Friday, July 22, 11
foobarfighter
                      (twitter, github and freenode)




Friday, July 22, 11
i work at




Friday, July 22, 11
larry wall is my jesus



Friday, July 22, 11
so testing...



Friday, July 22, 11
so testing... why?



Friday, July 22, 11
your codebase will
                            evolve


Friday, July 22, 11
your priorities will
                           change


Friday, July 22, 11
but you already knew
                              that


Friday, July 22, 11
that means your code
                           will change



Friday, July 22, 11
that means your code
                           will change
                              often




Friday, July 22, 11
so what are you going
                         to do about it?


Friday, July 22, 11
some of you will do
                           nothing


Friday, July 22, 11
you will fail



Friday, July 22, 11
unless you’re
                      facebook ;-)


Friday, July 22, 11
you’re not facebook



Friday, July 22, 11
you will hire new
                          people


Friday, July 22, 11
they will break things



Friday, July 22, 11
tests help them ramp
                                up


Friday, July 22, 11
better codez



Friday, July 22, 11
tests force decoupling



Friday, July 22, 11
separate the shit out of
                          those concerns


Friday, July 22, 11
tests at yammer
                          a brief case study




Friday, July 22, 11
just ship™



Friday, July 22, 11
just ship™
                      we launch features... not tests




Friday, July 22, 11
features are why we are
                       having success


Friday, July 22, 11
but things are changing



Friday, July 22, 11
stability matters



Friday, July 22, 11
speed matters



Friday, July 22, 11
quality matters



Friday, July 22, 11
we share code
                        internally


Friday, July 22, 11
we have a lot of paying
                         customers now


Friday, July 22, 11
they are enterprises



Friday, July 22, 11
breaking them is not
                              cool


Friday, July 22, 11
‘this.updateMessageList’
                           is not a method



Friday, July 22, 11
‘this.updateMessageList’
                           is not a method
                         you didn’t even run that code????????!?!!?!




Friday, July 22, 11
how could we have
                         caught that?



Friday, July 22, 11
how could we have
                         caught that?
                       we only had three javascript engineers




Friday, July 22, 11
our codebase was
                           growing


Friday, July 22, 11
we needed to be more
                             stable


Friday, July 22, 11
we needed some
                          controls


Friday, July 22, 11
we needed some more
                              beer


Friday, July 22, 11
so now we have tests



Friday, July 22, 11
(insert graph)



Friday, July 22, 11
fewer face palms



Friday, July 22, 11
better reliability



Friday, July 22, 11
improved new
                      employee ramp up


Friday, July 22, 11
fearless refactoring



Friday, July 22, 11
because we rarely get it
                        right the first time


Friday, July 22, 11
so testing...



Friday, July 22, 11
so testing... how?



Friday, July 22, 11
i can’t cover everything



Friday, July 22, 11
stop!



Friday, July 22, 11
go!



Friday, July 22, 11
you need a ci
                      environment


Friday, July 22, 11
you might need unit
                             tests


Friday, July 22, 11
you definitely need
                        functional tests


Friday, July 22, 11
(c)ontinuous
                      (i)ntegration


Friday, July 22, 11
i’m a street light




                       hi, i’m paul                        hi my name is peter




                      we have this setup at yammer


Friday, July 22, 11
if you are writing tests
                          for the browser


Friday, July 22, 11
require(‘saucelabs’)



Friday, July 22, 11
use your vc money



Friday, July 22, 11
we use saucelabs at
                           yammer


Friday, July 22, 11
Friday, July 22, 11
because it is awesome



Friday, July 22, 11
awesomesauce



Friday, July 22, 11
how do you know if
                      you need unit tests?


Friday, July 22, 11
Friday, July 22, 11
unit tests



Friday, July 22, 11
convenience to the
                          developer


Friday, July 22, 11
convenience to the
                        next developer


Friday, July 22, 11
writing libraries



Friday, July 22, 11
require(‘unit tests’)
                            // doesn’t run




Friday, July 22, 11
require(‘foounit’)
                       // totally runs... teh asum




Friday, July 22, 11
foounit
                       a brief intro




Friday, July 22, 11
another javascript test
                           framework



Friday, July 22, 11
another javascript test
                           framework
                                really?




Friday, July 22, 11
... ya but



Friday, July 22, 11
it has some lofty goals



Friday, July 22, 11
cross host



Friday, July 22, 11
test shared code on
                          client/server



Friday, July 22, 11
test shared code on
                          client/server
                        these shenanigans exist at yammer




Friday, July 22, 11
test shared code on
                          client/server
                        these shenanigans exist at yammer
                        i’m not gonna lie, this is hard to do




Friday, July 22, 11
beautiful syntax



Friday, July 22, 11
not owned by the man



Friday, July 22, 11
where it’s going



Friday, July 22, 11
great ehraaahs



Friday, July 22, 11
great doc generation



Friday, July 22, 11
jellyfish integration



Friday, July 22, 11
ui sandboxing



Friday, July 22, 11
easy to use ui



Friday, July 22, 11
turn into a jet and fly
                          into the sun


Friday, July 22, 11
var f = require(‘foounit’).globalize();

                  describe(‘this is a group’, function (){
                    it(‘has a test’, function (){
                      expect(myTest).to(runEverywhere);
                    });
                  });

                  f.run();


Friday, July 22, 11
it’s a lot like jasmine



Friday, July 22, 11
it’s a lot like jasmine
                           there’s reasons for that




Friday, July 22, 11
check it out
                        http://foounit.org




Friday, July 22, 11
functional tests



Friday, July 22, 11
test end result



Friday, July 22, 11
test your application



Friday, July 22, 11
test what the user sees



Friday, July 22, 11
require(‘jellyfish’)



Friday, July 22, 11
h8rz g0n h8



Friday, July 22, 11
h8rz g0n h8
                        testing fallacies




Friday, July 22, 11
fallacy #1



Friday, July 22, 11
people will tell you that
                       you don’t need tests


Friday, July 22, 11
let’s analyze that



Friday, July 22, 11
successful open source
                        projects have tests


Friday, July 22, 11
rails



Friday, July 22, 11
one million tests



Friday, July 22, 11
jquery



Friday, July 22, 11
1336 tests



Friday, July 22, 11
dojo



Friday, July 22, 11
1337 tests



Friday, July 22, 11
1337 tests
                      one more than jquery cause it’s better




Friday, July 22, 11
1337 tests
                      one more than jquery cause it’s better
                                      l337




Friday, July 22, 11
you want to be
                      successful, right?



Friday, July 22, 11
you want to be
                      successful, right?
                          write tests




Friday, July 22, 11
if you really care about
                            the numbers



Friday, July 22, 11
if you really care about
                            the numbers
                           you can run the suites yourself




Friday, July 22, 11
fallacy #2



Friday, July 22, 11
you don’t need to test
                           view code



Friday, July 22, 11
you don’t need to test
                           view code
                         if your ‘view code’ is just html... cool




Friday, July 22, 11
you don’t need to test
                           view code
                          if your ‘view code’ is just html... cool
                        but you are building a big client side app




Friday, July 22, 11
do you consider jquery
                      to be just ‘view code’?


Friday, July 22, 11
no



Friday, July 22, 11
it has a lot of tests



Friday, July 22, 11
because it’s
                      complicated


Friday, July 22, 11
complex ui interactions
                      are not just ‘view code’


Friday, July 22, 11
fallacy #3



Friday, July 22, 11
tests slow you down



Friday, July 22, 11
until the next guy
                       needs to change
                          something


Friday, July 22, 11
until you spend hours
                            face palming


Friday, July 22, 11
until you need to test
                        error conditions


Friday, July 22, 11
fallacy #4



Friday, July 22, 11
you need 100%
                         coverage


Friday, July 22, 11
you aren’t building the
                          space shuttle


Friday, July 22, 11
you don’t even need
                             90%


Friday, July 22, 11
you need enough to
                      help you refactor with
                            confidence


Friday, July 22, 11
it’s hard to find the
                             balance


Friday, July 22, 11
but you should try



Friday, July 22, 11
what’s a good unit test?



Friday, July 22, 11
tdd/bdd dictates that
                         you should test
                           everything


Friday, July 22, 11
sure you can do that



Friday, July 22, 11
... if you have that
                              culture


Friday, July 22, 11
i’m looking at you
                            pivots


Friday, July 22, 11
but there are
                      diminishing returns


Friday, July 22, 11
this.prototype.start = function (){
                        if (this.isStarted()){ return; }
                        this._start()
                      }




Friday, July 22, 11
find a happy place

Friday, July 22, 11
some things are hard to
                               test


Friday, July 22, 11
your mileage will vary



Friday, July 22, 11
emulating xhr



Friday, July 22, 11
multi-step interactions



Friday, July 22, 11
consider integration
                             tests


Friday, July 22, 11
mock services ftw



Friday, July 22, 11
please talk to me



Friday, July 22, 11
or contact me online



Friday, July 22, 11
i actually like people



Friday, July 22, 11
foobarfighter
                      (twitter, github and freenode)




Friday, July 22, 11
foounit
                      http://foounit.org




Friday, July 22, 11

More Related Content

More from Sauce Labs

Using Axe to Add Accessibility Checks to Your Existing Selenium Tests
Using Axe to Add Accessibility Checks to Your Existing Selenium TestsUsing Axe to Add Accessibility Checks to Your Existing Selenium Tests
Using Axe to Add Accessibility Checks to Your Existing Selenium TestsSauce Labs
 
How Open Source Helps to Bring Back Product Obsession
How Open Source Helps to Bring Back Product ObsessionHow Open Source Helps to Bring Back Product Obsession
How Open Source Helps to Bring Back Product ObsessionSauce Labs
 
Webinar: A Sneak Peek at Selenium 4 with Simon Stewart
Webinar: A Sneak Peek at Selenium 4 with Simon StewartWebinar: A Sneak Peek at Selenium 4 with Simon Stewart
Webinar: A Sneak Peek at Selenium 4 with Simon StewartSauce Labs
 
[Deu] Test Automatisierung Mit Web Driver.io
[Deu] Test Automatisierung Mit Web Driver.io[Deu] Test Automatisierung Mit Web Driver.io
[Deu] Test Automatisierung Mit Web Driver.ioSauce Labs
 
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...Sauce Labs
 
Accelerating Your Digital Agenda with Continuous Testing ft. Forrester
Accelerating Your Digital Agenda with Continuous Testing ft. ForresterAccelerating Your Digital Agenda with Continuous Testing ft. Forrester
Accelerating Your Digital Agenda with Continuous Testing ft. ForresterSauce Labs
 
How to Measure Success in Continuous Testing
How to Measure Success in Continuous TestingHow to Measure Success in Continuous Testing
How to Measure Success in Continuous TestingSauce Labs
 
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...Sauce Labs
 
5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test Automation5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test AutomationSauce Labs
 
Sauce Labs Webinar: Rising Importance of Software Testing
Sauce Labs Webinar: Rising Importance of Software TestingSauce Labs Webinar: Rising Importance of Software Testing
Sauce Labs Webinar: Rising Importance of Software TestingSauce Labs
 
BDD With Selenide by Hima Bindu Peteti
BDD With Selenide by Hima Bindu PetetiBDD With Selenide by Hima Bindu Peteti
BDD With Selenide by Hima Bindu PetetiSauce Labs
 
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...Sauce Labs
 
Continuous Delivery for "Mature" Codebases by Melisa Benua
Continuous Delivery for "Mature" Codebases by Melisa BenuaContinuous Delivery for "Mature" Codebases by Melisa Benua
Continuous Delivery for "Mature" Codebases by Melisa BenuaSauce Labs
 
Building Automation Engineers From Scratch by Jenny Bramble
Building Automation Engineers From Scratch by Jenny BrambleBuilding Automation Engineers From Scratch by Jenny Bramble
Building Automation Engineers From Scratch by Jenny BrambleSauce Labs
 
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha Coffman
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha CoffmanAutomated Testing at The Speed of Headless by Alissa Lydon and Samantha Coffman
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha CoffmanSauce Labs
 
Building The Blocks of Trust in Automation by Sneha Viswalingam
Building The Blocks of Trust in Automation by Sneha ViswalingamBuilding The Blocks of Trust in Automation by Sneha Viswalingam
Building The Blocks of Trust in Automation by Sneha ViswalingamSauce Labs
 
What's that smell? Tidying Up our Test Code by Angie Jones
What's that smell? Tidying Up our Test Code by Angie JonesWhat's that smell? Tidying Up our Test Code by Angie Jones
What's that smell? Tidying Up our Test Code by Angie JonesSauce Labs
 
Wait, That's Not Right by Troy Walsh
Wait, That's Not Right by Troy WalshWait, That's Not Right by Troy Walsh
Wait, That's Not Right by Troy WalshSauce Labs
 
Using Kubernetes to Host Sauce Connect Tunnels by Morgan Vergara
Using Kubernetes to Host Sauce Connect Tunnels by Morgan VergaraUsing Kubernetes to Host Sauce Connect Tunnels by Morgan Vergara
Using Kubernetes to Host Sauce Connect Tunnels by Morgan VergaraSauce Labs
 
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...Sauce Labs
 

More from Sauce Labs (20)

Using Axe to Add Accessibility Checks to Your Existing Selenium Tests
Using Axe to Add Accessibility Checks to Your Existing Selenium TestsUsing Axe to Add Accessibility Checks to Your Existing Selenium Tests
Using Axe to Add Accessibility Checks to Your Existing Selenium Tests
 
How Open Source Helps to Bring Back Product Obsession
How Open Source Helps to Bring Back Product ObsessionHow Open Source Helps to Bring Back Product Obsession
How Open Source Helps to Bring Back Product Obsession
 
Webinar: A Sneak Peek at Selenium 4 with Simon Stewart
Webinar: A Sneak Peek at Selenium 4 with Simon StewartWebinar: A Sneak Peek at Selenium 4 with Simon Stewart
Webinar: A Sneak Peek at Selenium 4 with Simon Stewart
 
[Deu] Test Automatisierung Mit Web Driver.io
[Deu] Test Automatisierung Mit Web Driver.io[Deu] Test Automatisierung Mit Web Driver.io
[Deu] Test Automatisierung Mit Web Driver.io
 
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...
Accelerating Innovation: Leveraging Open Source to Optimize Your Shift-Left I...
 
Accelerating Your Digital Agenda with Continuous Testing ft. Forrester
Accelerating Your Digital Agenda with Continuous Testing ft. ForresterAccelerating Your Digital Agenda with Continuous Testing ft. Forrester
Accelerating Your Digital Agenda with Continuous Testing ft. Forrester
 
How to Measure Success in Continuous Testing
How to Measure Success in Continuous TestingHow to Measure Success in Continuous Testing
How to Measure Success in Continuous Testing
 
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...
From Zero to 2.7 Million - How Verizon Media Embraced Open Source to Accelera...
 
5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test Automation5 Steps to Jump Start Your Test Automation
5 Steps to Jump Start Your Test Automation
 
Sauce Labs Webinar: Rising Importance of Software Testing
Sauce Labs Webinar: Rising Importance of Software TestingSauce Labs Webinar: Rising Importance of Software Testing
Sauce Labs Webinar: Rising Importance of Software Testing
 
BDD With Selenide by Hima Bindu Peteti
BDD With Selenide by Hima Bindu PetetiBDD With Selenide by Hima Bindu Peteti
BDD With Selenide by Hima Bindu Peteti
 
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...
Closer To the Metal - Why and How We Use XCTest and Espresso by Mario Negro P...
 
Continuous Delivery for "Mature" Codebases by Melisa Benua
Continuous Delivery for "Mature" Codebases by Melisa BenuaContinuous Delivery for "Mature" Codebases by Melisa Benua
Continuous Delivery for "Mature" Codebases by Melisa Benua
 
Building Automation Engineers From Scratch by Jenny Bramble
Building Automation Engineers From Scratch by Jenny BrambleBuilding Automation Engineers From Scratch by Jenny Bramble
Building Automation Engineers From Scratch by Jenny Bramble
 
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha Coffman
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha CoffmanAutomated Testing at The Speed of Headless by Alissa Lydon and Samantha Coffman
Automated Testing at The Speed of Headless by Alissa Lydon and Samantha Coffman
 
Building The Blocks of Trust in Automation by Sneha Viswalingam
Building The Blocks of Trust in Automation by Sneha ViswalingamBuilding The Blocks of Trust in Automation by Sneha Viswalingam
Building The Blocks of Trust in Automation by Sneha Viswalingam
 
What's that smell? Tidying Up our Test Code by Angie Jones
What's that smell? Tidying Up our Test Code by Angie JonesWhat's that smell? Tidying Up our Test Code by Angie Jones
What's that smell? Tidying Up our Test Code by Angie Jones
 
Wait, That's Not Right by Troy Walsh
Wait, That's Not Right by Troy WalshWait, That's Not Right by Troy Walsh
Wait, That's Not Right by Troy Walsh
 
Using Kubernetes to Host Sauce Connect Tunnels by Morgan Vergara
Using Kubernetes to Host Sauce Connect Tunnels by Morgan VergaraUsing Kubernetes to Host Sauce Connect Tunnels by Morgan Vergara
Using Kubernetes to Host Sauce Connect Tunnels by Morgan Vergara
 
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...
The Push From Within - A Journey of Transformation at Walmart Labs by Claude ...
 

Recently uploaded

NIST Cybersecurity Framework (CSF) 2.0 Workshop
NIST Cybersecurity Framework (CSF) 2.0 WorkshopNIST Cybersecurity Framework (CSF) 2.0 Workshop
NIST Cybersecurity Framework (CSF) 2.0 WorkshopBachir Benyammi
 
COMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a WebsiteCOMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a Websitedgelyza
 
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfUiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfDianaGray10
 
Do we need a new standard for visualizing the invisible?
Do we need a new standard for visualizing the invisible?Do we need a new standard for visualizing the invisible?
Do we need a new standard for visualizing the invisible?SANGHEE SHIN
 
Cybersecurity Workshop #1.pptx
Cybersecurity Workshop #1.pptxCybersecurity Workshop #1.pptx
Cybersecurity Workshop #1.pptxGDSC PJATK
 
UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6DianaGray10
 
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAAnypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAshyamraj55
 
Videogame localization & technology_ how to enhance the power of translation.pdf
Videogame localization & technology_ how to enhance the power of translation.pdfVideogame localization & technology_ how to enhance the power of translation.pdf
Videogame localization & technology_ how to enhance the power of translation.pdfinfogdgmi
 
Things you didn't know you can use in your Salesforce
Things you didn't know you can use in your SalesforceThings you didn't know you can use in your Salesforce
Things you didn't know you can use in your SalesforceMartin Humpolec
 
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdfIaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdfDaniel Santiago Silva Capera
 
KubeConEU24-Monitoring Kubernetes and Cloud Spend with OpenCost
KubeConEU24-Monitoring Kubernetes and Cloud Spend with OpenCostKubeConEU24-Monitoring Kubernetes and Cloud Spend with OpenCost
KubeConEU24-Monitoring Kubernetes and Cloud Spend with OpenCostMatt Ray
 
Linked Data in Production: Moving Beyond Ontologies
Linked Data in Production: Moving Beyond OntologiesLinked Data in Production: Moving Beyond Ontologies
Linked Data in Production: Moving Beyond OntologiesDavid Newbury
 
Machine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfMachine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfAijun Zhang
 
UiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPathCommunity
 
Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxMatsuo Lab
 
Nanopower In Semiconductor Industry.pdf
Nanopower  In Semiconductor Industry.pdfNanopower  In Semiconductor Industry.pdf
Nanopower In Semiconductor Industry.pdfPedro Manuel
 
Designing A Time bound resource download URL
Designing A Time bound resource download URLDesigning A Time bound resource download URL
Designing A Time bound resource download URLRuncy Oommen
 
Digital magic. A small project for controlling smart light bulbs.
Digital magic. A small project for controlling smart light bulbs.Digital magic. A small project for controlling smart light bulbs.
Digital magic. A small project for controlling smart light bulbs.francesco barbera
 
Comparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioComparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioChristian Posta
 
Bird eye's view on Camunda open source ecosystem
Bird eye's view on Camunda open source ecosystemBird eye's view on Camunda open source ecosystem
Bird eye's view on Camunda open source ecosystemAsko Soukka
 

Recently uploaded (20)

NIST Cybersecurity Framework (CSF) 2.0 Workshop
NIST Cybersecurity Framework (CSF) 2.0 WorkshopNIST Cybersecurity Framework (CSF) 2.0 Workshop
NIST Cybersecurity Framework (CSF) 2.0 Workshop
 
COMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a WebsiteCOMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a Website
 
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfUiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
 
Do we need a new standard for visualizing the invisible?
Do we need a new standard for visualizing the invisible?Do we need a new standard for visualizing the invisible?
Do we need a new standard for visualizing the invisible?
 
Cybersecurity Workshop #1.pptx
Cybersecurity Workshop #1.pptxCybersecurity Workshop #1.pptx
Cybersecurity Workshop #1.pptx
 
UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6
 
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAAnypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
 
Videogame localization & technology_ how to enhance the power of translation.pdf
Videogame localization & technology_ how to enhance the power of translation.pdfVideogame localization & technology_ how to enhance the power of translation.pdf
Videogame localization & technology_ how to enhance the power of translation.pdf
 
Things you didn't know you can use in your Salesforce
Things you didn't know you can use in your SalesforceThings you didn't know you can use in your Salesforce
Things you didn't know you can use in your Salesforce
 
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdfIaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
IaC & GitOps in a Nutshell - a FridayInANuthshell Episode.pdf
 
KubeConEU24-Monitoring Kubernetes and Cloud Spend with OpenCost
KubeConEU24-Monitoring Kubernetes and Cloud Spend with OpenCostKubeConEU24-Monitoring Kubernetes and Cloud Spend with OpenCost
KubeConEU24-Monitoring Kubernetes and Cloud Spend with OpenCost
 
Linked Data in Production: Moving Beyond Ontologies
Linked Data in Production: Moving Beyond OntologiesLinked Data in Production: Moving Beyond Ontologies
Linked Data in Production: Moving Beyond Ontologies
 
Machine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfMachine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdf
 
UiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation DevelopersUiPath Community: AI for UiPath Automation Developers
UiPath Community: AI for UiPath Automation Developers
 
Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptx
 
Nanopower In Semiconductor Industry.pdf
Nanopower  In Semiconductor Industry.pdfNanopower  In Semiconductor Industry.pdf
Nanopower In Semiconductor Industry.pdf
 
Designing A Time bound resource download URL
Designing A Time bound resource download URLDesigning A Time bound resource download URL
Designing A Time bound resource download URL
 
Digital magic. A small project for controlling smart light bulbs.
Digital magic. A small project for controlling smart light bulbs.Digital magic. A small project for controlling smart light bulbs.
Digital magic. A small project for controlling smart light bulbs.
 
Comparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioComparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and Istio
 
Bird eye's view on Camunda open source ecosystem
Bird eye's view on Camunda open source ecosystemBird eye's view on Camunda open source ecosystem
Bird eye's view on Camunda open source ecosystem
 

Testing at Yammer with FooUnit, Jellyfish, and Sauce Labs