What is Object Oriented Programming
Welcome to a brief tutorial on what is Object Oriented Programming (OOP) and why the object oriented approach is considered the best way to program. Objects programming has taken the world by storm...
View ArticleWeb Design and Programming Pt 10 OOP & PHP
Here I cover Object Oriented PHP. I explain encapsulation, classes, objects, public, private, constructors, destructors, __set, __get and more.
View ArticleWeb Design and Programming Pt 11
Here I cover the following topics on PHP Object Oriented Programming: Inheritance : Static Attributes (Variables) : The _destruct Function : Final : Overriding Functions
View ArticleObject Oriented Design Tutorial
I cover a ton of things in the video below. The goal of this tutorial is to teach you how to create excellent OO designs.
View ArticleObject Oriented Design 2
In this tutorial, I show you how to turn UML diagrams into code and a working program.
View ArticleObject Oriented Design 3
In this Object Oriented Design Tutorial I cover Iterative Development, The Unified Process and Usage Cases.
View ArticleObject Oriented Design 4
I cover all of the following: conceptual classes, how to build domain models, turning nouns into classes, associations and how to tell an attribute from a class.
View ArticleObject Oriented Design 5
I continue building my ATM software using Object Oriented Design principles with a focus on sequence diagrams
View ArticleObject Oriented Design 6
I simulate the process of creating a sequence diagram in a group atmosphere.
View ArticleObject Oriented Design 7
I show you how to convert a Sequence Diagram into a Class Diagram.
View ArticleUML Video Tutorial
I cover Use Case, Activity, Class, Object, Sequence and many more UML Diagrams.
View ArticleObject Oriented Design 8
I show you how to convert the Sequence and Class Diagram into working code.
View ArticleObject Oriented Design 9
I finish turning sequence diagrams into code. If you get good at this process you'll be able to make any program
View ArticleObject Oriented Design 10
In this tutorial, I cover GRASP, or General Responsibility Assignment Software Patterns.
View ArticleObject Oriented Design 11
I talk about Polymorphism, Indirection, Pure Fabrication and Protected Variations.
View ArticleObject Oriented Design Tutorial
Object Oriented Design Tutorial (11 Videos) I focus on teaching the Object Oriented Design process in numerous ways in this video series.
View ArticleCode Refactoring
Code refactoring is used to improve code design to make it easier to understand and extend. I cover the code refactoring bad smells and provide examples
View ArticleCode Refactoring 2
I talk about some basic code refactoring concepts like method extraction and how to handle temporary and local variables
View ArticleCode Refactoring 3
I show you examples of how you can make your code more understandable using something called an Explaining Variable
View ArticleCode Refactoring 4
We'll cover converting simple types into class objects. We'll also look at how to move fields and methods into other classes and a bunch of tricks
View ArticleCode Refactoring 5
In this code refactoring tutorial, I will show you how to replace a constructor with a factory method in 2 code examples. I also solve a challenge question
View ArticleCode Refactoring 6
We'll clean up conditional statements by extracting them into methods, talk about naming, guard clauses and polymorphism
View ArticleCode Refactoring 7
We'll work with the strategy design pattern in java. We'll explore how the strategy pattern can be used to eliminate conditionals during code refactoring
View ArticleCode Refactoring 8
I show you how to eliminate duplicate code using the template method pattern
View ArticleCode Refactoring 9
In this part of my code refactoring tutorial I will cover how to turn an implied tree structure into a composite pattern. What do you do when you want to model a tree structure? You can either list the...
View ArticleCode Refactoring 10
I revisit the Builder Design Pattern to answer questions I've received and to get you ready to build composites with it
View ArticleCode Refactoring 11
One of you guys sent me a request to explain the chapter in Refactoring to Patterns titled Encapsulate Composite with Builder.
View ArticleCode Refactoring 12
I show you how to eliminate large Accumulation Methods by Extracting Methods and Using a Collecting Parameter
View ArticleCode Refactoring 13
I show you how to replace conditionals with the command pattern and much more
View ArticleCode Refactoring 15
In this part of my code refactoring tutorial, we'll look at how to replace a primitive type with a class
View ArticleCode Refactoring 16
I show you how can we add additional features to code using the decorator design pattern
View ArticleCode Refactoring 17
This code refactoring tutorial is all about the Visitor Design Pattern
View ArticleCode Refactoring 18
I cover the Abstract Factory Pattern to end my code refactoring tutorial
View ArticleRefactoring Video Tutorial
Refactoring Video Tutorial : 18 Videos on the most common reafctorings
View Article