Public Gists by flux

Gravatar
Thu Oct 15 14:24:50 -0700 2009
1
2
3
server {
  listen 80;
  server_name intraspirit.net;
gist: 208360 Simple Mootools Tab Class
Gravatar
Mon Oct 12 05:21:39 -0700 2009
1
2
3
/*
  A simple tabs class I made for fun whilst learning about mootools.
  (tested only with mootools 1.23+)
gist: 156288 jQuery External URL Selector
Gravatar
Mon Jul 27 06:32:24 -0700 2009
1
2
3
// Creating custom :external selector
$.expr[':'].external = function(obj){
    return !obj.href.match(/^mailto\:/) && (obj.hostname != location.hostname);
Gravatar
Sun Jul 26 04:20:47 -0700 2009
1
2
3
var DateHelper = {
  // Takes the format of "Jan 15, 2007 15:45:00 GMT" and converts it to a relative time
  // Ruby strftime: %b %d, %Y %H:%M:%S GMT