diff --git a/.gitignore b/.gitignore
index ff61c78..bf08cc1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,10 @@
/*
!.gitignore
+!/boot
+/boot/*
+!/boot/config.txt
+
!/etc
/etc/*
@@ -18,6 +22,10 @@
!/etc/dnsmasq.conf
+!/etc/fstab
+
+!/etc/group
+
!/etc/hostapd/
/etc/hostapd/*
!/etc/hostapd/hostapd.conf
@@ -28,6 +36,8 @@
/etc/modprobe.d/*
!/etc/modprobe.d/alsa-base.conf
+!/etc/modules
+
!/etc/network/
/etc/network/*
!/etc/network/interfaces
@@ -37,12 +47,16 @@
!/etc/rc.local
!/floppies/
-/floppies/*/
+#/floppies/*/
!/usr/
/usr/*
!/usr/local/
/usr/local/*
+!/usr/local/lib/
+/usr/local/lib/*
+!/usr/local/lib/pd-externals/
+!/usr/local/lib/python2.7/
!/usr/local/sbin/
/usr/local/sbin/*/
@@ -57,4 +71,5 @@
*.pyc
-.DS_Store
+*DS_Store
+._*
diff --git a/boot/config.txt b/boot/config.txt
new file mode 100755
index 0000000..20d0336
--- /dev/null
+++ b/boot/config.txt
@@ -0,0 +1,2 @@
+gpu_mem=16
+start_x=1
diff --git a/etc/fstab b/etc/fstab
new file mode 100644
index 0000000..a9cefdb
--- /dev/null
+++ b/etc/fstab
@@ -0,0 +1,4 @@
+/dev/mmcblk0p1 /boot vfat defaults 0 2
+/dev/mmcblk0p2 / ext4 errors=remount-ro,noatime,nodiratime,commit=120 0 1
+/dev/sda /media/floppy vfat noauto
+tmpfs /tmp tmpfs defaults,nodev,nosuid 0 0
diff --git a/etc/group b/etc/group
new file mode 100644
index 0000000..00840d3
--- /dev/null
+++ b/etc/group
@@ -0,0 +1,50 @@
+root:x:0:
+daemon:x:1:
+bin:x:2:
+sys:x:3:
+adm:x:4:
+tty:x:5:
+disk:x:6:
+lp:x:7:
+mail:x:8:
+news:x:9:
+uucp:x:10:
+man:x:12:
+proxy:x:13:
+kmem:x:15:
+dialout:x:20:
+fax:x:21:
+voice:x:22:
+cdrom:x:24:
+floppy:x:25:
+tape:x:26:
+sudo:x:27:
+audio:x:29:www-data
+dip:x:30:
+www-data:x:33:
+backup:x:34:
+operator:x:37:
+list:x:38:
+irc:x:39:
+src:x:40:
+gnats:x:41:
+shadow:x:42:
+utmp:x:43:
+video:x:44:
+sasl:x:45:
+plugdev:x:46:
+staff:x:50:
+games:x:60:
+users:x:100:
+nogroup:x:65534:
+input:x:101:
+systemd-journal:x:102:
+systemd-timesync:x:103:
+systemd-network:x:104:
+systemd-resolve:x:105:
+systemd-bus-proxy:x:106:
+crontab:x:107:
+messagebus:x:108:
+ntp:x:109:
+netdev:x:110:
+ssh:x:111:
diff --git a/etc/modules b/etc/modules
new file mode 100644
index 0000000..1a8cde2
--- /dev/null
+++ b/etc/modules
@@ -0,0 +1,7 @@
+# /etc/modules: kernel modules to load at boot time.
+#
+# This file contains the names of kernel modules that should be loaded
+# at boot time, one per line. Lines beginning with "#" are ignored.
+
+#snd-bcm2835
+snd-pcm-oss
diff --git a/etc/nginx/sites-available/default b/etc/nginx/sites-available/default
index 2c2deb1..41bc170 100644
--- a/etc/nginx/sites-available/default
+++ b/etc/nginx/sites-available/default
@@ -10,7 +10,9 @@ server {
server_name _;
error_page 404 /404-floppy-not-found.html;
-
+
+ add_header Cache-Control no-cache;
+
location = /404-floppy-not-found.html {
root /var/www/static;
internal;
diff --git a/etc/rc.local b/etc/rc.local
index a05575f..056eda0 100755
--- a/etc/rc.local
+++ b/etc/rc.local
@@ -11,10 +11,17 @@
#
# By default this script does nothing.
-/usr/bin/printf " My IP address is\033[0;31m `/sbin/ifconfig | grep "inet addr" | grep -v "127.0.0.1" | awk '{ print $2 }' | awk -F: '{ print $2 }'` \033[0m\n" > /dev/console
+# TGC #3
+# first line is just to buy some time to avoid text mixing up with other messages
+echo "" | toilet -f ascii12 -w 100 --metal > /dev/console
+echo "TETRA\nGAMMA\nCIRCULAIRE\n #3" | toilet -f ascii12 -w 100 --metal > /dev/console
+/usr/bin/printf "\033[0;31m`/sbin/ifconfig | grep "inet addr" | grep -v "127.0.0.1" | awk '{ print $2 }' | awk -F: '{ print $2 }'` \033[0m\n" > /dev/console
+echo "" > /dev/console
# Restore audio levels
alsactl --file /etc/asound.state restore
+# Magnum Innominandum!!!!!!!!!
+/usr/local/sbin/thewhispererindarkness.sh > /dev/console &
exit 0
diff --git a/floppies/Kimmy_Rest/LICENSE b/floppies/Kimmy_Rest/LICENSE
index bc8fde7..d8f8db6 100644
--- a/floppies/Kimmy_Rest/LICENSE
+++ b/floppies/Kimmy_Rest/LICENSE
@@ -1 +1,5 @@
-FLOPPYLEFT - 2017
+Copyright 2017 Kimmy Spreeuwenberg
+
+You may do anything with this work that copyright law would normally
+restrict, so long as you retain this license in all redistributed
+copies and derived works. There is no warranty.
\ No newline at end of file
diff --git a/floppies/Kimmy_Rest/main.pd b/floppies/Kimmy_Rest/main.pd
old mode 100644
new mode 100755
diff --git a/floppies/Kimmy_Rest/main_200line.pd b/floppies/Kimmy_Rest/main_200line.pd
deleted file mode 100644
index 8b1615c..0000000
--- a/floppies/Kimmy_Rest/main_200line.pd
+++ /dev/null
@@ -1,135 +0,0 @@
-#N canvas 166 23 912 793 10;
-#X obj 98 109 adc~;
-#X obj 167 267 tabwrite~ noise;
-#X obj 98 131 +~;
-#X msg 209 208 bang;
-#X obj 214 136 tgl 15 0 empty empty empty 17 7 0 10 -262144 -1 -1 0
-1;
-#X obj 161 361 tabread4~ noise;
-#X obj 154 696 dac~;
-#X obj 161 334 *~ 88200;
-#X obj 198 170 metro 2000;
-#N canvas 0 22 450 278 (subpatch) 0;
-#X array noise 88200 float 2;
-#X coords 0 1 88200 -1 200 140 1 0 0;
-#X restore 428 114 graph;
-#X obj 313 193 env~;
-#X floatatom 369 228 5 0 0 0 - - -, f 5;
-#X obj 161 302 phasor~ 0.5;
-#X obj 175 525 +~;
-#X floatatom 306 267 5 0 0 0 - - -, f 5;
-#X obj 132 240 *~;
-#X obj 274 322 line~;
-#X obj 393 306 env~;
-#X obj 318 499 line~;
-#X floatatom 497 321 5 0 0 0 - - -, f 5;
-#X floatatom 280 453 5 0 0 0 - - -, f 5;
-#X obj 379 419 sel 1;
-#X obj 420 417 sel 1;
-#X obj 421 395 &&;
-#X obj 500 417 sel 1;
-#X obj 501 395 &&;
-#X obj 580 417 sel 1;
-#X obj 581 395 &&;
-#X obj 662 417 sel 1;
-#X obj 663 395 &&;
-#X msg 318 477 \$1 2000;
-#X obj 742 417 sel 1;
-#X obj 211 658 delwrite~ fd 4000;
-#X msg 379 442 1800;
-#X obj 420 368 > 50;
-#X obj 379 369 <= 50;
-#X obj 299 39 loadbang;
-#X msg 299 68 \; pd dsp 1;
-#X obj 173 564 /~ 2;
-#X obj 98 151 lop~ 2500;
-#X msg 422 442 1830;
-#X msg 744 442 1900;
-#X msg 664 442 1875;
-#X msg 582 442 1865;
-#X msg 502 442 1850;
-#X obj 742 369 > 90;
-#X obj 698 370 <= 90;
-#X obj 663 370 > 80;
-#X obj 614 370 <= 80;
-#X obj 580 368 > 70;
-#X obj 534 370 <= 70;
-#X obj 500 368 > 60;
-#X obj 454 370 <= 60;
-#X obj 273 269 &&;
-#X obj 271 238 > 60;
-#X obj 98 176 *~ 20;
-#X obj 324 238 <= 80;
-#X obj 318 523 vd~ fd 200;
-#X obj 288 552 *~ 0.95;
-#X msg 274 300 \$1 200;
-#X connect 0 0 2 0;
-#X connect 2 0 39 0;
-#X connect 3 0 1 0;
-#X connect 4 0 8 0;
-#X connect 5 0 13 0;
-#X connect 7 0 5 0;
-#X connect 8 0 1 0;
-#X connect 10 0 11 0;
-#X connect 10 0 54 0;
-#X connect 10 0 56 0;
-#X connect 12 0 7 0;
-#X connect 13 0 38 0;
-#X connect 15 0 1 0;
-#X connect 16 0 15 1;
-#X connect 17 0 19 0;
-#X connect 17 0 34 0;
-#X connect 17 0 35 0;
-#X connect 17 0 45 0;
-#X connect 17 0 46 0;
-#X connect 17 0 47 0;
-#X connect 17 0 48 0;
-#X connect 17 0 49 0;
-#X connect 17 0 50 0;
-#X connect 17 0 51 0;
-#X connect 17 0 52 0;
-#X connect 18 0 57 0;
-#X connect 20 0 30 0;
-#X connect 21 0 33 0;
-#X connect 22 0 40 0;
-#X connect 23 0 22 0;
-#X connect 24 0 44 0;
-#X connect 25 0 24 0;
-#X connect 26 0 43 0;
-#X connect 27 0 26 0;
-#X connect 28 0 42 0;
-#X connect 29 0 28 0;
-#X connect 30 0 18 0;
-#X connect 31 0 41 0;
-#X connect 33 0 30 0;
-#X connect 34 0 23 0;
-#X connect 35 0 21 0;
-#X connect 36 0 37 0;
-#X connect 36 0 8 0;
-#X connect 38 0 6 0;
-#X connect 38 0 6 1;
-#X connect 38 0 32 0;
-#X connect 38 0 17 0;
-#X connect 39 0 55 0;
-#X connect 40 0 30 0;
-#X connect 41 0 30 0;
-#X connect 42 0 30 0;
-#X connect 43 0 30 0;
-#X connect 44 0 30 0;
-#X connect 45 0 31 0;
-#X connect 46 0 29 1;
-#X connect 47 0 29 0;
-#X connect 48 0 27 1;
-#X connect 49 0 27 0;
-#X connect 50 0 25 1;
-#X connect 51 0 25 0;
-#X connect 52 0 23 1;
-#X connect 53 0 59 0;
-#X connect 54 0 14 0;
-#X connect 54 0 53 0;
-#X connect 55 0 10 0;
-#X connect 55 0 15 0;
-#X connect 56 0 53 1;
-#X connect 57 0 58 0;
-#X connect 58 0 13 1;
-#X connect 59 0 16 0;
diff --git a/floppies/Kimmy_Rest/noweb/index.html b/floppies/Kimmy_Rest/noweb/index.html
index c4f4332..dc30485 100644
--- a/floppies/Kimmy_Rest/noweb/index.html
+++ b/floppies/Kimmy_Rest/noweb/index.html
@@ -32,6 +32,8 @@
.st17{display:none;}
.st18{display:inline;}
.st19{fill:#FFFFFF;stroke:#000000;stroke-width:3.6669;stroke-miterlimit:10;}
+ .st20{stroke:#000000;stroke-width:4;stroke-miterlimit:10;}
+
@@ -1601,7 +1603,7 @@
C634.6,549,634.7,549.4,634.7,549.9z"/>
This is a conceptual project based on a reflection around the sentence “The FINE LINE between NOTHING MATTERS and EVERYTHING MATTERS”. It took me a while to figure out how to translate this sentence into something. At the beginning, everything had to make perfect sense and had to have a reason to be. Among mind maps, research, crazy complicated ideas, and loads of thought, it became obvious that the concept was being explored from an “EVERYTHING MATTERS” perspective. Half of the sentence, “NOTHING MATTERS”, was being left behind. But, how to make a project based on meaninglessness? Suddenly, it clicked: ANYWAY, WE ARE GOING TO DIE. This sentence vanished all meaning this project could have, placing myself to the other side of the line. And then a process began: my mind tried to MAKE SENSE of everything saying words like: “If everyone thought this way, society would be aimless”. Then, on propose, I jumped to the other side: “Yes whatever, even though, we are going to die”. Quickly my mind tried to fix it again with other excuses in order to find meaning. And rushing, again on purpose, I shifted the side. It happened several times. I could feel the TENSION, the POLARITIES, the OPPOSITION: I was feeling the line between everything matters and nothing matters.
The idea of this project is to represent this line digitally and sonorously, and let the audience play with it. SEEKING BALANCE AND BREAKING IT. HARMONIOUS sounds and the DISRUPTION of those. Experiencing how close from each other OPPOSITES can be.
-