SlideShare una empresa de Scribd logo
1 de 81
Exploring
Team Metrics
(a first naive tentative)
Shark Dev Team
Without data,
you're just another person
with an opinion
William Edwards Deming
Agenda
● What are engineering
delivery metrics?
● Lead and cycle time
● About responsiveness and
performance
● Calculate WIP limit
What are engineering
delivery metrics?
Start doing
Refinement
Start doing
Refinement
Start doing
Refinement
Delivered to the customer
Delivered to the customerTech Team started working on it
Touch point between Product and Tech Team
What is Lead Time? “Lead time” is the period
between a new task’s
appearance in your workflow and
its final departure from the
system.
In our case, we want to
investigate on the time between
two Jira workflow transitions:
from “doing” status to “trying it in
prod” status.
This measure is called “cycle
time”.
What is Cycle
Time? Cycle time begins at the moment
when the new arrival enters “in
progress” stage and somebody is
actually working on it.
Lead Time vs Cycle Time
How to export it
from Jira?
● Jira plugins
● Jira plugins
We aren’t able to install plugins
at the moment.
How to export it
from Jira?
● Spider
How to export it
from Jira?
Spider? We did it
● Spider
We can call Jira Rest API using
OAut 2.0 user token.
How to export it
from Jira?
Jira Rest API data exporter
● Only issues done and
resolved
● Exclude Wallman issues
● From 1st June 2020 to 15th
November 2020
● Start date is
min(transitions(“doing”))
● End date is
min(transitions(“trying it in
prod”))
Export criteria
ETL + analysis with Jupyter Notebook
ETL
Extract, transform
and load
● Normalize data
● Merge Jira export with
transitions data
● Calculate “Cycle time”
● Focus on on data from 1st
June 2020 to 15th November
2020
● Remove outliers and wrong
data
● Anonymize data
Task Size Distribution
Task Size Distribution
June - July 2020 June - November 2020
Task Size Distribution
June - July 2020 June - November 2020
Task Size Distribution
June - July 2020 June - November 2020
Task Size Distribution
June - July 2020 June - November 2020
Task Size Distribution
June - July 2020 June - November 2020
Track Responsiveness (Cycle Time)
This is our Cycle Time in days
This is our Cycle Time in days
This is our Cycle Time in days
June - July 2020June - November 2020
This is our Cycle Time in days
June - July 2020June - November 2020
Cycle Time in days per Story Points
Cycle Time in days per Story Points
Cycle Time in days
Cycle Time in days
Outlier?
Cycle Time per Assignee and Story Points
Cross Tabulation: Story Points/Assignee (count tasks)
Cross Tabulation: Story Points/Assignee (count tasks)
Cross Tabulation: Story Points/Assignee (avg cycle time)
Cross Tabulation: Story Points/Assignee (avg cycle time)
Cross Tabulation: Story Points/Assignee (avg cycle time)
Track Performance (Throughput)
Task Started and Completed per Week
Task Started and Completed per Week
Task Started and Completed per Week
Throughput increase
Task Started and Completed per Week
Smaller tasks? Throughput increase
Task Completed per Week
Throughput
Throughput
avg
Recap
● Cycle time is about
responsiveness
● Throughput is about
performance
But...
When a measure becomes a target,
it ceases to be a good measure.
Goodhart's law
In other words, when we set one specific goal,
people will tend to optimize for that objective
regardless of the consequences.
Goodhart's law unintended consequences
Little’s Law
Team
TeamArrivals
TeamArrivals
Tasks in queue
Tasks in service
TeamArrivals Departures
Tasks in queue
Tasks in service
We can consider the Team like a
stable queue system (steady
state condition).Team
We can consider the Team like a
stable queue system (steady
state conditions).Team
L = 𝝺W
Little’s Law
L = 𝝺W
Little’s Law
L := average number of tasks in the queue system
L = 𝝺W
Little’s Law
L := average number of tasks in the queue system
𝝺 := average service time in the queue system for a task
L = 𝝺W
Little’s Law
L := average number of tasks in the queue system
𝝺 := average service time in the queue system for a task
W := average number of tasks arriving per unit time
The long-term average number L of customers in a
stationary system is equal to the long-term average
effective arrival rate λ multiplied by the average time W
that a customer spends in the system.
The relationship is “not influenced by the arrival process
distribution, the service distribution, the service order,
or practically anything else”.
L = 𝝺W
Little’s Law in Kanban World
L := WIP
𝝺 := Throughput
W := Cycle Time
In Kanban terms, Little’s Law is
expressed a little differently, but
the idea is the same:
WIP = Throughput * Cycle Time
If we imagine the Kanban board
as the store, WIP is equivalent to
the number of customers inside
at any time, throughput is the
rate of customers passing
through the store and cycle time
measures how long each one
spends inside the system.
Little’s Law
This means that if two of the
three values are known, the third
value can be calculated without
knowing anything else about the
tasks, team or project:
● WIP = Throughput * Cycle Time
● Cycle Time = WIP/Throughput
● Throughput = WIP/Cycle Time
Little’s Law
Little’s Law for Shark Dev Team
Let’s assume that:
Avg. WIP = Avg. Throughput * Avg.
Cycle Time
● Avg. Throughput (weeks) =
5.14
● Avg. Cycle Time (days) = 7.20
● Avg. Cycle Time (weeks) =
7.20/7 = 1.03
So that:
Avg. WIP = 5.14 * 1.03 = 5.29
Little’s Law
The power of Little’s Law to
Kanban teams is not its ability to
predict WIP, Thoughput or Cycle
Time.
The true power lies in its ability
to influence team behavior with
its underlying assumptions.
In other words, if you want to:
● increase Throughput then
limit WIP;
● speed up the process, i.e.
reduce Cycle Time, then
once again limit the WIP.
The power of
Little’s Law
About task estimation
It always takes longer than you expect,
even when you take into account
Hofstadter's Law
Douglas Hofstadter
Don’t estimate.
Measure and forecast!
Don’t estimate.
Measure and forecast!
Only with discipline and data
we can forecast!
Stay hungry,
stay data-driven!
Proposal for next steps
[1] Start using new Jira Workflow
[2] Improve Team metrics using Jira plugins
[3] Introduce new Team metrics (performance, quality, etc.)
[4] Define Team metrics goals
...
[..] Introduce team metrics on Product team side?
References
[1] Agile Reloaded, Ferdinando Santacroce, 2020.
[2] Throughput and Cycle Time [2020-09-27].
[3] Measure Your Lead Time And Cycle Time [2020-09-27].
[4] Understanding Agile Team Metrics: Measure Many Things [2020-09-27].
[5] Unintended Consequences and Goodhart's Law | by Will Koehrsen [2020-09-27].
[6] Stable Systems: Little's Law and Kanban [2020-09-27].
[7] Little’s Law – the basis of Lean and Kanban [2020-09-27].
[8] Chapter 5 Little's Law [2020-09-27].
[9] Accelerate. Nicole Forsgren, Jez Humble, Gene Kim.
[10] Estimates. Vasco Duarte.
Meeting OKR
Objective: Share our experiments about delivery metrics
as measured by
Key Result 1: Finish meeting on time
Key Result 2: Answer to all questions
Key Result 3: Discuss next steps

