First, warm up your system.
$ easy_install pip
$ pip install virtualenv
$ pip install django
$ gem install heroku
/Application/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --user-agent="Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_1; de-de) AppleWebKit/531.9 (KHTML, like Gecko) Version/4.0.3 Safari/531.9" & |
/** | |
* QUnit v1.5.0 - A JavaScript Unit Testing Framework | |
* | |
* http://docs.jquery.com/QUnit | |
* | |
* Copyright (c) 2012 John Resig, Jörn Zaefferer | |
* Dual licensed under the MIT (MIT-LICENSE.txt) | |
* or GPL (GPL-LICENSE.txt) licenses. | |
*/ |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<link rel="stylesheet" href="../libs/mocha.css" type="text/css" media="screen" title="no title" charset="utf-8"> | |
</head> | |
<body> | |
<div id="mocha"></div> | |
<script src="../libs/mocha.js" type="text/javascript" charset="utf-8"></script> |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Mocha Tests</title> | |
<link rel="stylesheet" href="mocha.css" /> | |
<script src="jquery.js"></script> | |
<script src="mocha.js"></script> | |
<script>mocha.setup('bdd')</script> | |
<!-- My test suite --> | |
<!-- And inside, I leverage 'require()' to load the script to I want to test --> |
# Font Squirrel Font-face Generator Configuration File | |
# Upload this file to the generator to recreate the settings | |
# you used to create these fonts. | |
{"mode":"expert","formats":["ttf","woff","eot","svg"],"tt_instructor":"default","options_subset":"advanced","subset_custom":"","subset_custom_range":"f000-f073,f200-f273","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0","rememberme":"Y"} |
" Mehrere Zeilen verschieben | |
vmap <C-S-Up> [egv | |
vmap <C-S-Down> ]egv |
" Vsplits/Splits vergrößern/verkleinern | |
map <kPlus> <C-w>+ | |
map <kMinus> <C-w>- | |
map <kDivide> <C-w>< | |
map <kMultiply> <C-w>> |
" Escape/Unescape HTML | |
function! HtmlEscape() | |
silent s/&/\&/eg | |
silent s/</\</eg | |
silent s/>/\>/eg | |
endfunction | |
function! HtmlUnEscape() | |
silent s/</</eg | |
silent s/>/>/eg |
#!/bin/bash | |
# Author: Nikolaos Dimopoulos | |
# Based on code by Remigijus Jarmalavičius | |
# Checks the files to be committed for the presence of print_r(), var_dump() and die() | |
# The array below can be extended for further checks | |
checks[1]="\[RES\]" | |
checks[2]="console\.log" | |
element_count=${#checks[@]} |