SlideShare ist ein Scribd-Unternehmen logo
1 von 83
Downloaden Sie, um offline zu lesen
training@instil.co
February 2019
© Instil Software 2018
10 Big Ideas from Industry
Queens University
Develop	
Consult	
Train
With Special Thanks to Liberty IT
I’m here to Raise Awareness
How I Got Started…
Ten Big Ideas From Industry…
These ideas are not mine
•  They are wisdom from
experts in the industry
•  So I will be showing you a
lot of Tweets from gurus
As you know…
•  Copying from a single
source is plagiarism
•  Copying from many
sources is research J
None Of These Ideas Are New
© Instil Software 2018
Version Control Matters
(Unless you’re a masochist)
Why Version Control?
Learning About Version Control
Introducing Git
10	
1
2
3
4
6
5
8
9
7
10	
A Git repository is a complex tree and
can present branches with individual
history logs
A branch is simply a pointer to a node
Introducing Git
10	
1
2
3
4
6
5
8
9
7
10	
This is possible because structurally
every node refers to one or more parents
The arrows drawn so far need to flip
When we use
branches and make
changes, the pointer
moves automatically
Introducing Git
10	
1
2
3
4
6
5
8
9
7
10	
Arrows now represent a dependency
Our repository is actually a Merkle
Tree
Introducing Git
10	
1
2
3
4
6
5
8
9
7
10	
We can also mark or remember
individual nodes by adding tags
Unlike branches, tags do not move
R1.0.0	
R1.0.0	
R0.2.0	 R0.2.0	
R0.2.0	
R0.2.0
© Instil Software 2018
Create Feedback Cycles
(The smaller the better)
Find And Tighten Feedback Loops
BEST
TWEET
EVER
Find And Tighten Feedback Loops
Find And Tighten Feedback Loops
Build faster feedback loops
•  Running unit tests every few minutes via TDD
•  Running integration tests every few hours via CI
•  QA teams completing non-functional tests weekly
•  Clients commenting on demos every 2-3 weeks
•  Releases measured in weeks or months
Agile = Feedback Loops
TDD	
BDD	
Integration	Tests	/	CI	
Non	Functional	Tests	/	QA	
Sprint	Demos	and	Retrospective	
Feedback Cycles in an Agile Project
The Test Driven Cycle In Outline
Celebrate the ‘but that’s stupid’ moments!
•  This is what keeps us going the right way
•  Limitations of the current code inspire the next test
Always watch the test fail first
•  The existing codebase may already do what you need
•  You may have accidently written a test that cannot fail
Don’t implement and refactor at the same time
•  They are two separate activities
•  Mixing them only causes confusion
•  Remember tests need refactoring as well
There’s a difference between simplest and stupid
•  Keep making progress towards your intended design
•  Never work yourself into a corner in the name of simplicity
Key Points About the TDD Cycle
Understanding the TDD Cycle
Some Great Reads
Some Great Reads
© Instil Software 2018
Its OK To Be Scared
(But never not to ask)
Programming Is Really Really Hard
No Fear
(Well Just A Little)
Pure Bowel
Knotting Terror
You’re Going To Experience Fear Every Day…
You	have	the	right:	
•  To	know	what	is	needed	(requirements)	with	clear	declarations	of	
priority	
•  To	produce	quality	work	at	all	times	
•  To	ask	for	and	receive	support	from	peers,	superiors,	and	
customers	
•  To	make	and	update	your	own	estimates	
•  To	accept	responsibilities	instead	of	having	them	assigned	to	you	
The	Developer	Bill	of	Rights
You	have	the	right:	
•  To	an	overall	plan,	to	know	what	can	be	accomplished	when	and	at	what	
cost	
•  To	get	the	greatest	possible	value	out	of	every	programming	week	
•  To	see	progress	in	a	running	system	proven	to	work	by	passing	repeatable	
tests	that	you	specify	
•  To	change	your	mind,	to	substitute	functionality,	and	to	change	priorities	
without	paying	exorbitant	costs	
•  To	be	informed	of	schedule	changes	in	time	to	choose	how	to	reduce	the	
scope	to	restore	the	original	date	
•  You	can	cancel	the	project	at	any	time	and	be	left	with	a	useful	working	
system	reflecting	the	investment	to	date	
The	Customer	Bill	of	Rights
Some Recommended Reading
© Instil Software 2018
Social Skills Matter
(It’s a team sport)
Social Skills Matter
Developers start out obsessing about code
•  But end up as psychologists and/or linguists
Coding in industry shouldn’t be completely novel
•  All the really technical problems have been solved already
People are a very different matter
•  The true challenges in software all revolve around people
•  Your colleagues, your management, your clients etc…
Not this…
Or even this…
But this…
Social Skills Matter
Some Helpful Advice…
© Instil Software 2018
Performance Matters
(Except when it doesn’t)
What is Meant by ‘Performance’?
‘Performance’ can mean many things:
•  Latency – the time for an item to be processed
•  Throughput – no of items completed per ‘n’
•  Scalability – how throughput alters as usage increases
•  Degradation – what happens when we can’t scale further
•  Utilization – making full use of cores, RAM etc...
Each application will have its own priorities
•  E.g. an Android or iOS client will want low latency whereas a
batch processing system will want high throughput
Examples of Relative Costs of Operations
How do we Measure Performance?
We measure performance with:
•  Micro-benchmarks - fictional analysis of part of the system
•  Profiling - collecting runtime data from a ‘real’ system
•  Benchmarking - determining the limits of the ‘real’ system
•  Monitoring - collecting metrics from various environments
The best measurements are the most difficult to obtain
•  The closer you come to real world usage the greater the barriers
in your way to collecting measurements
•  In some environments there may be legal constraints that
prevent you ever interacting with the system in production
Does Performance Matter?
In the early days of IT performance was everything
•  Because hardware was expensive compared to developers
Over time this began to change
•  Developer time became expensive compared to hardware
•  Software spent more and more time being maintained
Developers understanding of performance declined rapidly
•  As the underlying platform became more and more complex
Today the rule is:
•  Write the shortest simplest code you possibly can
•  Allow the compiler, VM and hardware to optimise it
•  Don’t constrain your code with assumptions about speed
•  Have performance tests to provide reliable feedback
© Instil Software 2018
Code With Two Hats
(Wear one at a time)
There Is Some Truly Horrible Code Out There…
Real Developers Write Code That’s Readable
Good Boy Scout Rule
Refactoring Is Part Of Normal Development
Quality	
Feedback	
Loops	
Clearly	Correct	
Code	
Ubiquitous	
Language	
Encapsulation	 Immutability	
Decomposition	
Verification	
Spec	By	
Example	
OO	 FP	 Single	Purpose	
	Methods	
