
February 26, 2010
This script works great for doing grayscale on hover when used with jQuery.
http://james.padolsey.com/demos/grayscale/
I used it to gray out thumbnails on a staff page then used the grayscale.reset() function to colour them in on hover. The demo page says it doesn’t work well in Chrome but it seems to be working fine for me.

February 10, 2010

February 2, 2010
Jim Zinger was actively involved within the local art community and gradually became widely recognized as a gifted artist, illustrating books and teaching manuals. His work has been the subject of many articles, reviews and newspaper articles throughout North America, where his work has been shown in countless exhibitions and galleries. He now enjoys international recognition, with his art being held in private and public collections worldwide.
Visit Jim Zinger’s Website

October 8, 2009
Quick n’ Simple. Check it:
function strtoslug($str) {
$str = strtolower(trim($str));
$str = preg_replace('/[^a-z0-9-]/', '-', $str);
$str = preg_replace('/-+/', "-", $str);
return $str;
}

October 7, 2009
Winexpert is the world’s largest manufacturer of consumer winemaking products. Check out their new site here: http://www.winexpert.com
Beyond The Grape is a Winexpert Retailer. Visit their new site: http://www.beyondthegrape.com

July 21, 2009
“At Rocking R Ranch, Horses and Boarding are our specialty and priority. We offer a safe, quite and convenient facility that is family oriented, with a friendly atmosphere. If you are looking for a peaceful and quiet setting to enjoy your horse and get away from the hustle and bustle of everyday life Rocking R Ranch is the place you’re looking for.”
Check it out: http://www.rockingrranch.ca

July 3, 2009
I’ve created a climbing blog to keep track of what I’m up to in the rock climbing world. I basically need something for myself to remember what I have done and when, so this is it. Take a look, follow if you wish.
You can find it here: http://climbing.danbeland.com/

May 29, 2009
IE6 seems to double it’s margins on floated elements… Why? Who cares… Here’s how you fix it!
Just add display: inline; to the floated element!
I found it here: http://www.jaymeblackmon.com/ie6-double-margin-bug-fix

May 5, 2009
When all else fails and your Windows network just won’t behave, nuke it!
Open up the Console (Start -> Run: cmd [Enter]) and issue the following 2 commands.
Reset WINSOCK entries to installation defaults:
netsh winsock reset catalog
Reset TCP/IP stack to installation defaults:
netsh int ip reset [log_file_name]

March 4, 2009
Google, Yahoo! and Microsoft have come together in an attempt to reduce duplicate content in SERPs due to multiple URLs pointing to the same content. The new tag named the ‘Canonical Tag’ allows you to define what the real address of a page should be by providing a META TAG in the HEAD section of a web page.
For example, say you are selling an item which belongs to several categories.
You may have all the following URLs pointing to the same content:
http://www.example.com/climbing-gear/black-diamond-headlamp
http://www.example.com/camping-gear/black-diamond-headlamp
http://www.example.com/products/black-diamond-headlamp
Google and other search engines don’t like this because they consider each page to be unique thus making it seem like you have duplicate content (which is bad!).
The Canonical Tag allows us to specify which page should be used as the proper URL in Google, Yahoo! and Microsoft’s SERPs.
Simply add this tag to the HEAD section of each of the category pages that point to “headlamp”:
<link rel=”canonical” href=”http://www.example.com/products/black-diamond-headlamp” />
For further information check out the Official Google Webmaster Central Blog.