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
:set ai | |
:set softtabstop=4 shiftwidth=4 expandtab | |
:set pastetoggle=<f5> | |
:nmap <C-n> :noh<CR> | |
:nmap <C-.> :bn<CR> | |
:nmap <C-,> :bp<CR> | |
:nmap <S-Tab> << | |
:nmap <Tab> >> | |
:imap <S-Tab> <C-d> | |
:syntax enable |
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
#!/usr/bin/env bash | |
AWK="`which awk`" | |
BASENAME="`which basename`" | |
DATE="`which date`" | |
FIND="`which find`" | |
GIT="`which git`" | |
GREP="`which grep`" | |
LESS="`which less`" | |
PRINTF="`which printf`" |
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 config --add remote.origin.fetch +refs/pull/*/head:refs/remotes/origin/pr/* | |
git config -l | |
git fetch origin |
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
#!/usr/bin/env python | |
from time import time | |
import random | |
random.seed(time()) | |
print random.randint(0,9999) |
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
mibs +ALL | |
defVersion 2c | |
defCommunity public |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.network "public_network" | |
config.vm.synced_folder "../data", "/vagrant_data" |
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 |
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
## | |
# Key reference | |
# | |
# C-a c -- new window | |
# C-a A -- rename window | |
# C-a <#> -- switch window | |
# C-a k -- kill window | |
# C-a h -- hardcopy | |
# C-a H -- toggle log |
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
#!/usr/bin/env ruby | |
require 'arpa/racktastic/racktastic' | |
require 'arpa/racktastic/config' | |
require 'arpa/racktastic/data/data' | |
require 'sinatra' | |
require 'arpa/racktastic/controller/catalyst4948_switch_controller' | |
require 'arpa/racktastic/accessor/factory' | |
require 'pp' |
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
#Service receives *no input* in *any application* | |
# bind to ctrl-alt-l in keyboard shortcuts | |
on run {input, parameters} | |
tell application "System Events" to start current screen saver | |
return input | |
end run |