TDD	
BDD	
Profiling	
DDD	
RX	
Iterations	
CI	
TDD	
The	limits	of	my	
language	mean	the	
limits	of	my	world	
If	you	always	do	what	
you’ve	always	done	
you'll	always	get	
what	you’ve	always	
got	
“Obviously	No	Defects”	Vs.	
“No	Obvious	Defects”	
Reviews	
Retrospectives	
DI	
Modules	
MVC	
Monads	
Structs	
Contracts
Read These Books
Never Implement and Refactor at the Same Time!!!
We write code with ‘two hats’
•  The ‘I have to get this ******** thing working’ hat
•  The ‘someday someone will maintain this’ hat
The second hat is the Refactoring one
•  Refactoring is a vital skill in its own right
Never implement and refactor together
•  Your thinking will get derailed and you will create a mess
Unit Tests And Refactoring Go Hand In Hand
© Instil Software 2018
Apply the S in SOLID
(In a hierarchical manner)
The Single Responsibility Principle
Every function / type / class you write should
•  Perform a single function in the app
•  Have only ever one reason to change
•  Be describable without conjunctions
This is indicated by brevity
•  Aim for method lengths of 10 lines or less
•  Or even 6 lines or less in Ruby / Scala / Kotlin
SRP Works at Different Levels of Abstraction…
Unit Tests Are Tests Of Abstractions
© Instil Software 2018
Naming Is Everything
(…and incredibly hard)
When It All Goes Wrong...
Does Language Matter?
Get Into The Habit Of Worrying About Names
Introducing Domain Driven Design
Bounded Contexts and Language Games
But how many kinds of sentence are there?
Say assertion, question, and command?---
There are countless kinds: countless
different kinds of use of what we call
"symbols", "words", "sentences". And this
multiplicity is not something fixed, given
once for all; but new types of language, new
language-games, as we may say, come into
existence, and others become obsolete and
get forgotten. (We can get a rough picture of
this from the changes in mathematics.)

