Skip to content

Instantly share code, notes, and snippets.

View thisconnect's full-sized avatar
💭
Set status

tcme thisconnect

💭
Set status
View GitHub Profile
@thisconnect
thisconnect / install-go.sh
Last active September 5, 2016 11:24
compile go from source
#!/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
{
"service": {
"dsp": true,
"planet": "//localhost:8004"
},
"data": {
"pd": ["sequencer", "synth", "effect"],
"state": [{
"bpm": 125,
"sequence": [0, 3, 1, -2, 7, 4, 1],
@thisconnect
thisconnect / setup.sh
Created October 2, 2012 16:10
Planet Setup
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
@eerne
eerne / build.sh
Created December 13, 2011 21:14
build pd
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