This file contains hidden or 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
#!/bin/bash | |
git add . | |
git commit -am 'master deploy' | |
git checkout gh-pages | |
git checkout master -- dist | |
rsync -a -v dist/ ./ | |
rm -rf dist | |
git add . | |
git commit -am 'page deploy' | |
git push |
This file contains hidden or 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
$.event.special['click:fast'] = { | |
propagate: true, | |
add: function(handleObj) { | |
var getCoords = function(e) { | |
if ( e.touches && e.touches.length ) { | |
var touch = e.touches[0]; | |
return { | |
x: touch.pageX, | |
y: touch.pageY |
This file contains hidden or 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 clean -d -fx "" |
This file contains hidden or 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
var ie = (function() { | |
var v = 3 | |
, div = document.createElement( 'div' ) | |
, all = div.getElementsByTagName( 'i' ) | |
do | |
div.innerHTML = '<!--[if gt IE ' + (++v) + ']><i></i><![endif]-->' | |
while | |
(all[0]) | |
return v > 4 ? v : document.documentMode | |
}()) |
This file contains hidden or 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
$ cd /Library/WebServer | |
$ sudo -s | |
$ mv Documents Documents.old | |
$ sudo ln -s [projpath] . | |
$ mv [dirname] Documents | |
# Now just goto http://localhost and see all your local projects |
This file contains hidden or 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
(function(a, i, n, o) { | |
n = i.length && typeof require == 'function' ? (function(e, j, q) { | |
q = [] | |
for(j=0; j<i.length; j++){ | |
q.push(require(i[j])) | |
} | |
return e.apply(o, q) | |
}(n)) : n.call(o) |
This file contains hidden or 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
Animate = (function() { | |
var requestFrame = (function(){ | |
var r = 'RequestAnimationFrame' | |
return window.requestAnimationFrame || | |
window['webkit'+r] || | |
window['moz'+r] || | |
window['o'+r] || | |
window['ms'+r] || | |
function( callback ) { |
This file contains hidden or 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
(function($) { | |
var add = $.event.add; | |
$.event.add = function() { | |
var elem = arguments[0], | |
types = arguments[1]; | |
if ( !types || !elem ) return add.apply(this, arguments); | |
types = (types || "").match(/\S+/g) || []; | |
var events = $._data(elem).events; | |
if ( events && types.length ) { | |
$.each(types, function(i, type) { |
This file contains hidden or 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
iframe.attachEvent && iframe.attachEvent("onload", onload); | |
iframe.onload = onload; |
This file contains hidden or 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
// Test if a number is Prime using a simple regex. | |
// Demo: http://jsfiddle.net/rJhpq/ | |
function prime(n) { | |
return !/^1?$|^(11+?)\1+$/.test((function(n){s='';while(n--)s+='1';return s;}(n))); | |
} | |
|