Jump to content
IGNORED

Influx of bad artist names


eh Speedy

Recommended Posts

We should compile a greatest hits of this thread

(By 'we' I mean somebody other than me)

I wanted to do this for the DJ name thred - not manually - basically write a thing which fetches all the posts from the thred and parses out the things. Then u go to an internet website which serves you a random picking from all the things. But I don't know much web development rly so I haven't done it.

Link to comment
Share on other sites

 

We should compile a greatest hits of this thread

(By 'we' I mean somebody other than me)

I wanted to do this for the DJ name thred - not manually - basically write a thing which fetches all the posts from the thred and parses out the things. Then u go to an internet website which serves you a random picking from all the things. But I don't know much web development rly so I haven't done it.

 

oh man that would be awesome. with the amount of entries in this thread it could be passed off as being a hipster artist name generator.

Edited by modey
Link to comment
Share on other sites

i'm keen to try doing this. even if we just made a google doc. easiest way would be to make some script that can scan the thread for [paragraph break] [few words of text] patterns and spew it out into a text file, maybe?

ok, turns out you can doo all this crap in Objective-C (I'm too old for Javascript). here's my first attempt at a scraper:

 

#import "ViewController.h"
#import "TFHpple.h"

static NSString *baseURLString = @"http://forum.watmm.com/topic/66816-influx-of-bad-artist-names/page-";
static NSString *xpath = @"//div[@class='post entry-content ']";
static int page = 1;
static int numpages = 115;
static int maxTokensPerLine = 5;

@interface ViewController ()
@property (nonatomic, strong) NSMutableArray *output;
@end

@implementation ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.output = @[].mutableCopy;
    [self fetchData];
}

- (void) fetchData
{
    NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@%d", baseURLString, page]];
    
    NSURLSessionDataTask *downloadTask = [[NSURLSession sharedSession]
                                          dataTaskWithURL:url
                                          completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
                                              
                                              if(!data)
                                              {
                                                  NSLog(@"error fetching the things, bailing.");
                                                  return;
                                              }
                                              
                                              TFHpple *hpple = [[TFHpple alloc] initWithHTMLData:data];
                                              NSArray *elements = [hpple searchWithXPathQuery:xpath];
                                              
                                              
                                              NSMutableArray *parsedElementStrings = @[].mutableCopy;
                                              
                                              for (TFHppleElement *element in elements)
                                              {
                                                  NSArray *children = [element childrenWithTagName:@"text"];
                                                  for(TFHppleElement *childElement in children)
                                                  {
                                                      NSString *elementString = [childElement content];
                                                      [parsedElementStrings addObject:elementString];
                                                  }
                                              }
                                              
                                              NSArray *filteredStrings = [self filterStrings:parsedElementStrings.copy];
                                              [self.output addObjectsFromArray:filteredStrings];
                                              
                                              
                                              
                                              dispatch_async(dispatch_get_main_queue(), ^{
                                                  
                                                  NSString *combinedElements = [self.output description];
                                                  [self.textView setString:combinedElements];
                                                  
                                                  NSLog(@"done fetching page %d.", page);
                                                  
                                                  if(page < numpages)
                                                  {
                                                      page++;
                                                      [self fetchData];
                                                  }
                                                  else
                                                  {
                                                      NSLog(@"all fetched, writing json array to disk...");
                                                      
                                                      if([NSJSONSerialization isValidJSONObject:self.output])
                                                      {
                                                          NSError *err = nil;
                                                          NSData *jsonData = [NSJSONSerialization dataWithJSONObject:self.output options:NSJSONWritingPrettyPrinted error:&err];
                                                          
                                                          if(err)
                                                          {
                                                              NSLog(@"error creating JSON: %@", err);
                                                              return;
                                                          }
                                                          
                                                          [jsonData writeToFile:[@"~/Desktop/bad_artist_names.json" stringByExpandingTildeInPath]
                                                                     atomically:YES];
                                                      }
                                                      
                                                      NSLog(@"done.");
                                                  }
                                                  
                                              });
                                              
                                          }];
    
    [downloadTask resume];
}

- (NSArray *) filterStrings:(NSArray *)input
{
    NSMutableArray *newArray = @[].mutableCopy;
    
    for(NSString *str in input)
    {
        NSArray *lines = [self stringsSplitByNewlines:str];
        for(NSString *line in lines)
        {
            NSString *filtered = [self filterStringWithoutAlphanumericCharacters:line];
            filtered = [self filterStringWithMoreThanThreeWords:filtered];
            filtered = [self filterTabs:filtered];
            
            if(filtered)
            {
                [newArray addObject:filtered];
            }
        }
    }

    return newArray.copy;
}

- (NSArray *) stringsSplitByNewlines:(NSString *)str
{
    return [str componentsSeparatedByString:@"\n"];
}

- (NSString *) filterStringWithoutAlphanumericCharacters:(NSString *)str
{
    NSCharacterSet *charactersToRemove = [[NSCharacterSet alphanumericCharacterSet] invertedSet];
    NSString *strippedReplacement = [[str componentsSeparatedByCharactersInSet:charactersToRemove] componentsJoinedByString:@""];
    if(!strippedReplacement.length)
        return nil;
    return str;
}

- (NSString *) filterStringWithMoreThanThreeWords:(NSString *)str
{
    if([str componentsSeparatedByString:@" "].count > maxTokensPerLine)
        return nil;
    return str;
}

- (NSString *)filterTabs:(NSString *)str
{
    return [[str componentsSeparatedByString:@"\t"] componentsJoinedByString:@""];
}

@end

 

 

and here's the output as a JSON array: https://cl.ly/2f0t0i0p2v39

 

 

