SlideShare uma empresa Scribd logo
1 de 52
Baixar para ler offline
@neotys
TRANSLATING TESTER-SPEAK
INTO PLAIN ENGLISH
@neotys
Simple Explanations for 8 Testing Buzzwords
@neotys
Is the website going
to be ready for
Black Friday?
Well, we’re in the middle
of crowdsourcing tests for
likely user scenarios.
Sanity checks have gone
well but we haven’t run a
full automated regression
yet. Plus, Jimmy is going
through some exploratory
work now.
@neotys
@neotys
!??!?!
@neotys
@neotys
What just
happened? HAS SOMEONE
ELSE’S TESTING
LINGO EVER
MADE YOU
FEEL THIS WAY?
@neotys
If not…
Maybe you
make people
feel like this!
@neotys
TECH IS
FILLED WITH
BUZZWORDS
@neotys
@neotys
YOU RUN INTO TECHNICAL JARGON
EVERYWHERE YOU GO
@neotys
@neotys
INDUSTRIES HAVE
BUZZWORDS
@neotys
COMPANIES
HAVE
BUZZWORDS
@neotys
@neotys
EVEN PEOPLE ON THE SAME DEV TEAM
HAVE THEIR OWN BUZZWORDS
Dev	
  
QA
Ops
@neotys
Crowdsource
Cloud
Provisioning	
  
Pluggable
architecture
@neotys
TESTING
BUZZWORDS
@neotys
WHEN YOU ARE
READY TO RELEASE…
@neotys
ALL YOU WANT
TO KNOW IS…
@neotys
WILL IT
WORK?
@neotys
@neotys
AND CAN YOU
TRUST THE ANSWER
YOU’RE TOLD?
@neotys
@neotys
BUT WHAT DOES
ALL *THIS* MEAN?
Testing as a Service
Smoke Testing
Crowdsourced Testing
Continuous Integration
Test Automation
Sanity Check
Exploratory Testing
@neotys
WE’RE ABOUT TO BREAK
IT DOWN FOR YOU
Testing as a Service
Smoke Testing
Crowdsourced Testing
Continuous Integration
Test Automation
Exploratory Testing
Sanity Check
@neotys
CROWDSOURCED TESTING
1 	
  
@neotys
@neotys
1. CROWDSOURCED TESTING
It’s like Kickstarter… but for testing
@neotys
@neotys
1. CROWDSOURCED TESTING
Some hold a load-testing party
Others ask fellow testers to
“attack” your server en masse.
@neotys
@neotys
1. CROWDSOURCED TESTING
It’s not terribly predictable, and doesn’t
scale very far, but for the right cases it can
be extremely effective.
It’s also a great way to get a community
aware of what you are building.
@neotys
@neotys
TESTING AS A SERVICE
a.k.a. TaaS
a.k.a. On-Demand Testing
2 	
  
@neotys
@neotys
2. TESTING AS A SERVICE
Outsourced testing services, where a 3rd
party takes your script and executes a bunch
of testing on your behalf.
@neotys
@neotys
2. TESTING AS A SERVICE
Suitable for:
•  Unique environments
•  Short-term bursts of specialized activity
•  3rd-party verification (security, audits)
@neotys
@neotys
2. TESTING AS A SERVICE
TaaS providers may operate with heavy
automation in a well-equipped lab, or they
may be crowdtesting experts.
@neotys
@neotys
SMOKE TESTING
3 	
  
@neotys
@neotys
3. SMOKE TESTING
Back in the day… this was pretty literal.
Today, smoke testing is a cursory, preliminary
system check. A gatekeeper.
@neotys
@neotys
3. SMOKE TESTING
Smoke testing checks the basics:
•  Does it start?
•  Does it run?
•  Can a user log in?
•  Can a user execute a transaction?
•  Can the administrator view the dashboard?
@neotys
@neotys
3. SMOKE TESTING
Because when you kick off a long series
of tests and go home for the night, you
don’t want the system to crash 5
minutes after you leave.
@neotys
@neotys
SANITY CHECK
4 	
  
