Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@hopbit
hopbit / simple_kick_pattern_with_random_amp.rb
Last active August 27, 2015 13:45
Simple Kick Pattern With Random Amp
# Soundcloud preview:
# https://soundcloud.com/hopbit/simple-kick-pattern-with-random-amp-129-bpm
use_bpm 129
live_loop :kick do
sample :elec_mid_snare, amp: rand(1.25)
sleep 0.25
end
@hopbit
hopbit / codepot2015-arduino-workshop-snippet.ino
Created August 28, 2015 20:05
codepot2015-arduino-workshop-snippet.ino
#define CHARGE_PIN 13
#define DISCHARGING_PIN 12
#define VOLTAGE_PIN A0
#define R 10000.0F
void setup() {
pinMode(CHARGE_PIN, OUTPUT);
digitalWrite(CHARGE_PIN, LOW);
Serial.begin(9600);
Serial.print("hello world \n");
@hopbit
hopbit / jsbin.kuneg.html
Last active August 29, 2015 14:02 — forked from anonymous/jsbin.kuneg.html
attach unselect behaviour to multibox, original source: http://jsbin.com/kuneg/1/edit, after modifications: http://jsbin.com/kuneg/15/edit
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<select size="10" multiple id="myMultiSelectBox">
<option value="1" selected>One</option>
# @ cmd.exe
grails create-app album
cd album
grails run-app
grails run-app -Dserver.port=9090
firefox http://localhost:8080/album/
# liquidbase
grails create-domain-class
// http://bit.ly/1sZ7vm7
# Run script 3 times because of the deeply nested variables
# PROXY_USERNAME is the username used to connect to proxy.
# May be different than the existing USERNAME.
# USERNAME is the account you logged into VM with,
# like 'Administrator', which may not have access through proxy
# Primary variables (CHANGE THESE FIRST!)
setx PROXY_HOSTNAME my_domain.com
setx PROXY_USERNAME my_user
setx PROXY_PASSWORD my_password
@hopbit
hopbit / quantum-energy-live-session-001
Last active August 29, 2015 14:23
Quantum Energy - Live Session 001
# Beginnings with Sonic Pi live loop & sample.
# Listen on [Soundcloud](https://soundcloud.com/quantumenergy/quantum-energy-live-session-001)
live_loop :foo do
sample :ambi_piano, amp: 0.35
sample :drum_bass_hard, amp: 1
sleep 0.40625
sample :elec_snare, amp: 0.2
@hopbit
hopbit / how-to-install-qt-for-sonic-pi-on-windows-7.md
Last active August 29, 2015 14:23
How to install Qt 5.4.1 on Windows 7 64-bit that is needed for Sonic Pi 2.6.
# https://soundcloud.com/hopbit/live-coding-session-2015-08-04
live_loop :jj do
#sample :loop_breakbeat, rate: 1.25, amp: 4
sleep 1.5
use_synth :dsaw
play 1, amp: 0.5
end
live_loop :ll do
@hopbit
hopbit / live-coding-session-2015-08-05.rb
Created August 5, 2015 20:42
live coding session (2015-08-05)
# Soundcloud: https://soundcloud.com/hopbit/live-coding-session-2015-08-05
live_loop :melody do
#sync :cyk
#stop
use_synth :piano
#play :D5
sleep 0.2
#play :C5
sleep 0.2
play :E5
@hopbit
hopbit / playing with super saw synth.rb
Last active August 29, 2015 20:26
playing with super saw synth
# soundcloud preview:
# https://soundcloud.com/hopbit/playing-with-super-saw-synth
live_loop :hello do
use_synth :supersaw
use_synth_defaults release: 2, amp: 1
use_bpm 98
with_fx :wobble do
with_fx :echo do
play chord(:F, :major)
sleep 2