Here the term "language-game" is meant to
bring into prominence the fact that the
speaking of language is part of an activity, or
of a form of life.
© Instil Software 2018
Objects Are Awesome
(But FP is the future)
C	
C++	
Java	
C#	
Pascal	
Delphi	
Basic	
Visual	Basic	
VB	.NET	
Perl	
F#	
Java	
Script	
CoffeeScript	
1990
2000
2010
TypeScript	
Jython	
JRuby	
PowerShell	
Dart	
Scala	
Clojure	
Kotlin	
Groovy	
Go	
Objective	C	
Shell	
Scripting	
Swift	
Python	
Ruby
Object Orientation Has Proven Its Worth…
Objects Threads
Functional Coding Is Becoming More Prevalent
Comparing the OO and Functional Styles
But all a purely functional program
can do is heat up the CPU - and
that's still a side effect!!!
Languages on the JVM
Java Virtual Machine
Bytecode
Interpreters
JRuby Groovy Jython
Scala Clojure KotlinJava
Gradle
Making Waves at the Moment
You Might Want To Learn Haskell…
© Instil Software 2018
The Jungle Is Neutral
(So it’s all up to you…)
Routes Into IT & Career Progression
•  System	Administrator	
•  DB	Admin	
•  Network	Admin	
•  Remote	Support	
•  On-site	Support	
•  Professional	Services	
•  Junior	à	Senior	Tester	
•  Test	Team	Lead	
•  Junior	à	Senior	
Developer	
•  Technical	Lead	
•  Architect	
•  Evangelist	
Dev	 QA	
Sys	
Admin	
CD	
Management	
Sales	&	Marketing
You need to keep updating your skill set
•  Frameworks go out of date every 2-6 years
•  Programming languages every 6-12 years
You Need to Keep Your Skills Updated
You Need To Manage Your Own Career
Ultimately The Jungle Is Neutral…
© Instil Software 2018
In Summary…
Here are our 10 Big Ideas once again:
•  Version Control Matters
•  Create Feedback Cycles
•  It’s OK To Be Scared
•  Social Skills Always Matter
•  Performance Can Matter
•  Code With Two Hats
•  Apply The S In SOLID
•  Naming Is Everything
•  You Need OO And FP
•  The Jungle Is Neutral
In Summary
Any Questions?

Weitere ähnliche Inhalte

Was ist angesagt?

Pragmatic Not Dogmatic TDD Agile2012 by Joseph Yoder and Rebecca Wirfs-Brock
Pragmatic Not Dogmatic TDD Agile2012 by Joseph Yoder and Rebecca Wirfs-BrockPragmatic Not Dogmatic TDD Agile2012 by Joseph Yoder and Rebecca Wirfs-Brock
Pragmatic Not Dogmatic TDD Agile2012 by Joseph Yoder and Rebecca Wirfs-Brock
Joseph Yoder
 
Agile testing myths v5 final-
Agile testing myths v5 final-Agile testing myths v5 final-
Agile testing myths v5 final-
lisacrispin
 
Atd agile automation
Atd agile automationAtd agile automation
Atd agile automation
lisacrispin
 
The View - 30 proven Lotuscript tips
The View - 30 proven Lotuscript tipsThe View - 30 proven Lotuscript tips
The View - 30 proven Lotuscript tips
Bill Buchan
 
Contemporary Software Engineering Practices Together With Enterprise
Contemporary Software Engineering Practices Together With EnterpriseContemporary Software Engineering Practices Together With Enterprise
Contemporary Software Engineering Practices Together With Enterprise
Kenan Sevindik
 