@neotys
@neotys
4. SANITY CHECK
This is similar to a smoke test, but different.
@neotys
@neotys
4. SANITY CHECK
Smoke tests
•  Ensure the software is stable
•  Test core functionality
•  Are automated and repeated
Sanity checks
•  Validate new features or fixed bugs
•  Check that changes are actually there
•  Are ad-hoc and unscripted
@neotys
@neotys
4. SANITY CHECK
Sanity checks make sure you are testing
what you think you are testing.
@neotys
@neotys
REGRESSION TESTING
5 	
  
@neotys
@neotys
5. REGRESSION TESTING
Don’t get confused: this is not stats class.
@neotys
@neotys
5. REGRESSION TESTING
Did we create more
bugs than we fixed?
Does everything that
worked yesterday still
work today?
@neotys
@neotys
“
5. REGRESSION TESTING
When I think about regression
testing, I think about any testing
that involves the reuse of tests
(manual or automated) or test
ideas (regression charters for
example — a regression test
does not necessarily need to be
the exact same test) to manage
the risks of change. This could
include testing for bug fixes,
testing to make sure a bug fix
didn’t break something else.
Mike Kelly
http://michaeldkelly.com
@neotys
@neotys
TEST AUTOMATION
6	
  
@neotys
@neotys
Give a man a fish,
feed him for a day.
Teach a man to fish,
feed him for a lifetime.
6. TEST AUTOMATION
@neotys
@neotys
QA used to be all about manual testing &
finding bugs.
Today, modern QA organizations are coders,
who make computers do this work for them.
Test automation improves scale, quality,
efficiency – you name it!
6. TEST AUTOMATION
@neotys
@neotys
Many people think test automation is limited
to functional testing. Not true.
More and more, test automation applies to
many other areas like load & performance
testing – automatically validating that
software behaves well under load and stress.
6. TEST AUTOMATION
@neotys
@neotys
CONTINUOUS INTEGRATION
a.k.a. “CI”
7 	
  
@neotys
@neotys
7. CONTINUOUS INTEGRATION
This is one of the most profound
changes to the software development
process to happen in past decade.
@neotys
@neotys
7. CONTINUOUS INTEGRATION
CI relies heavily on automated testing. Every
time code is checked in, a large test suite is
run to make sure nothing is broken.
CI ensures a consistent level of high quality
software, avoiding large disruptions that
break builds for days at a time.
@neotys
@neotys
7. CONTINUOUS INTEGRATION
CI is a change to the organization that
requires a high degree of:
– Collaboration
– Communication
– Transparency
– Automation
– Teamwork
That’s why strong teams love it!
@neotys
@neotys
EXPLORATORY TESTING
8 	
  
@neotys
@neotys
8. EXPLORATORY TESTING
Coined by Cem Kaner in 1983,
but still not well-understood.
@neotys
@neotys
8. EXPLORATORY TESTING
Many people think it’s ad-hoc
testing, but actually it’s an approach
that is concisely described as
simultaneous learning.
While methodically test a product,
the tester learns how it behaves, and
identifies its strengths and
weaknesses.
@neotys
@neotys
“
8. EXPLORATORY TESTING
A style of software testing that
emphasizes the personal
freedom and responsibility of
the individual tester to
continually optimize the
quality of his or her work by
treating test-related learning,
test design, test execution,
and test result interpretation
as mutually supportive
activities that run parallel
throughout the project.
Cem Kaner
@neotys
@neotys
THAT WASN’T SO BAD.
WAS IT?
Testing as a Service
Smoke Testing
Crowdsourced Testing
Continuous Integration
Test Automation
Sanity Check
Exploratory Testing
@neotys
Wow! Thanks!
@neotys
http://www.neotys.com/webcast/Performance-Testing-Horror-Stories.html
PERFORMANCE TESTING
Horror Stories
SEE THE FULL WEBINAR
TALES FROM THE SCRIPT
As the former manager of a load and
performance team, Brad Stoner retells a number
of haunting stories from his days in the field that
carry insightful lessons learned about load and
performance testing.
Watch this webinar and learn how to prevent
problems from coming back to haunt you!

Mais conteúdo relacionado

Mais procurados

Shawn Wallace - Test automation in brownfield applications
Shawn Wallace - Test automation in brownfield applicationsShawn Wallace - Test automation in brownfield applications
Shawn Wallace - Test automation in brownfield applications
QA or the Highway
 
