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
#!/bin/bash | |
mkdir -p ~/go | |
cd ~/go | |
# first install go1.4 | |
git clone --branch go1.4.3 --depth 1 https://go.googlesource.com/go go1.4 | |
cd go1.4/src | |
./make.bash | |
../bin/go version |
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
{ | |
"service": { | |
"dsp": true, | |
"planet": "//localhost:8004" | |
}, | |
"data": { | |
"pd": ["sequencer", "synth", "effect"], | |
"state": [{ | |
"bpm": 125, | |
"sequence": [0, 3, 1, -2, 7, 4, 1], |
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
mkdir dev2 | |
mkdir dev2/local | |
cd dev2 | |
git clone git://github.com/joyent/node.git | |
cd node/ | |
git checkout v0.8.11 # or whatever version you like | |
./configure --prefix=~/dev2/local | |
make -s -j 3 # cores + 1 | |
make install | |
export PATH=$PATH:~/dev2/local/bin |
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
git clone git://pure-data.git.sourceforge.net/gitroot/pure-data/pure-data | |
cd pure-data | |
./autogen.sh | |
CFLAGS="-mmacosx-version-min=10.5" ./configure --enable-universal=i386 | |
make -j3 | |
cd src | |
./pd -nogui |