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
// this should work and give us 1 to 5 | |
var Step = function (steps) { | |
// this only works with arrays, @todo better check | |
if (typeof steps !== 'object') { | |
return; | |
} | |
var currentStep = 0, lastStep = steps.length; | |
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 | |
# vars | |
SANDBOX_DIR=sandbox | |
if [[ `which ldd` ]]; then | |
DEPENDENCY_TOOL=ldd | |
else | |
DEPENDENCY_TOOL='otool -L' | |
fi |
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
syntax on | |
set autoindent | |
set smartindent | |
set tabstop=4 | |
set softtabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set nu | |
call pathogen#infect() | |
filetype plugin indent on |
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
<a href="javascript:(function(){ | |
script = document.createElement( 'script' ); | |
script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'; | |
script.onload=releasetheKraken; | |
document.body.appendChild(script); | |
function releasetheKraken () { |
NewerOlder