SOASTA Webinar: Process Compression For Mobile App Dev 120612
SOASTA Webinar: Process Compression For Mobile App Dev 120612SOASTA Webinar: Process Compression For Mobile App Dev 120612
SOASTA Webinar: Process Compression For Mobile App Dev 120612
SOASTA
 
Ciprian balea automated performance-testing
Ciprian balea   automated performance-testingCiprian balea   automated performance-testing
Ciprian balea automated performance-testing
Romania Testing
 

Mais procurados (20)

Modern Load Testing: Move Your Load Testing from the Past to the Present
Modern Load Testing: Move Your Load Testing from the Past to the PresentModern Load Testing: Move Your Load Testing from the Past to the Present
Modern Load Testing: Move Your Load Testing from the Past to the Present
 
5 Keys to Your Best Automated Testing Strategy
5 Keys to Your Best Automated Testing Strategy5 Keys to Your Best Automated Testing Strategy
5 Keys to Your Best Automated Testing Strategy
 
Product Experimentation Pitfalls & How to Avoid Them
Product Experimentation Pitfalls & How to Avoid Them Product Experimentation Pitfalls & How to Avoid Them
Product Experimentation Pitfalls & How to Avoid Them
 
Shawn Wallace - Test automation in brownfield applications
Shawn Wallace - Test automation in brownfield applicationsShawn Wallace - Test automation in brownfield applications
Shawn Wallace - Test automation in brownfield applications
 
How to Scale Mobile Testing Across Several Teams
How to Scale Mobile Testing Across Several TeamsHow to Scale Mobile Testing Across Several Teams
How to Scale Mobile Testing Across Several Teams
 
Shift left
Shift leftShift left
Shift left
 
Building a Secure DevOps Pipeline - for your AppSec Program
Building a Secure DevOps Pipeline - for your AppSec Program   Building a Secure DevOps Pipeline - for your AppSec Program
Building a Secure DevOps Pipeline - for your AppSec Program
 
Building an Open Source AppSec Pipeline
Building an Open Source AppSec PipelineBuilding an Open Source AppSec Pipeline
Building an Open Source AppSec Pipeline
 
Myth vs Reality: Understanding AI/ML for QA Automation - w/ Jonathan Lipps
Myth vs Reality: Understanding AI/ML for QA Automation - w/ Jonathan LippsMyth vs Reality: Understanding AI/ML for QA Automation - w/ Jonathan Lipps
Myth vs Reality: Understanding AI/ML for QA Automation - w/ Jonathan Lipps
 
BHack 2012 - How to protect your web applications
BHack 2012 - How to protect your web applicationsBHack 2012 - How to protect your web applications
BHack 2012 - How to protect your web applications
 
SOASTA Webinar: Process Compression For Mobile App Dev 120612
SOASTA Webinar: Process Compression For Mobile App Dev 120612SOASTA Webinar: Process Compression For Mobile App Dev 120612
SOASTA Webinar: Process Compression For Mobile App Dev 120612
 
Top Practices for Successful Mobile Test Automation
Top Practices for Successful Mobile Test AutomationTop Practices for Successful Mobile Test Automation
Top Practices for Successful Mobile Test Automation
 
Test Automation Architecture in Microservices
Test Automation Architecture in MicroservicesTest Automation Architecture in Microservices
Test Automation Architecture in Microservices
 
I dream of ISPWeb
I dream of ISPWebI dream of ISPWeb
I dream of ISPWeb
 
DevSecCon Singapore 2018 - Insecurity in information technology by Tanya Janca
DevSecCon Singapore 2018 - Insecurity in information technology by Tanya JancaDevSecCon Singapore 2018 - Insecurity in information technology by Tanya Janca
DevSecCon Singapore 2018 - Insecurity in information technology by Tanya Janca
 
Secrets to Realistic Load Testing
Secrets to Realistic Load TestingSecrets to Realistic Load Testing
Secrets to Realistic Load Testing
 
Zen and the art of Security Testing
Zen and the art of Security TestingZen and the art of Security Testing
Zen and the art of Security Testing
 
Ciprian balea automated performance-testing
Ciprian balea   automated performance-testingCiprian balea   automated performance-testing
Ciprian balea automated performance-testing
 
AppSec Pipelines and Event based Security
AppSec Pipelines and Event based SecurityAppSec Pipelines and Event based Security
AppSec Pipelines and Event based Security
 
