Skip to main content

📘 Understanding Drupal: A Complete Guide to Caching Layers — my new book is out now!

[2012-12-06]

Mobile Developer Apps

#apps #mobile #web

It's a mobile world, and the same is expected of developers. You cannot always be next to a computer, but you can take steps to help solve a crisis without ruining your day.image

[2012-11-29]

Secure and Harden WordPress

#security #wordpress #xss
WordPress is a great piece of software supported by a large open source community. It is quick to deploy, easy to configure, and easy to use. When it comes to simple content management, WordPress is the way to go. However, some of us have had the unfortunate event of getting our WordPress site hacked or defaced.
[2012-11-25]

gCal - A Google Calendar

#google #plugin #wordpress
Recently at work I developed a quick and dirty Google Calendar plugin for WordPress called gCal. In all simplicity, it needed to grab the public calendar XML file, parse it, shoot out a list and provide event details in a JavaScript modal popup.
[2012-11-23]

Optimize your website

#apache #google #web
Watching file sizes and following coding standards are only one simple way to optimize your website. Proper HTML will ensure you page is processed as smoothly as possible, but does not mean a major speed boost.
[2012-11-23]

jsFiddle for your debugging needs

#css #javascript #jquery #tips
We all love JavaScript and what it can do, especially the various frameworks created to make the life of a developer easier. However, with scripting comes debugging, and debugging can take a lot of time.
[2012-10-22]

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.
[2012-06-20]

Custom Form Fields in Joomla

#joomla #php #tutorial
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'.
[2012-01-22]

Simple PHP Calendar Script

#php
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
  
      
[2011-12-11]

Bootstrap from Twitter

#javascript #twitter #web
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.