23
May 2011

JavaScript - Everything Acts Like An Object Except Null and Undefined

JavaScript Garden

Object Usage and Properties
Everything in JavaScript acts like an object, with the only two exceptions being null and undefined.

21
May 2011

Managing Cron Jobs In PHP

Let’s face it, having the ability to schedule tasks to run in the background is just great! From backing up an SQL database, fetching / sending emails to running clean up tasks, analyzing performance, or even grabbing RSS feeds, cron jobs are fantastic!
Although the syntax of scheduling a new job may seem daunting at first glance, it’s actually relatively simple to understand once you break it down. A cron job will always have five columns each of which represent a chronological ‘operator’ followed by the full path and command to execute:

11
Mar 2011

Module Development with Ezra Gildesgame

27
Feb 2011

Forward Thinking Form Validation

"Form validation has been a finicky business since the web was born. First came the server-side validation error summary. Then we evolved to client-side validation to verify results inline. Now, we have the marching giant that is HTML5 and CSS3: HTML5’s forms chapter offers new input types and attributes that make validation constraints possible. CSS3’s basic UI module provides several pseudo-classes to help us style those validation states and change a field’s appearance based on the user’s actions.

21
Feb 2011

Drush Commands

Drush Commands

Handy reference for all those pesky Drush commands. From the creators.

View the rest here.