Mary Poppendieck: Agile under contract
Mary Poppendieck: Agile under contractMary Poppendieck: Agile under contract
Mary Poppendieck: Agile under contract
Agile Lietuva
 
Refactoring AOMs For AgilePT2010
Refactoring AOMs For AgilePT2010Refactoring AOMs For AgilePT2010
Refactoring AOMs For AgilePT2010
Joseph Yoder
 

Was ist angesagt? (20)

Designing with tests
Designing with testsDesigning with tests
Designing with tests
 
Friday final test
Friday final testFriday final test
Friday final test
 
Agile archiecture iltam 2014
Agile archiecture   iltam 2014Agile archiecture   iltam 2014
Agile archiecture iltam 2014
 
Efficient Code Organisation
Efficient Code OrganisationEfficient Code Organisation
Efficient Code Organisation
 
Rethinking Enterprise Software - Brandolini
Rethinking Enterprise Software - BrandoliniRethinking Enterprise Software - Brandolini
Rethinking Enterprise Software - Brandolini
 
Don't get blamed for your choices - Techorama 2019
Don't get blamed for your choices - Techorama 2019Don't get blamed for your choices - Techorama 2019
Don't get blamed for your choices - Techorama 2019
 
Pragmatic Not Dogmatic TDD Agile2012 by Joseph Yoder and Rebecca Wirfs-Brock
Pragmatic Not Dogmatic TDD Agile2012 by Joseph Yoder and Rebecca Wirfs-BrockPragmatic Not Dogmatic TDD Agile2012 by Joseph Yoder and Rebecca Wirfs-Brock
Pragmatic Not Dogmatic TDD Agile2012 by Joseph Yoder and Rebecca Wirfs-Brock
 
Extreme Programming (XP): Revisted
Extreme Programming (XP): RevistedExtreme Programming (XP): Revisted
Extreme Programming (XP): Revisted
 
Smart
SmartSmart
Smart
 
"The Lean Mindset": Mary & Tom Poppendieck's Keynote at AgileDayChile 2013
"The Lean Mindset": Mary & Tom Poppendieck's Keynote at AgileDayChile 2013"The Lean Mindset": Mary & Tom Poppendieck's Keynote at AgileDayChile 2013
"The Lean Mindset": Mary & Tom Poppendieck's Keynote at AgileDayChile 2013
 
Agile testing myths v5 final-
Agile testing myths v5 final-Agile testing myths v5 final-
Agile testing myths v5 final-
 
Atd agile automation
Atd agile automationAtd agile automation
Atd agile automation
 
The View - 30 proven Lotuscript tips
The View - 30 proven Lotuscript tipsThe View - 30 proven Lotuscript tips
The View - 30 proven Lotuscript tips
 
Contemporary Software Engineering Practices Together With Enterprise
Contemporary Software Engineering Practices Together With EnterpriseContemporary Software Engineering Practices Together With Enterprise
Contemporary Software Engineering Practices Together With Enterprise
 
Gateway to Agile: XP and BDD
Gateway to Agile: XP and BDD Gateway to Agile: XP and BDD
Gateway to Agile: XP and BDD
 
Belgium Testing Days - Making Test Automation Work in Agile Projects
Belgium Testing Days - Making Test Automation Work in Agile ProjectsBelgium Testing Days - Making Test Automation Work in Agile Projects
Belgium Testing Days - Making Test Automation Work in Agile Projects
 
Mary Poppendieck: Agile under contract
Mary Poppendieck: Agile under contractMary Poppendieck: Agile under contract
Mary Poppendieck: Agile under contract
 
Whittle Modeling Wizards 2012
Whittle Modeling Wizards 2012Whittle Modeling Wizards 2012
Whittle Modeling Wizards 2012
 
Refactoring AOMs For AgilePT2010
Refactoring AOMs For AgilePT2010Refactoring AOMs For AgilePT2010
Refactoring AOMs For AgilePT2010
 
Software Architecture Anti-Patterns
Software Architecture Anti-PatternsSoftware Architecture Anti-Patterns
Software Architecture Anti-Patterns
 

Ähnlich wie 10 Big Ideas from Industry

