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
# Aliases | |
alias la="ls -a" | |
alias ll="ls -l" | |
# Show git branch | |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/[\1] /' | |
} |
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
;taken from clj-gae-datastore/src/example/clojure/com/freiheit/gae/datastore/example.clj | |
; short-cut to set-up the GAE environment for interactive programming with Clojure and GAE | |
(ns com.freiheit.gae.datastore.example | |
(:use | |
[clojure.contrib def]) | |
(:import | |
[com.google.apphosting.api ApiProxy ApiProxy$Environment] | |
[java.io File] | |
[java.util HashMap] |