Bootlegged, Distorted, Remixed and Uploaded

Bootlegged, Distorted, Remixed and Uploaded is a compilation album by English metal band Pitchshifter. It was released in 2003, on their own label, PSI Records.

Bootlegged, Distorted, Remixed and Uploaded
Compilation album by
Released2003
GenreIndustrial rock
Industrial metal
Drum and bass
LabelPSI Records
Pitchshifter chronology
PSI
(2002)
Bootlegged, Distorted, Remixed and Uploaded
(2003)
None for All and All for One [EP]
(2006)

It comprises two discs. The first disc is a live album, depicting a concert played by the band at the London Astoria in 2002. The second disc is a compilation of remixes.

Track listing

Disc one

  1. "Triad"
  2. "Eight Days"
  3. "Microwaved"
  4. "Hidden Agenda"
  5. "My Kind"
  6. "What's In It For Me?"
  7. "Genius"
  8. "Shutdown"
  9. "We Know"
  10. "Keep It Clean"
  11. "Down"
  12. "W.Y.S.I.W.Y.G."
  13. "Please Sir"

Disc two

  1. "Stop Talking So Loud (I Don't Care What You Are Saying)"
  2. "Eight Days (Heat Treatment Remix)"
  3. "As Seen on TV (Martini Lounge Mix)"
  4. "Down (Burning Down the House Mix)"
  5. "Genius (Evil Axis Remix)"
  6. "Misdirection (Dark Winter Remix)"
  7. "My Kind (D.E.C. Mix)"
  8. "Dead Battery (Nishtegea Remix)"
  9. "Please Sir (Can I Go Now?)"
  10. "Wafer Thin (Dead Mix)"
  11. "Shen-an-doah (Edacious Empire Remix)"
  12. "Misdirection (Laptops at Dawn Mix)"

Artwork by DOSE-productions.com

gollark: I think the issue is that your `bot` is separate from the `client` and never actually started up.
gollark: ·Oh, `bot.run`, right.
gollark: ```pythonfrom transformers import GPT2LMHeadModel, GPT2Tokenizerimport discord.extfrom discord.ext import commandsTOKEN = 'NOT TELLING YOU'bot = commands.Bot(command_prefix='$')@bot.eventasync def on_ready(): print("done!")@bot.command()async def test(ctx, arg): inputs = arg # initialize tokenizer and model from pretrained GPT2 model tokenizer = GPT2Tokenizer.from_pretrained('gpt2') model = GPT2LMHeadModel.from_pretrained('gpt2') outputs = model.generate( inputs, max_length=200, do_sample=True, temperature=1, top_k=50 ) response = (tokenizer.decode(outputs[0], skip_special_tokens=True)) await ctx.send(response)client.run(TOKEN)```
gollark: Yes, you can just use `@bot.event` or something.
gollark: This is probably obvious but you're sending it in a channel the bot sees, right?
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.