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 | ||||
Released | 2003 | |||
Genre | Industrial rock Industrial metal Drum and bass | |||
Label | PSI Records | |||
Pitchshifter chronology | ||||
|
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
- "Triad"
- "Eight Days"
- "Microwaved"
- "Hidden Agenda"
- "My Kind"
- "What's In It For Me?"
- "Genius"
- "Shutdown"
- "We Know"
- "Keep It Clean"
- "Down"
- "W.Y.S.I.W.Y.G."
- "Please Sir"
Disc two
- "Stop Talking So Loud (I Don't Care What You Are Saying)"
- "Eight Days (Heat Treatment Remix)"
- "As Seen on TV (Martini Lounge Mix)"
- "Down (Burning Down the House Mix)"
- "Genius (Evil Axis Remix)"
- "Misdirection (Dark Winter Remix)"
- "My Kind (D.E.C. Mix)"
- "Dead Battery (Nishtegea Remix)"
- "Please Sir (Can I Go Now?)"
- "Wafer Thin (Dead Mix)"
- "Shen-an-doah (Edacious Empire Remix)"
- "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.