Agile Methodologies And Extreme Programming - Svetlin Nakov
Agile Methodologies And Extreme Programming - Svetlin NakovAgile Methodologies And Extreme Programming - Svetlin Nakov
Agile Methodologies And Extreme Programming - Svetlin Nakov
Svetlin Nakov
 
How I Learned to Stop Worrying and Love Legacy Code.....
How I Learned to Stop Worrying and Love Legacy Code.....How I Learned to Stop Worrying and Love Legacy Code.....
How I Learned to Stop Worrying and Love Legacy Code.....
Mike Harris
 
Driving application development through behavior driven development
Driving application development through behavior driven developmentDriving application development through behavior driven development
Driving application development through behavior driven development
Einar Ingebrigtsen
 
Arch factory - Agile Design: Best Practices
Arch factory - Agile Design: Best PracticesArch factory - Agile Design: Best Practices
Arch factory - Agile Design: Best Practices
Igor Moochnick
 

Ähnlich wie 10 Big Ideas from Industry (20)

WordCamp Nashville: Clean Code for WordPress
WordCamp Nashville: Clean Code for WordPressWordCamp Nashville: Clean Code for WordPress
WordCamp Nashville: Clean Code for WordPress
 
DevSecOps with Microsoft Tech
DevSecOps with Microsoft TechDevSecOps with Microsoft Tech
DevSecOps with Microsoft Tech
 
Agile Development Overview (with a bit about builds)
Agile Development Overview (with a bit about builds)Agile Development Overview (with a bit about builds)
Agile Development Overview (with a bit about builds)
 
WordCamp US: Clean Code
WordCamp US: Clean CodeWordCamp US: Clean Code
WordCamp US: Clean Code
 
Paul Ellarby - Why do scrum?
Paul Ellarby - Why do scrum?Paul Ellarby - Why do scrum?
Paul Ellarby - Why do scrum?
 
Agile Methodologies And Extreme Programming - Svetlin Nakov
Agile Methodologies And Extreme Programming - Svetlin NakovAgile Methodologies And Extreme Programming - Svetlin Nakov
Agile Methodologies And Extreme Programming - Svetlin Nakov
 
How I Learned to Stop Worrying and Love Legacy Code.....
How I Learned to Stop Worrying and Love Legacy Code.....How I Learned to Stop Worrying and Love Legacy Code.....
How I Learned to Stop Worrying and Love Legacy Code.....
 
Traits of a Good Engineer
Traits of a Good EngineerTraits of a Good Engineer
Traits of a Good Engineer
 
It is a sunny day
It is a sunny dayIt is a sunny day
It is a sunny day
 
Driving application development through behavior driven development
Driving application development through behavior driven developmentDriving application development through behavior driven development
Driving application development through behavior driven development
 
Raising the Bar
Raising the BarRaising the Bar
Raising the Bar
 
Mastering BDD - Eran Kinsbruner Workshop Quest 2018
Mastering BDD - Eran Kinsbruner Workshop Quest 2018Mastering BDD - Eran Kinsbruner Workshop Quest 2018
Mastering BDD - Eran Kinsbruner Workshop Quest 2018
 
DevOps and the Future of Information Security
DevOps and the Future of Information SecurityDevOps and the Future of Information Security
DevOps and the Future of Information Security
 
Arch factory - Agile Design: Best Practices
Arch factory - Agile Design: Best PracticesArch factory - Agile Design: Best Practices
Arch factory - Agile Design: Best Practices
 
(SPOT205) 5 Lessons for Managing Massive IT Transformation Projects
(SPOT205) 5 Lessons for Managing Massive IT Transformation Projects(SPOT205) 5 Lessons for Managing Massive IT Transformation Projects
(SPOT205) 5 Lessons for Managing Massive IT Transformation Projects
 
Devconf 2011 - PHP - How Yii framework is developed
Devconf 2011 - PHP - How Yii framework is developedDevconf 2011 - PHP - How Yii framework is developed
Devconf 2011 - PHP - How Yii framework is developed
 
It's XP, Stupid
It's XP, StupidIt's XP, Stupid
It's XP, Stupid
 
