diff --git a/floppies/karina/noweb/index.html b/floppies/karina/noweb/index.html index ba4ae6c..f37a5be 100644 --- a/floppies/karina/noweb/index.html +++ b/floppies/karina/noweb/index.html @@ -1,66 +1,116 @@ + - - - - - - - - - -
- - -
- - -
- - -
- - -
- - - -
-
-
-
- - -
- -
- - - + + + Rock Step - Triple Step - Triple Step + + + + + + + + + +

rock step - triple step - triple step

+
+
+
+ + + + + + + + + + + + + + + +
+
+
+
+ +
+ +
+ + + + @@ -68,3 +118,11 @@ + + + + + + + + diff --git a/floppies/max/noweb/css/style.css b/floppies/max/noweb/css/style.css index 68e3218..f9702d2 100644 --- a/floppies/max/noweb/css/style.css +++ b/floppies/max/noweb/css/style.css @@ -4,3 +4,5 @@ p { margin: 0 0 70px; } #defaultCanvas0 { display: block !important; margin: 5em auto ; } #header { margin: 30px 0px 0px; } .text { display: block; margin: 0 50px; font-size: 3em; font-weight: 100 !important; } +#download { color: #FFCC00; } +#download:hover { cursor: pointer; color: #FFEE55; } diff --git a/floppies/max/noweb/index.html b/floppies/max/noweb/index.html index 496b2c2..62697b6 100644 --- a/floppies/max/noweb/index.html +++ b/floppies/max/noweb/index.html @@ -5,6 +5,7 @@ Euclid + @@ -21,7 +22,13 @@

The state of your composition is recorded, and displayed here as a downloadable score.

Never to be played, nor heard again.

+ +

XX--X--X--X-XX--X--X--X-XX--X--X--X-XX--X--X--X-XX--X--X-X

+ + \ No newline at end of file diff --git a/floppies/max/noweb/js/euclidScore.js b/floppies/max/noweb/js/euclidScore.js index d3b1a89..0e52574 100644 --- a/floppies/max/noweb/js/euclidScore.js +++ b/floppies/max/noweb/js/euclidScore.js @@ -4,9 +4,6 @@ var left, right, genLight, score var el1 = [], el2 = [], scrVals = [] function preload() { - // left = loadSVG('../svgs/leftHand.svg') - // right = loadSVG('../svgs/rightHand.svg') - genLight = loadFont("fonts/Gen-Light.otf"); score = loadStrings('../score/score.txt') @@ -26,32 +23,27 @@ function setup() { noLoop() fill(220) - textSize(150) + textSize(30) textAlign('right') } function draw() { background('#151515') - fill("#DDDDDD") + fill("#111111") + rect(0, 220, width, 280) + + fill("#BBBBBB") for (var i = 0; i < score.length; i++) { var line = split(score[i].slice(0, -1), ' ') - text(line.join(" "), 90, 150 + (i*90), 710) + text(line.join(" "), 600, 280 + (i*20), 170) scrVals.push(line) } stroke('#FFCC00') fill('#FFCC00') - // left.attribute('fill', 'none') - // right.attribute('fill', 'none') - // left.attribute('stroke', '#FFCC00') - // right.attribute('stroke', '#FFCC00') - - // image(right, 0, 0, 600, 600) - - for (var i = 0; i < el1.length; i++) { var r = random(5) var rVal = int(scrVals[int(random(scrVals.length))][int(random(7))]) diff --git a/floppies/nadine2/main.py b/floppies/nadine2/main.py index 4cbd07b..b6261d7 100755 --- a/floppies/nadine2/main.py +++ b/floppies/nadine2/main.py @@ -18,7 +18,7 @@ dic={ } -f=open("transcripts-drone-attack.txt","r") +f=open("/media/floppy/transcripts-drone-attack.txt","r") txt=f.readlines() p= re.compile(r"^(\d\d\:\d\d) \((.*?)\)\: (.*)") # regex for capturing groups: time, character, sentence for line in txt: @@ -32,7 +32,7 @@ for line in txt: sentence_parts=re.split(r"(\*\w+\*)", sentence) for part in sentence_parts: if part == '*expletive*': - subprocess.call(["aplay", 'swear.wav'], stdout=devnull, stderr=devnull) + subprocess.call(["aplay", '/media/floppy/swear.wav'], stdout=devnull, stderr=devnull) else: subprocess.call(["espeak", part, "-v", voice], stdout=devnull, stderr=devnull) # character speaks: his sleep(float(random.randint(1,10))/100) diff --git a/floppies/nadine3/main.py b/floppies/nadine3/main.py index e26d908..bbd34f4 100755 --- a/floppies/nadine3/main.py +++ b/floppies/nadine3/main.py @@ -8,7 +8,7 @@ dic={ "narrator": "en-us", } -f=open("detail_of_attack.txt","r") +f=open("/media/floppy/detail_of_attack.txt","r") txt=f.readlines() for line in txt: print line