SlideShare a Scribd company logo
1 of 85
Download to read offline
Andrei Raifura iOS Department Manager, YOPESO
#CodeWăy
Inheritance -
The myth of code reuse
• How does Inheritance help us to reuse the code
• Why it doesn’t work
• The pitfalls of Inheritance
• To use or not to use
Agenda
• Encapsulation
• Abstraction
• Inheritance
• Polymorphism
OOP principles
I will teach
you OOP
Inheritance
“…It is a mechanism for code reuse and to allow independent
extensions of the original software via public classes and interfaces…”
Wikipedia, Inheritance (object-oriented programming)
Inheritance
‣ Two ears
‣ For legs
‣ Tail
Animal
Case study
Case study
CustomerYou
Case study
Can you program a
Toyota Corolla for me?
CustomerYou
Case study
Mm..Sure!!
CustomerYou
Toyota Corolla
Wheels
Manufacturer
Transmission
4
Toyota
Front-wheel drive
Defining Car
class Car {
let frontLeft = Wheel()
let frontRight = Wheel()
let rearLeft = Wheel()
let rearRight = Wheel()
Defining Car
class Car {
let frontLeft = Wheel()
let frontRight = Wheel()
let rearLeft = Wheel()
let rearRight = Wheel()
var manufacturer: String {
get { return "Undefined" }
}
Defining Car
class Car {
. . .
func turnLeft(degrees: Double) {
frontLeft.turnLeft(degrees)
frontRight.turnLeft(degrees)
}
func turnRight(degrees: Double) {
frontLeft.turnRight(degrees)
frontRight.turnRight(degrees)
}
Defining Car
class Car {
. . .
func accelerate(kph: Double) {
frontLeft.rotate(kph)
frontRight.rotate(kph)
}
}
Defining Wheel
class Wheel {
private var angle = 0.0
private var rotationSpeed = 0.0
func turnRight(degrees: Double) {
angle += degrees
}
func turnLeft(degrees: Double) {
angle -= degrees
}
func rotate(kph: Double) {
rotationSpeed = kph
}
}
Defining Toyota Corolla
class ToyotaCorolla: Car {
override var manufacturer: String {
get { return "Toyota" }
}
}
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
ToyotaCorolla
- turnLeft
- turnRight
- rotate
Wheel
Case study
Great!
Now, i’d like to have a
Toyota Corolla Sport
CustomerYou
Case study
Ok! will do!
CustomerYou
Toyota Corolla
Wheels
Manufacturer
Transmission
4
Toyota
Front-wheel drive
Toyota Corolla
Wheels
Manufacturer
Transmission
4
Toyota
Front-wheel drive
Toyota Corolla Sport
Wheels
Manufacturer
Transmission
4
Toyota
Rear-wheel drive
Defining Toyota Corolla Sport
class ToyotaCorollaSport: ToyotaCorolla {
override func accelerate(kph: Double) {
rearLeft.rotate(kph)
rearRight.rotate(kph)
}
}
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
ToyotaCorolla
- turnLeft
- turnRight
- rotate
Wheel
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
ToyotaCorollaSport
ToyotaCorolla
- turnLeft
- turnRight
- rotate
Wheel
Case study
Woww!
Now a Honda Civic
and a Honda Civic
Sport
CustomerYou
Case study
Mmnn.. ok
CustomerYou
Honda Civic
Wheels
Manufacturer
Transmission
4
Front-wheel drive
Honda
Honda Civic Sport
Wheels
Manufacturer
Transmission
4
Rear-wheel drive
Honda
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
ToyotaCorollaSport
ToyotaCorolla
- turnLeft
- turnRight
- rotate
Wheel
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
ToyotaCorollaSport
ToyotaCorolla
- turnLeft
- turnRight
- rotate
Wheel
HondaCivic
HondaCivicSport
Defining Front-wheel Drive
class FrontWheelDriveCar: Car {
override func accelerate(kph: Double) {
frontLeft.rotate(kph)
frontRight.rotate(kph)
}
}
Defining Rear-wheel Drive
class RearWheelDriveCar: Car {
override func accelerate(kph: Double) {
rearLeft.rotate(kph)
rearRight.rotate(kph)
}
}
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
ToyotaCorollaSport
ToyotaCorolla
- turnLeft
- turnRight
- rotate
Wheel
HondaCivic
HondaCivicSport
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
FrontWheelDriveCar
ToyotaCorollaSport
RearWheelDriveCar
ToyotaCorolla
- turnLeft
- turnRight
- rotate
Wheel
HondaCivic HondaCivicSport
Refactoring Toyota Corolla
class ToyotaCorolla: FrontWheelDriveCar {
override var manufacturer: String {
get { return "Toyota" }
}
}
Refactoring Toyota Corolla Sport
class ToyotaCorollaSport: RearWheelDriveCar {
override var manufacturer: String {
get { return "Toyota" }
}
}
Defining Honda Civic
class HondaCivic: FrontWheelDriveCar {
override var manufacturer: String {
get { return "Honda" }
}
}
Defining Honda Civic Sport
class HondaCivicSport: RearWheelDriveCar {
override var manufacturer: String {
get { return "Honda" }
}
}
Lexus GX
Wheels
Manufacturer
Transmission
4
All-wheel drive
Lexus
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
FrontWheelDriveCar
ToyotaCorollaSport
RearWheelDriveCar
ToyotaCorolla
- turnLeft
- turnRight
- rotate
Wheel
HondaCivic HondaCivicSport
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
FrontWheelDriveCar
ToyotaCorollaSport
RearWheelDriveCar
ToyotaCorolla
- turnLeft
- turnRight
- rotate
Wheel
HondaCivic HondaCivicSport
AllWheelDriveCar
LexusGX
Defining All-wheel Drive
class AllWheelDriveCar: Car {
override func accelerate(kph: Double) {
frontLeft.rotate(kph)
frontRight.rotate(kph)
rearLeft.rotate(kph)
rearRight.rotate(kph)
}
}
Defining Lexus GX
class LexusGX: AllWheelDriveCar {
override var manufacturer: String {
get { return "Lexus" }
}
}
Case study
Amazing!
But, can you make
me an experimental
car?
CustomerYou
Case study
It will switch
between two-wheel
drive and all-wheel
drive…
CustomerYou
Case study
And will turn with all
four wheels.
CustomerYou
Experimental
Wheels
Manufacturer
Transmission
4
Front-wheel drive
Experimental
Experimental
Wheels
Manufacturer
Transmission
4
Front-wheel drive &
All-wheel drive
Experimental
Experimental
Wheels
Manufacturer
Transmission
4
Front-wheel drive &
All-wheel drive
Experimental
Steering All-wheel steering
Are you Seriously?
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
FrontWheelDriveCar RearWheelDriveCar
- turnLeft
- turnRight
- rotate
Wheel
AllWheelDriveCar
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
FrontWheelDriveCar RearWheelDriveCar
- turnLeft
- turnRight
- rotate
Wheel
AllWheelDriveCar
ExperimentalCar
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
FrontWheelDriveCar RearWheelDriveCar
- turnLeft
- turnRight
- rotate
Wheel
AllWheelDriveCar
ExperimentalCar
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
FrontWheelDriveCar RearWheelDriveCar
- turnLeft
- turnRight
- rotate
Wheel
AllWheelDriveCar
ExperimentalCar
Class Diagram
- manufacturer
- turnLeft
- turnRight
- accelerate
Car
FrontWheelDriveCar RearWheelDriveCar
- turnLeft
- turnRight
- rotate
Wheel
AllWheelDriveCar
ExperimentalCar
The Diamond of Dread
Code reuse
“…It is a mechanism for code reuse and to allow independent
extensions of the original software via public classes and interfaces…”
Wikipedia, Inheritance (object-oriented programming)
Code reuse
“…It is a mechanism for code reuse and to allow independent
extensions of the original software via public classes and interfaces…”
Wikipedia, Inheritance (object-oriented programming)
Solutions
Demo
Inheritance pitfalls
• A very tight binding between a superclass and its subclasses
• Makes the code fragile
• Difficult to debug
• Inheritance relationships generally can't be altered at runtime.
• Leads to violation of Liskov Substitution Principle
• Difficult to test
Inheritance pitfalls
• A very tight binding between a superclass and its subclasses
• Makes the code fragile
• Difficult to debug
• Inheritance relationships generally can't be altered at runtime.
• Leads to violation of Liskov Substitution Principle
• Difficult to test
Inheritance pitfalls
• A very tight binding between a superclass and its subclasses
• Difficult to debug
• Inheritance relationships generally can't be altered at runtime.
• Leads to violation of Liskov Substitution Principle
• Difficult to test
• Makes the code fragile
Inheritance pitfalls
• A very tight binding between a superclass and its subclasses
• Difficult to debug
• Inheritance relationships generally can't be altered at runtime.
• Leads to violation of Liskov Substitution Principle
• Difficult to test
• Makes the code fragile
Inheritance pitfalls
• A very tight binding between a superclass and its subclasses
• Difficult to debug
• Inheritance relationships generally can't be altered at runtime.
• Leads to violation of Liskov Substitution Principle
• Difficult to test
• Makes the code fragile
Liskov Substitution Principle
Subtypes must be substitutable for their base types.
Robert C. Martin (Uncle Bob)
Violation of LSP
class File {
var path: String!
var data: NSData!
func loadData() {
// Retrieve data from disk
}
func saveData() {
// Write data to disk
}
}
class ReadOnlyFile: File {
override func saveData() {
print("Cannot write data")
}
}
Violation of LSP
Inheritance pitfalls
• A very tight binding between a superclass and its subclasses
• Difficult to debug
• Inheritance relationships generally can't be altered at runtime.
• Leads to violation of Liskov Substitution Principle
• Difficult to test
• Makes the code fragile
Inheritance pitfalls
• A very tight binding between a superclass and its subclasses
• Makes the code fragile
• Difficult to debug
• Inheritance relationships generally can't be altered at runtime.
• Leads to violation of Liskov Substitution Principle
• Difficult to test
Should we avoid inheritance
altogether?
To use?
Use Inheritance when your derived class truly is the type you're extending.
And it will always be!
The Employee
- firstName
- lastName
- age
- department
Employee
The Employee and the Student
- firstName
- lastName
- age
- year
- faculty
Student
- firstName
- lastName
- age
- department
Employee
The Employee and the Student
- firstName
- lastName
- age
Person
- department
Employee
- year
- faculty
Student
The Employee and the Student
- firstName
- lastName
- age
Person
- department
Employee
- year
- faculty
Student
I am a Student.
And an Employee.
The Employee and the Student
- firstName
- lastName
- age
Person
- department
Employee
- year
- faculty
Student
I am a Student.
And an Employee.
I've just become
unemployed.
The Employee and the Student
- firstName
- lastName
- age
Person
Occupation
- department
Employee
- year
- faculty
Student Unemployed
Or not to use?
How about polymorphism?
Consider using Protocols* to achieve a polymorphic behaviour.
* Also known as Interfaces in other languages
I need to reuse some code from superclass. No
The derived class is almost the extending type No
The derived class is the extending type but might change in
the future No
I need a polymorphic behaviour No
The derived class truly is the extending type. And it won't
change.
I swear!
Yes
To use or Not to use?
• How does Inheritance help us to reuse the code
• Why it doesn’t work
• The pitfalls of Inheritance
• To use or not to use
Review
Use Inheritance Wisely!
Questions?
Contacts
Raifura Andrei
iOS Department Manager, YOPESO
andrei.raifura@yopeso.com
thelvis4@gmail.com
#CodeWăy
Inheritance - the myth of code reuse | Andrei Raifura | CodeWay 2015

More Related Content

Similar to Inheritance - the myth of code reuse | Andrei Raifura | CodeWay 2015

Reactive Web-Applications @ LambdaDays
Reactive Web-Applications @ LambdaDaysReactive Web-Applications @ LambdaDays
Reactive Web-Applications @ LambdaDaysManuel Bernhardt
 
David Bilík: Anko – modern way to build your layouts?
David Bilík: Anko – modern way to build your layouts?David Bilík: Anko – modern way to build your layouts?
David Bilík: Anko – modern way to build your layouts?mdevtalk
 
From V8 to Modern Compilers
From V8 to Modern CompilersFrom V8 to Modern Compilers
From V8 to Modern CompilersMin-Yih Hsu
 
Webinar: From Relational Databases to MongoDB - What You Need to Know
Webinar: From Relational Databases to MongoDB - What You Need to KnowWebinar: From Relational Databases to MongoDB - What You Need to Know
Webinar: From Relational Databases to MongoDB - What You Need to KnowMongoDB
 
Windycityrails page performance
Windycityrails page performanceWindycityrails page performance
Windycityrails page performanceJohn McCaffrey
 
The Ember.js Framework - Everything You Need To Know
The Ember.js Framework - Everything You Need To KnowThe Ember.js Framework - Everything You Need To Know
The Ember.js Framework - Everything You Need To KnowAll Things Open
 
MySQL Developer Day conference: MySQL Replication and Scalability
MySQL Developer Day conference: MySQL Replication and ScalabilityMySQL Developer Day conference: MySQL Replication and Scalability
MySQL Developer Day conference: MySQL Replication and ScalabilityShivji Kumar Jha
 
Does Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to JavaDoes Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to JavaC4Media
 
Chaos Testing with F# and Azure by Rachel Reese at Codemotion Dubai
Chaos Testing with F# and Azure by Rachel Reese at Codemotion DubaiChaos Testing with F# and Azure by Rachel Reese at Codemotion Dubai
Chaos Testing with F# and Azure by Rachel Reese at Codemotion DubaiCodemotion Dubai
 
Bytecode Verification, the Hero That Java Needs [JavaOne 2016 CON1500]
Bytecode Verification, the Hero That Java Needs [JavaOne 2016 CON1500]Bytecode Verification, the Hero That Java Needs [JavaOne 2016 CON1500]
Bytecode Verification, the Hero That Java Needs [JavaOne 2016 CON1500]David Buck
 
QCon New York - Migrating to Cloud Native with Microservices
QCon New York - Migrating to Cloud Native with MicroservicesQCon New York - Migrating to Cloud Native with Microservices
QCon New York - Migrating to Cloud Native with MicroservicesAdrian Cockcroft
 
Configuration for Java EE and the Cloud
Configuration for Java EE and the CloudConfiguration for Java EE and the Cloud
Configuration for Java EE and the CloudDmitry Kornilov
 
Svelte the future of frontend development
Svelte   the future of frontend developmentSvelte   the future of frontend development
Svelte the future of frontend developmenttwilson63
 
“Quantum” Performance Effects: beyond the Core
“Quantum” Performance Effects: beyond the Core“Quantum” Performance Effects: beyond the Core
“Quantum” Performance Effects: beyond the CoreC4Media
 

Similar to Inheritance - the myth of code reuse | Andrei Raifura | CodeWay 2015 (20)

Reactive Web-Applications @ LambdaDays
Reactive Web-Applications @ LambdaDaysReactive Web-Applications @ LambdaDays
Reactive Web-Applications @ LambdaDays
 
David Bilík: Anko – modern way to build your layouts?
David Bilík: Anko – modern way to build your layouts?David Bilík: Anko – modern way to build your layouts?
David Bilík: Anko – modern way to build your layouts?
 
From V8 to Modern Compilers
From V8 to Modern CompilersFrom V8 to Modern Compilers
From V8 to Modern Compilers
 
Webinar: From Relational Databases to MongoDB - What You Need to Know
Webinar: From Relational Databases to MongoDB - What You Need to KnowWebinar: From Relational Databases to MongoDB - What You Need to Know
Webinar: From Relational Databases to MongoDB - What You Need to Know
 
Windycityrails page performance
Windycityrails page performanceWindycityrails page performance
Windycityrails page performance
 
The Ember.js Framework - Everything You Need To Know
The Ember.js Framework - Everything You Need To KnowThe Ember.js Framework - Everything You Need To Know
The Ember.js Framework - Everything You Need To Know
 
MySQL Developer Day conference: MySQL Replication and Scalability
MySQL Developer Day conference: MySQL Replication and ScalabilityMySQL Developer Day conference: MySQL Replication and Scalability
MySQL Developer Day conference: MySQL Replication and Scalability
 
Does Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to JavaDoes Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to Java
 
Anti Object-Oriented Design Patterns
Anti Object-Oriented Design PatternsAnti Object-Oriented Design Patterns
Anti Object-Oriented Design Patterns
 
Let's Get to the Rapids
Let's Get to the RapidsLet's Get to the Rapids
Let's Get to the Rapids
 
The State of Wicket
The State of WicketThe State of Wicket
The State of Wicket
 
Chaos Testing with F# and Azure by Rachel Reese at Codemotion Dubai
Chaos Testing with F# and Azure by Rachel Reese at Codemotion DubaiChaos Testing with F# and Azure by Rachel Reese at Codemotion Dubai
Chaos Testing with F# and Azure by Rachel Reese at Codemotion Dubai
 
Bytecode Verification, the Hero That Java Needs [JavaOne 2016 CON1500]
Bytecode Verification, the Hero That Java Needs [JavaOne 2016 CON1500]Bytecode Verification, the Hero That Java Needs [JavaOne 2016 CON1500]
Bytecode Verification, the Hero That Java Needs [JavaOne 2016 CON1500]
 
Tom Kyte at Hotsos 2015
Tom Kyte at Hotsos 2015Tom Kyte at Hotsos 2015
Tom Kyte at Hotsos 2015
 
The Java Carputer
The Java CarputerThe Java Carputer
The Java Carputer
 
QCon New York - Migrating to Cloud Native with Microservices
QCon New York - Migrating to Cloud Native with MicroservicesQCon New York - Migrating to Cloud Native with Microservices
QCon New York - Migrating to Cloud Native with Microservices
 
Configuration for Java EE and the Cloud
Configuration for Java EE and the CloudConfiguration for Java EE and the Cloud
Configuration for Java EE and the Cloud
 
Svelte the future of frontend development
Svelte   the future of frontend developmentSvelte   the future of frontend development
Svelte the future of frontend development
 
“Quantum” Performance Effects: beyond the Core
“Quantum” Performance Effects: beyond the Core“Quantum” Performance Effects: beyond the Core
“Quantum” Performance Effects: beyond the Core
 
Web servicesoverview
Web servicesoverviewWeb servicesoverview
Web servicesoverview
 

Recently uploaded

ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 
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.pdfkalichargn70th171
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
Introduction to Decentralized Applications (dApps)
Introduction to Decentralized Applications (dApps)Introduction to Decentralized Applications (dApps)
Introduction to Decentralized Applications (dApps)Intelisync
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
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 ...harshavardhanraghave
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...aditisharan08
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
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.docxComplianceQuest1
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
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 CCTVshikhaohhpro
 

Recently uploaded (20)

Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
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
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
Introduction to Decentralized Applications (dApps)
Introduction to Decentralized Applications (dApps)Introduction to Decentralized Applications (dApps)
Introduction to Decentralized Applications (dApps)
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
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 ...
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
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
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
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 Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 

Inheritance - the myth of code reuse | Andrei Raifura | CodeWay 2015