Webinar: Are you ready for your peak season?
Webinar: Are you ready for your peak season?Webinar: Are you ready for your peak season?
Webinar: Are you ready for your peak season?
 

Destaque

شهادة الماجستر
شهادة الماجسترشهادة الماجستر
شهادة الماجستر
Saleem Abudayeh
 
Leveraging Social Media: Facebook Conference Call 1
Leveraging Social Media: Facebook Conference Call 1Leveraging Social Media: Facebook Conference Call 1
Leveraging Social Media: Facebook Conference Call 1
Beth Kanter
 
18 TIPS TO-BE FOUNDERS
18 TIPS TO-BE FOUNDERS18 TIPS TO-BE FOUNDERS
18 TIPS TO-BE FOUNDERS
Andre Marquet
 
אילוצים וריסונים במלחמה מקומית - מלחמת לבנון השניה
אילוצים וריסונים במלחמה מקומית - מלחמת לבנון השניהאילוצים וריסונים במלחמה מקומית - מלחמת לבנון השניה
אילוצים וריסונים במלחמה מקומית - מלחמת לבנון השניה
Ishai Aloni
 
Social Media & Networking - The Evolving Workforce
Social Media & Networking - The Evolving WorkforceSocial Media & Networking - The Evolving Workforce
Social Media & Networking - The Evolving Workforce
Todd Wheatland
 

Destaque (19)

5 Essential Tips for Load Testing Beginners
5 Essential Tips for Load Testing Beginners5 Essential Tips for Load Testing Beginners
5 Essential Tips for Load Testing Beginners
 
10 Typical Problems in Enterprise Java Applications
10 Typical Problems in Enterprise Java Applications10 Typical Problems in Enterprise Java Applications
10 Typical Problems in Enterprise Java Applications
 
Best Practices To Fix 5 Common Web Application Problems: Web Performance Moni...
Best Practices To Fix 5 Common Web Application Problems: Web Performance Moni...Best Practices To Fix 5 Common Web Application Problems: Web Performance Moni...
Best Practices To Fix 5 Common Web Application Problems: Web Performance Moni...
 
ADN Antreprenor 2016 - Felix Tataru, GMP
ADN Antreprenor 2016 - Felix Tataru, GMPADN Antreprenor 2016 - Felix Tataru, GMP
ADN Antreprenor 2016 - Felix Tataru, GMP
 
شهادة الماجستر
شهادة الماجسترشهادة الماجستر
شهادة الماجستر
 
Leveraging Social Media: Facebook Conference Call 1
Leveraging Social Media: Facebook Conference Call 1Leveraging Social Media: Facebook Conference Call 1
Leveraging Social Media: Facebook Conference Call 1
 
How to Find a Good Work-Life Balance
How to Find a Good Work-Life Balance How to Find a Good Work-Life Balance
How to Find a Good Work-Life Balance
 
Research Design
Research DesignResearch Design
Research Design
 
Things I Carry
Things I CarryThings I Carry
Things I Carry
 
Towards a Grand Unified Theory of Systems Engineering (GUTSE)
Towards a Grand Unified Theory of Systems Engineering (GUTSE)Towards a Grand Unified Theory of Systems Engineering (GUTSE)
Towards a Grand Unified Theory of Systems Engineering (GUTSE)
 
Fitriana bakar tugas 1 so ii
Fitriana bakar tugas 1 so iiFitriana bakar tugas 1 so ii
Fitriana bakar tugas 1 so ii
 
Through the Lens of an iPhone: Charleston, SC
Through the Lens of an iPhone: Charleston, SCThrough the Lens of an iPhone: Charleston, SC
Through the Lens of an iPhone: Charleston, SC
 
Mas loco que una cabra
Mas loco que una cabraMas loco que una cabra
Mas loco que una cabra
 
Perunapuu esittely 4
Perunapuu esittely 4Perunapuu esittely 4
Perunapuu esittely 4
 
Frraactioon
FrraactioonFrraactioon
Frraactioon
 
18 TIPS TO-BE FOUNDERS
18 TIPS TO-BE FOUNDERS18 TIPS TO-BE FOUNDERS
18 TIPS TO-BE FOUNDERS
 
