Skip to content

Instantly share code, notes, and snippets.

@iani
Created May 20, 2017 17:18
Show Gist options
  • Select an option

  • Save iani/d7798358092790dffe1f03acecdd9bba to your computer and use it in GitHub Desktop.

Select an option

Save iani/d7798358092790dffe1f03acecdd9bba to your computer and use it in GitHub Desktop.
enable working with remote servers in supercollider
*remote { arg name, addr, options, clientID;
var result;
result = this.new(name, addr, options, clientID);
// result.startAliveThread;
result.setRunningTrue;
^result;
}
setRunningTrue {
serverRunning = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment