And is running down the [[sides.|39]]
The sound of it is [[nice.|43]]
[[And I can sleep again.|49]]
It reminds me of [[waterfalls.|44]]
[[Start|1]]\n
[[…|50]]
But I don't [[care.|42]]
[[...|47]]
Drip.\n\nDrip.\n\nDrip.\n\nDrip.\n\n[[Drip.|25]]\n
My palm is [[sweaty.|25a]]
Drip.\n\nDrip.\n\nDrip.\n\nDrip.\n\n[[Drip.|27]]\n
I want to [[break it.|28]]
Drip.\n\nDrip.\n\nDrip.\n\nDrip.\n\n[[Drip.|21]]\n\n
The plumber? She’s a [[flake.|22]]
Drip.\n\nDrip.\n\nDrip.\n\nDrip.\n\n[[Drip.|23]]\n
I’m standing in front of it [[right now.|24]]
[[...and drift off.|46a]]
The faucet isn’t [[dripping.|48]]
And it relaxes me [[at night.|45]]
It keeps me [[company.|45a]]
Crack.\n\nCrack.\n\n[[Crack.|29]]\n
Drip.\n\nDrip.\n\nDrip.\n\nDrip.\n\n[[Drip.|30]]\n
The drain is all [[backed up.|41]]
And the water is moving down the [[hall.|41a]]
The faucet [[drips.|2]]
And I cannot [[sleep.|4]]\n
Drip.\n\nDrip.\n\n[[Drip.|3]]\n
I've turned off the [[water main.|6]]
Drip.\n\nDrip.\n\n[[Drip.|5]]\n
But it hasn't [[stopped.|8]]
Drip.\n\nDrip.\n\n[[Drip.|7]]\n
I've plugged it up with a [[towel.|10]]
Drip
Standing ankle high upon the [[tiles.|40]]
And the wrench feels cold and heavy in my [[hand.|26]]
Drip.\n\nDrip.\n\nDrip.\n\nDrip.\n\n[[Drip.|25b]]\n
It's pooling on the [[floor.|39a]]
It’s filled up the [[sink.|38a]]
Drip.\n\nDrip.\n\n[[Drip.|9]]\n
While I lie in [[bed...|46]]
[[...|41b]]
But it's soaked [[through.|12]]
Drip.\n\nDrip.\n\n[[Drip.|11]]\n
I've tightened the spigot with my [[wrench.|14]]
Drip.\n\nDrip.\n\n[[Drip.|13]]\n
And I only made it [[worse.|16]]
Drip.\n\nDrip.\n\n[[Drip.|15]]\n
[[It’s been days.|18]]
Drip.\n\nDrip.\n\nDrip.\n\nDrip.\n\n[[Drip.|17]]\n
My eyes are red and my thoughts are [[frayed.|20]]
Drip.\n\nDrip.\n\nDrip.\n\nDrip.\n\n[[Drip.|19]]\n
CRACK.\n\nCRACK.\n\nCRACK.\n\nCRACK.\n\n[[CRACK.|32]]\n
[[BREAK IT.|31]]
Now the water just [[pours out.|38]]
The faucet has stopped [[dripping.|37]]
[[…|36]]\n\n\n<<playsound \n"water.ogg">>
CRACK!!!\n\nCRACK!!!\n\nCRACK!!!\n\nCRACK!!!\n\nCRACK!!!\n\nCRACK!!!\n\nCRACK!!!\n\n[[CRACK!!!|35]]\n
[[BREAK IT!!!|34]]
Drip.\n\nDrip.\n\nDrip.\n\nDrip.\n\nDrip.\n\nDrip.\n\nDrip.\n\n[[Drip.|33]]\n
Writing: PfQ\nAudio: Jo\n\n
(function () {\n "use strict";\n version.extensions['soundMacros'] = {\n major: 1,\n minor: 1,\n revision: 2\n };\n var p = macros['playsound'] = {\n soundtracks: {},\n handler: function (a, b, c, d) {\n var loop = function (m) {\n if (m.loop == undefined) {\n m.loopfn = function () {\n this.play();\n };\n m.addEventListener('ended', m.loopfn, 0);\n } else m.loop = true;\n m.play();\n };\n var s = eval(d.fullArgs());\n if (s) {\n s = s.toString();\n var m = this.soundtracks[s.slice(0, s.lastIndexOf("."))];\n if (m) {\n if (b == "playsound") {\n m.play();\n } else if (b == "loopsound") {\n loop(m);\n } else if (b == "pausesound") {\n m.pause();\n } else if (b == "unloopsound") {\n if (m.loop != undefined) {\n m.loop = false;\n } else if (m.loopfn) {\n m.removeEventListener('ended', m.loopfn);\n delete m.loopfn;\n }\n } else if (b == "stopsound") {\n m.pause();\n m.currentTime = 0;\n } else if (b == "fadeoutsound" || b == "fadeinsound") {\n if (m.interval) clearInterval(m.interval);\n if (b == "fadeinsound") {\n if (m.currentTime>0) return;\n m.volume = 0;\n loop(m);\n } else {\n if (!m.currentTime) return;\n m.play();\n }\n var v = m.volume;\n m.interval = setInterval(function () {\n v = Math.min(1, Math.max(0, v + 0.005 * (b == "fadeinsound" ? 1 : -1)));\n m.volume = Math.easeInOut(v);\n if (v == 0 || v == 1) clearInterval(m.interval);\n if (v == 0) {\n m.pause();\n m.currentTime = 0;\n m.volume = 1;\n }\n }, 10);\n }\n }\n }\n }\n }\n macros['fadeinsound'] = p;\n macros['fadeoutsound'] = p;\n macros['unloopsound'] = p;\n macros['loopsound'] = p;\n macros['pausesound'] = p;\n macros['stopsound'] = p;\n macros['stopallsound'] = {\n handler: function () {\n var s = macros.playsound.soundtracks;\n for (var j in s) {\n\t\tif (s.hasOwnProperty(j)) {\n s[j].pause();\n if (s[j].currentTime) {\n\t\t s[j].currentTime = 0;\n\t\t }\n\t\t}\n }\n }\n }\n var div = document.getElementById("storeArea").firstChild;\n var fe = ["ogg", "mp3", "wav", "webm"];\n while (div) {\n var b = String.fromCharCode(92);\n var q = '"';\n var re = "['" + q + "]([^" + q + "']*?)" + b + ".(ogg|mp3|wav|webm)['" + q + "]";\n k(new RegExp(re, "gi"));\n div = div.nextSibling;\n }\n\n function k(c, e) {\n do {\n var d = c.exec(div.innerHTML);\n if (d) {\n var a = new Audio();\n if (a.canPlayType) {\n for (var i = -1; i < fe.length; i += 1) {\n if (i >= 0) d[2] = fe[i];\n if (a.canPlayType("audio/" + d[2])) break;\n }\n if (i < fe.length) {\n a.setAttribute("src", d[1] + "." + d[2]);\n a.interval = null;\n macros.playsound.soundtracks[d[1]] = a;\n } else console.log("Browser can't play '" + d[1] + "'");\n }\n }\n } while (d);\n }\n}());