אילוצים וריסונים במלחמה מקומית - מלחמת לבנון השניה
אילוצים וריסונים במלחמה מקומית - מלחמת לבנון השניהאילוצים וריסונים במלחמה מקומית - מלחמת לבנון השניה
אילוצים וריסונים במלחמה מקומית - מלחמת לבנון השניה
 
Social Media & Networking - The Evolving Workforce
Social Media & Networking - The Evolving WorkforceSocial Media & Networking - The Evolving Workforce
Social Media & Networking - The Evolving Workforce
 
Seguridad de la Informacion
Seguridad de la InformacionSeguridad de la Informacion
Seguridad de la Informacion
 

Semelhante a Translating Tester-Speak Into Plain English: Simple Explanations for 8 Testing Buzzwords

6 ways DevOps helped PrepSportswear move from monolith to microservices
6 ways DevOps helped PrepSportswear move from monolith to microservices6 ways DevOps helped PrepSportswear move from monolith to microservices
6 ways DevOps helped PrepSportswear move from monolith to microservices
Dynatrace
 
Test driven development
Test driven developmentTest driven development
Test driven development
Sunil Prasad
 

Semelhante a Translating Tester-Speak Into Plain English: Simple Explanations for 8 Testing Buzzwords (20)

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
 
Devops, Secops, Opsec, DevSec *ops *.* ?
Devops, Secops, Opsec, DevSec *ops *.* ?Devops, Secops, Opsec, DevSec *ops *.* ?
Devops, Secops, Opsec, DevSec *ops *.* ?
 
NYC MeetUp 10.9
NYC MeetUp 10.9NYC MeetUp 10.9
NYC MeetUp 10.9
 
What I learned from 5 years of sciencing the crap out of DevOps
What I learned from 5 years of sciencing the crap out of DevOpsWhat I learned from 5 years of sciencing the crap out of DevOps
What I learned from 5 years of sciencing the crap out of DevOps
 
What a DevOps specialist has to know about static code analysis
What a DevOps specialist has to know about static code analysisWhat a DevOps specialist has to know about static code analysis
What a DevOps specialist has to know about static code analysis
 
Boston MeetUp 10.10
Boston MeetUp 10.10Boston MeetUp 10.10
Boston MeetUp 10.10
 
Basics in software testing
Basics in software testingBasics in software testing
Basics in software testing
 
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.
 
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...
 
Pride and Prejudice and Software Testing
Pride and Prejudice and Software TestingPride and Prejudice and Software Testing
Pride and Prejudice and Software Testing
 
Automated testing san francisco oct 2013
Automated testing san francisco oct 2013Automated testing san francisco oct 2013
Automated testing san francisco oct 2013
 
Moving From Staged To Pervasive Testing
Moving From Staged To Pervasive TestingMoving From Staged To Pervasive Testing
Moving From Staged To Pervasive Testing
 
How to test a Mainframe Application
How to test a Mainframe ApplicationHow to test a Mainframe Application
How to test a Mainframe Application
 
Bootstrapping Quality
Bootstrapping QualityBootstrapping Quality
Bootstrapping Quality
 
Continuous Delivery for Agile Teams
Continuous Delivery for Agile TeamsContinuous Delivery for Agile Teams
Continuous Delivery for Agile Teams
 
6 ways DevOps helped PrepSportswear move from monolith to microservices
6 ways DevOps helped PrepSportswear move from monolith to microservices6 ways DevOps helped PrepSportswear move from monolith to microservices
6 ways DevOps helped PrepSportswear move from monolith to microservices
 
Test driven development
Test driven developmentTest driven development
Test driven development
 
Automating The New York Times Crossword by Phil Wells
Automating The New York Times Crossword by Phil WellsAutomating The New York Times Crossword by Phil Wells
Automating The New York Times Crossword by Phil Wells
 
utplsql.pdf
utplsql.pdfutplsql.pdf
utplsql.pdf
 
Solving the 3 Biggest Questions in Continuous Testing
Solving the 3 Biggest Questions in Continuous TestingSolving the 3 Biggest Questions in Continuous Testing
Solving the 3 Biggest Questions in Continuous Testing
 

Último

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
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)

FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 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...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
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
 
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
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
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
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
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...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
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...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
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
 

Translating Tester-Speak Into Plain English: Simple Explanations for 8 Testing Buzzwords