Skip to content

Instantly share code, notes, and snippets.

View huntlyc's full-sized avatar

Huntly Cameron huntlyc

View GitHub Profile
@huntlyc
huntlyc / blink.js
Last active March 3, 2016 10:57 — forked from alancolyer/blink.js
Felt sad that <blink> was deprecated? Cry no more!
@huntlyc
huntlyc / woocommerceImgWrap.php
Last active February 20, 2016 11:37 — forked from Bradley-D/WooCommerce: Add img-wrap div to archive and tag images
Wraps woocommerce product images - based on Bradley D's gist: https://gist.github.com/Bradley-D/9479200
<?php
/**
* wrapWoocommerceImages()
*
* Wraps woocommerce product images with spans making it easier to apply custom styles.
*
* This is a slightly more involved approach based on this gist:
* https://gist.github.com/Bradley-D/9479200
*
@huntlyc
huntlyc / gist:2889818
Created June 7, 2012 16:16 — forked from JeffreyWay/gist:2889230
Simple PHP Quiz
// Fun little quiz
Assuming this string: "January 5th, 2012"
In the shortest amount of code possible, place:
- 'January' within a $month variable
- '5th' within a $day variable
- '2012' within a $year variable.