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 a local server for testing purposes:
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 a local server for testing purposes:
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.
| # ------------------------------------------- | |
| # 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 |
| # 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 |