Más contenido relacionado

La actualidad más candente

Agile Metrics
Agile MetricsAgile Metrics
Agile Metrics
nick945
 
Kanban != Kanban Board
Kanban != Kanban BoardKanban != Kanban Board
Kanban != Kanban Board
Sudipta Lahiri
 
Introduction to Kanban
Introduction to KanbanIntroduction to Kanban
Introduction to Kanban
TO THE NEW | Technology
 
Vt2014 kanban presentation
Vt2014 kanban presentationVt2014 kanban presentation
Vt2014 kanban presentation
plog99
 

La actualidad más candente (18)

Implementing Kanban to Improve your Workflow
Implementing Kanban to Improve your WorkflowImplementing Kanban to Improve your Workflow
Implementing Kanban to Improve your Workflow
 
Power of Kanban Metrics
Power of Kanban MetricsPower of Kanban Metrics
Power of Kanban Metrics
 
Kanban 101
Kanban 101Kanban 101
Kanban 101
 
Kanban vs Scrum: What's the difference, and which should you use?
Kanban vs Scrum: What's the difference, and which should you use?Kanban vs Scrum: What's the difference, and which should you use?
Kanban vs Scrum: What's the difference, and which should you use?
 
Kanban
KanbanKanban
Kanban
 
Metaphors for Retrospectives - March 2017
Metaphors for Retrospectives - March 2017Metaphors for Retrospectives - March 2017
Metaphors for Retrospectives - March 2017
 
Agile Metrics
Agile MetricsAgile Metrics
Agile Metrics
 
Kanban != Kanban Board
Kanban != Kanban BoardKanban != Kanban Board
Kanban != Kanban Board
 
Agile metrics - Measure and Improve
Agile metrics - Measure and ImproveAgile metrics - Measure and Improve
Agile metrics - Measure and Improve
 
Introduction to Kanban
Introduction to KanbanIntroduction to Kanban
Introduction to Kanban
 
