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
| (ns summertime.core) | |
| (use 'clojure.repl) | |
| (use 'overtone.live) | |
| ;; (demo (sin-osc)) | |
| (use 'overtone.inst.piano) | |
| ;; (piano 60) |
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
| Last login: Mon Mar 25 10:20:29 on ttys001 | |
| ~$ HOMEBREW_MAKE_JOBS=1 VERBOSE=1 brew install foo | |
| Error: No available formula for foo | |
| ~$ HOMEBREW_MAKE_JOBS=1 VERBOSE=1 brew install mit-scheme | |
| dyld: DYLD_ environment variables being ignored because main executable (/usr/bin/sudo) is setuid or setgid | |
| ==> Downloading http://ftpmirror.gnu.org/mit-scheme/stable.pkg/9.1.1/mit-scheme-c-9.1.1.tar.gz | |
| Already downloaded: /Library/Caches/Homebrew/mit-scheme-9.1.1.tar.gz | |
| tar xf /Library/Caches/Homebrew/mit-scheme-9.1.1.tar.gz | |
| ==> Patching | |
| /usr/bin/patch -f -p1 -i 000-homebrew.diff |
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
| require 'rake/clean' | |
| module MWsubs | |
| extend self | |
| def add_ext_sub(filename_in, ext_in) | |
| filename = filename_in.to_s | |
| # remove the period from the ext if it is there | |
| ext = (ext_in[/^\./]) ? ext_in[1..-1] : ext_in | |
| # add the extension unless it is alerady there |