summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2011-03-23 17:09:18 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2011-03-23 17:09:18 -0400
commit07949eef7bb8f98147f724ae13458c873066b3da (patch)
tree097f5e83bb5502d1cc1e8b9a5fd95a2919516e6f
downloadFoxNewsSequencer-07949eef7bb8f98147f724ae13458c873066b3da.tar.xz
FoxNewsSequencer-07949eef7bb8f98147f724ae13458c873066b3da.zip
Initial commit.
-rw-r--r--backing.wavbin0 -> 21551194 bytes
-rw-r--r--graduatedegree.wavbin0 -> 270388 bytes
-rw-r--r--nutty.wavbin0 -> 71728 bytes
-rw-r--r--out.wavbin0 -> 507644 bytes
-rwxr-xr-xplay.sh42
-rw-r--r--sandwich.wavbin0 -> 141356 bytes
-rw-r--r--withlove.wavbin0 -> 141168 bytes
-rw-r--r--youngfolks.wavbin0 -> 146688 bytes
8 files changed, 42 insertions, 0 deletions
diff --git a/backing.wav b/backing.wav
new file mode 100644
index 0000000..29c182b
--- /dev/null
+++ b/backing.wav
Binary files differ
diff --git a/graduatedegree.wav b/graduatedegree.wav
new file mode 100644
index 0000000..902706d
--- /dev/null
+++ b/graduatedegree.wav
Binary files differ
diff --git a/nutty.wav b/nutty.wav
new file mode 100644
index 0000000..ef6b2bc
--- /dev/null
+++ b/nutty.wav
Binary files differ
diff --git a/out.wav b/out.wav
new file mode 100644
index 0000000..8cb24b0
--- /dev/null
+++ b/out.wav
Binary files differ
diff --git a/play.sh b/play.sh
new file mode 100755
index 0000000..4bdf959
--- /dev/null
+++ b/play.sh
@@ -0,0 +1,42 @@
+pid=0;
+
+echo "== keys =="
+echo "- f - nutty"
+echo "- j - with love"
+echo "- n - graduate degree"
+echo "- v - young folks"
+echo "- h - sandwich"
+echo
+echo "--"
+echo "-- by using this you agree that any thing --"
+echo "-- made by it or its contents is not owned by you --"
+echo "--"
+echo
+
+
+aplay backing.wav >/dev/null 2>&1 &
+
+while read -n 1 c; do
+
+if [ $c == "f" ]; then
+ f="nutty.wav"
+elif [ $c == "j" ]; then
+ f="withlove.wav"
+elif [ $c == "n" ]; then
+ f="graduatedegree.wav"
+elif [ $c == "v" ]; then
+ f="youngfolks.wav"
+elif [ $c == "h" ]; then
+ f="sandwich.wav"
+else
+ continue
+fi
+
+if [ $pid -gt 0 ]; then
+ kill -9 $pid 2>/dev/null &
+fi
+
+aplay $f >/dev/null 2>&1 &
+pid=$!
+
+done
diff --git a/sandwich.wav b/sandwich.wav
new file mode 100644
index 0000000..dfd20e8
--- /dev/null
+++ b/sandwich.wav
Binary files differ
diff --git a/withlove.wav b/withlove.wav
new file mode 100644
index 0000000..2c5d7ba
--- /dev/null
+++ b/withlove.wav
Binary files differ
diff --git a/youngfolks.wav b/youngfolks.wav
new file mode 100644
index 0000000..f71123e
--- /dev/null
+++ b/youngfolks.wav
Binary files differ