Skip to main content
[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.
[2011-12-05]

jQuery Rating Script

#jquery #php #tutorial
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.
[2011-12-04]

Achievements - Winning the Internet

#tips #web
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.
[2011-12-03]

Awesome Google Infographic

#google
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.