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
| #timing & run | |
| system("echo " + simfile " >> timing.txt"); | |
| system("TIME /T >> timing.txt"); | |
| run; | |
| system("TIME /T >> timing.txt"); |
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 | |
| # This hook is sourced after this virtualenv is activated. | |
| export DJANGO_SETTINGS_MODULE=gypsum.settings.dev | |
| export GYPSUM_DB_NAME=gypsum | |
| export PATH=$PATH:$PWD/node_modules/.bin |
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 hidden | |
| set number | |
| set background=dark | |
| set ignorecase | |
| set incsearch | |
| set hlsearch | |
| set autoindent |
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
| export PROJECT_HOME=$HOME/projects | |
| export EDITOR=/usr/bin/vim | |
| source `which virtualenvwrapper.sh` | |
| alias ls='ls -F --color' | |
| alias less='less -Ri' | |
| alias tree='tree -C' | |
| alias grep='grep --color=always' | |
| alias ack='ack --color' |
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 enable | |
| set hidden | |
| set number | |
| set ruler | |
| set background=dark | |
| set ignorecase | |
| set incsearch | |
| set hlsearch |
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
| export PROJECT_HOME=$HOME/projects | |
| export EDITOR=/usr/bin/vim | |
| source `which virtualenvwrapper.sh` | |
| alias ls='ls -F --color' | |
| alias less='less -R' | |
| alias tree='tree -C' | |
| alias grep='grep --color=always' | |
| alias ack='ack --color' |
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
| import boto.utils | |
| import boto.beanstalk | |
| good_statuses = ('Launching', 'Updating', 'Ready') | |
| def get_eb_environment_description(): | |
| identity_document = boto.utils.get_instance_identity()['document'] | |
| connection = boto.beanstalk.connect_to_region(identity_document['region']) | |
| envs = (e for e in |
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 enable | |
| set hidden | |
| set number | |
| set background=dark | |
| set ignorecase | |
| set incsearch | |
| set hlsearch |
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
| !Swap right control and right alt | |
| remove Control = Control_R | |
| remove Mod1 = Alt_R | |
| keycode 105 = Alt_R | |
| keycode 108 = Control_R | |
| add Control = Control_R | |
| add Mod1 = Alt_R |
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
| port_range=6999-6999 | |
| download_rate = 1600 | |
| upload_rate = 600 | |
| directory = ./torrents/ | |
| session = ./session/ | |
| schedule = watch_directory_1,10,10,"load_start=./watch/*.torrent,d.set_custom1=./done" | |
| schedule = watch_directory_2,10,10,"load_start=./watch_music/*.torrent,d.set_custom1=./done_music" |
NewerOlder