[
  "who cares",
  "cho wares",
  "right?",
  "llo.",
  "Dicky Rowntown",
  "er....",
  "Rave Grohl",
  "oll.",
  "condles the fat",
  " much...",
  "Watmm is a neverending whingefest!",
  "i agree.",
  "lol",
  "Mizz Richard Divine",
  "It went over quite well.",
  "can't forget Gnarls Barkley",
  "lolol.",
  "edit: or johhn lennnon",
  "R.E.P.R.E.S.E.N.T. !",
  "Just fuckin w\/ you dude.",
  "like JUST now?",
  "Word on the Strengph Gs!",
  "O",
  "flay wilkins?",
  "Burt Squimpton!",
  "Bran Ianderson",
  "Huck Dunt",
  "Id Kickarus ",
  "Fife Lorce",
  "Bobble Bubble",
  "Pike Tyson's Munch Out",
  "Puper Sitfall",
  "Konkey Dong",
  "Trainbree ... etc.",
  "WA",
  "M",
  "Pwin ▲▲ Teaks",
  "LOL",
  "So Stupid... So So Stupid!",
  "Well...",
  "Luke Vibbert",
  "forever the best name",
  " NAME.",
  "Id Kickarus is pretty good.",
  "nice rant.",
  "Lance Legstrong.",
  "cohn jarmack nightware",
  "Jichael Mackson!",
  "GenClod",
  "jon bovi",
  "Ded Tanson",
  "Beorge Gush",
  "Ian Breno?",
  "Morg Kronotron",
  "LOL",
  "Snesley Wipes",
  "click dark",
  "That's a good one!",
  "blank frack",
  "wina teymouth",
  "urethra franklin",
  "burly chassis",
  "watmm",
  "puke lerry",
  "that name sucks.",
  "teen laqueefa",
  "Pselodux - Sine Language",
  "Rooftop Access - Easy Glistening",
  "Ra-Ra-Rapists.",
  "Squigglecock.",
  "melattica",
  "PoserTrans",
  "port-sock",
  "Famie Joxx",
  "Ku-tang Klan",
  "Poon-Tang Plan",
  "lol nice one",
  "gear brylls",
  "sylvester stallone",
  "i don't get it ",
  "p.p.s. pot hockets",
  "Mince McVahon",
  "Parry Hotter",
  "Larry Byndon",
  "Fulp Piction",
  "Paresquusher",
  "Gady Laga",
  "twex aphin",
  "autochre",
  "Jean Juke Picard",
  "The Influx",
  "Art and The Bad Names",
  "Pal Pacino",
  "minivan morrison",
  "fill colons",
  "fleetwood imac",
  "ol birdy dastard",
  "K.K. Jail",
  "Spruce Bingsteen",
  "sock of fleagulls.",
  "buck cherry",
  "that's actually a band lol.",
  "Rian Beno",
  "Con Seannery",
  "Sbtrkt",
  "HTRK",
  "BTTLS",
  "mstrkrft",
  "etc",
  "PVT",
  "Bord on Grown",
  "*pivot fanboy*",
  "Lynyrd Skynyrd",
  "ABBA (worst of both trends)",
  "tiger & woods  ",
  "it doesn't stop.",
  "James Noyce, ",
  "i like that one!",
  "dude not cool...",
  "Jan Borden",
  "Ruth Vader Ginsburg",
  "Use it. It's not taken.",
  "Bed Tundy",
  "Don JeLorean",
  "Wony Tilson",
  "Chill Pollins",
  "edit: FUCK",
  "Hark Mamill",
  "the ",
  "eg. job for a cowboy",
  "Burt Bacharach",
  "burt backgammon",
  "brook burkaback",
  "Spurt Backncrack",
  "Sook Backacock",
  "Dirk Tukmajerb",
  "Also Ducktails, wtf.",
  "lol",
  "Melodious Funk",
  "I like this one, though.",
  "Swill Mith",
  "Chewin' Macgregor.",
  "da supa lol",
  "pink freud",
  "duptown evil",
  "jenny and the bets",
  "black fag (oh dear)",
  "Smill With",
  "Shart Bimpson",
  "Barlie Chown",
  "Pappermint Petty",
  "Woopy & Snoodstock",
  "Lunus & Licy",
  "Peg-Pin",
  "Dreadful Gate",
  "John Cool-Train",
  "Squid Viscous",
  "Pee \"Scratch\" Larry",
  "Lying Flotus",
  "Puke Wellington",
  "Rye n' Done",
  "ernest borg 9",
  "arse lolrich (might get sued)",
  "zole!",
  "Michael Jukeson ",
  "Nuke Jukem",
  "Kim Jong Trill",
  "ernest borg9 is pretty likely",
  "lol, are you Mennis Diller?",
  "Jace Groans",
  "(and the angular quintet)",
  "Baguette.",
  "Radiohead II",
  "Hadioread",
  "Legion Heirs",
  "actual laughter was produced",
  "Phởtek",
  "agreed on both fronts",
  "con johnner",
  "Colben Stephert",
  "Stohn ",
  "art  ",
  "Rock the Bomba",
  "BAMFony Bourdain",
  "The Bro",
  "radio on the tv",
  "zrank fappa",
  "garfunkel & simon",
  "Stod Rewart",
  "Mr Eddie Fercury",
  "Kheyonce Bowles",
  "Assive Mattack",
  "HP Jarvey",
  "fml",
  "Hamilton Airplane",
  "Cameltonian Mechanics",
  "Will Biv Defoe",
  "DJ Harvey",
  "That's badass.",
  "Cosby, Skills and Hash",
  "Gavin Russom  ",
  " good one",
  "Bean Sooth's smash single \"Teef\"",
  "Ian Breno",
  "Hark Mammal",
  "Kill Valmer",
  "I don't get it!",
  "Lue Tries",
  "Ratman and Bobin",
  "Bhe Teatles",
  "Aphex Triplet",
  "Foo Fighters",
  "oh wait",
  "Grave Droll",
  "The Six Pestols",
  "LOLPH DUNDGREN",
  "also, DOPE LUNGREEN",
  "skilltester stabbone",
  "The Farrison Horde",
  "Pwnin' Polanski",
  "Fartin' Scorsese",
  "Haulin' Oats",
  "Howlin' Tobin",
  "The Two Wang Clan",
  "Luther VanBoss",
  "Kickhole Nidman",
  "Licky Rake",
  "Ill Body",
  "Hell McFearson",
  "Rupert Grint",
  "Klipsnot",
  "Amen Tobin",
  "Cockie HerbHands",
  "Bott Scakula",
  "OCDC",
  "Douche Manballa",
  "Rupee Murdoch (chiptunes)",
  "Clit Mansell",
  "Gyro Sánwich Spigeti",
  "vermin ban arren",
  "Awl Pokenfold",
  "Blarence Coddicker",
  "Maft Donk",
  "Squirrel Jam",
  "Smashing Blumpkins",
  "Beff Juckley",
  "That's just funny",
  "deacon blue",
  "also; bleacon due",
  "you mean like ",
  "Or ",
  "me thelvins",
  "Stubbs Eutow",
  "Mowgli Jackson",
  "Squid Phillips",
  "Gus Gipper",
  "Ricky McSwizzlestick",
  "Option 30",
  "This will hit it big.",
  "fucking hell",
  "J.D's and Lentil Men",
  "Will Feral",
  "Deely Stan",
  "The Fackson Jive",
  "Chai \"L'atay\" Koffsky",
  "Nim Chimpsky",
  "just dropped in to say",
  "Ferrous Bueller",
  "Bustin' Hoffman",
  "Axl Blows",
  "Ninja Simone",
  "Sultanas of Swing",
  "mdma sandler",
  "Sauna Dumbers",
  "Popo Cops",
  "Benzo Steinazopine",
  "Aquatic Warriors",
  "Peen Wolf",
  "Peonix",
  "lespodux",
  "sexplodu",
  "veruca assault",
  "Haha nice one!",
  "Assault'n'Pepa",
  "Sandra Bollocks (",
  "Brian Emo",
  "µ-Te",
  "Killing Juke",
  "enihcam redrum",
  "(machinedrum meets \"the shining\")",
  "Autechreture",
  "Autechretecture",
  "Isla Phisher......oh wait.....",
  "this is probable.",
  "MC Spammer",
  "Noise of Art",
  "NEIN!",
  "The Wat",
  "plup",
  "luke vibbert",
  "Vibbert & friends",
  "from the page:",
  "It's pretty good!",
  "http:\/\/www.youtube.com\/watch?v=QmJNkPnX2Jw",
  " mix",
  "Cunt Eastwood",
  "Smelly Ripa",
  "Rad Bitt",
  "wholly fucking shit.",
  "edit: Trance Formers",
  "Dubstepticons",
  "a+",
  "Crap Your Pants Say Yeah",
  "lol",
  "would buy",
  "Harry Chronic Jr",
  "i mean, what the hell",
  "Mint Eastwood",
  "just made that up btw",
  "DJ Dodger Stadium!",
  "Snesley Wipes",
  "........LOLOLOL!",
  "Rushin' Circles",
  "DJ TwinkleTwat",
  "MC ButtChutney",
  "DJ hahathhatsnottahat",
  "green j",
  "Garry Boldwater",
  "Cornette Oleman",
  "Parah Salin",
  "Ok, that's just good",
  "Mobster Bisque",
  "Slam Chowder",
  "Grief Stew",
  "lolled",
  "Tootin' Carmen",
  "DXM Krew",
  "Tommy Hill Figure",
  "Glenn Stephani",
  "Tim Heckler",
  "Thin White Juke",
  "Bloke Party",
  "Jew Kids On The Block",
  "Jeve Stobs",
  "Gill Baits: Trout Microsoft Replica",
  "Bass Ventura",
  "Zole!",
  "Tricky Martin",
  "Bards of Canada",
  "Mailor Soon",
  "Donny Jepp",
  "The Saily Dhow",
  "Aiona Fapple",
  "Genuine lol!",
  "still laughin @ bare grillz",
  "fady lingerer",
  "The Junior Downey Robertsons.",
  "Juice Willis",
  "Lude Jaw",
  "Best Wank",
  "hah ! nice one",
  "Zole fuck awesome",
  "Ellen Degenerate",
  "Chords of Bananada",
  "overheard at dinner:",
  "Ellen Degenitals",
  "just saw Dro Carey ",
  "Spittney Beers",
  "Day Funnaway",
  "Kenny Logons",
  "ZOLE",
  "ericu curaputon",
  "Goy Division",
  "lol",
  "The sachs pistols",
  "Arnold Schwarzenigger",
  "s'not bad",
  "Beatsy Collins",
  "Blu-Ray Cyrus",
  "Bomb Cruise",
  "Bomb Hanks",
  "Bomb Selleck",
  "Skeevy Ray Vaughn",
  "Hahah fucking awesome.",
  "GIF Richard",
  "Whitney Houston 500",
  "Marvin`s Gay",
  "Barry Gusey",
  "Hell Gibson",
  "Chief Kegwin",
  "Dennis Space Hopper",
  "Dubber Johnny",
  "Organ Freeman",
  "Carmen Electro",
  "Kevin Spacey Dub Collective",
  "The David Lynch Mob",
  "Tron Javolta",
  "winner",
  "Nelly Fartudo",
  "lol",
  "I especially love ",
  ", that is indeed inspired.",
  "skrilex",
  "ellixrs",
  "George Foreman Grillex",
  "Sexkrill",
  "Lords of Chlamydia",
  "Nelly Turdfato",
  "Gringo Starr",
  "Cher Guevara",
  "Jodie Foster The People",
  "Ron Jambo",
  "Smelly Fart Turdo",
  "Great band!",
  "dildo dagginz",
  "adolf hipster",
  "Vengabots",
  "Widowlicker",
  "Hillbilly Crystal",
  "run dmt",
  "The Taliband",
  "Bass Bin Laden",
  "Fego 1337",
  "saw Long John Saliva today",
  "Bong Jovi",
  "The Bob Hoskins Dilemma",
  "Phil collins mix.",
  "Old spice girls.",
  "Fart of Noise",
  "QWERTY Harry",
  "Theme of Sudden Impact",
  "Rustie Ass Swords",
  "Ice cream Vangelis",
  "Michael Cocaine",
  "The Leonardo dicap Trio",
  "Mob Barley and The Sailors",
  "rustie trombone®",
  "Kim Jong Fun!",
  "Curt Kobain",
  "Kurt Kobaïan",
  "Genitallica (a mexican band)",
  "Cing Krimson",
  "How To Dress Well",
  "Worst artist name ever.",
  "Ricky Spinks and the Tiddlywinks",
  "My fest biend.",
  "Rock Santorum",
  "Stanklin the Turtle",
  "stromboli thurmond",
  "Kate's Bush",
  "FartyDL ",
  "Lawrence of A Labia",
  "The Venetian Bear Jamboree",
  "Danderine Team",
  "Asap Rocky",
  "Billy Crystal Meth",
  "The Kevin Costner Suicide Pact",
  "Both real artists\/bands.",
  "The George Costanza Poledance Extravaganza",
  "Jenn Boredom",
  "DJ Smelly Smell",
  "spaminal collective",
  "Gang Gang Dance",
  "Kount Mimbie",
  "Mob Barley",
  "Laming Flips",
  "Pushing Smamkins",
  "The Fight Footers",
  "Pwn Temple Pilots",
  "Broads with Candida",
  "Thats a lol. ^",
  "Lying POTUS",
  "Brotek",
  "Brofex Twin",
  "Bros of Canada",
  "8 Brozen Modules",
  "Flying Brotus",
  "Brotechre",
  "Brotator",
  "Brogdan Raczynski ",
  "Brotodementia",
  "Broken Note....",
  "...ah shit.",
  "Ace of Space",
  "Ludwig van Brothoven",
  "Wolfgang Amadeus Brozart",
  "awesome lol",
  "serious lol",
  "Future Bros of London",
  "Broddika",
  "Amon Brobin",
  "Brommix",
  "Eskbro",
  "Jennifer Lowpass",
  "hehehe, whole new thread:",
  "Brodike Stare",
  "The Bro",
  "Brobital or Broital",
  "Steve Broach",
  "Brodiohead",
  "My Brody Valentine",
  "and of course Brothomstates",
  "oh no I can't stop",
  "Steinbrod",
  "The Black Bro",
  "BRO State",
  "Brobal Communication",
  "try doing these ones",
  "Actress",
  "2562",
  "Shed",
  "Pinch",
  "Skream",
  "Broctress",
  "256bro",
  "Shbroed",
  "Pinchbro",
  "Sbroeam",
  "Half vegetable half Natalie Portman",
  "Jennifer Bropez",
  "Brotney Spears",
  "Brodonna",
  "Justin Brober",
  "The Bronus Brothers (bro bros?)",
  "Bjrork (meh)",
  "B.R.O. (LFO)",
  "Bronolith",
  "Brog Pocket",
  "The Brodigy",
  "Fatbro Slim",
  "Chemical Bros ",
  "*shoots self*",
  "Brozart",
  "Broch",
  "Brothoveen",
  "Maurice Brovel",
  "Bropin",
  "Debrossy",
  "Bro Zombie",
  "Broback Mountain",
  "Super Mario Bros",
  "Brodey Kendrick",
  "William Brorbit",
  "Mike Broldfield",
  "Brochum Welt",
  "Angelo Brodalamenti",
  "The Bros Volta",
  "The Flaming Bros",
  "John Talabro",
  "Bro Iver",
  "The Niggardly Narwhals",
  "Neubrosis",
  "Ozzy Osbrone",
  "The Bro-betweens",
  "Brodive",
  "OK Bro",
  "lol'd at OK Bro",
  "Pillowy Mounds of Mashed Potabros",
  "Merzbro",
  "Broasis",
  "... brodhosbn ",
  "David Browie",
  "the Brolling Stones",
  "Caustic Windbro",
  "Also..",
  "Bitchie Hawtin",
  "Bitchard D James",
  "Lionel Bitchy",
  "Poop Dogg",
  "Blue Man Poop",
  "Brostep bro'fied",
  "Flux Brahvillion",
  "Brogore",
  "Nebro",
  "Brusko",
  "Broki",
  "Broctor P",
  "Broisia",
  "Brodestep",
  "Brahdge and Bruvski",
  "Brahspa",
  "Brahsik",
  "Children of Brodom",
  "Brozum",
  "Brorial",
  "bro",
  "adcast",
  "Arvbro Pärt",
  "Mr Brongle",
  "Absbrolut Brodka",
  "Godspeed You! Black Bro",
  "Jon Spencer Bros Explosion",
  "Bros Against the Machine",
  "School of Seven Bros",
  "The Black Bro",
  "Dave Brobeck",
  "Miles Brovis",
  "Alice Brotrane",
  "Herbro Handcock",
  "Scott Broplin",
  "Jelly Bro Morton",
  "Broey Deschanel",
  "Rave Matthews Band",
  "Broeffekt",
  "Bro Scott-Heron",
  "A Bro Called Gerald",
  "Brosphere",
  "Beastie Bros",
  "Fuck i'm bored right now.",
  "The brolling stones",
  "Bro Dylan",
  "the Broors",
  "Brohemian rapbrody",
  "Brollex",
  "i'm just wasted now",
  "omzole!",
  "Radibrohead",
  "k I'm done now",
  "Smally Bigs",
  "Skittle, alias Overweight Overcast",
  "MediOchre",
  "bropeth",
  "mastbrodon",
  "broshuggah",
  "helladeth",
  "Truk Kobain",
  "The Brolice",
  "Stewart Bropeland",
  "Bronesis",
  "Phil Brollins",
  "Peter Gabroel",
  "Brotallica",
  "Crash Bro Dummys",
  "FiBrona Apple",
  "Alanis Broisette",
  "Gin Brossoms",
  "Bro Naked Ladies",
  "Bro Diddly",
  "Brian Maiden",
  "Herbie Hancock Goes Bananas",
  "George Looney",
  "Charles' Mansion",
  "The Dung Ones",
  "DJ Smelly Smell",
  "you already posted that",
  "Red Wobster",
  "Spongewob Ravepants",
  "queercore names",
  "Pansy Division (real)",
  "Black Fag",
  "Demdikes Starin'",
  "Gays Against The Machine",
  "Yoko Homo",
  "lawl",
  "Kraut Brock",
  "ulrich schnauzer",
  "Gym Jar Moosh",
  "A Roast Myth",
  "Squid Barrett",
  "Rat Stevens",
  "John Goober Mellencamp",
  "Annie Linux",
  "Oh awesome!",
  "Scavenger Cunt",
  "Alpa Chino",
  "Jacked Nicholson",
  "Robot De Niro",
  "edit:",
  "Reefer Sutherland",
  "Diles Mavis",
  "Fred Zeppelin",
  "Rage Against The Washing Machine",
  "Geoff Leppard",
  "Dandwell Sistrict",
  "meh",
  "Celine Diode",
  "Drive By Trackers",
  "Matthew Sweep",
  "Nordvana",
  "Quant Eyes (sorry)",
  "VSTP",
  "Plugin",
  "Roland Barthes",
  "Splice Girls (probably already posted?)",
  "Sunny Mono",
  "Alexei Lossless",
  "MPC Hammer",
  "Birth of the Cooledit",
  "The Bandwidth",
  "50 Hert",
  "BPM Dawn",
  "Billy Korgan",
  "The Dewey Decibal System",
  "Envelope Cruz",
  "Starlheinz Kockhausen",
  "MIDDY",
  "Loopy Fiasco",
  "Justin Timbrelake",
  "Concrète Blonde",
  "Biasphere",
  "Delia Dolbyshire",
  "Bitched-On Swach",
  "Moogwai",
  "The Fab Fourier",
  "Liz Fairlight",
  "Tomita Cruise",
  "an actually stupid one,",
  "Dolphins Into the Future",
  "Otis Operandi",
  "\/thread",
  "dibs on Slashthread",
  "Seapunk?",
  "Zooey Bechamel",
  "Broyksopp",
  "Trentebrøller",
  "DJ Worst Witch",
  "Agile Aardvarks",
  "Brisk Bears",
  "Dawdling Dinosaurs",
  "Fast Ferrets",
  "Hasty Hamsters",
  "Idling Iguanas",
  "Lethargic Llamas",
  "Nimble Newts",
  "Plodding Penguins",
  "Quick Quayles",
  "Rapid Rodents",
  "Engelbert Humperdonk",
  ":crickets:",
  "*tip o' the pipe*",
  "Nicolas Cage the Elephant",
  "Karmony Whorine",
  "Call of the Nguyentermoon",
  "Third Leg Foundation",
  "Blue oyster cult - seriously...",
  "Has ",
  " already been mentioned?",
  "Lörn",
  "urethra franklin",
  "lol",
  "Bell-end Sebastian",
  "Cock Toe Twins",
  "Chixie Dicks?",
  "Click Dark",
  "DJ Salinger",
  "MC HammerFall",
  "lol",
  "Dub Billin'",
  "Teen la queefa",
  "^ lol",
  "fink ployd",
  "Kris Pistofferson",
  "Phony Mitchell",
  "Choco Pastorius",
  "Cosmo Framer",
  "George Bonanza",
  "The Doug Fuggles Quintet",
  "Dials Mavis",
  "Tintin Quarantino",
  "Marlin Bran Dough",
  "boards of kaenada",
  "modeyselektor",
  "gocab for cutie",
  "joyrex division",
  "jefferoo airplane",
  "abusivegeorge michael",
  "fugazgi... fusagi... uszi-- FUCK THIS",
  "black sabbaph",
  "All win! No lose.",
  "\"influx of baph artist names\"",
  "boy gaarg",
  "bio fucking hazard",
  "the verticalhold steady",
  "talking asymmetrical heads",
  "neneh cherry's multiple assgasms",
  "kenny logakhggkhkgkhtins",
  "impotentwhitecapitalist motorcycle club",
  "loscillik",
  "THIS IS MICHAEL JACKSON",
  "logan5ive",
  "annie imac ",
  "pete thong",
  "gloryhole estefan",
  "spruce bringsteen",
  "usagi and the yojimboners",
  "De La Zole",
  "(an actual one I saw)",
  "Raymond Scott Walker",
  "The Key-Skrull Dextars",
  "You mean Urethra Franklin?",
  "ElectroNick Nolte",
  "Shat Parp.",
  "encey hammer (just met her)",
  "haha, lovely thread.",
  "pear squisher",
  "DIXON CIDER",
  "Murkey Teatballs",
  "Oneoldtrix Losepounds Forever",
  "john coltrance",
  "the Ranky Mailings",
  "Localmom Erasewrinkles",
  "Prance",
  "Meatwood Fack",
  "lol",
  "Krisstopher Kross",
  "Kriss Kross",
  "wait...",
  "Monterey Babe Aquarium",
  "Roofie in the Ho's Swish",
  "Batman-Turner Overdrive",
  "Pelvis Resley",
  "Heidi M",
  "Bjorn Cyborg",
  "Nick Jackolson",
  "White Dog Shit Ensemble",
  "alber tein stein",
  "mad donna",
  "burt bacharararackach",
  "canoe reeves",
  "engelbert hyperdonk",
  "Hahahahaha!",
  "winner",
  "Staul Panley",
  "Scene Gimmons",
  "Creter Piss",
  "Free Aceley",
  "Tranny Lennoxxx",
  "Paul McFartney",
  "Swallbeat",
  "Soldering Iron Maiden",
  "Fia Marrow",
  "Addy Woolen",
  "Analogkournikova",
  "Beathoven",
  "Young Neil",
  "Chris Chan Acid",
  "madonno, don't :(",
  "Mr Bean Against The Machine",
  "The John Carpenters",
  "will.i.am orbit",
  "Seen on turntable.fm...",
  "Queef Latina",
  "Smooshing Poopykins",
  "Pashing Munchkins",
  "Star Jonestown Sassacre",
  "The English Beat Manifesto",
  "The Cunt For Red Cocktober",
  "Mailer Soon",
  "Fun DMV",
  "bustin jawdrick",
  "Baking Brad",
  "Mormon Nailer",
  "Coxbutter",
  "Jam Saxon",
  "Genghis Troon",
  "Smopedoker",
  "Bapazz Shalaces",
  "Cing Kannibal",
  "Dead BMX",
  "Lee Banaldo",
  "LOL Lolhurst",
  "Cash Shoes (unsalted)",
  "Talk O'Bell",
  "Jihaddaway",
  "Eating Dumplings",
  "Salt Shitman",
  "Poop Logg",
  "S Fart 7",
  "BJ by Thomas",
  "Billy Korg'n",
  "Thirstin' Moore",
  "Hack Zill",
  "Jill 'n Coke",
  "They Might Be Bros",
  "The Teh",
  "Dead Cannot Dance, Actually",
  "Dead Candace",
  "Dead Can Can Dance",
  "Dead Canned Acne",
  "Can - Dead Dance",
  "FUCKIN' HELP ME BRO",
  "*bans self from thread*",
  "Yeah, that's kinda badass.",
  "lol, fucking awesome",
  "Imagine the lawsuit.",
  "Dr. Albanian",
  "Skank Anansie",
  "Death Gropes",
  "lol",
  "Bob Dylbalina",
  "modeyselektor",
  "Joyrex Division",
  "mess.i.an",
  "gwaarg",
  "Dirty Protesters",
  "Atop(TP)",
  "Polyphonic Squee",
  "big daddy kaen",
  "deee let...",
  "Gocab for Cutie",
  "vasiotone for the painfully alone",
  "OneToThirtySix Point Never",
  "Shit Attack Shit Attack!",
  "ruiagnelo baidalamneti",
  "A\/D C\/D",
  "the xxx",
  "Moron 5",
  "Done Erection",
  "Iona Fapple",
  "Aphex Twink",
  "Goatye",
  "Currie Anterwoord",
  "Briss Crown",
  "LMFAO Schwartz",
  "Poopglove",
  "B.o.o.B",
  "Red Hot Pilli Choppers",
  "lol, i love this thread.",
  "Blob Dylan",
  "Celine Diode",
  "Dirty Squee",
  "Boondock Sints",
  "Hank Hills Have Eyes",
  "Broatia",
  "also",
  "Massive Shit Attack",
  "Boastie Bees",
  "Shartin' Scorsese",
  "Fryin' De Palma",
  "Dances Lord Coppolla",
  "Skeevin' Spielberg",
  "*preorders*",
  "The Bro .. oh wait",
  "Farrison Hord",
  "lying flotus ",
  "Knob Ed Harris",
  "Gary Debussy",
  "Lee Scratched Perry Mason",
  "Peter Fondler",
  "Genesis P-easoup",
  "Genesis P-hilcollins",
  "Penises G-orridge",
  "Pete Static",
  "Cigar Ross?",
  "A Fly Called Gerald",
  "Spag Hetti.",
  "Hairy Peen Stanton",
  "Bomb Ferret",
  "Squidley Rott",
  "Sick Horny Beaver",
  "Crussell Rowe",
  "Count Bassy",
  "Dials Mavis",
  "Typhoid Ramirez.",
  "Harris Pillton",
  "Huge Hefner",
  "Phony Shaloub",
  "Forge Gorman Skrill",
  "Statrick Pewart",
  "Political artist names FTW",
  "Blony Tair",
  "Beorge Gush",
  "A-Rack Bobama",
  "Cavid Dameron",
  "Bordon Grown",
  "Mangela Urkel",
  "Aholf Ditler",
  "Ranklin Froosevelt",
  "Gahatma Mandhi",
  "Saddam Sossoon",
  "Chiston Wurchill",
  "Target Matcher",
  "50p",
  "Lukewarm -T",
  "DJ CDJ",
  "Drone Gunstringer",
  "Arthur Dollar",
  "Beter Puck",
  "tweaker pimps",
  "µse",
  "the bumblebeetlez",
  "Millicent Jackknife.",
  "Be Thug",
  "Skrilleen Dion",
  "Nuns and Moses",
  "Knitting Schick Dimples",
  "lol!",
  "Bob Skrillan?",
  "Shock, Hate & Slaughter Men",
  "holy fuck, best",
  "Crabs Casio",
  "Lobsters Bingo Hall",
  "Goa West",
  "Devil 42",
  "The Robert Shawmen",
  "Federal Reserve Zeppelin",
  "Pink Roid",
  "Poo Unlimited",
  "Constipation Society",
  "Alice Pooper",
  "UPoo",
  "Scat Power",
  "Ricky Shartin'",
  "Canny Loggins",
  "The Turdles",
  "Splashing Blumpkins",
  "Burlap Ives",
  "Walliam Shitner",
  "Diarrhoeba McEntire",
  "The Feces",
  "sTool",
  "Black Deuce",
  "Doo Doo Golls",
  "Bowel City",
  "Dead hor5e",
  "Dead c@",
  "Dead l085ter",
  "Dead cra8",
  "Dead 5eagull",
  "limbonic fart",
  "the fartfull dodger",
  "30 seconds to fart",
  "my dying fart",
  "Apoplectic Monster Lagoon",
  "Chevy Chase & Status",
  "Living In A BOC",
  "Madonna Summer of Hate",
  "!YES!",
  "Bachman Turner Oversteps",
  "Fink Ployd",
  "Dreen Gay",
  "Raspa and Cuspo",
  "Wob Barley and the Mailers",
  "Marilyn Hanson (bmmm hopp)",
  "The Fazy Crog",
  "Béla Batcóck",
  "Georges Bidet",
  "Alban [burger]",
  "Skrilldegard von Bingen",
  "Dilated Pooples",
  "Assuming Lettuce is Good",
  "Mr. Mister Bungle",
  "Faithless No More",
  "Mastodonna",
  "Derrick Mayhem",
  "Velvet Underground Resistance",
  "Wu Tang Clan of Xymox",
  "Girl Talking Heads",
  "Ethan Hawkwind",
  "Chase & Status Quo",
  "Wolfensteinvordhosbn",
  "Jack Black Sabbath",
  "Nelson Mandela Soul",
  "George Duke Nukem",
  "The Bach Street Boys",
  "Danny Dyer Intelligence Agency",
  "Duran",
  "Duran Duran Ghali",
  "Bare naked ladyhawk wind",
  "The The Ting Tings",
  "RIhanna Montana",
  "U2 Unlimited",
  "Van Morrisey",
  "Sugar Ray Charles",
  "GNREMIAC\/DCCREOMDMBBDMXTCSSTPODnBTODBOCANINWABBAFINXSWVWXYZ!!!",
  "The Beatles 2",
  "The Last Mariachi",
  "The Jesus And Mary Sidechain",
  "The Beertles",
  "Knitters With Attitude",
  "Fad Bart",
  "lady raga",
  "clifford d james",
  "nintendo prepubescent altercation",
  "rofl. so shit it's good.",
  "J Quesadilla",
  "LOL",
  "Picasso's Sex Phantoms",
  "Official Fisherman",
  "Boston Foghorn Federation",
  "The Foreskins",
  "Supersonic Barnacle Assassin",
  "Jake Gyllenhall & Oates",
  "Pb Dirigible",
  "Gang-Grene Dance",
  "Electric Astley",
  "The Fresh Prince Charles Manson",
  "Sharon Stone Temple Pilots",
  "Sweeney Todd Duckstader",
  "Lady Boyz 2 Men",
  "Slipmatt Dillon",
  "Portaloo Reed",
  "The Boards of Aphextre",
  "DJ Jazzy Jeff Buckley",
  "Meat Treat Antipasto",
  "Poopfrom the Butt",
  "Toto von Schirachmaninov",
  "El Samurai",
  "flipmodeselektorsquad",
  "get cape wear cape swim",
  "mike paradinas in your punani",
  "ceephax so solid crew ",
  "bananablim ",
  "Love Over Volcanoes Erupting",
  "Bitchy Boys",
  "Filthy Fuckers",
  "james addiction",
  "barry womanilow ",
  "l33t foxes ",
  "beat meat manifesto ",
  "the amy winehouse experience ",
  "Marooned Eyelid Sandwich",
  "The Soybean Saints",
  "Less Than One",
  "One 8",
  "Twoohtrix Point Never",
  "KRS-Two",
  "TwoDirection",
  "TwoRepublic",
  "U3",
  "RJD3",
  "Boyz III Men",
  "3 Unlimited",
  "3 in a Room",
  "3 Live Crew",
  "3 Many DJs",
  "4OH!4",
  "The Four Tenors",
  "Four Doors Down",
  "Four Days Grace",
  "Four Seven Mafia",
  "Fourth Eye Blind",
  "The Fab Five",
  "Five Tet",
  "Dillinger Five",
  "6ix",
  "5 Non Blondes",
  "The Five Tops",
  "Gang of Five",
  "MC6",
  "Royce Da 6'10",
  "Jurassic 6",
  "Pizzicato Six",
  "Maroon 6",
  "Ben Folds Six",
  "The Jackson Six",
  "Six For Fighting",
  "Eve 7",
  "Electric Seven",
  "Seven Feet Under",
  "Sevenpence None the Richer",
  "L8",
  "Eight Mary Four",
  "Eightdust",
  "Avenged Eightfold",
  "Eight Year Bitch",
  "TIN",
  "Orange 10mm",
  "XI",
  "11CC",
  "Matchbox 21",
  "The xxi",
  "31 Seconds to Mars",
  "39 Special",
  "UB41",
  "Sum 42",
  "51 Cent",
  "B53s",
  "Eiffel 66",
  "Buck 66",
  "Prefuse 74",
  "M84",
  "Current 94",
  "99 Degrees",
  "Blink 183",
  "Front 243",
  "312",
  "Kid 607",
  "809 State",
  "MC 901 Ft Jesus",
  "1001 Homo DJs",
  "Death From Above 1980",
  "Andre 3001",
  "Deltron 3031",
  "Powerman 5001",
  "10,001 Maniacs",
  "The Alabama 8",
  "Tech10ne",
  "'n sync erator",
  "Kitsch N*SYNC",
  "Tribute skyscraper to incomplete albums",
  "Dyllis Philler.",
  "ahem",
  "MC Bad Breath",
  "Lolly Parton",
  "Rofl Harris",
  "LMAO",
  "Zole Train",
  "Zolefly",
  "Zolive",
  "Zolly Murs",
  "Zoltechre",
  "Hangable Auto Flahbulb",
  "The Erection",
  "Erect Clapton",
  "Boner Thugs n Harmony",
  "Prick Astley",
  "Spank Cock",
  "Ce Ce Peniston",
  "Little Richard Dawkins",
  "Men With Hats",
  "Biggs Hoson",
  "Sonja Goofy",
  "Steptoe and Sun Ra",
  "hah, almost forgot about them",
  "Dat Funk",
  "Ghostbass Dilla",
  "N.O.R.D.",
  "Oberheim Steamroller",
  "Moogie Down Productions",
  "ARP Garfunkel",
  "KoRg",
  "E-mu-ziq",
  "3-2-1 Kontakt",
  "Skeet Skeet Skeet Ulrich",
  "The KLFDM",
  "Sexplod-U! Black Modey",
  "Jew Order",
  "Goy Division",
  "Goy Division",
  "lol",
  "Koresh Mode",
  "Imam Tobin",
  "Fatwa Slim",
  "Prefuse72 Virgins",
  "Beth'el Cool J",
  "Lauren Hillel",
  "Briss Brisstopherson",
  "Chanukkah Khan",
  "Circumcision du Soleil",
  "Dr Dreidel",
  "Gefilte Spill",
  "Gentile People",
  "... Goy Borge?",
  "Kosher Roth",
  "Lil L'Chayim",
  "Menorah Jones",
  "Shul of Seven Bells",
  "the beatless",
  "Jello Darkness, My Old Friend",
  "Herp Alpert",
  "Delia Derpyshire",
  "Derpy Projectors",
  "Peep Derple",
  "Yentl People",
  "Michael Bassfender",
  "Fickle Bassmender",
  "Lame Impala",
  "George Bush",
  "Slack Babbath",
  "Raves On A Plane",
  "Ernest Borgten",
  "Compact Disc Dummies",
  "Hong Kong Dong",
  "Ernest Borgseven of nine",
  "Merry Poopins",
  "Beat Loaf",
  "Depeche Chode",
  "King Magenta",
  "elton dgoHn ",
  "flying lo tuss",
  "Shit Stained Teeth (shock-metal band)",
  "No AFX",
  "Gook Schmellington",
  "Aphex Pistols",
  "The Hakuna Matata Jazz Trio",
  "Mormongauze",
  "ABBAFX",
  "shreddie mercury",
  "Das AFX ... whatever",
  "1.21 Niggawatts",
  "Victorian Glitch Neo-Transitive",
  "Nigur Ross",
  "sorry",
  "Rigueur Sos",
  "Prance - Purple Gay'n",
  "Raking Dad.",
  "Digital Fishstickz",
  "Ian Wankin",
  "Dreddie Mercury",
  "Lemon Leshugga",
  "lol",
  "ill scott heron",
  "Sick Astley",
  "Phat King Cole",
  "Kewlio",
  "Bach Psychosis",
  "Kilometers Davis",
  "Michelle Bachmann Turner Overdrive",
  "Thomas Jefferson Airplane",
  "Andrew Jackson Five",
  "Van Buren",
  "John Tyler, the Creator",
  "Fillmore Collins",
  "Lincoln Park",
  "The (Gar)field",
  "Guns N' Roosevelts",
  "Taft Punk",
  "Calvin Coolio",
  "Herbert Hooversteps",
  "Bright D. Eyesenhower",
  "Nixen",
  "Naked Reagan",
  "(George) Bush",
  "Clintony! Clintoni! Clintoné!",
  "Obamarama",
  "Bochum Belt",
  "todays winner! Awesome.",
  "May i add: ",
  "throw berry",
  "gnarles barclays",
  "jimi andrex",
  "Kneel Jung",
  "Jon Bong Jovi",
  "Jew Bale",
  "Hipster Baboon",
  "Booger Ray Charles",
  "Alberto de la Murrica",
  "tete pong",
  "Vanessa paradi(na)s",
  "corn shonnery",
  "youshuggah",
  "Mewse",
  "DJ Food Please",
  "(DJ Wood Please etc.)",
  "A Dell",
  "Bacon Cunt.",
  "Sad Subtraction",
  "The Smiths and Wessons",
  "Craftwork ",
  "Blu-tac Shakur",
  "Glue Reed",
  "Sadvillain",
  "Savage Hardon",
  "ddtn",
  "mrnng",
  "saul pimon",
  "Aruba Pudding Jr.",
  "Symbolically Adopted Tigers",
  "Butt Chemist",
  "sxrillek",
  "Sadlib",
  "lol",
  "kim jong ill",
  "josh wank",
  "timo moss",
  "armin van halen",
  "chevy (chase and status) quo",
  "Why Can't I Draw",
  "Nice. Points for recursion.",
  "Sad Max",
  "Mad Sax",
  "Sad Rock",
  "Adderall Cattleby",
  "Dexedrine's Midnight Runners",
  "Josh Ritalin",
  "Townes Van Zanax",
  "ModeCelexa",
  "Cymbaltas Eat Guitars",
  "Prozakk Wylde",
  "Paxil Rose",
  "Das Efexor",
  "John Wellbutrane",
  "(on encey's theme)",
  "Skrillsonex",
  "Cialis Dion",
  "Celebrex Acid Crew",
  "The Flaming Lipitors",
  "Resonator Matrix",
  "Dave Monolithium",
  "Mavelith Donovan",
  "Justified Ancients of Poopoo",
  "'chreayshawn",
  "Dee Litewoord",
  "Muslim Bale",
  "Bomb Gnarly",
  "old spice girls aloud",
  "unkle ben e king tubby",
  "lee satchel perry",
  "All Taints",
  "Snoop Dogg - Hip Hop",
  "Snoop Lion - Reggae",
  "Snoop Giraffe - Ska",
  "Snoop Hamster - Indie Rock",
  "Snoop Hummingbird - speedcore",
  "Snoop Building - Architectural Design\/IDM",
  "snoop snow leopard 1.2",
  "- witch house",
  "Snoop Panda - Black Metal",
  "Neon Indian",
  "Fluorescent Grey",
  ":P",
  "Twat Stevens",
  "doner kebab summer",
  "Boards of Aphextre",
  "Roland S Howard",
  "R Lon Hubbard",
  "Chilliam Gibson",
  "will.i.am gibson",
  "Terry Bogan",
  "die, antwoord, die!",
  "Kid 'n Pray",
  "Stephen Mowhakings",
  "brian cocks",
  "Ambient Einstein",
  "richard be fine, man.",
  "nobuo uematsurbate",
  "Ashreks Twin",
  "Oneogretrix Point Donkey",
  "Janshrek",
  "Shrek Lion",
  "SWA",
  "Tim Shreker",
  "Konkey Dong",
  "DJ mr. k dilkington",
  "Dandy Jenkinsons",
  "lol",
  "Mike Fuck-a-bee",
  "Might Fuck a Tree",
  "Fuckleberry Finn",
  "Ornate Coleman",
  "Fryin' Berry",
  "Old Man Cornet",
  "Fled Nanders",
  "out now on Spam Records",
  "J.S. Nickelbach",
  "Nickelback Cave",
  "Stevie Nickelbacks",
  "Nikkibakk Sixx",
  "Kruder & Ganondorfmeister.",
  "queefwood mac",
  "Cop Tat",
  "Dooby Scoo",
  "Fl.. e...",
  "I suck at this.",
  "Fucking ZOLE",
  "Grubbing Thistle",
  "Ravid Lynch",
  "Brizzly Gear",
  "That sounds Jewish",
  "Bananarammstein",
  "The Flaming Lipschitz",
  "Fatman poop",
  "Daft Twin",
  "'phex pistols",
  "Usain Bolt Thrower",
  "ron paul mccartney",
  "The Splice Girls",
  "Zero Direction",
  "Der Käse Chiefs",
  "The Pat Sharp Boys",
  "Mad-less",
  "Lame Galaghaghaghaghaghaghagahggahghhhhackackackackakckckkacakckakkkkerrrr",
  "Ed Shearer",
  "Ricky Mork",
  "Tori Anus",
  "Sed Eullivan",
  "Zomart",
  "Anal Supplex",
  "Hairy Anne Mobs",
  "Srnold Achwarzenegger",
  "Bansky",
  "Sir Noel Awkwardsnigga",
  "Liam Galaga",
  "Shit Pop Boys",
  "Bugasled",
  "Tamon Obin",
  "Jahnny Cosh",
  "Gorihanna",
  "Yebonce",
  "Dez Tiny's Child",
  "The Autist",
  "edit: Theme of Yes' Roundabout",
  "Anthony Fantano",
  "Bichael Molton",
  "The Aphex Mom ♥- Cookies&Bass",
  "Michael Bolt-ons",
  "The Shitty Beatles",
  "Chet Faker",
  "The Smith",
  "fuckin lol",
  "#E30B5C Beret",
  "Shackletoff",
  "LOLOL",
  "Pussy Rot",
  "The Gentile People",
  "Dave Pus-stain",
  "The Genital People",
  "Genital Giant",
  "NCYCLPD",
  "DCTNRY ",
  "NVRS",
  "FRCTL DMNSN ",
  "HYPRSPC",
  "Squiddles",
  "Pad Britt",
  "Hogfish Dead",
  "East Infection",
  "The Tweetles",
  "50 Centipede",
  "Combat Truise",
  "Xenosade",
  "Final Fant--wait ... nevermind.",
  "Loureedy's Mansion",
  "Marilac Mansion",
  "Akari Teenage Warriors",
  "Lunar Landel Ray",
  "Battletoad the Wet Sprocket",
  "Mos Defender",
  "Missy Missile Command Eliot",
  "2 Pac-Man",
  "Dorkey KoRn",
  "Dig Duggable Planets",
  "Xevious Ray Vaughn",
  "Zaxxon Wylde",
  "1942 in a Room",
  "Punch-Out Out Out!!",
  "Coleco Case",
  "NINtendo",
  "Dntellivision",
  "Wolfenstein Amadeus Mozart",
  "Nobunga Uematsu",
  "Metroid Station",
  "The Shinobis",
  "Gaiden By Voices",
  "Skate or Die Antwoord",
  "Atom TMNT",
  "Y(e)s",
  "Four Tetris",
  "Grand Theft Auto Von Schirach",
  "DJ Shadowrun",
  "Liam Galaga",
  "Gun-Nac Shakur",
  "Crystal Cas--wait ... nevermind.",
  "Mylo's Secret Castle",
  "Rivers Cuomo Ransom",
  "Rush 'n Attack",
  "Tauboo: The Sixth Sense",
  "2 Live Wrecking Crew",
  "Francis Ford Crapola",
  "They Are Definitely Giants",
  "Francis Ford Capri",
  "Roberta.flac",
  "Katrina and the WAVs",
  "Booker T. and the MP3s",
  "Wah Keen Phoenix",
  ".. a funk band",
  "^ lol",
  "George Rockingtons",
  "Jams A Garfield",
  "Groover Cleveland",
  "George Dubsteppleyou Bush",
  "Cal Pacino",
  "Mo Kalate",
  "Alfred HitchCockRock",
  "Doris Peltsin",
  "Red Punjab Aquarium",
  "Idi Amin Break",
  "King Tutenkhamen Break",
  "Barack Obamen Break",
  "Siddharta Gautamen Break",
  "Mitt Romen Break",
  "Oliver Cromen Break",
  "Agamenmnon Break",
  "Jeffrey Dahmen Break",
  "Forum.watmm.comen Break",
  "The Bro",
  "Frobert Ripp",
  "Eon Braino",
  "Paul St. Hilarious",
  "Sonic Elders",
  "Neil DeGauss Tyson",
  "Animal Stretcher",
  "Broadcats",
  "Butechre (pronounced 'boo-tecker')",
  "Slrich Uchnauss.",
  "Shit just got real:",
  "Organ Freeman",
  "Bob Dylanger Escape Plan",
  "Muddy WATMMers",
  "The Jimmy Roosterdrix Experience",
  "Manic Shit Preachers",
  "Shit Vincent",
  "ShiTP",
  "MShiTRKRFuckiT",
  "106.Never",
  "Aaron Funk's Mom",
  "Senetian Vnares",
  "he's actually used that name",
  "Veneral Sneeze",
  "Venetian Snores",
  "Lebanese Tom-Toms",
  "Pinkin' Lark",
  "pH Harvey",
  "\"totally enormous extinct dinosaurs\".",
  ".hex Files",
  "Neapolitan Hi-Hats",
  "Itis",
  "edit: ",
  "Young Woman Mirth - ",
  "  goddamnit usagi!",
  "Cochese and Cumbria",
  "At the Legitimate Theatre",
  "The Bjork Volta",
  "Atoms For Piss",
  "lol",
  "busty sproingfield",
  "16tit",
  "MF BOOB - Operation: Boobsday",
  "Smashing Melons",
  "schwings",
  "Toecheese and Camembert",
  "Paneer Sonic",
  "Rush Limburger",
  "Feta James",
  "Justin Brieber",
  "Chevreclear",
  "Edam",
  "Goudastank",
  "Jarlsbergs of Clay",
  "Barry Manchego",
  "Cotijye",
  "Oaxaca Flocka",
  "Thomas Colby",
  "Monterey Charles",
  "The Emmentallerst Man Alive",
  "Cheese Boards of Canada",
  "Roxclette",
  "Taylor Swiss",
  "Paris Stilton",
  "Eddie Cheddar",
  "Insane Clown Asiago",
  "Fiona di Latte",
  "Fontina Turner",
  "Gorgonzola Jesus",
  "Madonna Padano",
  "Mozzarellie Goudaing",
  "Provolone for the Painfully Alone",
  "Pecorino Bailey Rae",
  "Ricotta Astley",
  "Romanowar",
  "Comte Truise",
  "USA Is A Munster",
  "Enuff Z'neufchatel",
  "Zack De La Roquefort",
  "Roy Orboursin",
  "Oh god",
  "A Tom For Peas",
  "encey is a fucking machine",
  "Fachine Mucking",
  "BOColli",
  "Softcell-ery",
  "Cress X-Press",
  "Spinach Tap",
  "Lettuss",
  "Pea J Harvey",
  "2 Pak Choy",
  "Swede-ish house mafia",
  "Asparagus Johnson",
  "Deep Radish",
  "Westbamboo",
  "To rocoto Carrot",
  "The Kale-F",
  "etc...",
  "mob barley",
  " goddamnit, kaini!",
  "Sybian Mobile Dildo",
  "Peter Weird",
  "The Mad Potatoes\/Electrowizards fron Hell",
  "Yes!",
  "Skynnard Lynnard",
  "Munster Banana",
  "Dysjointed Kronikbaboon",
  "Bartina Mopley-Turd",
  "Swaylor Tift",
  "Kneyonce Bowles",
  "Charlie Quarker",
  "Havarti Shaw",
  "Kraft Punk",
  "Talking Cheds",
  "The Velveeta Underground",
  "lol",
  "bellend sebastian",
  "anyone do cox butter yet?",
  "damn! :D",
  "Basement Jocks",
  "Lee Scriracha Perry",
  "Blue Oyster Cunt",
  "Crystal Method Man",
  "Mooch Pushy",
  "edit:",
  "that's fuckin' art, homie.",
  "LimpyLoo & The Status Updates",
  "Burn, David",
  "Muddle of Pud",
  "Pinkin' Lark",
  "Skype Williams",
  "tiny goy shuns",
  "Holy Udder",
  "Goy Orbison",
  "The Sputnik Spooks",
  "DJ Maryhuana Dealer",
  "The Squid Ticklers",
  "Squickles",
  "Squirt Reynolds",
  "Mob Barley",
  "Butt Chutney",
  "Shdongle",
  "Cock-Toe Twins",
  "Tron Javolta",
  "Maximo Carp",
  "Papa Roach",
  "Bobby Womackerel",
  "B:Ream",
  "Red Snapper",
  "Lamb of Cod",
  "Eels",
  "Squarepercher",
  "Kylie Minnow-gue",
  "Lol at B:Ream",
  "Lennie Annox",
  "DJ Dirty Duck - ",
  "actor",
  "System of a Donk",
  "Hed Rot Pili Cheppers",
  "Ched Pot Hili Reppers",
  "Ped Chot Rili Heppers",
  "thatz jus too much man",
  "Hairy Taut Chilly Peppep's",
  "athankyou",
  "Juke Vibert",
  "Wob Hall",
  "Kueen Quiny Adove Heilam",
  "Just Terrible Edition:",
  "Cing Krimson",
  "CoRn",
  "Apbinary Twout",
  "Pistols N Daffodils",
  "GPEACE",
  "Tiesfrom",
  "Skrilly",
  "Pselogeese",
  "Fleshblob",
  "Captain Chickenliver",
  "Tmortgage Rezneither",
  "Syndrome of a Down",
  "C.H.O.A.D.",
  "FUK2",
  "the long pendulous breasts",
  "Ban Drown",
  "machined rum ",
  "Gayphex Twink",
  "It's not Leviosa, it's Leviosa",
  "Sarah Dumbman",
  "The ChaWOWski Baristas",
  "The Reggaewaltz",
  "The Scrotum Wrinkles",
  "The Squinkles\/Skrinkles",
  "Fellatio Hornblower",
  "Luke Skywanker",
  "what about a band called:",
  "hooplah THE BAND",
  "Jenn Bordan",
  "ColdTrue",
  "Emotional Chef",
  "Queen Open Butt",
  "Jimstin Tussberlake",
  "Alan PartRDJ",
  "James Booth",
  "Bats for Flashblubs",
  "WISP Kalifa",
  "Burt BOCBOCBOCaroc",
  "'Chre and SUNNy BonO)))",
  "Jennifer Hudson Mohawke",
  "Rustievie Wonder (sorry)",
  "Squarepusha T",
  "Morriceephax",
  "2 Lone Crewmembers",
  "L(M)F(A)O",
  "The Black Snoop Dog",
  "Brothomates of Brothomstate",
  "Fun Timez",
  "Rainbow Helperz",
  "Polygamy Window",
  "Polymorphous Widow",
  "Polyphonic Wide Load",
  "Eddie Murphy's Ambient Experience",
  "Darkogothic Milk",
  "Brotechre",
  "The Polyphonic Spleen",
  "Spells Mana Drifts",
  "Fun",
  "Code10 and the Cosmichimp",
  "lol so bad",
  "edit:",
  "Steve Martyn",
  "Scuba Doo",
  "Technotroonic",
  "Near-Baked Lads",
  "Mono Lake",
  "Monolake & Palmer",
  "Craic the Skye",
  "Gynecomastedon",
  "Octogynecomastecologist",
  "Vulva Skratcherz",
  "Smell of Hobo's Asshole",
  "Girls Butt Fragance",
  "Tightening Bolt",
  "Diarrhea Bubble",
  "Ass Effect",
  "Simply Dred",
  "The Almond Brothers",
  "The Amazing SpeedoMen",
  "Asshole Boogie Boarders",
  "Russian Circlejerks",
  "god emperor of dungen",
  "kareem gom jabbar",
  "slow this larry bird down",
  "Mr. Melty Balls",
  "Scott Walker (Politician)",
  "The Modell",
  "Clit Yeastwood",
  "Godspeed You! African-American Emporor",
  "Reese's Feces",
  "Richard Divinyls",
  "Violent Discharge",
  "LimpyLoo-Style BumClown DoodleFart",
  "LimpyLoo Reed",
  "LimpLizkit",
  "bLimp 18(loo)",
  "Limpyx Twin",
  "quite good",
  "You are a keen observer.",
  "lol",
  "lol, missed that one",
  "The ",
  "s",
  "lol",
  "Dagon Christ",
  "The Kvlt",
  "Public Enema",
  "noisearboretum",
  "children of bottoms",
  "JAR",
  "Steve Reich III",
  "Bela Bargirl",
  "Pornette Zoleman",
  "Fig Leibniz",
  "*satisfied sigh*",
  "Facebook (1)",
  "Brophex Twin?",
  "Fuckface Unstopabble",
  "Massive Shit Attack",
  "Black Guy Pees",
  "Legitimate Rape",
  "Clap Your Hands Say ",
  "There you go, lol",
  "Teng La YOLO",
  "Puke Beaver",
  "Yes!",
  "Holy fucking ZOLE",
  "I'm Bob ZOLE",
  "Donk Caballero",
  "Lil Abner",
  "Bye Bye Birdman",
  "Cats Steven",
  "Fiddy on da Roof",
  "Forever Plaid",
  "Chicago",
  "Godspell! You Black Emperor",
  "Damn Yankees",
  "Grease Day",
  "(H)air",
  "West Side Kanye",
  "Fantomas of the Opera",
  "Miss Saigon Kick",
  "Aimee Mann of La Manncha",
  "Cornershop of Horrors",
  "Les Miz Khalifa",
  "John Cage aux Folles",
  "Snoop Lion King",
  "Mamma Mya",
  "lol, I peed a little",
  "Global Tuss",
  "nicki mini-vag",
  "Does It Offend You, ",
  "Hoards of Cannabis",
  "mercedes benz folds five ",
  "flying lotus elise",
  "peugeot 206pointnever ",
  "ford metalli-KA",
  "nissan micra jackson",
  "bmw mini alice cooper",
  "Pringle du Pants",
  "sayer",
  "Kan",
  "West",
  "Dockers Chino",
  "Scooter Sex",
  "The Dink",
  "Were It Offended You, Yes",
  "Gold Juice Smugglers",
  "Colpolord",
  "Naserati",
  "The (VW) Bug",
  "Nissan Alt-Jima",
  "Nissan XTCerra",
  "Tame Impala, Trans Am",
  "Benz Jordan",
  "Kia Sportage Spice",
  "Corolla Tengo",
  "Dodge Rammstein",
  "fuck it, too many!",
  "Fuckroom ",
  "Fever Ray\/D",
  "Extended Cab Calloway",
  "The Beeman",
  "The X-Fillets",
  "little late buuuuut",
  "Nixies",
  "Phoenixon",
  "Martin Van Halen",
  "Milli VaFilli",
  "Sleater-McKinley",
  "Yes lol",
  "We're making up names, right?",
  "The States Chompkins",
  "Requiem for Baboon's Celibacy",
  "Octo Mom 546",
  "Uranium Wet Dream",
  "Femur Flute",
  "House of Heretics",
  "Marooning Gathers",
  "Next Move Act",
  "The Enemas",
  "The Future Sound Of",
  "Poopastank",
  "In that case:",
  "Alex Trebek Empire",
  "Sega Teenage Riot",
  "Tortoisehead",
  "Squarepuncher",
  "A Guy Called Harold",
  "Smunky Fell (patent pending)",
  "FM Mood",
  "Wendy Carlos Lobos",
  "Surely Bassy",
  "Wubroot",
  "Death Shits",
  "derp grips",
  "Jilling Koke",
  "This is great.",
  "bike all molten",
  "Blukid",
  "Explosions in my Pants",
  "so good!",
  "PMS Dawn",
  "Flow Rida",
  "Hemorrhage Against the Machine",
  "Ragginforce",
  "Surfing on Crimson Waves",
  "Red Flag",
  "Carrie Underblood",
  "Playtex Twin",
  "O.B. King",
  "We Were Promised Tampax",
  "Maxipad Mischief",
  "A Perfect Cycle",
  "Spot the Hoople",
  "Ashlee Crimson",
  "Bleed a Fjord",
  "Oneohtrix Period Never",
  "SWV8",
  "puss.y.jam",
  "Kotexhre",
  "Mentro Struation",
  "Menses Hammer",
  "Color Me Padd",
  "Red Blouse Painters",
  "Rust In Beaver",
  "Good Scarlet",
  "U2erus",
  "Puddle of Bludd",
  "Red Wombie",
  "The Red Vadge of Courage",
  "Kotex and Cambria",
  "Queen Crimson",
  "Godspeed You! Barack Empelol",
  "big lols!",
  "Sexplosions In The Eye",
  "tee hee",
  "The Docking Head",
  " Starr",
  "Nusrat Fateh Ali KHAAAAAN!",
  "John Gorn",
  "Jean Luc Ponty Picard",
  "Han Sulu",
  "Redshart",
  "Save the Rain DeForest Kelley",
  "James Tiberius Kirk Cameron",
  "Klingon Pork",
  "Alban Borg",
  "Kim Cardassian",
  "Ferengi Goes to Hollywood",
  "GoRn",
  "DJ Q",
  "Andreas Vulcanwiener",
  "Romuland",
  "Dick Shitman's Fruity Bunch",
  "MRNNG",
  "FTRNN",
  "VNNG",
  "Illegal Eliáns",
  "Robert Fucking Palmer",
  "Vatican Snares",
  "Venetian Shadows",
  "Puch Poochie",
  "Downes Van Syndrome.",
  "Syndrome of a Down",
  "lol",
  "Travesty Stewart",
  "Three Donk Night",
  "Black Donk",
  "A Donk'd Up Sound",
  "Goo Goo Donks",
  "Erykah Badonk'adonk",
  "lolled",
  "Tappy Hurkey Day",
  "NAMBLA Beat Science",
  "Donk Caballero",
  "Donk Henley",
  "Donk Donkon",
  "Engelbert Humperdonk",
  "One Erection",
  "Medeski, Martin and Woody",
  "Wang Chung",
  "Cece Peniston",
  "Dick Assley",
  "Boner Thugs and Harmony",
  "Aesop Cock",
  "Weener",
  "BBC King",
  "PeePee King",
  "Blond Vulva",
  "Fuddy",
  "Afro Fart",
  "Demdikes There",
  "The Snaretaker",
  "Chutney Spears",
  "Totally",
  "Snarelax",
  "Mom Tiddleton",
  "Park M. Ritchard (obligatory)",
  "Fleshlight",
  "Snare Bears",
  "Garage Patch Kids",
  "Spongebob Squarewave",
  "lol.",
  "OK Goa",
  "Gabber Jaws",
  "Drum and Bass Pro Shop",
  "Snesley Wipes",
  "Boyz II Dustbin Men",
  "marry blaniload",
  "The Soberanus",
  "Boyz 4 Men",
  "Krabbypatti Smith",
  "Fatty Smith",
  "Fatboy George",
  "All Tomorrow's Panties",
  "Meat Lo Fi",
  "Bvdubya",
  "thats more like it",
  "Hometown Bobuffet",
  "Yoko Solo",
  "Wolfgang Amidala Mozart",
  "Darth Brooks (of course)",
  "Jabba O'Riley",
  "Jar Jars of Clay",
  "Calrissa Etheridge",
  "Greedo Green",
  "AC-3C...PO",
  "Palpatine Hunger Force",
  "Chew Baccharach",
  "Husker Dooku",
  "Django Reinfett",
  "Jimmy Bobafett",
  "R2 of Noise",
  "Sebulbadoh",
  "Owl Sidious",
  "Yoyo Da",
  "Bib-Foureightytuna",
  "Greivous and Butthead",
  "Qui-Gon Kick",
  "Adie Vader",
  "Kenobi Teith",
  "Maul Sithmon",
  "Aaleia",
  "Jediski Tarquin and Wook",
  "Watto Von Skywalk",
  "Win Dus Mace",
  "Thy Yummi Sailord",
  "Dick Hymen",
  "Chronic Youth",
  "Sonic Dr. Ruth",
  "Madonka",
  "Poo Fighters",
  "Deaf Melon",
  "Rage Against the Vending Machine*",
  "Nine Inch Snails",
  "Stabbing Backward",
  "Sneaky Pimps",
  "Boner Tugs In Harmony",
  "Fleetwood Big Mac",
  "Ginuwhine",
  "R. Smelly",
  "lol",
  "Orals Robert",
  "Francis Fakin'",
  "Guru Guru Gita",
  "Sri Sri Racha Shankar",
  "The Maha Mantra Ray",
  "Carlos Sanatana-dharma",
  "Ram'D Ass  - ",
  "Thievery Coprofurnication",
  "˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚˚",
  "Lukewarm Vibrator",
  "Mid Range Schlong",
  "Poop Will Eat Itself",
  "Antipoop Consortium",
  "Gangrene Day",
  "Poo Fingers",
  "Yeastie Girls",
  "Girlz II Menopause",
  "Women at Home",
  "Fill In Girl",
  "Bitch Girls",
  "Well Tied Girl (figure ",
  " one out!)",
  "Backseat Girls",
  "Woman or Assowoman",
  "frankie goes to bollywood",
  "roid stewart",
  "Pescatarian Corpse",
  "Soft Atheist ",
  "Torsohug",
  "the rolling lols ",
  "lol temple pilots",
  "the lol roses ",
  "joss lol",
  "Tennis Rodman",
  "SLO)))BAMA",
  "Reina Del Lay",
  "The Lost Profits",
  "The Lost virginitys",
  "The Post Lophets",
  "too soon? ",
  "Captain Bee Fart",
  "johnson and the anthonys",
  "DJ Sturgeon ",
  "Skate Fish or Die 2",
  "the future sound of laaaaaaaaaahhhhhhhhhhhhndan",
  "Hilarious Clinton",
  "The Urethramics",
  "Fill Up Glass",
  "Fill Colons",
  "Bitch Mob",
  "Sexkillr",
  "Did somebody say Lorge Jookis?",
  "Farisson Horde",
  "Fairy Kisher",
  "Hark Mammal",
  "Meeam Leason",
  "Mawan EcGregor",
  "Jarr Stones",
  "Due Hounds",
  "Warbra Balters",
  "Dozey O'Ronnell",
  "Corj Glooney",
  "Kenny Please Enter Your Loggins",
  "Cyplop",
  "God of Lamb",
  "armitage and shanks and bigfoot",
  "brian ferry corsten",
  "flower isn't gay",
  "Roger Autechre",
  "Moby Dickhead",
  "808 Dylan",
  "fucking awesome.",
  "Oh shit, that's great!",
  "Dickbutt Dale",
  "Pin Tweaks",
  "Paura Lalmer",
  "Dale Pooperscooper",
  "Boobio",
  "Dildio",
  "peechax acrid rue",
  "La Poux",
  "Brilliance ",
  "Kether Sullivan",
  "The Sephirothchilds",
  "Shrekhinha",
  "Monocake",
  "Pie Antwoord",
  "Scone",
  "lol",
  "(Petit Four Tet)",
  "braZZers Top",
  "aREOla Speedwagon",
  "Robert Frippslip oh god sorry",
  "Vin Dweezil",
  "Bellender Carlisle",
  "Goldfesh",
  "Gnu  Hoarder",
  "Miley Cyrus The Great",
  "Justinian Bieber I",
  "Amon Zole II",
  "Pseloredux",
  "sounds slick",
  "Morose-y",
  "Sorry-Me",
  "Pete Numlock",
  "Kyle Minogue",
  "Kylie Minimoog",
  "Window Clicker",
  "Captain Bee Fart",
  "Crank Fappa",
  "cheezburrg",
  "zole",
  "Kyuss Baltar",
  "L. Ron Maiden",
  "Mastodon Henley",
  "The Shamones",
  "Divine Piano Roll",
  "Geth Krogan",
  "Fob Roared",
  "Fuck. ",
  "Metalica",
  "LED Zeppelin",
  "Snortlax",
  "omg, brilliant.",
  "Dog Stevens",
  "Dog Power",
  "Three Cat Night",
  "Snoop Catty Cat",
  "Big Black Songs About Furby",
  "flol",
  "zole",
  "Phallic Baldwin",
  "Snoozin' Sarandon",
  "Matthew Codeine",
  "John Goober Melon Camp",
  "Good ones! :-)",
  "Boopy Bett",
  "Chief Queef ",
  "Mike will ate it",
  "Coldcunt ",
  "Pissy Elliott",
  "Girl Scout Heroin",
  "Brosef Lateef",
  "Le Phantastique Poope`",
  "Rad Stewart",
  "#actuallyexists",
  "Tentin' Quarantino",
  "Molten smegma",
  "BBQing",
  "Olivia neutron bomb",
  "Doofus Rainwhite",
  "Boysia",
  "Luberider",
  "Bed Rush and Floptickle",
  "Oldie",
  "Frenulum",
  "Chubfocus",
  "mr. bill o'rielly",
  "John Wilkes LaBeouf",
  "Ron milks poof",
  "World War Whoah!",
  "The Wiggity Wilsons ",
  "Preposterous Poppycock",
  "Squinkle Face",
  "Doorags On Ma Domepiece ",
  "The Gay Dad Revelations",
  "The Wiggity Wilsons ",
  "Preposterous Poppycock",
  "Squinkle Face",
  "Doorags On Ma Domepiece ",
  "The Gay Dad Revelations",
  "Oops",
  "Top of the Oops",
  "Oneohtrix Point Oops",
  "boretechre",
  "aus-techre",
  "the aphex guy",
  "crack tabitha",
  "polygon fort",
  "willem dafunk",
  "goon wolf diaries",
  "toad brochures",
  "portable slave",
  "yellow bellied bores",
  "sneeze alarm",
  "skittle extractor",
  "rotary jive truck",
  "karl the killah rabbit",
  "hogan's heroin",
  "mum and dad",
  "world war fun",
  "purple polar people",
  "$ex mortgag€",
  "ableton cheat codes",
  "thug squeler",
  "xenulith",
  "renegade romney",
  "krystal beth",
  "red eyed roadies",
  "puppy whirl",
  "michael jackson again",
  "double popes",
  "Lol at $ex mortgag",
  "Faker's Delight",
  "Elon Musk Lays Mackdown",
  "Bong of Ice and Fire",
  "Baking Bad",
  "Laid Low by Bushmasta",
  "Joint Keef of Staff",
  "snackadactyl",
  "gizzard the lizard wizard",
  "awful awful names imo",
  "Cerebral Ballzy is real?",
  "faptism of puzi",
  "In other news...",
  "Rolf Harassment",
  "The flaming lisp",
  "Holy fuckinglol ^",
  "yamaha's softball team",
  "pony shortage",
  "shitemare",
  "trilobite eater",
  "uncle junk",
  "the stuttering doe's",
  "and now some breakcore names:",
  "ridge muncher",
  "pizza slicer",
  "hedge sniffer",
  "beer munter",
  "Secret Queefs 3",
  "for your health",
  "Bon Guyver",
  "Squint Eastwood. ",
  "whoredoms",
  "lol",
  "Riff Clichard",
  "someone draw this",
  "Chief Quiche ",
  "Cutie and the Deathcabfish ",
  "Labia Knights",
  "Force Feed You! Arab Conspirator",
  "Rubbin' Dicke",
  "lel",
  "Fart Bell",
  "Fart Smell",
  "Mi-Zµq",
  "Lusher",
  "The Nipples",
  "Squirple ",
  "Smeerios",
  "Frosted Tinny Beats",
  "Mount Cockula",
  "Loco Muffs",
  "Mold n' Grams",
  "yelling francis",
  "only nightmares",
  "last minute bert",
  "fake shark",
  "corpse tracks",
  "livid ability",
  "silicon valley PD",
  "polar ghost disposal",
  "saganaw pants",
  "broken coke",
  "flava flop",
  "D. Gabor",
  "Suck My dB",
  "Rolf Harras(ment)",
  "4skin4evah",
  "Milfs in the Bone Room",
  "Gushin' Nurples",
  "Forgetely Complotten",
  "Wackest Ever Wack",
  "DJ Etch-A-Sketch",
  "Mastadong",
  "The White Gripes",
  "Blue's Cooze",
  "The Doods",
  "Line A Shite",
  "Merzboy",
  "Fay Buckmichael",
  "Strumpet Playa",
  "Fay Buckmichael, Strumpet Playa",
  "Plastic Bono Band",
  "Deepdish Creature",
  "T.W.A.T. Team",
  "A Hearty Pair of Slacks",
  "Righteous Polka Bandits of Yesterday",
  "5^5 Hour Energy",
  "Cosmoatmeal",
  "Dinosparagus",
  "Labiafrosty",
  "Ugandan Methods of Ebola Containment",
  "In A Syrian Bunker",
  "Taco Blimp",
  "Pork Jacuzzi ",
  "Defrocked Beasts",
  "Terrah Fractyl",
  "Lazer Nipples",
  "Testicular Answer",
  "Gyrobunkus [falafelPORTALmx 86]",
  "richardDjamesMADEit",
  "Trilldo",
  "Bat Penetrar",
  "Elvis Turtleburger",
  "Dave Grool",
  "The Stray Scats",
  "Snorkel Burger",
  "Frog nog ",
  "Poverty omelette supreme ",
  "The Death Metal of Eagles",
  "Capicola Dental Dam",
  "Tortellini Genie ",
  "Queso Dot",
  "The Chevre",
  "Rigatoni Basil",
  "Pulsating Fuckwave ",
  "Nebular Labia Sodapop",
  "Clitoresistance Rapentence",
  "Richard Donkins",
  "MC Donalds",
  "STINGO.RAR",
  "Fellatewood Sack",
  "Jung Coconuts",
  "Noodles For Penpal",
  "Merlin The Marlin",
  "Spaghetti Gesture",
  "Jelly Harriwell ",
  "David Healthgoth",
  "Döner Teller Versace",
  "American Sniffer",
  "Hot Tubgirl Time Machine",
  "Genitazer",
  "Cultural Apwopwiatin'",
  "Abs:Original",
  "Orchestral Queefs",
  "The Gay Popes",
  "toto is dead",
  "the ted kennedys",
  "astral hangover",
  "fanny smurf",
  "lolita milfs",
  "canada's best band",
  "stunt cock",
  "you only listen once (yolo)",
  "hartigan school of funk-like music",
  "the portapoteez",
  "accordian handjob ranch",
  "talent show winners",
  "police party",
  "hitler fanclub",
  "pentagram fister",
  "suction cup orgy",
  "nice nixons",
  "scooter squats",
  "marco polo ono",
  "sometimes we're girls",
  "ratchet and dank",
  "the seal club",
  "the alan joners",
  "lol",
  "The Alan Jonestown Massacre",
  "Clerk Kuntz",
  "Gorky's Zygotic Manatee",
  "Hairdiaper Cameltoe Orchestra ",
  "Meat Curtain CinemaScope ",
  "Thumpsteak ",
  "Nard Gwar",
  "haha yess",
  "Durn Durn",
  "Twaggot",
  "Henry Fondles",
  "Jane Fondles",
  "Thugz Bunny",
  "Fogporn Legporn ",
  "Needy Gonzales ",
  "Farts Domino",
  "Daphni Duck",
  "Elmer Spud",
  "Burt Squimpton",
  "lol",
  "Inspectah Kek",
  "camp yogi bear",
  "really camp yogi bear",
  "bogfat ",
  "pill poppin' poser punx",
  "9021-no",
  "pac men by day",
  "dump surf",
  "crab trap",
  "lolitaville",
  "girl scout assassins",
  "LA riverboats",
  "poland 1939",
  "action news robot",
  "too yellow",
  "haunted whale pod",
  "Juice Brenner ",
  "Tigger Warning",
  "The Pornocryptic Vaporfucks",
  "ILLervision Tripleclit",
  "Swankbuster Jones",
  "Fucket List",
  "Children of Bogans",
  "Skwerp ",
  "Twiffle ",
  "Schnoobles ",
  "Read the rules",
  "lol nice",
  "Beff Gibbons",
  "Bronie Bennett",
  "Herschel Kleinfeldmeyerschneiderwitz & Affiliates, PC",
  "The Swift Taylors ",
  "Lil Herb",
  "iRod Touch",
  "Cockboggle ",
  "Geospatial Facial",
  "Zero Grabbity ",
  "Twiggle tots ",
  "Kirk Thuglas.",
  "2 Pack Liqueur ",
  "lol UB41",
  "DD Topless",
  "Haulin' Oats",
  "Tina Gurner",
  "Ca$h Bandicoot",
  "Trill Collin$",
  "Cyndi Lobster",
  "Robert Downer Jr",
  "Gorey Maim",
  "Spunny Kippy",
  "Blazed N Konfused",
  "Vagnelis",
  "Mleaford Sods",
  "The Weednd",
  "Smoke Week Every Month",
  "Kilt-Boners",
  "Bagpipe Bong",
  "Stingo RAR",
  "Parsnip Top",
  "Hill Bicks",
  "Mob Barley ",
  "Brian and UOENO it",
  "David Burn Victim",
  "Quenchin' Tarantino",
  "Bwad Wenfwo",
  "Eliza Douchecanoe",
  "Steve Albino",
  "Hostin' the Gel",
  "Steve AlBeanie-Baby",
  "Outcrassed",
  "Kid Cuddly",
  "Girth, Wind, and Fire",
  "Syndrome of a Downs",
  "Chelsea Milfe",
  "Pill Cosby",
  "How To Dank Well",
  "Godspeed You! Dank Emperor",
  "Hoobadank ",
  "D'ankangelo",
  "Penile Injection Crew",
  "Ballhuggers Anonymous",
  "The Unregulated Capitalists",
  "sent using magic space waves",
  "Amy builtlikeabrickshithouse",
  "Troll Gallagher",
  "Smiley Virus",
  "One Directcum",
  "Justin Cumberlake",
  "Cum Zeppelin",
  "Cumture Club",
  "sent using magic space waves",
  "lol",
  "lol",
  "These are brilliant.",
  "Meff Jills",
  "Blog Party",
  "Fartin' Shkreli",
  "Opwah Winfwey",
  "Steve Rimjob",
  "LoopyLimp",
  "Armpittance ",
  "IDM Artist #455632B.122",
  "Kneel, Gay Man",
  "Breast Coast",
  "Slavves ",
  "Kink Floyd",
  "Radiosled ",
  "R.E.M and Stimpy",
  "Phó Show",
  "Thuggernauts",
  "Bitch Boys",
  "Whores in the Boneroom",
  "Wokwind",
  "Ronald Frump",
  "The Three Spooges",
  "Throb Saget",
  "A Time To Trill",
  "Glansphobia ",
  "Gayvid Bowie",
  "Aphex Twink",
  "Fart of Noise",
  "Sorbitol",
  "Durex Durex",
  "Brian Wino",
  "Poop Will Eat Itself",
  "Skinny Poopy",
  "Nine Inch Turds",
  "KMFBM",
  "Killing Dook",
  "sent using magic space waves",
  "LiberAss       (virtuoso keyboard player)",
  "3DS Krew",
  "Pariah Carey",
  "hahaha *snorts*",
  "Abercrombie and Glitch",
  "Kanye Best",
  "Umberto Echo",
  "Distillery Cinton",
  "Squirmy Sanders ",
  "McDonald Dump",
  "The Bateful Eight",
  "Squid Nibblers",
  "Knob Cobblers",
  "Nugg Fugglers",
  "Kerplunkowowza",
  "Stone Cold Steve Autism",
  "Ultimate Worrier",
  "Sulk Hogan",
  "Bun Powder",
  "Daniel Day Jewish ",
  "Affirmative Action Heroes",
  "Snatching Dumplings",
  "Boreds of Canada",
  "Venetian Snores",
  "Snoretechre",
  "Snorescent Ghey",
  "Ceephax Phlaccid Crew",
  "Polly Dartin'",
  "Hoggs Bison.",
  "Cyndi Looper",
  "Drake-Ing Dad",
  "Smack Braff",
  "Bob Nope",
  "Felonious Drunk",
  "Chaz Deferenz",
  "Hoary Anus",
  "Blue Oyster Cunt",
  "The Yardturds",
  "Crosby Stills and Gash",
  "J\/K LOLin'",
  "Dank Akkroyd",
  "Dank Marvin",
  "Dank Williams",
  "Paul Danka",
  "Tony Danka",
  "sent using magic space waves",
  "Tom Danks",
  "Claire Dankes",
  "Danky Trejo",
  "Dank Cook",
  "sent using magic space waves",
  "Aretha Danklin",
  "sent using magic space waves",
  "Jews From the Six",
  "Steve Aioli",
  "Fleasures of the Plesh",
  "sent using magic space waves",
  "Gash Borer",
  "Kurt Cobainmarie",
  "Nipplecrack",
  "D!nk",
  "En2med",
  "Morbid Bagel",
  "Gropenhagen ",
  "omg perfect",
  "lol",
  "Lol",
  "JSTN BBR",
  "Yoko Oh No",
  "Black Lights Matter",
  "SISI",
  "Napath Dealm",
  "Quinoa Pheonix",
  "Bat Mianco",
  "ÂßÊ Līñçölln",
  "Lol",
  "Slack Babbath",
  "Twerkmeister Harmonies",
  "Worrycursed Currywurst",
  "Thunderclap Bootyslap",
  "Pastries of Regret",
  "lol!",
  "related:",
  "Back Slabbath",
  "lol ^",
  "Spud Bencer",
  "Grody Kendrick",
  "Aryan Adams",
  "Saven Rymone",
  "Moyz II Ben",
  "Chestiny's Dild",
  "Dawn'ld Twūmp",
  "Tamara's Fartfest",
  "Bankable Lotto Ball",
  "Django N' Chaintif",
  "Ronald Gump",
  "Puréed Nazi Genitals",
  "Eviscerated Hippo",
  "Platypussy ",
  "Malcolm Turntbull",
  "Lukewarmplay ",
  "Ü2",
  "Fire in the Arcade Room",
  "Cosby Steals Gash and Tongue",
  "Winner!",
  "Sonic Elderly",
  "Orca (IDM Whale sounds)",
  "AP\/DP",
  "Buns n Sconeses",
  "Cobain's Addiction",
  "Red Hot Silly Puppers",
  "Smeared Al Wankovic",
  "Motley Crew",
  "Guns and Roses",
  "Striper",
  "Deaf Leopard",
  "Rat",
  "Teddy Pentagrams",
  "Mercyful Nate",
  "Cannibal Corps",
  "Jichard R. Dames",
  "BAAB",
  "Bjorn Again (again)",
  "Slut Bus Nord",
  "Satyricunt",
  "A Bath",
  "Bphex Twin",
  "Butechre",
  "Blaid",
  "Bylob",
  "Boards of Banada",
  "Bquarepusher",
  "Blark",
  "Beephax Acid Brew",
  "*Edit*",
  "100 pages strong!!????",
  "Sticks of Banana",
  "Behringer Escape Plan",
  "Pubic Enema",
  "omg",
  "Vladimir Poutine",
  "Tronald Dump",
  "Vulvasaur ",
  "Shmegosaurus",
  "Biceratops ",
  "Polyamosaurus",
  "Velocirapist",
  "Myclit Ishugeasaurus ",
  "Longnip Plesiosaur",
  "Tainticle Rex",
  "Hilarious Clinton",
  "Obamarama",
  "Boy Ratty",
  "DJ Maddow",
  "Bush Clinton",
  "Jimi Obama",
  "Mahatma Cobain",
  "Ghost of Billy Mays",
  "Carl Cocks",
  "Gnarflesh ",
  "Gaping Exitwound",
  "Divine Impalement",
  "Burrito Bidet",
  "Cattrall Decapitation",
  "Necrogargle",
  "Twitchnipple",
  "Giblet Guice",
  "Hudsack Mowhun",
  "Nazi Goreng",
  "flol",
  "Bluetoothhead",
  "Sheen Head",
  "David Merzbowie",
  "Alt-White",
  "Ctrl Alt Del Ray",
  "CNSNNTS",
  "LL!",
  "DJ Khalogen",
  "Mail Order Pride",
  "Stealth Esteem",
  "Mike Will Spayed It",
  "moo zig",
  "Rainer Werner Fuzzbender",
  "Gilliam Wibson",
  "Steal Nephenson",
  "Killip D Fick",
  "Shark Twain",
  "Gnarls Dickens",
  "Spieven Steelberg",
  "Kuley Stanbrick",
  "Tentin Quarantino",
  "A JJdams",
  "Mangela Erkel",
  "Rid Kock",
  "Val Cumler",
  "Tom Skeetrit",
  "Dick Rossolicks",
  "Smelly McGilllips",
  "Anthony Edwanks",
  "lol",
  "Still would ",
  "flol",
  "Doc Manalds",
  "Doop Snogg",
  "NoЯk",
  "sadidas",
  "Seizures in the Debate Room",
  "Xbox Teenage Party",
  "Fleet Boxes",
  "Beet Boxes",
  "Black Tory Whore",
  "The Pit Shosters ",
  "Simp Bizkit",
  "Clinton Trumpwood",
  "Spielen Steveberg",
  "Cunt Eatswood",
  "Dyke van Dick",
  "Mary Tyler Whore",
  "Lucilłe's Balls",
  "Handy Griffith",
  "Pankleants",
  "Lil Dhimmi ",
  "Chresus Jistus",
  "Bengahzine",
  "Ben'sgayscene",
  "James Brake",
  "Slowdrive",
  "Car Seat Bed Rest",
  "Drane",
  "R.E.M and STEMpy",
  "R.E.M and Stipey",
  "Toshuajx",
  "Noubledame",
  "Dan(K)iru",
  "nauxie",
  "achtrius",
  "spello hiral",
  "ugasi",
  "Desidential Prebate",
  "Banny Drown",
  "flol, lol, kek,",
  "Briff Jedges",
  "Sten Biller",
  "Wigourney Seaver",
  "Jean-Daude Van Clamme",
  "Muddie Erphy",
  "flol",
  "Doby Mick",
  "Benedick Cumbatch",
  "Bend-a-dick Cummybath",
  "Bonedirk Cuntylatch",
  "Orgasmus Tietchens",
  "Hairy Blotter",
  "lel",
  "Ballpearer",
  "Al's zest",
  "Les Discrepes",
  "Malcolm XYZ",
  "Julian Assmassage",
  "Colon Power",
  "Sterv Jerbz",
  "J.C. Djenton (In The Fresh)",
  "Adam Djentssen",
  "Djenesis",
  "ffs",
  "Backstreet Goys",
  "Pet Shop Goys",
  "Goy and Bear",
  "voided by goyces",
  "Goys Don't Cry",
  "Island of Misfit Goys",
  "Goy Sauce",
  "The Hardy Goyz",
  "About a Goy",
  "Locker Room Talk",
  "Meshuggahdaddi",
  "Loaves in the Scone Room",
  "Docker Room Talk",
  "Revolting Cucks",
  "The Porridgy",
  "Russell Brand Pitt Haswell",
  "Chai-kovsky",
  "PG-13 Tips",
  "DJ Roo-ibos",
  "Tet ley Travis",
  "Baroque Obama",
  "C++ Music Factory",
  "FunFactory.java",
  "Neil Old",
  "Belinda Carlizzle",
  "Deal Dung",
  "Jizz Morrison",
  "Jizzy Page",
  "Jizz Croce",
  "DJ Jizzy Jeff",
  "Motherfucking Theresa",
  "John Lennon Jr",
  "Jimi Kendricks",
  "Ronald Raygun",
  "Jim Morrisey",
  "Kurt No-brain",
  "Dank Williams",
  "Johann Sebastian Cuck",
  "Cuckleberry Finn",
  "Great, Expect Asians",
  "Knobby Dick",
  "Benjamin Stuntin'",
  "Raul Pudd",
  "Death Rogen",
  "Kief Ledger",
  "HazMat Damon",
  "Glos Damon",
  "Pee Scratch Larry",
  "ZZ Topkek",
  "lol",
  "lol",
  "edit - Bosse-de-Gash",
  "Hue Balance ",
  "Filter Bubble Tea",
  "Grischa Lichtenburgerenchips",
  "Ugh Jackman",
  "Rowboat Redfjord ",
  "Raúl Spewman",
  "Stumphrey Blowghart",
  "Snob Marley",
  "peter townshend",
  "phillip collins",
  "james hendrix",
  "curtis cobain",
  "lewis reed",
  "doctor dre",
  "brian warner",
  "cordozar calvin broadus jr",
  "lol",
  "Herbie Handcock",
  "3 Blind Sheikhs",
  "Bathe No More",
  "Cosby, Stills & Nash",
  "Phallic Baldwin",
  "Silly Baldwin",
  "Chasey Chev ",
  "Heavily D'Angelo",
  "Dan 'roid ",
  "Murkey Teatballs",
  "Unstable, Tofurkey ",
  "Mersched Peterderz",
  "Asshole Casserole",
  "Johns Sloptopkins",
  "David Dookie",
  "Richard Dispenser",
  "nice one ",
  "R2D2unlimited",
  "Dank & 'phile ",
  "Danktop",
  "Fishdank",
  "Dankin' Donuts",
  "The Iron Meatcurtain",
  "Friendotoxin",
  "The Invisible Ham",
  "Sweatshop Afterparty",
  "Great Beeramids",
  "Nuns of Anarchy",
  "Puns'n'Jonesies",
  "Cairosmith",
  "Piss",
  "Secret Unique Alabama 2 Unlimited",
  "Johansson Poserhanson",
  "Irwin Flugelberg",
  "Chester Nipplethorpe",
  "Thaddeus \"Rad Tad\" Radovich",
  "lol",
  "Daft Pun",
  "Fleetwood MacBook",
  "The Breakbeatles",
  "Haha yes!!",
  "Annie Linux",
  "Branny Down",
  "USB40",
  "A$AP AppleTV",
  "Bannocity Drownition",
  "Lucy Flawless",
  "^ lel",
  "The Dark Bright",
  "yes,",
  "also",
  "GIFuermo del Totally Yo",
  "Anton Sugar",
  "Minor Lazer ",
  "The Mohammed Reptile",
  "Jimmy Snortin'",
  "Shmeg Shiraldo",
  "Anthony Jizzyneck",
  "Gooey C.CK",
  "Cuck E. Cheeze ",
  "DJ Gropethink",
  " Black Scabbath",
  "lol",
  "also Melattica is perfect af",
  "The Po' Lease",
  "J'own Buy-ez",
  "Mortgage Freeman",
  "The Jim Parsons Project",
  "omg",
  "Snoop OGG",
  "Macklemorrissey",
  "Demeche Pod",
  "haha yes",
  "Jens Lehmann Brothers "
]

 

 

pretty sure it's missed some names, and it inlcudes responses such as "lol" but it strips out quotes etc and basically looks for lines which have a maximum of 5 words and treats them as bad artist names.

Link to comment
Share on other sites

^ yeah exactly, something iffy is going on with the watmm DOM.... it's more complicated than it should be, aka not all posts have the same formatting. some really simple one-liners are weirdly stacked into each other andmy scraper failed to read them. however, should be fixed now, reworked list incoming.....

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.