Skip to content

Instantly share code, notes, and snippets.

* { outline: 2px dotted red }
* * { outline: 2px dotted green }
* * * { outline: 2px dotted orange }
* * * * { outline: 2px dotted blue }
* * * * * { outline: 1px solid red }
* * * * * * { outline: 1px solid green }
* * * * * * * { outline: 1px solid orange }
* * * * * * * * { outline: 1px solid blue }
@fisherinnovation
fisherinnovation / gist:2577691
Created May 2, 2012 15:50
CodeIgniter .htaccess
RewriteEngine on
RewriteCond $1 !^(index\.php|img|images|js|css|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
@fisherinnovation
fisherinnovation / gist:1771037
Created February 8, 2012 16:55
Simple Serverside CSS Less Datestamp Conditions
<?php
require $_SERVER["DOCUMENT_ROOT"] . '/lib/less/lessc.inc.php';
$styles = array('main', 'dashboard');
$l = sizeof($styles);
for($i = 0; $i < $l; $i++) {
// Check file modification date.
$srcfilename = $_SERVER["DOCUMENT_ROOT"] . '/css/src/' . $styles[$i] . '.less';
if (file_exists($srcfilename)) $srcmodification = date ("F d Y H:i:s.", filemtime($srcfilename));
@fisherinnovation
fisherinnovation / gist:1654292
Created January 21, 2012 22:32
Wikipedia Crawler - Jurassic Park to Toronto in 44 steps!
/wiki/Jurassic_Park_(film)
/wiki/Inception
/wiki/Totem
/wiki/Totem_(disambiguation)
/wiki/Totem_pole
/wiki/Totem_pole_(disambiguation)
/wiki/Ed_Galloway%27s_Totem_Pole_Park
/wiki/Sitka_National_Historical_Park
/wiki/IUCN
/wiki/Types_of_business_entity
@fisherinnovation
fisherinnovation / screenrc
Created December 14, 2011 14:55
Default .screenrc Config
hardstatus alwayslastline
hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B} %m-%d %{W}%c %{g}]'