resolv.conf.d/virtual-hosts
nameserver 127.0.0.1
dhclient-enter-hooks.d/virtual-hosts
prepend domain-name-servers 127.0.0.1;
dnsmasq.d/virtual-hosts
//FightCode can only understand your robot | |
//if its class is called Robot | |
var Robot = function(robot) { | |
}; | |
Robot.prototype.onIdle = function(ev) { | |
var robot = ev.robot; | |
robot.ahead(100); |
# taken from https://github.com/mauricemach/coffeekup | |
(($) -> | |
cache = {} | |
params = {} | |
params.locals = {} | |
params.format = on |
<div class="github-widget" data-repo="pateketrueke/habanero"></div> | |
<script src="https://raw.github.com/JoelSutherland/GitHub-jQuery-Repo-Widget/master/jquery.githubRepoWidget.min.js"></script> |
<?php | |
$log = new \Monolog\Logger('MyApplication'); | |
$log->pushHandler(new \Monolog\Handler\FirePHPHandler(\Monolog\Logger::DEBUG)); | |
\Sauce\Config::set('logger', $log); |
<?php | |
class Mailer | |
{ | |
protected $to = array(); | |
protected $cc = array(); | |
protected $bcc = array(); | |
protected $reply = array(); | |
protected $files = array(); |
gs(){ | |
if [ -z "$1" ]; then | |
echo "Missing search string" | |
else | |
git rev-list --all | ( | |
while read revision; do | |
git grep -F "$1" $revision | |
done | |
) | |
fi |
/* Preferences */ | |
{ | |
"auto_complete": false, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"detect_indentation": false, | |
"drag_text": false, | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Andale Mono", |
[core] | |
editor = vim | |
[alias] | |
s = status | |
st = status | |
ci = commit | |
b = branch | |
br = branch | |
ba = branch -a | |
co = checkout |
resolv.conf.d/virtual-hosts
nameserver 127.0.0.1
dhclient-enter-hooks.d/virtual-hosts
prepend domain-name-servers 127.0.0.1;
dnsmasq.d/virtual-hosts
set -U EDITOR vim | |
set -U fish_greeting | |
set __fish_git_prompt_showdirtystate 'yes' | |
set __fish_git_prompt_showupstream 'yes' | |
set __fish_git_prompt_showuntrackedfiles 'yes' | |
set __fish_git_prompt_color_branch yellow | |
set __fish_git_prompt_char_cleanstate '✔' | |
set __fish_git_prompt_char_dirtystate '⚡' |