-
General: Recursive Programming
So what is recursive programming? As someone who took up Computer Science, this is something you learn in school but never really used it at work. Unless you work in a specialized field, it is not something that one might use when programming business applications. Remember Fibonacci? Fibonacci numbers are defined as the sum of the two prece... Read More
-
Object Oriented Programming In Javascript
Yes, there is OOP in JavaScript. The below code are notes that I took during my first week of Advanced Javascript class that I am currently enrolled in at Ryerson University. These are working code. I used the free Komodo editor from ActiveState. It is a cool editor with colored syntax and intellisense and works with HTML and Javascript, and... Read More
-
Design Patterns: Fundamentals
Fundamental design patterns are divided into 3 categories: Creational Singleton Builder Prototype Abstract Factory Factory Method Behavioral Mediator Visitor Template Method Iterator Command Memento Observer Interpreter Chain of Responsibi... Read More
-
HTML Fundamentals
Below are the fundamentals that you need to know to start creating HTML pages. Good for brushing up your HTML skills if you feel you forgot them already. <!DOCTYPE html> <html></html> <head></head> <title></title> <link type=“text/css” rel=“stylesheet” href=“stylesheet.css”... Read More
-
Webbing My Way To Frontend Development
I just joined the Front End Developer Group in LinkedIn and came across this posting with a link to a site listing the best front end tools and resources. And I say it really is one heck of a list. For me just beginning to work my way to frontend development, this is really useful. What actually caught my attention are the list of sites that ... Read More