This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
jQuery.reduce - a jQuery plugin for functional programming | |
@author John Hunter | |
created 2010-09-17 | |
use: $.reduce(arr, fnReduce, valueInitial); | |
fnReduce is called with arguments: [valueInitial, value, i, arr] | |
reduce will never be jQuery core - its not prototype :p (http://dev.jquery.com/ticket/1886) | |
*/ | |
(function ($) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Set browser forking classes on html element. Can be executed as soon as jQuery is loaded. | |
@dependency jQuery 1.4 | |
flags are: webkit, opera, msie, mozilla, (safari flag not used), os-win, os-mac | |
*/ | |
(function(flags, app) { | |
$.each($.browser, function(k, v) { | |
if (v === true && k !== 'safari') flags.push(k); | |
}); | |
os('Win', 'os-win'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
jQuery.equalHeights Plugin | |
@author John Hunter | |
@dependency jQuery 1.4.x | |
EqualHeights version 2.0 (2010-09-07 johnhunter.info) | |
Based on an idea copyright (c) 2008 Rob Glazebrook (cssnewbie.com) | |
use: $('#selector').equalHeights({minHeight: 200}); | |
see defaults object for options | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* FancyBox - jQuery Plugin | |
* Simple and fancy lightbox alternative | |
* | |
* Examples and documentation at: http://fancybox.net | |
* | |
* Copyright (c) 2008 - 2010 Janis Skarnelis | |
* That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated. | |
* | |
* Version: 1.3.4 (11/11/2010) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Module Date.to - Static Date methods for formatting js Date objects to strings. | |
@author John Hunter | |
created 2010-03-30 | |
use: Date.to.ddmmyyyy(new Date(), '^') => '30^03^2010' | |
*/ | |
Date.to = (function () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>ajax-error</title> | |
</head> | |
<body> | |
<pre id="output"></pre> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.js"></script> | |
<script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Bookmarklets</title> | |
<style> | |
body { | |
background: #eee; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# git aliases | |
alias gs='git status' | |
alias ga='git add $1' | |
alias gb='git branch $1' | |
alias gcl='git clone $1' | |
alias gco='git checkout $1' | |
alias gm='git commit -m $1' | |
alias gma='git commit -am $1' | |
alias gph='git push' | |
alias gpl='git pull' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
# John Hunter <https://github.com/johnhunter> | |
$path = getenv('TM_DROPPED_FILE'); | |
$path_parts = pathinfo($path); | |
$info = getimagesize($path); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
# John Hunter <https://github.com/johnhunter> | |
$path = getenv('TM_DROPPED_FILE'); | |
$path_parts = pathinfo($path); | |
$info = getimagesize($path); |
OlderNewer