Skip to content

Instantly share code, notes, and snippets.

View dorianfm's full-sized avatar
💭
Developing, developing, developing

Dorian Fraser-Moore dorianfm

💭
Developing, developing, developing
View GitHub Profile
@HarryUPf
HarryUPf / README.md
Last active September 28, 2023 01:37
Raspberry Pi SunVox Headless Synth (in 10 easy steps)

Raspberry Pi SunVox Headless Synth Setup (in 10-easy-steps)

INSTRUCTIONS

STEP_01

STEP_02

  • write the extracted .img to sdcard with Etcher

STEP_03

@tstellanova
tstellanova / rpi0_rust_env.md
Last active April 26, 2024 07:47
Install rust development environment on Raspberry Pi Zero W (rpi0w)

Purpose

Setup your Raspberry Pi 0 w to develop with the Rust language.

Initial configuration

  • Ensure your rpi0 has a network connection so it can download and install packages
  • Install Raspbian based on Debian Stretch

Configure pigpio

If you're working with the rpi0's GPIO, the pigpio library can be very handy.

@samOrbs
samOrbs / Xfm
Created January 24, 2017 21:58
SuperCollider CV control
o = Server.local.options;
o.device = "ES-8";
o.device = nil;
o.numOutputBusChannels = 8;
o.numOutputBusChannels.postln;
(
a = TempoClock.new(4);
SynthDef("vco1", { | chanone=0, freq=0, gate=1, sus= 1,ar=0.01, dr=0.01|