I hereby claim:
- I am jackpooley on github.
- I am jackpooley (https://keybase.io/jackpooley) on keybase.
- I have a public key whose fingerprint is A67D 81B8 68B7 DD85 011A D177 3D16 8398 8569 8438
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env sh | |
| sudo python -m SimpleHTTPServer 80 |
| #!/usr/bin/env sh | |
| sudo ruby -rwebrick -e "w = WEBrick::HTTPServer.new(:Port => 80, :DocumentRoot => Dir.pwd); %w(TERM INT).each {|s| trap(s) {w.shutdown}};w.start" |
| #!/usr/bin/env bash | |
| # | |
| # force_disable_hibernate_mode.sh | |
| # | |
| # More Info: https://discussions.apple.com/thread/4492672?start=0&tstart=0 | |
| # | |
| # First, disable hibernation mode: | |
| sudo pmset -a hibernatemode 0 |
| # install osxmonad | |
| # uninstall old | |
| ghc-pkg unregister osxmonad | |
| ghc-pkg unregister xmonad | |
| # download new | |
| git clone https://github.com/xmonad/xmonad | |
| git clone https://github.com/xmonad/osxmonad.git |
| ~ ❯❯❯ cabal install darcs ⏎ | |
| Resolving dependencies... | |
| In order, the following would be installed: | |
| dataenc-0.14.0.4 (reinstall) changes: base-4.5.1.0 added | |
| mmap-0.5.8 (reinstall) changes: base-4.5.1.0 added | |
| hashed-storage-0.5.10 (reinstall) changes: base-4.5.1.0 added, | |
| directory-1.1.0.2 added | |
| regex-base-0.93.2 (reinstall) changes: base-4.5.1.0 added | |
| regex-posix-0.95.2 (reinstall) changes: base-4.5.1.0 added | |
| regex-compat-0.95.1 (reinstall) changes: base-4.5.1.0 added |
| ~/D/P/W/W/c/C/u/r/r/balder git:master ❯❯❯ rails ✱ ◼ | |
| Rails is not currently installed on this system. To get the latest version, simply type: | |
| $ sudo gem install rails | |
| You can then rerun your "rails" command. | |
| ~/D/P/W/W/c/C/u/r/r/balder git:master ❯❯❯ which rails ✱ ◼ | |
| /usr/bin/rails | |
| ~/D/P/W/W/c/C/u/r/r/balder git:master ❯❯❯ gem which rails ✱ ◼ | |
| /Users/jack/.rbenv/versions/1.9.3-p194/lib/ruby/gems/1.9.1/gems/railties-3.2.8/lib/rails.rb |
| #!/usr/bin/env ruby | |
| # encoding: UTF-8 | |
| $VERBOSE = true # -w | |
| $KCODE = "U" if RUBY_VERSION < "1.9" # -KU | |
| require 'optparse' | |
| require 'socket' | |
| require 'fileutils' |