Skip to main content
New book · out now

Understanding Drupal: A Complete Guide to Caching Layers

A deep, practical tour through every caching layer in Drupal — from the render cache to chained fast backends.

Get it on LeanPub
Understanding Drupal: A Complete Guide to Caching Layers — book cover
Recent writing RSS feed →
Oct 22, 2012

JCM Solutions

Just posting this to push a company my friend and I started - JCM Solutions. JCM Solutions is a computer repair and computer network servicing company.
Jun 20, 2012

Custom Form Fields in Joomla

When I was developing my Joomla! components to make my GRealty suite I needed a few custom fields that were not native to Joomla The process is simple and only requires one new folder and one new file in your component. In your components admin/models/  folder create a new folder called 'fields'.
#joomla  #php  #tutorial
Jan 22, 2012

Simple PHP Calendar Script

Here is a simple PHP calendar script that can be easily customized and designed with CSS.
<?php

$time = time();

$numDay = date('d', $time);
$numMonth = date('m', $time);
$strMonth = date('F', $time);
$numYear = date('Y', $time);
$firstDay = mktime(0,0,0,$numMonth,1,$numYear);
$daysInMonth = cal_days_in_mo
  
#php
Dec 11, 2011

Bootstrap from Twitter

Need to do a quick web site but strapped for time? Twitter has a whole bunch of open source projects they have released, and one of them is called Bootstrap. It comes preloaded with CSS styles and simple JavaScript plugins.
#javascript  #twitter  #web
Dec 05, 2011

jQuery Rating Script

For KenoBarNight I just added a simple rating system mocking that of YouTube and others; a simple "I Like It" or "I Don't Like It". Use whatever verbage you'd like, that is what this script does.
#jquery  #php  #tutorial
Dec 04, 2011

Achievements - Winning the Internet

Achievements seem to be popping up in every new web service. Why? Because achievements make you win the Internet. Okay, not really, but it does make your user feel more engaged into your web site. It gives the user a reason to use your site and do more things on your site. The best part is the achievements do not even need to be all that difficult.
#tips  #web
Dec 03, 2011

Awesome Google Infographic

Over at Business MBA, I found this awesome infographic labeled "Behind the Numbers" that breaks down some information about one of the largest companies out there, Google.
#google
Nov 30, 2011

Tips for Google Maps and Mobile

When developing web applications it is always wise to use the most up to date APIs and know when to scale back on certain functionality.
#google  #tips  #web
Nov 28, 2011

Mobile Geolocation

With the new wave of mobile devices being a major way to access the Internet, it has become possible to customize web applications based on a user's location - or create web applications based on user location.
#geolocation  #mobile  #mysql  #php