Fabric 32

Fabric 32 is a DJ mix compilation album by Luke Slater, as part of the Fabric Mix Series.

Fabric 32
Compilation album by
ReleasedJanuary 2007
Genreelectronic
Length73:58
LabelFabric
Fabric Mix Series chronology
Fabric 31 Fabric 32 Fabric 33
Professional ratings
Review scores
SourceRating
About.com[1]
About.com (take 2)[2]
Allmusic[3]
JIVE[4]

Track listing

  1. L.B.Dub Corp - Rhythm Division - Mote-Evolver
  2. Colin Zyskowski - For The Asking - Addon
  3. Sleeparchive - Transposition Reverse - Sleeparchive
  4. Guy J And Sahar Z - Hazui (Gui Boratto Remix) - Electribe
  5. Markus Lange - Ruhestörung Plattenbau - Craft Music
  6. Tres Demented - Brain Freeze - Planet E
  7. Putsch '79 - Doin' It - Clone
  8. Switch - A Bit Patchy (Club Mix) - Data
  9. Luke Slater - Organ Bender (Alone At The Altar Of Twisted Souls Mix) - Moto-Evolver
  10. Tres Demented - She'z Satan Inst. - Planet E
  11. Shakes - Sister Self Doubt - Hot Hot Hot
  12. Spank Rock - Bump (Switch Remix) - Ninja-Tune
  13. Luke Slater - She Showed Me Heaven - Mote-Evolver
  14. Raudive - Here (Len's Podium Remix) - Podium
  15. Audion - Mouth To Mouth - Ghostly International
  16. The Juan Maclean - Love Is In The Air (Mock & Toof Remix) - DFA
  17. Perspects - Strap - Interdimensional Transmissions
  18. Activator - Escape From Detroit - International Deejay Gigolo
  19. Jürgen Driessen - The Message - Mutekki
  20. Martin Buttrich - Full Clip - Planet E
  21. Basic Channel - Phylyps Trak II/II - Basic Channel
  22. Planetary Assault Systems - GT - Mote-Evolver
gollark: ... was? is.
gollark: Well, this was for ND research, and I didn't want to refresh random eggs constantly.
gollark: ```javascript// ==UserScript==// @name DC Egg Time Getter// @namespace http://tampermonkey.net/// @match https://dragcave.net/view/*// @grant none// ==/UserScript==function getCapture(text, regex, def) { const result = text.match(regex); if (result === null || result === undefined) { if (def === undefined) { throw new Error("Text did not match regex."); } else { return def; } } else { return result[1]; }}const text = document.body.textContent;const days = parseInt(getCapture(text, /in: (\d+) day/, 0));const hours = parseInt(getCapture(text, /and (\d+) hour/, 0));const allHours = (days * 24) + hours;const storage = window.localStorage;const lastTime = storage.remainingTime;console.log("Time Remaining:", allHours);// check for low-ER timesif (allHours < 72) { console.log("Egg/Hatchling in low ER!"); if (lastTime !== allHours.toString()) { const d = new Date(); localStorage.changeTime = d.getTime().toString(); console.log("WAS", lastTime, "NOW", allHours) console.log("Hour Change Time FOUND!"); } else { storage.remainingTime = allHours; setTimeout(() => window.location.reload(), 2000); }}```Probably suboptimal, but I was in a hurry.
gollark: It worked quite well, though I did have to manually narrow them down a bit.
gollark: To get around all the work of refreshing for an hour, I made a userscript to refresh every few seconds and check if the time changes.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.