<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,4 @@
-$clock.bpm = 170
+$clock.bpm = 175
 $mutation = L{|measure| 0 == (measure - 1) % 2}
 $measures = 4
 
@@ -45,10 +45,10 @@ notes = []
 (36..45).each do |midi_note_number|
   notes &lt;&lt; Drum.new(:note =&gt; note(midi_note_number),
                     :when =&gt; L{|beat| false},
-                    # :number_generator =&gt; L{0.3},
-                    :next =&gt; L{|queue| queue[queue.size - 1]},
+                    # :number_generator =&gt; L{0.8},
+                    # :next =&gt; L{|queue| queue[queue.size - 1]},
                     :number_generator =&gt; L{rand},
-                    # :next =&gt; L{|queue| queue[rand(queue.size)]},
+                    :next =&gt; L{|queue| queue[rand(queue.size)]},
                     :probabilities =&gt; probabilities[midi_note_number] || probabilities[:none])
 end
 notes</diff>
      <filename>db_drum_definition.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-$clock.bpm = 170
+$clock.bpm = 65
 $mutation = L{|measure| 0 == (measure - 1) % 2}
 $measures = 4
 
@@ -8,12 +8,12 @@ probabilities[:none] = [0.0] * 16
 probabilities[:all] = [1.0] * 16
 
 # hip-hop
-# probabilities[36] = [1.0, 0.0, 0.5, 0.25, 0.0, 0.6, 0.0, 0.9, 0.9, 0.0, 1.0, 0.0, 0.5, 0.0, 0.3, 0.0]
-# probabilities[37] = [0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0]
+probabilities[36] = [1.0, 0.0, 0.5, 0.25, 0.0, 0.6, 0.0, 0.9, 0.9, 0.0, 1.0, 0.0, 0.5, 0.0, 0.3, 0.0]
+probabilities[37] = [0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0]
 
 # d&amp;b
-probabilities[36] = [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0]
-probabilities[37] = [0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0]
+# probabilities[36] = [1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0]
+# probabilities[37] = [0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0]
 
 # both
 probabilities[38] = [0.2, 0.0, 0.3, 0.0, 0.3, 0.1, 0.3, 0.4, 0.0, 0.0, 0.2, 0.0, 0.4, 0.0, 0.0, 0.0]
@@ -26,9 +26,11 @@ probabilities[44] = [0.65] * 16
 probabilities[45] = [0.85, 0.35] * 8
 
 # 14 Roni Size
+# 13 hip-hop
+# 12 tech
 
 def note(midi_note_number)
-  Note.create(:channel =&gt; 14,
+  Note.create(:channel =&gt; 13,
               :number =&gt; midi_note_number,
               :duration =&gt; 0.25,
               :velocity =&gt; 100 + rand(27))</diff>
      <filename>live/db_drum_definition.rb</filename>
    </modified>
    <modified>
      <diff>@@ -8,19 +8,19 @@ v = L{|key| puts &quot;V&quot; ; key + 7}
 # @chord_progression ||= [reload, i, i, i, iv, iv, v, v] + ([i, i, i, i, iv, iv, v, v] * 3)
 # @chord_progression ||= [v, v, i, reload]
 # 
-# @key ||= OCTAVES[2].to_a[SCALE[[CIRCLE_OF_FIFTHS,CIRCLE_OF_FOURTHS][rand(2)].next]]
+@key ||= OCTAVES[2].to_a[SCALE[[CIRCLE_OF_FIFTHS,CIRCLE_OF_FOURTHS][rand(2)].next]]
 @root = @chord_progression.next[@key]
 @chord = MAJOR_7TH
 
 # choice of pad channel
 
 # channel 9 is the easter egg!
-pad_channel = [2,2,2,2,2,2,2,2,
-               7,7,7,7,7,7,7,7,7,
-               10,10,10,10,10,10,
-               9,
-               11,11,11,11,11][rand(29)] # 11 is unassigned - sometimes it's silent
-pad_channel = 11
+# pad_channel = [2,2,2,2,2,2,2,2,
+#                7,7,7,7,7,7,7,7,7,
+#                10,10,10,10,10,10,
+#                9,
+#                11,11,11,11,11][rand(29)] # 11 is unassigned - sometimes it's silent
+pad_channel = 7
 
 bass_channel = 1
 </diff>
      <filename>live/harmonic_cycle.rb</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>music_software_files/fuck.rns</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>music_software_files/temple.rns</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>fda453c2f8a47d5d414d80ed59a5c8a3398d632e</id>
    </parent>
  </parents>
  <author>
    <name>Giles Bowkett</name>
    <email>gilesb@gmail.com</email>
  </author>
  <url>http://github.com/bleything/archaeopteryx/commit/75c468e4b5ce94febdec8f72dbded99df233a2de</url>
  <id>75c468e4b5ce94febdec8f72dbded99df233a2de</id>
  <committed-date>2008-10-12T15:56:28-07:00</committed-date>
  <authored-date>2008-10-12T15:56:28-07:00</authored-date>
  <message>This is a bunch of bullshit that doesn't matter. Inconsequential commit. I really need to clean this motherfucker.</message>
  <tree>b411a0554c9a3082b05913382a31270a51eed9f5</tree>
  <committer>
    <name>Giles Bowkett</name>
    <email>gilesb@gmail.com</email>
  </committer>
</commit>
