SlideShare a Scribd company logo
1 of 46
Download to read offline
Agile2017:	Trends	in	Agile	Software	
Development
Amr	Noaman
Principal	Consultant,	Agile	Academy
My	book	and	my	session	at	Agile2017
• My	session	was	about	
Refactoring	to	Clean	Code.	
• Presented	an	updated	version	of	
the	Refactoring	Roadmap,	which	
I	first	presented	in	2013	at	the	
same	conference.
• Register	on	the	book	page:	
https://leanpub.com/RefactoringToCleanCode
The	SDLC	- Changing	the	World	of	
Work	to	Create	Business	Agility
Matt	Anderson,	Stephen	Denning,	Ahmed	Sidky
The	Entrepreneurial	Organization	at	Scale
Copernicus
Galileo
Kepler
The Copernican Revolution in Management
Firm
Customer
Customer
Firm Firm X
FirmY
The future is already here – its just not very evenly distributed
Delighting Customers
Fidelity	Investments,	restructured	the	company	
departments	around	their	customer	personas!
They	do	not	have	IT,	HR,	Finance,	and	marketing	
anymore.	Instead,	they	have	a	department	which	
serves	this	specific	persona	:)
Descaling the Work
Using	value-stream	mapping	to	map	a	day	of	an	
employee,	for	the	sake	of	making	his	work	day	
better	and	create	more	time	for	home	and	
personal	life.
A	true	story	of	a	company	which	managed	to	
reduce	the	turn	over	rate	from	40%	to	a	very	low	
percentage	(couldn't	be	disclosed)
Enterprise-wide Agility
How	to	go	from	Zero	to	Sixty	in	
19	years	- Accelerated	learning	
on	the	path	to	Agile
Woody	Zuill,	inventor	of	#NoEstimates and	#MobProgramming
A very inspiring diagram. The paper's title
is: Nobody ever gets credit for fixing
problems that never happened!
This affects our traditional ways with
appraisal and improvement
http://web.mit.edu/nelsonr/www/Repennin
g=Sterman_CMR_su01_.pdf
#MobProgramming isn't	a	cause	for	team	
success.	Rather,	it	emerged	while	a	team	was	
trying	to	work	well	together
Knowing	what	bad	code	looks	like	
Llewellyn	Falco
Play	along	at
Slides:	
llewellynfalco.blogspot.com/p/sparrow-decks.html
Phone	game:	
bit.ly/sparrowdecks
@LlewellynFalco
DoSomething
EvilTo
Database()
Foo()
ParseXml
AndStoreFlight
ToDatabase
AndLocalCache
AndStart
Processing()
StoreFlight
ToDatabase
AndStart
Processing()
Begin
Tracking
Flight()
IntentHonest
Honest		&	
Complete
Does	the	
Right	Thing
Domain	
Abstraction
Monitoring
Panel
.Add(flight)
The 7 stages of naming
Start
Structural
Refactoring
By ArloBelshee
Missing
Nonsense
@LlewellynFalco
Foo()
Missing
Nonsense
// If a license key has been located...
if (licenseKey != null) {
// Decrypt
licenseKey = ActiproLicenseProvider.DecryptString(licenseKey, encryptionKey);
// Find the licensee and license key
string[] licenseKeyData = licenseKey.Split(new Char[] { ';' });
if (BrowserInteropHelper.IsBrowserHosted) {
// XBAP licensing uses required assembly / licensee / license key
// Ensure that the specified assembly is in the AppDomain
string requiredAssemblyName = licenseKeyData[0].Trim();
Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();
bool assemblyFound = false;
foreach (Assembly loadedAssembly in assemblies) {
if (loadedAssembly.FullName.StartsWith(requiredAssemblyName + ",", StringCompari
assemblyFound = true;
break;
}
}
if ((assemblyFound) && (plainTextLicensee == licenseKeyData[2]) && (String.Compare
// Assembly was found so use license data
licensee = licenseKeyData[2];
licenseKey = licenseKeyData[1];
sourceLocation = ActiproLicenseSourceLocation.AssemblySavedContext;
}
}
else {
// Regular licensing just uses licensee / license key
licensee = licenseKeyData[1];
licenseKey = licenseKeyData[0];
sourceLocation = ActiproLicenseSourceLocation.AssemblySavedContext;
}
The 7 stages of naming
@LlewellynFalco
DoSomething
EvilTo
Database()
Honest
The 7 stages of naming
Nonsense Foo()
@LlewellynFalco
ParseXml
AndStoreFlight
ToDatabase
AndLocalCache
AndStart
Processing()
The 7 stages of naming
Honest
Honest		&	
Complete
DoSomething
EvilTo
Database()
@LlewellynFalco
StoreFlight
ToDatabase
AndStart
Processing()
The 7 stages of naming
Honest		&	
Complete
Does	the	
Right	Thing
Start
Structural
Refactoring
ParseXml
AndStoreFlight
ToDatabase
AndLocalCache
AndStart
Processing()
@LlewellynFalco
The 7 stages of naming
Intent
Does	the	
Right	Thing
StoreFlight
ToDatabase
AndStart
Processing()
Begin
Tracking
Flight()
@LlewellynFalco
The 7 stages of naming
Intent
Domain	
Abstraction
Begin
Tracking
Flight()
Monitoring
Panel
.Add(flight)
@LlewellynFalco
DoSomething
EvilTo
Database()
Foo()
ParseXml
AndStoreFlight
ToDatabase
AndLocalCache
AndStart
Processing()
StoreFlight
ToDatabase
AndStart
Processing()
Begin
Tracking
Flight()
IntentHonest
Honest		&	
Complete
Does	the	
Right	Thing
Domain	
Abstraction
Monitoring
Panel
.Add(flight)
The 7 stages of naming
Start
Structural
Refactoring
By ArloBelshee
Missing
Nonsense
Scaffolding	a	legacy	app	with	BDD	
scenarios	using	
SpecFlow/Cucumber
Gaspar	Nagy,	author	of	SpecFlow
Copyright © Gaspar NagyCopyright © Gaspar Nagy
Pic: http://gasparnagy.com/2017/02/balancing-scenarios-and-unit-tests-case-study-with-specflow/
Timeout
Scenario
Srv-UI
Functional
Usability
Strategic
Edge
case
Argument
check
Timeout
Test
Happy
Path
Copyright © Gaspar NagyCopyright © Gaspar Nagy
Scenario
Srv-UI
Functional
Usability
Strategic
Edge
case
Argument
check
Ext call
timeout
Forrás: http://gasparnagy.com/2017/02/balancing-scenarios-and-unit-tests-case-study-with-specflow/
Transformational	Innovation	:	
How	Agile	Methods	can	Benefit	
from	Systems	Thinking	
Kishau Rogers
Iceberg Model
! Address the real-problem by
thinking beyond the event-
level
! Identify opportunities to
deliver the highest value
! Clarifying the real issue
drives design
CASE: Elevate The Help desk
Your discovery team are the
thinkers responsible for
identifying patterns, structural
issues and mental models, not
responding to “events”
• The	Iceberg	Model,	an	excellent	guiding	tool	for	root	cause	analysis	in	
a	systemic	way.	
• The	idea	is	to	direct	your	thinking	towards	deeper	fundamental	
problems	in	your	system	before	you	rush	and	implement	a	solution	
for	a	shallow	problem.
• "A	software	engineer	is	not	a	coder	or	developer,	but	rather	a	
problem	solver"
Psychology	of	Coaching:	
Understanding	Science	of	Change
Pavel	Dabrytski
Implementing Agile is
oddly similar to helping
people quit smoking or
start eating healthy…
Neuroplasticity
chemical
structural
Brann, Amy. Neuroscience for Coaches : How to Use the Latest Insights for the
Benefit of Your Clients. London ; Philadelphia, PA, Kogan Page, 2014.
Practice 2: Reflections
Simple reflections
Amplified reflections
Double-sided reflections
Shifted-focus reflections
Moore, Margaret. Coaching Psychology Manual. 2nd ed., Wolters Kluwer, 2016.
Simple Reflections
Client:
How would you know what I am going through? You’ve probably
never even done an Agile transformation in an organization of our
size.
Interviewer:
You feel that I don’t have enough expertise to help you.
Amplified Reflections
Client:
How would you know what I am going through? You’ve probably
never even done an Agile transformation in an organization of our
size.
Interviewer:
You feel that it is impossible for your company to implement Agile.
Double-Sided Reflections
Client:
This company is gigantic, and it is full of red tape. It will probably
take too much effort to get the full benefits of Scrum. We might need
to do a hybrid approach.
Interviewer:
You know that it will be a challenge to implement Agile in this
company, and you also know it is important to increase your teams’
efficiency.
Shifted-Focus Reflections
Client:
You are an expert in the field. I pay you. Now, tell me what I have to
do.
Interviewer:
I am more interested in what you want to do. I’d like to find a way to
help you get through this situation. Tell me what is important to you.
Shifted-Focus Reflections
Client:
You are an expert in the field. I pay you. Now, tell me what I have to
do.
Interviewer:
I am more interested in what you want to do. I’d like to find a way to
help you get through this situation. Tell me what is important to you.
Continuous	Delivery	in	Agile
Jezz Humble,	Author	of	Continuous	Delivery
High	Performance	via	
Psychological	Safety
Joshua	Kerievsky,	Heidi	Helfand
Psychological	
safety	…
Why	and	how	we	are	moving	
beyond	the	Product	Owner	
Mindset	at	Riot	Games
Michael	Robillard,	Ahmed	Sidky
Agile2017 - Trends in Agile Software Development

More Related Content

What's hot

Avanza Case Study - Agile Transformation with Customer Focus
Avanza Case Study - Agile Transformation with Customer Focus Avanza Case Study - Agile Transformation with Customer Focus
Avanza Case Study - Agile Transformation with Customer Focus
Mia Kolmodin
 
5 ways o improve quality
5 ways o improve quality5 ways o improve quality
5 ways o improve quality
Kuldeep Yagik
 
PDMA Event -- "Roadmapping" February 2014
PDMA Event -- "Roadmapping" February 2014PDMA Event -- "Roadmapping" February 2014
PDMA Event -- "Roadmapping" February 2014
Chris Sakas
 

What's hot (20)

Webinar slides waytolean
Webinar slides waytoleanWebinar slides waytolean
Webinar slides waytolean
 
The Painted Sky, List of Offerings 2016-17
The Painted Sky, List of Offerings 2016-17The Painted Sky, List of Offerings 2016-17
The Painted Sky, List of Offerings 2016-17
 
Ways To Improve Employee Engagement PowerPoint Presentation Slides
Ways To Improve Employee Engagement PowerPoint Presentation SlidesWays To Improve Employee Engagement PowerPoint Presentation Slides
Ways To Improve Employee Engagement PowerPoint Presentation Slides
 
6 Questions to Ask Before Implementing Change in Organizations
6 Questions to Ask Before Implementing Change in Organizations6 Questions to Ask Before Implementing Change in Organizations
6 Questions to Ask Before Implementing Change in Organizations
 
Avanza Case Study - Agile Transformation with Customer Focus
Avanza Case Study - Agile Transformation with Customer Focus Avanza Case Study - Agile Transformation with Customer Focus
Avanza Case Study - Agile Transformation with Customer Focus
 
5 ways o improve quality
5 ways o improve quality5 ways o improve quality
5 ways o improve quality
 
Understanding Value
Understanding ValueUnderstanding Value
Understanding Value
 
Conquering Corporate Challenges
Conquering Corporate ChallengesConquering Corporate Challenges
Conquering Corporate Challenges
 
Dropsuite’s Engineering First Culture
Dropsuite’s Engineering First CultureDropsuite’s Engineering First Culture
Dropsuite’s Engineering First Culture
 
STORIES YOU LIKED MOST
STORIES YOU LIKED MOSTSTORIES YOU LIKED MOST
STORIES YOU LIKED MOST
 
PDMA Event -- "Roadmapping" February 2014
PDMA Event -- "Roadmapping" February 2014PDMA Event -- "Roadmapping" February 2014
PDMA Event -- "Roadmapping" February 2014
 
Diamond Recruitment
Diamond RecruitmentDiamond Recruitment
Diamond Recruitment
 
CIPD HRBP Conference Evolution as a function the beyond case study of OD & D
CIPD HRBP Conference Evolution as a function   the beyond case study of OD & D CIPD HRBP Conference Evolution as a function   the beyond case study of OD & D
CIPD HRBP Conference Evolution as a function the beyond case study of OD & D
 
Responsive leadership for the digital era. Presentation by Pernilla Dahlman a...
Responsive leadership for the digital era. Presentation by Pernilla Dahlman a...Responsive leadership for the digital era. Presentation by Pernilla Dahlman a...
Responsive leadership for the digital era. Presentation by Pernilla Dahlman a...
 
Creating a Mindset for Change and Innovation
Creating a Mindset for Change and InnovationCreating a Mindset for Change and Innovation
Creating a Mindset for Change and Innovation
 
Elastic Digital Workplace - Company Intranet, Internal Communication Software
Elastic Digital Workplace - Company Intranet, Internal Communication SoftwareElastic Digital Workplace - Company Intranet, Internal Communication Software
Elastic Digital Workplace - Company Intranet, Internal Communication Software
 
TWI and Kata: Skill Patterns to Develop a Culture of Coaching
TWI and Kata: Skill Patterns to Develop a Culture of CoachingTWI and Kata: Skill Patterns to Develop a Culture of Coaching
TWI and Kata: Skill Patterns to Develop a Culture of Coaching
 
Making Agile Leadership Work: A Journey From Coach to Manager - Martin Cronj...
 Making Agile Leadership Work: A Journey From Coach to Manager - Martin Cronj... Making Agile Leadership Work: A Journey From Coach to Manager - Martin Cronj...
Making Agile Leadership Work: A Journey From Coach to Manager - Martin Cronj...
 
What To Do with Employee Engagement Survey Results - Change Them
What To Do with Employee Engagement Survey Results - Change ThemWhat To Do with Employee Engagement Survey Results - Change Them
What To Do with Employee Engagement Survey Results - Change Them
 
Seattle Design Thinking Meetup: Making space for Innovation
Seattle Design Thinking Meetup: Making space for InnovationSeattle Design Thinking Meetup: Making space for Innovation
Seattle Design Thinking Meetup: Making space for Innovation
 

Similar to Agile2017 - Trends in Agile Software Development

Excite! Unfolding Organizational Potential and Performance - 2016
Excite! Unfolding Organizational Potential and Performance - 2016Excite! Unfolding Organizational Potential and Performance - 2016
Excite! Unfolding Organizational Potential and Performance - 2016
Dr. Thomas Juli
 
Product Design Strategy UXLX 2018 (Public Version)
Product Design Strategy UXLX 2018 (Public Version)Product Design Strategy UXLX 2018 (Public Version)
Product Design Strategy UXLX 2018 (Public Version)
fresh tilled soil
 
Fex 151028 - the taste of innovation - de waardefabriek presentatie
Fex 151028 - the taste of innovation - de waardefabriek presentatie Fex 151028 - the taste of innovation - de waardefabriek presentatie
Fex 151028 - the taste of innovation - de waardefabriek presentatie
Flevum
 
Imperial College Presentation - PJ v1.1
Imperial College Presentation - PJ v1.1Imperial College Presentation - PJ v1.1
Imperial College Presentation - PJ v1.1
Dr Phil Jacobs
 

Similar to Agile2017 - Trends in Agile Software Development (20)

Excite! Unfolding Organizational Potential and Performance - 2016
Excite! Unfolding Organizational Potential and Performance - 2016Excite! Unfolding Organizational Potential and Performance - 2016
Excite! Unfolding Organizational Potential and Performance - 2016
 
INNOVATION ROOTS | Webinar | Three Secrets of Agile Leaders | Peter Stevens
INNOVATION ROOTS | Webinar | Three Secrets of Agile Leaders | Peter StevensINNOVATION ROOTS | Webinar | Three Secrets of Agile Leaders | Peter Stevens
INNOVATION ROOTS | Webinar | Three Secrets of Agile Leaders | Peter Stevens
 
Notes on Inspired: How to Create Products Customers Love by Marty Cagan
Notes on Inspired: How to Create Products Customers Love by Marty CaganNotes on Inspired: How to Create Products Customers Love by Marty Cagan
Notes on Inspired: How to Create Products Customers Love by Marty Cagan
 
Agile Implementation Beyond Cosmetics
Agile Implementation Beyond CosmeticsAgile Implementation Beyond Cosmetics
Agile Implementation Beyond Cosmetics
 
Product Design Strategy UXLX 2018 (Public Version)
Product Design Strategy UXLX 2018 (Public Version)Product Design Strategy UXLX 2018 (Public Version)
Product Design Strategy UXLX 2018 (Public Version)
 
Fex 151028 - the taste of innovation - de waardefabriek presentatie
Fex 151028 - the taste of innovation - de waardefabriek presentatie Fex 151028 - the taste of innovation - de waardefabriek presentatie
Fex 151028 - the taste of innovation - de waardefabriek presentatie
 
Imperial College Presentation - PJ v1.1
Imperial College Presentation - PJ v1.1Imperial College Presentation - PJ v1.1
Imperial College Presentation - PJ v1.1
 
BizFour Oct'16 issue "Mindful Business Hacks".
BizFour Oct'16 issue "Mindful Business Hacks".BizFour Oct'16 issue "Mindful Business Hacks".
BizFour Oct'16 issue "Mindful Business Hacks".
 
Agile Marketing: Managing Marketing in a World of Constant Change
Agile Marketing: Managing Marketing in a World of Constant ChangeAgile Marketing: Managing Marketing in a World of Constant Change
Agile Marketing: Managing Marketing in a World of Constant Change
 
How to Thrive in a Post-AOR World
How to Thrive in a Post-AOR WorldHow to Thrive in a Post-AOR World
How to Thrive in a Post-AOR World
 
Brand Building Through Agile Marketing - Hayley Nelson, Hayley Nelson
Brand Building Through Agile Marketing - Hayley Nelson, Hayley NelsonBrand Building Through Agile Marketing - Hayley Nelson, Hayley Nelson
Brand Building Through Agile Marketing - Hayley Nelson, Hayley Nelson
 
Maximizing Project Relationships
Maximizing Project RelationshipsMaximizing Project Relationships
Maximizing Project Relationships
 
Babele reinventing organizations through intrapreneurship
Babele   reinventing organizations through intrapreneurshipBabele   reinventing organizations through intrapreneurship
Babele reinventing organizations through intrapreneurship
 
Nine Steps to Agile HR for the Strategic HR Business Partner
Nine Steps to Agile HR for the Strategic HR Business PartnerNine Steps to Agile HR for the Strategic HR Business Partner
Nine Steps to Agile HR for the Strategic HR Business Partner
 
How to become an entrepreneur part 2 validate business idea
How to become an entrepreneur part 2 validate business ideaHow to become an entrepreneur part 2 validate business idea
How to become an entrepreneur part 2 validate business idea
 
narratives Volume 1 Issue 1 Q1
narratives Volume 1 Issue 1 Q1narratives Volume 1 Issue 1 Q1
narratives Volume 1 Issue 1 Q1
 
Talk : is your organisation fit for purpose?
Talk :  is your organisation fit for purpose?Talk :  is your organisation fit for purpose?
Talk : is your organisation fit for purpose?
 
JUMP THINK(C) Workshop
JUMP THINK(C) WorkshopJUMP THINK(C) Workshop
JUMP THINK(C) Workshop
 
How to get buy-in for your people analytics from the boardroom and beyond.
How to get buy-in for your people analytics from the boardroom and beyond.How to get buy-in for your people analytics from the boardroom and beyond.
How to get buy-in for your people analytics from the boardroom and beyond.
 
Slide deck linkedin insight
Slide deck linkedin insightSlide deck linkedin insight
Slide deck linkedin insight
 

Recently uploaded

ALCOHOL PRODUCTION- Beer Brewing Process.pdf
ALCOHOL PRODUCTION- Beer Brewing Process.pdfALCOHOL PRODUCTION- Beer Brewing Process.pdf
ALCOHOL PRODUCTION- Beer Brewing Process.pdf
Madan Karki
 
Microkernel in Operating System | Operating System
Microkernel in Operating System | Operating SystemMicrokernel in Operating System | Operating System
Microkernel in Operating System | Operating System
Sampad Kar
 
Performance enhancement of machine learning algorithm for breast cancer diagn...
Performance enhancement of machine learning algorithm for breast cancer diagn...Performance enhancement of machine learning algorithm for breast cancer diagn...
Performance enhancement of machine learning algorithm for breast cancer diagn...
IJECEIAES
 

Recently uploaded (20)

analog-vs-digital-communication (concept of analog and digital).pptx
analog-vs-digital-communication (concept of analog and digital).pptxanalog-vs-digital-communication (concept of analog and digital).pptx
analog-vs-digital-communication (concept of analog and digital).pptx
 
Augmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptxAugmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptx
 
"United Nations Park" Site Visit Report.
"United Nations Park" Site  Visit Report."United Nations Park" Site  Visit Report.
"United Nations Park" Site Visit Report.
 
ALCOHOL PRODUCTION- Beer Brewing Process.pdf
ALCOHOL PRODUCTION- Beer Brewing Process.pdfALCOHOL PRODUCTION- Beer Brewing Process.pdf
ALCOHOL PRODUCTION- Beer Brewing Process.pdf
 
Microkernel in Operating System | Operating System
Microkernel in Operating System | Operating SystemMicrokernel in Operating System | Operating System
Microkernel in Operating System | Operating System
 
Lab Manual Arduino UNO Microcontrollar.docx
Lab Manual Arduino UNO Microcontrollar.docxLab Manual Arduino UNO Microcontrollar.docx
Lab Manual Arduino UNO Microcontrollar.docx
 
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024
 
Research Methodolgy & Intellectual Property Rights Series 2
Research Methodolgy & Intellectual Property Rights Series 2Research Methodolgy & Intellectual Property Rights Series 2
Research Methodolgy & Intellectual Property Rights Series 2
 
Dynamo Scripts for Task IDs and Space Naming.pptx
Dynamo Scripts for Task IDs and Space Naming.pptxDynamo Scripts for Task IDs and Space Naming.pptx
Dynamo Scripts for Task IDs and Space Naming.pptx
 
AI in Healthcare Innovative use cases and applications.pdf
AI in Healthcare Innovative use cases and applications.pdfAI in Healthcare Innovative use cases and applications.pdf
AI in Healthcare Innovative use cases and applications.pdf
 
Seismic Hazard Assessment Software in Python by Prof. Dr. Costas Sachpazis
Seismic Hazard Assessment Software in Python by Prof. Dr. Costas SachpazisSeismic Hazard Assessment Software in Python by Prof. Dr. Costas Sachpazis
Seismic Hazard Assessment Software in Python by Prof. Dr. Costas Sachpazis
 
Performance enhancement of machine learning algorithm for breast cancer diagn...
Performance enhancement of machine learning algorithm for breast cancer diagn...Performance enhancement of machine learning algorithm for breast cancer diagn...
Performance enhancement of machine learning algorithm for breast cancer diagn...
 
Instruct Nirmaana 24-Smart and Lean Construction Through Technology.pdf
Instruct Nirmaana 24-Smart and Lean Construction Through Technology.pdfInstruct Nirmaana 24-Smart and Lean Construction Through Technology.pdf
Instruct Nirmaana 24-Smart and Lean Construction Through Technology.pdf
 
Worksharing and 3D Modeling with Revit.pptx
Worksharing and 3D Modeling with Revit.pptxWorksharing and 3D Modeling with Revit.pptx
Worksharing and 3D Modeling with Revit.pptx
 
Passive Air Cooling System and Solar Water Heater.ppt
Passive Air Cooling System and Solar Water Heater.pptPassive Air Cooling System and Solar Water Heater.ppt
Passive Air Cooling System and Solar Water Heater.ppt
 
Artificial Intelligence in due diligence
Artificial Intelligence in due diligenceArtificial Intelligence in due diligence
Artificial Intelligence in due diligence
 
NO1 Best Powerful Vashikaran Specialist Baba Vashikaran Specialist For Love V...
NO1 Best Powerful Vashikaran Specialist Baba Vashikaran Specialist For Love V...NO1 Best Powerful Vashikaran Specialist Baba Vashikaran Specialist For Love V...
NO1 Best Powerful Vashikaran Specialist Baba Vashikaran Specialist For Love V...
 
Fuzzy logic method-based stress detector with blood pressure and body tempera...
Fuzzy logic method-based stress detector with blood pressure and body tempera...Fuzzy logic method-based stress detector with blood pressure and body tempera...
Fuzzy logic method-based stress detector with blood pressure and body tempera...
 
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...8th International Conference on Soft Computing, Mathematics and Control (SMC ...
8th International Conference on Soft Computing, Mathematics and Control (SMC ...
 
5G and 6G refer to generations of mobile network technology, each representin...
5G and 6G refer to generations of mobile network technology, each representin...5G and 6G refer to generations of mobile network technology, each representin...
5G and 6G refer to generations of mobile network technology, each representin...
 

Agile2017 - Trends in Agile Software Development