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 | |
# take ~/bin && curl https://gist.githubusercontent.com/thoughtchad/6b6f198fcc23ac219306b61ad03c29e2/raw/beb33c03078d9594386d611b31fc5a7209b232cb/workspace.sh > workspace && chmod +x workspace | |
# --------------------------------------------------------- | |
# Customizable Settings | |
# --------------------------------------------------------- | |
MOUNT_POINT="${CASE_SAFE_MOUNT_POINT:-${HOME}/dev}" | |
VOLUME_PATH="${CASE_SAFE_VOLUME_PATH:-${HOME}/.workspace-dev.dmg.sparseimage}" | |
VOLUME_NAME="${CASE_SAFE_VOLUME_NAME:-dev}" |
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
$ git clone --depth 1 https://github.com/dogescript/dogescript.git | |
$ git remote set-branches origin 'remote_branch_name' | |
$ git fetch --depth 1 origin remote_branch_name | |
$ git checkout remote_branch_name |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
{"lastUpload":"2016-11-21T19:05:14.751Z"} |
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
JAVA 8 | |
export JRUBY_OPTS=--2.0 | |
export JAVA_OPTS= | |
time bundle exec rake environment | |
157.76s user 13.05s system 270% cpu 1:03.15 total | |
export JRUBY_OPTS=--2.0 | |
export JAVA_OPTS="-XX:TieredStopAtLevel=1 -XX:CICompilerCount=3 -Djruby.jit.threshold=500 -XX:+TieredCompilation -noverify -XX:+UseG1GC -XX:ReservedCodeCacheSize=256m -Xss2048k -Xms2048m -Xmx2048m" | |
time bundle exec rake environment | |
43.18s user 8.15s system 132% cpu 38.839 total |