Kfs what is it and why is it needed - backup pack
Kfs   what is it and why is it needed - backup packKfs   what is it and why is it needed - backup pack
Kfs what is it and why is it needed - backup pack
 
An Introduction to kanban
An Introduction to kanbanAn Introduction to kanban
An Introduction to kanban
 
Kanban - Back to Basics
Kanban - Back to BasicsKanban - Back to Basics
Kanban - Back to Basics
 
Kanban Vs Scrum
Kanban Vs ScrumKanban Vs Scrum
Kanban Vs Scrum
 
Intro to Kanban - AgileDayChile2011 Keynote
Intro to Kanban - AgileDayChile2011 KeynoteIntro to Kanban - AgileDayChile2011 Keynote
Intro to Kanban - AgileDayChile2011 Keynote
 
Vt2014 kanban presentation
Vt2014 kanban presentationVt2014 kanban presentation
Vt2014 kanban presentation
 
Agile Lesson
Agile LessonAgile Lesson
Agile Lesson
 
D Prior Scrum In The Waterfall
D Prior Scrum In The WaterfallD Prior Scrum In The Waterfall
D Prior Scrum In The Waterfall
 

Similar a Exploring team metrics (a first naive tentative)

Release planning using feature points
Release planning using feature pointsRelease planning using feature points
Release planning using feature points
Madhur Kathuria
 
Allstate-T&M for ITSM-Kirch Final ipad
Allstate-T&M for ITSM-Kirch Final ipadAllstate-T&M for ITSM-Kirch Final ipad
Allstate-T&M for ITSM-Kirch Final ipad
Cathy Kirch
 

Similar a Exploring team metrics (a first naive tentative) (20)

Kanban Agile.pptx
Kanban Agile.pptxKanban Agile.pptx
Kanban Agile.pptx
 
Agile for IT service delivery , governance and management
Agile for IT service delivery , governance and managementAgile for IT service delivery , governance and management
Agile for IT service delivery , governance and management
 
KPI Calculus for BSC Performance & Progress Estimation
KPI Calculus for BSC Performance & Progress EstimationKPI Calculus for BSC Performance & Progress Estimation
KPI Calculus for BSC Performance & Progress Estimation
 
Lean Kanban India 2018 | WIP decides Lead Time, Delivery Rate and Flow Effic...
Lean Kanban India 2018  | WIP decides Lead Time, Delivery Rate and Flow Effic...Lean Kanban India 2018  | WIP decides Lead Time, Delivery Rate and Flow Effic...
Lean Kanban India 2018 | WIP decides Lead Time, Delivery Rate and Flow Effic...
 
Madhur Kathuria Release planning using feature points
Madhur Kathuria Release planning using feature pointsMadhur Kathuria Release planning using feature points
Madhur Kathuria Release planning using feature points
 
Hass howard scrum master capabilities
Hass howard scrum master capabilitiesHass howard scrum master capabilities
Hass howard scrum master capabilities
 
Release planning using feature points
Release planning using feature pointsRelease planning using feature points
Release planning using feature points
 
Flow management: Why this is so important to become more agile
Flow management: Why this is so important to become more agileFlow management: Why this is so important to become more agile
Flow management: Why this is so important to become more agile
 
Artem Bykovets: Optimizing efficiency of Value Delivery vs keeping people bus...
Artem Bykovets: Optimizing efficiency of Value Delivery vs keeping people bus...Artem Bykovets: Optimizing efficiency of Value Delivery vs keeping people bus...
Artem Bykovets: Optimizing efficiency of Value Delivery vs keeping people bus...
 
Lean Kanban India 2019 Conference | Scrumban comes to the rescue: A Case Stud...
Lean Kanban India 2019 Conference | Scrumban comes to the rescue: A Case Stud...Lean Kanban India 2019 Conference | Scrumban comes to the rescue: A Case Stud...
Lean Kanban India 2019 Conference | Scrumban comes to the rescue: A Case Stud...
 
The Lean Law Firm
The Lean Law Firm The Lean Law Firm
The Lean Law Firm
 
Work load analysis
Work load analysisWork load analysis
Work load analysis
 
Predictability at Axial
Predictability at AxialPredictability at Axial
Predictability at Axial
 
Measuring for team effectiveness (NEW)
Measuring for team effectiveness (NEW)Measuring for team effectiveness (NEW)
Measuring for team effectiveness (NEW)
 
Allstate-T&M for ITSM-Kirch Final ipad
Allstate-T&M for ITSM-Kirch Final ipadAllstate-T&M for ITSM-Kirch Final ipad
Allstate-T&M for ITSM-Kirch Final ipad
 
