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

Archive

Posts Tagged ‘Back End’

Reasons Why You Should Use a Function

June 11th, 2009

When is a good time to use a function or a method? Here is a list of reasons when you should use them.

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…