Agile Software Development
Agile Software DevelopmentAgile Software Development
Agile Software Development
 
I Don't Code, Am I No Longer Useful
I Don't Code, Am I No Longer UsefulI Don't Code, Am I No Longer Useful
I Don't Code, Am I No Longer Useful
 
Agile Methodologies And Extreme Programming
Agile Methodologies And Extreme ProgrammingAgile Methodologies And Extreme Programming
Agile Methodologies And Extreme Programming
 

Mehr von Garth Gilmour

Mehr von Garth Gilmour (20)

Compose in Theory
Compose in TheoryCompose in Theory
Compose in Theory
 
Kotlin / Android Update
Kotlin / Android UpdateKotlin / Android Update
Kotlin / Android Update
 
TypeScript Vs. KotlinJS
TypeScript Vs. KotlinJSTypeScript Vs. KotlinJS
TypeScript Vs. KotlinJS
 
Shut Up And Eat Your Veg
Shut Up And Eat Your VegShut Up And Eat Your Veg
Shut Up And Eat Your Veg
 
Lies Told By The Kotlin Compiler
Lies Told By The Kotlin CompilerLies Told By The Kotlin Compiler
Lies Told By The Kotlin Compiler
 
A TypeScript Fans KotlinJS Adventures
A TypeScript Fans KotlinJS AdventuresA TypeScript Fans KotlinJS Adventures
A TypeScript Fans KotlinJS Adventures
 
The Heat Death Of Enterprise IT
The Heat Death Of Enterprise ITThe Heat Death Of Enterprise IT
The Heat Death Of Enterprise IT
 
Lies Told By The Kotlin Compiler
Lies Told By The Kotlin CompilerLies Told By The Kotlin Compiler
Lies Told By The Kotlin Compiler
 
Type Driven Development with TypeScript
Type Driven Development with TypeScriptType Driven Development with TypeScript
Type Driven Development with TypeScript
 
Generics On The JVM (What you don't know will hurt you)
Generics On The JVM (What you don't know will hurt you)Generics On The JVM (What you don't know will hurt you)
Generics On The JVM (What you don't know will hurt you)
 
Using Kotlin, to Create Kotlin, to Teach Kotlin, in Space
Using Kotlin, to Create Kotlin,to Teach Kotlin,in SpaceUsing Kotlin, to Create Kotlin,to Teach Kotlin,in Space
Using Kotlin, to Create Kotlin, to Teach Kotlin, in Space
 
Is Software Engineering A Profession?
Is Software Engineering A Profession?Is Software Engineering A Profession?
Is Software Engineering A Profession?
 
Social Distancing is not Behaving Distantly
Social Distancing is not Behaving DistantlySocial Distancing is not Behaving Distantly
Social Distancing is not Behaving Distantly
 
The Great Scala Makeover
The Great Scala MakeoverThe Great Scala Makeover
The Great Scala Makeover
 
Transitioning Android Teams Into Kotlin
Transitioning Android Teams Into KotlinTransitioning Android Teams Into Kotlin
Transitioning Android Teams Into Kotlin
 
Simpler and Safer Java Types (via the Vavr and Lambda Libraries)
Simpler and Safer Java Types (via the Vavr and Lambda Libraries)Simpler and Safer Java Types (via the Vavr and Lambda Libraries)
Simpler and Safer Java Types (via the Vavr and Lambda Libraries)
 
The Three Horse Race
The Three Horse RaceThe Three Horse Race
The Three Horse Race
 
The Bestiary of Pure Functional Programming
The Bestiary of Pure Functional Programming The Bestiary of Pure Functional Programming
The Bestiary of Pure Functional Programming
 
BelTech 2019 Presenters Workshop
BelTech 2019 Presenters WorkshopBelTech 2019 Presenters Workshop
BelTech 2019 Presenters Workshop
 
Kotlin The Whole Damn Family
Kotlin The Whole Damn FamilyKotlin The Whole Damn Family
Kotlin The Whole Damn Family
 

Kürzlich hochgeladen

introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 

Kürzlich hochgeladen (20)

How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...
 

10 Big Ideas from Industry