Skip to content

Commit 7cc657c

Browse files
committed
Add "# coded by ..." comment to all examples:
* Also clarify copyright ownership to Sam Aaron or if there is a specific "# coded by comment" that the copyright belongs to the coder.
1 parent 2882575 commit 7cc657c

File tree

19 files changed

+40
-5
lines changed

19 files changed

+40
-5
lines changed

LICENSE.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ THE SOFTWARE.
2828
## Docs, Tutorial and Examples (contents of etc/doc/ and etc/examples directories)
2929

3030
All the examples (in etc/examples) and contents of the doc directory
31-
including the articles and the tutorial are are Copyright Sam Aaron
32-
(2014) and released under the CC BY-NC 3.0 license:
31+
including the articles and the tutorial are copyright by Sam Aaron
32+
unless a specific author is stated with the comment "# coded by ..." in
33+
which case the copyright is associated with that author (2014) and the
34+
content is released under the CC BY-NC 3.0 license:
3335

3436
[https://creativecommons.org/licenses/by-nc/3.0/](https://creativecommons.org/licenses/by-nc/3.0/)
3537

etc/examples/apprentice/haunted_bells.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Coded by Sam Aaron
2+
13
loop do
24
sample :perc_bell, rate: (rrand 0.125, 1.5)
35
sleep rrand(0.1, 2)

etc/examples/illusionist/filtered_dnb.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Coded by Sam Aaron
2+
13
with_fx(:rlpf, cutoff: 10, cutoff_slide: 4) do |c|
24
loop do
35
sample :bass_dnb_f, amp: 5

etc/examples/illusionist/fm_noise.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Coded by Sam Aaron
2+
13
use_synth :fm
24

35
loop do

etc/examples/illusionist/jungle.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Coded by Sam Aaron
2+
13
with_fx :lpf, cutoff: 90 do
24
with_fx :reverb, mix: 0.5 do
35
with_fx :compressor, pre_amp: 40 do

etc/examples/illusionist/ocean.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Coded by Sam Aaron
2+
13
with_fx :reverb, mix: 0.5 do
24
loop do
35
s = synth [:bnoise, :cnoise, :gnoise].choose, amp: rrand(0.5, 1.5), attack: rrand(0, 4), sustain: rrand(0, 2), release: rrand(1, 5), cutoff_slide: rrand(0, 5), cutoff: rrand(60, 100), pan: rrand(-1, 1), pan_slide: rrand(1, 5), amp: rrand(0.5, 1)

etc/examples/magician/acid.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Coded by Sam Aaron
2+
13
use_debug false
24
load_sample :bd_fat
35

etc/examples/magician/ambient.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Cliches
1+
# Coded by Sam Aaron
22

33
load_samples(sample_names :ambi)
44
sleep 2

etc/examples/magician/compus_beats.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Coded by Sam Aaron
2+
13
sd = sample_duration :loop_compus
24

35
live_loop :loopr do

etc/examples/magician/echo_drama.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Coded by Sam Aaron
2+
13
use_random_seed 667
24

35
with_fx :lpf, cutoff: 90 do

0 commit comments

Comments
 (0)