• RSS
  • Print this article!
  • Digg
  • del.icio.us
  • DZone
  • Facebook
  • Mixx
  • Google Bookmarks
  • Design Float
  • Reddit
  • StumbleUpon
  • Technorati
  • Live
  • TwitThis

Archive

Posts Tagged ‘design patterns’

10 Must Have Cheat Sheets for Developers

July 6th, 2009
Comments Off

There are far too many languages out there for web developers to remember everything for every language. Here is a list of cheat sheets that will help speed up research time for the lingo that you forget.

Read more…

Web Design Patterns: Making Websites More User Friendly

June 9th, 2009

Web Design Patterns are elements in website design that have become popular by the masses. So much so that users instinctively know how to use them. Why not use them and make your website that much easier to use.

Read more…

Factory Method Design Pattern in PHP

June 1st, 2009
Comments Off

What is the Factory Method Design Pattern? and why should I use it? First off we should look at what a design pattern is. If you’re not sure you can visit: Design Patterns: Soliving web development problems and Singleton Design Pattern: When one instance is enough. It might help you get a grasp on design patterns.

Read more…

Singleton Design Pattern:When One Instance is Enough

May 26th, 2009
Comments Off

A design pattern that allows you to make sure there is only one instance of a class. This is uber-important for fast and efficient code. You no longer have to worry if you created an instance somewhere that wasn’t cleaned up afterward (i.e database connections). Big time stress relief. If you have never used a design pattern or don’t know what one is you can check out this previous article that can walk you through it.

Read more…

Design Patterns: Solving Web Development Problems

May 21st, 2009
Comments Off

Are you not sure how to structure your code? Have you come across a problem that makes life difficult. Odds are many developers have been in your situation before. Design patterns are the antacid of the development world…finally relief.

Read more…