APPENGINE_RUNTIME | python27 |
APPLICATION_ID | s~appid |
AUTH_DOMAIN | gmail.com |
CONTENT_LENGTH | 148 |
CONTENT_TYPE | application/x-www-form-urlencoded |
CURRENT_MODULE_ID | default |
CURRENT_VERSION_ID | appid.370290628632119235 |
DATACENTER | us1 |
DEFAULT_VERSION_HOSTNAME | appid.appspot.com |
HTTPS | on |
This file contains 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
PS1='\[\e[31m\]\W\[\e[0m\]\$ ' | |
alias cbp='cat ~/.bash_profile | pbcopy' | |
alias g="cd ~/git/macgrow/pygrow/" | |
alias ge="cd ~/git/macgrow/pygrow/grow/growedit/" | |
alias gs="cd ~/git/growspace/" | |
alias gt="cd ~/git" | |
alias irch='irssi -c irc.housing.berkeley.edu -p 6667' | |
# /connect -ssl irc.caffeinatedcode.com 6697 |
This file contains 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
application: jeremydw-hrd | |
version: property-name-length-test | |
api_version: 1 | |
runtime: python27 | |
threadsafe: true | |
handlers: | |
- url: /.* | |
script: main.application |
This file contains 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
<!doctype html> | |
<title>FizzBuzz in CSS</title> | |
<meta charset='utf-8'> | |
<style> | |
ul { | |
counter-reset: number; | |
} | |
li:before { | |
counter-increment: number; | |
content: counter(number); |
This file contains 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
mutt -a <filename>.txt -s "<subject>" -- <email address> |
This file contains 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
autocmd BufWritePre *.py :%s/\s\+$//e | |
autocmd BufWritePre *.md :%s/\s\+$//e | |
colorscheme desert | |
filetype plugin indent on | |
filetype plugin on | |
map # :s/^/#/<Return> | |
map 1 :tabprev<Return> | |
map 2 :tabnext<Return> | |
map 3 :s/^#//<Return> |
This file contains 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
find . -type f -name '*.txt' -exec sed -i '' s/this/that/ {} + |
This file contains 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
ImportError: No module named dev_appserver | |
>> ln -s $HOME/google-cloud-sdk/platform/google_appengine /usr/local/google_appengine |
This file contains 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
application: protorpc-cors-middleware | |
version: protorpc-cors-middleware | |
api_version: 1 | |
runtime: python27 | |
threadsafe: true | |
libraries: | |
- name: webapp2 | |
version: latest |
OlderNewer