Skip to content

Instantly share code, notes, and snippets.

View st01c's full-sized avatar

M Z st01c

View GitHub Profile
@st01c
st01c / jekyll-and-liquid.md
Created March 27, 2019 21:25 — forked from ryerh/jekyll-and-liquid.md
Jekyll & Liquid Cheatsheet

Jekyll & Liquid Cheatsheet

A list of the most common functionalities in Jekyll (Liquid). You can use Jekyll with GitHub Pages, just make sure you are using the proper version.

Running

Running a local server for testing purposes:

@st01c
st01c / Readings_on_Open_Source.md
Created November 5, 2017 12:07 — forked from lee2sman/Readings_on_Open_Source.md
Entry Readings on open source, free software and hacker culture

Introductory readings for students on Open Source, Free Software and Hacker culture

Crowdsourced Non-Comprehensive List developed in response to a Facebook query by https://github.com/jeffthompson

Text suggestions from Michael Mandiberg, Allison Parrish, Jeff Thompson, GS Voss, Sterling Crispin, Lee Tusman, Lainie Fefferman, Michael Gubbels. Additional readings and suggestions, especially for perspectives from women and POC welcomed.

@st01c
st01c / sonicpi-crash-course.txt
Created November 16, 2015 11:47 — forked from hzulla/sonicpi-crash-course.txt
Crash into Sonic Pi: Learn to code music in less than 30 minutes
# -------------------------------------------
# CRASH INTO SONIC PI!
# Learn to code music in less than 30 minutes
# -------------------------------------------
# - download Sonic Pi from sonic-pi.net
# - copy and paste these code snippets
# - change and experiment with the snippets
# - go!
# -------------------------------------------
# These snippets were made for a workshop to
# forked from nicoder
# see use of multiple sync cues
define :mel do
play_pattern_timed [64, 59, 66, 59, 64, 59], [0.5]
play_pattern_timed [68, 64, 59], [0.25, 0.25, 0.5]
end
c = [:e, :b, :a, :a]
c2 = [:e, :b, :cs, :a]
live_loop :main do
(spread 3, 8).each do |b|
sample :bd_tek if b
sleep 0.25
end
end
live_loop :sec do
sync :main
@st01c
st01c / 20150308_sonic_pi.rb
Last active August 29, 2015 14:20 — forked from nicoder/20150308_sonic_pi.rb
Sonic Pi 'spread' use
# forked from nicoder
# line 13 '?' asks for conditional and executes either first sample (true) or the one after ':' (false)
# problem with this formulation is that you can't specify sample parameters individually, just across the whole line
live_loop :takt do
sleep 0.5
end
live_loop :r do
sync :takt
@st01c
st01c / sample-stretch-test
Created April 28, 2015 23:36
Signal Culture Day 01 tests
# @st01c Signal Culture residency day01
# voice sample stretch loop test
# TD: substitute for Blixa sample
n = 0.01
print sample_duration :loop_garzul
define :loopdidoo do
sample :loop_garzul, start: 0.5-n, finish: 0.5+n, amp: 2
@st01c
st01c / blixab
Created April 28, 2015 19:15
Blixa Bargeld Hamlet Maschine sample
# @st01c Signal Culture res Day 2 'Hamlet Maschine' sample
load_sample "/Users/martinzeilinger/Music/LC/blixab.wav"
print sample_duration "/Users/martinzeilinger/Music/LC/blixab.wav"
sd = sample_duration "/Users/martinzeilinger/Music/LC/blixab.wav"
blixab = "/Users/martinzeilinger/Music/LC/blixab.wav"
step = 0.02
stpcnt = 0 #for debug only
startt = 0.5