IntroSCRUM
IntroSCRUMIntroSCRUM
IntroSCRUM
 
KanbanTO - June 2019 - How Agile Are We Executive Dashboard
KanbanTO - June 2019 - How Agile Are We Executive DashboardKanbanTO - June 2019 - How Agile Are We Executive Dashboard
KanbanTO - June 2019 - How Agile Are We Executive Dashboard
 
Visual management white board standard structures from waterfall to agile v3
Visual management   white board  standard structures from waterfall to agile v3Visual management   white board  standard structures from waterfall to agile v3
Visual management white board standard structures from waterfall to agile v3
 
Measuring for team effectiveness (with Reecetech)
Measuring for team effectiveness (with Reecetech)Measuring for team effectiveness (with Reecetech)
Measuring for team effectiveness (with Reecetech)
 
Applying Agile Team Management
Applying Agile Team ManagementApplying Agile Team Management
Applying Agile Team Management
 

Más de Salvatore Cordiano

Más de Salvatore Cordiano (20)

Transformed: Moving to the Product Operating Model
Transformed: Moving to the Product Operating ModelTransformed: Moving to the Product Operating Model
Transformed: Moving to the Product Operating Model
 
Executive Master in Business Administration
Executive Master in Business AdministrationExecutive Master in Business Administration
Executive Master in Business Administration
 
Facile.it Partner 🚀 Hackathon 2023 - What we learned
Facile.it Partner 🚀 Hackathon 2023 - What we learnedFacile.it Partner 🚀 Hackathon 2023 - What we learned
Facile.it Partner 🚀 Hackathon 2023 - What we learned
 
Accrescere la motivazione per raggiungere gli obiettivi
Accrescere la motivazione per raggiungere gli obiettiviAccrescere la motivazione per raggiungere gli obiettivi
Accrescere la motivazione per raggiungere gli obiettivi
 
Il potere delle domande
Il potere delle domandeIl potere delle domande
Il potere delle domande
 
Impara a delegare
Impara a delegareImpara a delegare
Impara a delegare
 
Migliora il tuo ascolto
Migliora il tuo ascoltoMigliora il tuo ascolto
Migliora il tuo ascolto
 
Negoziazione organizzativa
Negoziazione organizzativaNegoziazione organizzativa
Negoziazione organizzativa
 
Migliora le prestazioni dei tuoi collaboratori
Migliora le prestazioni dei tuoi collaboratoriMigliora le prestazioni dei tuoi collaboratori
Migliora le prestazioni dei tuoi collaboratori
 
Charles Péguy - Il denaro
Charles Péguy - Il denaroCharles Péguy - Il denaro
Charles Péguy - Il denaro
 
Delivering Effective Feedback - FP Talks
Delivering Effective Feedback - FP TalksDelivering Effective Feedback - FP Talks
Delivering Effective Feedback - FP Talks
 
No Silver Bullet - Essence and Accident in Software Engineering
No Silver Bullet - Essence and Accident in Software EngineeringNo Silver Bullet - Essence and Accident in Software Engineering
No Silver Bullet - Essence and Accident in Software Engineering
 
Facile.it Partner Hackathon - What we learned
Facile.it Partner Hackathon - What we learnedFacile.it Partner Hackathon - What we learned
Facile.it Partner Hackathon - What we learned
 
FP Hackathon - Closing, remarks and awards ceremony
FP Hackathon - Closing, remarks and awards ceremonyFP Hackathon - Closing, remarks and awards ceremony
FP Hackathon - Closing, remarks and awards ceremony
 
Facile.it Partner Hackathon 2022
Facile.it Partner Hackathon 2022Facile.it Partner Hackathon 2022
Facile.it Partner Hackathon 2022
 
Remarks about Ownership
Remarks about OwnershipRemarks about Ownership
Remarks about Ownership
 
Introducing Kaizen
Introducing KaizenIntroducing Kaizen
Introducing Kaizen
 
Introducing Eisenhower Matrix
Introducing Eisenhower MatrixIntroducing Eisenhower Matrix
Introducing Eisenhower Matrix
 
The Blake Mouton Managerial Grid
The Blake Mouton Managerial GridThe Blake Mouton Managerial Grid
The Blake Mouton Managerial Grid
 
Facile.it Partner Hackathon (kick-off)
Facile.it Partner Hackathon (kick-off)Facile.it Partner Hackathon (kick-off)
Facile.it Partner Hackathon (kick-off)
 

Último

Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Christo Ananth
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 

Último (20)

Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 

Exploring team metrics (a first naive tentative)