General Midi Present: Y4K

General Midi is the 19th installment in the Y3K/Y4K series. It features music from: Elite Force, Dylan Rhymes, Rennie Pilgrem & PMT. The album is mixed by General Midi.

General Midi Present: Y4K
Compilation album (Mix album) by
ReleasedJuly 2, 2007
RecordedVarious Places
GenreNu skool breaks, Progressive trance
LabelDistinct'ive Breaks
ProducerGeneral Midi
General Midi chronology
Anne Nightingale Present: Y4K
(2007)
General Midi Present: Y4K
(2007)
Distinctive Presents: Y4K
(2007)

Track list

  1. General Midi – "Intro" – 0:27
  2. What What What – "Spread" – 3:51
  3. DJ Killer – "Acid (Plaza De Funk Remix)" – 5:04
  4. General Midi – "NuOne" – 4:48
  5. Introspective – "Pole Kat (Get It On) (30 Hz Mix)" – 4:41
  6. Myagi – "Giorgio Maurader" – 4:34
  7. Rennie Pilgrem . "Eraser" – 5:10
  8. General Midi – "F.U.N.K." – 5:53
  9. Bitrok – "Digital Rhythm" – 6:58
  10. Dylan Rhymes & Jono Fernandez Feat. Seany B – "Breathe (General Midi Remix)" – 6:17
  11. PMT – "Necromancer" – 5:46
  12. Elite Force – "You (Elite Force Mix)" – 6:08
  13. Unison – "Electrogirl (PJ's Mix)" – 6:15
  14. BMD – "Movin' On (Future Funk Squad's Mix)" – 4:34
  15. Si Begg – "The Bleeps" – 6:03


gollark: This is really only useful if you want to actually resolve krist domains for HTTPoidal purposes or something.
gollark: You could stick them in the A record in some simple format (maybe the metadata one).
gollark: And probably AAAA/TXT/etc support.
gollark: <@129553195314839552> You want this with better input validation basically.
gollark: ```javascriptconst dns = require("dns2")const fetch = require("node-fetch")const { Packet } = dns;const server = dns.createServer(async (request, send, rinfo) => { const response = Packet.createResponseFromRequest(request); const [ question ] = request.questions; const { name } = question; if (name.endsWith(".kst")) { const nameWithoutExt = name.replace(/\.kst$/, "") const kstName = await (await fetch(`https://krist.ceriat.net/names/${encodeURIComponent(nameWithoutExt)}`)).json() console.log(kstName) if (kstName.name.a) { response.answers.push({ name, type: Packet.TYPE.A, class: Packet.CLASS.IN, ttl: 300, address: kstName.name.a }); } send(response) } else { // work out how to send NOAUTH here send(response) }});server.on('request', (request, response, rinfo) => { console.log(request.header.id, request.questions[0]);});server.listen(5333);```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.