diff --git a/spring-security-oauth/pom.xml b/spring-security-oauth/pom.xml index f38f016e10..d6757f0956 100644 --- a/spring-security-oauth/pom.xml +++ b/spring-security-oauth/pom.xml @@ -156,7 +156,14 @@ runtime - + + + + org.apache.mahout + mahout-core + 0.9 + + diff --git a/spring-security-oauth/src/main/java/org/baeldung/config/WebConfig.java b/spring-security-oauth/src/main/java/org/baeldung/config/WebConfig.java index 79508f8ca1..13c4877528 100644 --- a/spring-security-oauth/src/main/java/org/baeldung/config/WebConfig.java +++ b/spring-security-oauth/src/main/java/org/baeldung/config/WebConfig.java @@ -1,14 +1,24 @@ package org.baeldung.config; +import java.io.IOException; +import java.util.ArrayList; import java.util.Arrays; +import java.util.List; +import org.baeldung.reddit.classifier.RedditClassifier; +import org.baeldung.reddit.util.UserAgentInterceptor; import org.baeldung.web.schedule.ScheduledTasks; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; import org.springframework.context.support.PropertySourcesPlaceholderConfigurer; +import org.springframework.core.env.Environment; +import org.springframework.core.io.ClassPathResource; +import org.springframework.core.io.Resource; +import org.springframework.http.client.ClientHttpRequestInterceptor; import org.springframework.scheduling.annotation.EnableAsync; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.security.oauth2.client.OAuth2ClientContext; @@ -36,6 +46,9 @@ import org.springframework.web.servlet.view.InternalResourceViewResolver; @ComponentScan({ "org.baeldung.web" }) public class WebConfig extends WebMvcConfigurerAdapter { + @Autowired + private Environment env; + @Bean public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() { return new PropertySourcesPlaceholderConfigurer(); @@ -63,10 +76,22 @@ public class WebConfig extends WebMvcConfigurerAdapter { @Bean public ScheduledTasks scheduledTasks(OAuth2ProtectedResourceDetails reddit) { final ScheduledTasks s = new ScheduledTasks(); - s.setRedditRestTemplate(new OAuth2RestTemplate(reddit)); + final List list = new ArrayList(); + list.add(new UserAgentInterceptor()); + final OAuth2RestTemplate restTemplate = new OAuth2RestTemplate(reddit); + restTemplate.setInterceptors(list); + s.setRedditRestTemplate(restTemplate); return s; } + @Bean + public RedditClassifier redditClassifier() throws IOException { + final Resource file = new ClassPathResource("train.csv"); + final RedditClassifier redditClassifier = new RedditClassifier(); + redditClassifier.trainClassifier(file.getFile().getAbsolutePath()); + return redditClassifier; + } + @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/resources/**").addResourceLocations("/resources/"); @@ -108,6 +133,9 @@ public class WebConfig extends WebMvcConfigurerAdapter { @Bean public OAuth2RestTemplate redditRestTemplate(OAuth2ClientContext clientContext) { final OAuth2RestTemplate template = new OAuth2RestTemplate(reddit(), clientContext); + final List list = new ArrayList(); + list.add(new UserAgentInterceptor()); + template.setInterceptors(list); final AccessTokenProvider accessTokenProvider = new AccessTokenProviderChain(Arrays. asList(new MyAuthorizationCodeAccessTokenProvider(), new ImplicitAccessTokenProvider(), new ResourceOwnerPasswordAccessTokenProvider(), new ClientCredentialsAccessTokenProvider())); template.setAccessTokenProvider(accessTokenProvider); diff --git a/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditClassifier.java b/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditClassifier.java new file mode 100644 index 0000000000..cf4e736ae4 --- /dev/null +++ b/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditClassifier.java @@ -0,0 +1,107 @@ +package org.baeldung.reddit.classifier; + +import java.io.BufferedReader; +import java.io.FileReader; +import java.io.IOException; + +import org.apache.mahout.classifier.sgd.L2; +import org.apache.mahout.classifier.sgd.OnlineLogisticRegression; +import org.apache.mahout.math.RandomAccessSparseVector; +import org.apache.mahout.math.Vector; +import org.apache.mahout.vectorizer.encoders.AdaptiveWordValueEncoder; +import org.apache.mahout.vectorizer.encoders.FeatureVectorEncoder; +import org.apache.mahout.vectorizer.encoders.StaticWordValueEncoder; + +import com.google.common.base.Splitter; + +public class RedditClassifier { + + public static int GOOD = 0; + public static int BAD = 1; + private final OnlineLogisticRegression classifier; + private final FeatureVectorEncoder titleEncoder; + private final FeatureVectorEncoder domainEncoder; + + private final int[] trainCount = { 0, 0 }; + + private final int[] evalCount = { 0, 0 }; + + public RedditClassifier() { + classifier = new OnlineLogisticRegression(2, 4, new L2(1)); + titleEncoder = new AdaptiveWordValueEncoder("title"); + titleEncoder.setProbes(1); + domainEncoder = new StaticWordValueEncoder("domain"); + domainEncoder.setProbes(1); + } + + public void trainClassifier(String fileName) throws IOException { + final BufferedReader reader = new BufferedReader(new FileReader(fileName)); + int category; + Vector features; + String line = reader.readLine(); + if (line == null) { + new RedditDataCollector().collectData(); + } + + while ((line != null) && (line != "")) { + category = (line.startsWith("good")) ? GOOD : BAD; + trainCount[category]++; + features = convertLineToVector(line); + classifier.train(category, features); + line = reader.readLine(); + } + reader.close(); + System.out.println("Training count ========= " + trainCount[0] + "___" + trainCount[1]); + } + + public int classify(Vector features) { + return classifier.classifyFull(features).maxValueIndex(); + } + + public Vector convertPost(String title, String domain, int hour) { + final Vector features = new RandomAccessSparseVector(4); + final int noOfWords = Splitter.onPattern("\\W").omitEmptyStrings().splitToList(title).size(); + titleEncoder.addToVector(title, features); + domainEncoder.addToVector(domain, features); + features.set(2, hour); + features.set(3, noOfWords); + return features; + } + + public double evaluateClassifier() throws IOException { + final BufferedReader reader = new BufferedReader(new FileReader(RedditDataCollector.TEST_FILE)); + int category, result; + int correct = 0; + int wrong = 0; + Vector features; + String line = reader.readLine(); + while ((line != null) && (line != "")) { + category = (line.startsWith("good")) ? GOOD : BAD; + evalCount[category]++; + features = convertLineToVector(line); + result = classify(features); + if (category == result) { + correct++; + } else { + wrong++; + } + line = reader.readLine(); + } + reader.close(); + System.out.println(correct + " ----- " + wrong); + System.out.println("Eval count ========= " + evalCount[0] + "___" + evalCount[1]); + return correct / (wrong + correct + 0.0); + } + + // ==== private + private Vector convertLineToVector(String line) { + final Vector features = new RandomAccessSparseVector(4); + final String[] items = line.split(";"); + titleEncoder.addToVector(items[3], features); + domainEncoder.addToVector(items[4], features); + features.set(2, Integer.parseInt(items[1])); // hour of day + features.set(3, Integer.parseInt(items[2])); // number of words in the title + return features; + } + +} diff --git a/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditDataCollector.java b/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditDataCollector.java new file mode 100644 index 0000000000..43fe14256a --- /dev/null +++ b/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditDataCollector.java @@ -0,0 +1,109 @@ +package org.baeldung.reddit.classifier; + +import java.io.FileWriter; +import java.io.IOException; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +import org.baeldung.reddit.util.UserAgentInterceptor; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.http.client.ClientHttpRequestInterceptor; +import org.springframework.web.client.RestTemplate; + +import com.fasterxml.jackson.databind.JsonNode; +import com.google.common.base.Joiner; +import com.google.common.base.Splitter; + +public class RedditDataCollector { + public static final String TRAINING_FILE = "src/main/resources/train.csv"; + public static final String TEST_FILE = "src/main/resources/test.csv"; + private final Logger logger = LoggerFactory.getLogger(getClass()); + + private String postAfter; + private final RestTemplate restTemplate; + private final String subreddit; + private final int minScore; + + public RedditDataCollector() { + restTemplate = new RestTemplate(); + final List list = new ArrayList(); + list.add(new UserAgentInterceptor()); + restTemplate.setInterceptors(list); + subreddit = "all"; + minScore = 4; + } + + public RedditDataCollector(String subreddit, int minScore) { + restTemplate = new RestTemplate(); + final List list = new ArrayList(); + list.add(new UserAgentInterceptor()); + restTemplate.setInterceptors(list); + this.subreddit = subreddit; + this.minScore = minScore; + } + + public void collectData() { + final int limit = 100; + final int noOfRounds = 80; + try { + final FileWriter writer = new FileWriter(TRAINING_FILE); + for (int i = 0; i < noOfRounds; i++) { + getPosts(limit, writer); + } + writer.close(); + + final FileWriter testWriter = new FileWriter(TEST_FILE); + getPosts(limit, testWriter); + testWriter.close(); + } catch (final Exception e) { + logger.error("write to file error", e); + } + } + + // ==== private + + private void getPosts(int limit, FileWriter writer) { + String fullUrl = "http://www.reddit.com/r/" + subreddit + "/new.json?limit=" + limit; + if (postAfter != null) { + fullUrl += "&count=" + limit + "&after=" + postAfter; + } + + try { + final JsonNode node = restTemplate.getForObject(fullUrl, JsonNode.class); + parseNode(node, writer); + Thread.sleep(3000); + } catch (final Exception e) { + logger.error("server error", e); + } + + } + + private void parseNode(JsonNode node, FileWriter writer) throws IOException { + postAfter = node.get("data").get("after").asText(); + System.out.println(postAfter); + String line; + String category; + List words; + final SimpleDateFormat df = new SimpleDateFormat("HH"); + for (final JsonNode child : node.get("data").get("children")) { + category = (child.get("data").get("score").asInt() < minScore) ? "bad" : "good"; + words = Splitter.onPattern("\\W").omitEmptyStrings().splitToList(child.get("data").get("title").asText()); + final Date date = new Date(child.get("data").get("created_utc").asLong() * 1000); + + line = category + ";"; + line += df.format(date) + ";"; + line += words.size() + ";" + Joiner.on(' ').join(words) + ";"; + line += child.get("data").get("domain").asText() + "\n"; + + writer.write(line); + } + } + + public static void main(String[] args) { + final RedditDataCollector collector = new RedditDataCollector(); + collector.collectData(); + } +} diff --git a/spring-security-oauth/src/main/java/org/baeldung/reddit/util/UserAgentInterceptor.java b/spring-security-oauth/src/main/java/org/baeldung/reddit/util/UserAgentInterceptor.java new file mode 100644 index 0000000000..56f7170aa9 --- /dev/null +++ b/spring-security-oauth/src/main/java/org/baeldung/reddit/util/UserAgentInterceptor.java @@ -0,0 +1,20 @@ +package org.baeldung.reddit.util; + +import java.io.IOException; + +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpRequest; +import org.springframework.http.client.ClientHttpRequestExecution; +import org.springframework.http.client.ClientHttpRequestInterceptor; +import org.springframework.http.client.ClientHttpResponse; + +public class UserAgentInterceptor implements ClientHttpRequestInterceptor { + + @Override + public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttpRequestExecution execution) throws IOException { + + final HttpHeaders headers = request.getHeaders(); + headers.add("User-Agent", "Schedule with Reddit"); + return execution.execute(request, body); + } +} \ No newline at end of file diff --git a/spring-security-oauth/src/main/java/org/baeldung/web/RedditController.java b/spring-security-oauth/src/main/java/org/baeldung/web/RedditController.java index 549fa2a5b8..d05bdf1eab 100644 --- a/spring-security-oauth/src/main/java/org/baeldung/web/RedditController.java +++ b/spring-security-oauth/src/main/java/org/baeldung/web/RedditController.java @@ -12,6 +12,7 @@ import org.baeldung.persistence.dao.PostRepository; import org.baeldung.persistence.dao.UserRepository; import org.baeldung.persistence.model.Post; import org.baeldung.persistence.model.User; +import org.baeldung.reddit.classifier.RedditClassifier; import org.baeldung.reddit.util.RedditApiConstants; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -30,6 +31,7 @@ import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseStatus; import com.fasterxml.jackson.databind.JsonNode; @@ -40,6 +42,7 @@ public class RedditController { private final Logger logger = LoggerFactory.getLogger(getClass()); private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm"); + private final SimpleDateFormat dfHour = new SimpleDateFormat("HH"); @Autowired private OAuth2RestTemplate redditRestTemplate; @@ -50,6 +53,9 @@ public class RedditController { @Autowired private PostRepository postReopsitory; + @Autowired + private RedditClassifier redditClassifier; + @RequestMapping("/login") public final String redditLogin() { final JsonNode node = redditRestTemplate.getForObject("https://oauth.reddit.com/api/v1/me", JsonNode.class); @@ -122,6 +128,14 @@ public class RedditController { return "postListView"; } + @RequestMapping(value = "/predicatePostResponse", method = RequestMethod.POST) + @ResponseBody + public final String predicatePostResponse(@RequestParam(value = "title") final String title, @RequestParam(value = "domain") final String domain) { + final int hour = Integer.parseInt(dfHour.format(new Date())); + final int result = redditClassifier.classify(redditClassifier.convertPost(title, domain, hour)); + return (result == RedditClassifier.GOOD) ? "{Good Response}" : "{Bad response}"; + } + // === post actions @RequestMapping(value = "/deletePost/{id}", method = RequestMethod.DELETE) diff --git a/spring-security-oauth/src/main/resources/test.csv b/spring-security-oauth/src/main/resources/test.csv new file mode 100644 index 0000000000..e0aee140e5 --- /dev/null +++ b/spring-security-oauth/src/main/resources/test.csv @@ -0,0 +1,100 @@ +bad;20;5;The President s Kill List;newyorker.com +bad;20;8;Home stretch for the Ancient History Magazine Kickstarter;kickstarter.com +good;20;20;A constant Burn to disk link under right click menu but there s no optical drive on retina Macbook Pro;i.imgur.com +bad;20;8;Grey s be creeping on the button like;gph.is +good;20;16;Droid Life First look at Moto 360 s Gorgeous and Impossible to Find Monolink Metal Band;droid-life.com +bad;20;23;US Bleeding Hollow lt Unspoken gt has a couple spots open for our core team 3 7 M HM 10 10 H BRF;self.wowguilds +bad;20;30;I drove up to Orlando for nothing I m by the science center What s some stuff I can do for cheap free so I don t waste my day;self.orlando +bad;20;20;As we make computers more intelligent they ll eventually gain consciousness Then evolution would ve led to silicon based life;self.Showerthoughts +bad;20;5;i am jealous and miserable;self.SuicideWatch +bad;20;29;TIL that in addition to the recent gyrocopter landing the last person to land a helicopter on the White House or U S Capital lawn was also a Floridian;reddit.com +good;20;7;When we finally arrived at Comic Con;i.imgur.com +good;20;22;Just got a call that my OBGYN is out on an emergency for the next week I m being induced this Saturday;self.BabyBumps +good;20;10;Scientists discover intense magnetic field close to supermassive black hole;sciencedaily.com +bad;20;2;W ow;fap.to +bad;20;8;Wedding Photographers did you love your wedding photographer;self.WeddingPhotography +bad;20;38;This video reminds me of the hype in this sub for a Fallout 4 in New York Even though the style is a bit WAY off Most of the characters are a bit similar to the Fallout series;youtube.com +good;20;6;Max the animatronic abandoned at Disney;i.imgur.com +bad;20;2;Francia Expansions;self.HistoricalWorldPowers +bad;20;10;When you learn autotools and discover all am in files;youtube.com +good;20;1;Instincts;i.imgur.com +bad;20;6;No more bing rewards for searches;self.beermoney +bad;20;7;Launcher stops working when signing in HELP;self.GTAV +bad;20;15;I m new to the gym amp changing my diet but I m loving it;self.loseit +bad;20;9;Forbes The Chevy Bolt Tesla s Best News Yet;forbes.com +bad;20;12;Forth Rail Bridge obscured by fog OS 720x720 x post r ScottishPhotos;i.imgur.com +bad;20;2;Background score;self.Daredevil +bad;20;4;To MIT Media Lab;bitcoin-gr.org +good;20;3;Havana Street Art;self.cigars +bad;20;4;Gear PRS Custom 24;self.Guitar +bad;20;34;US Calif Co own a home with SO not married for 2 years Now we are breaking up and she only wants to give me my original down pymt instead of buying me out;self.legaladvice +good;20;6;There s been a fur der;imgur.com +good;20;17;ICA Use A Test Website UI Greg Miaskiewicz 0 40 1 5 min gt 95 gt 500;self.HITsWorthTurkingFor +bad;20;8;balloon popping sound in 5 4 3 2;i.imgur.com +good;20;12;My attempt at recreating the Imperial Insignia in the new teaser trailer;imgur.com +bad;20;10;This is the most important thing on the internet today;youtu.be +bad;20;6;A R Kane and Dirty Beaches;self.ambient +bad;20;10;What is a good hot air soldering for a hobbyist;self.AskElectronics +bad;20;8;Falconshield This Is War 4 Freljord COLLAB draggles;np.reddit.com +bad;20;3;Sacramento home appraiser;sacramentovalleyappraisal.com +bad;20;10;FIRST WALK OFF OF THE YEAR UPVOTE PARTY r CHICubs;reddit.com +bad;20;23;Ukrainian notables politicians journalists react to murder of Kalashnikov and Buzhina See their fb posts in link Most popular opinion Putin did it;pravda.com.ua +bad;20;4;Maclock watch for sale;self.MacMiller +bad;20;2;me irl;imgur.com +bad;20;7;Looking to recruit EU Aliance Outland BCH;self.wowraf +bad;20;10;Trying to understand potential of the restaurant food truck industry;self.Entrepreneur +bad;20;3;Democracy Now Bitcoin;bitcoin-gr.org +good;20;4;Got pulled over today;self.motorcycles +bad;20;7;ESPN Reporter Britt McHenry is a shitlord;liveleak.com +bad;20;15;I m looking for places to buy local craft beers by the bottle Any suggestions;self.dayton +bad;20;5;No username in login screen;self.techsupport +good;20;7;Ads for the upcoming election in Alberta;youtube.com +bad;20;11;Michael Savage Hillary Clinton s Looks Alone Could Sink The Campaign;rightwingwatch.org +good;20;4;Another from People Magazine;imgur.com +bad;20;10;ps4 LF2 CE CROTA CP need sword bearer Psn blackskyes;self.Fireteams +bad;20;4;Dealing with Cho mid;self.summonerschool +bad;20;3;C 3P0 Question;self.XWingTMG +bad;20;10;DUNGEON HUNTER 5 HACK AND CHEATS TOOL RESOURCES GENERATOR UTILITY;self.maxgiron +bad;20;11;I m searching for mature anime genre is not too relevant;self.Animesuggest +bad;20;3;Cassie s hair;self.MortalKombat +bad;20;6;Ha Ha Ha Ha 0 02;youtube.com +bad;20;8;Can someone make a simple I hope profile;self.ChromaProfiles +bad;20;5;I can t reinstall SMITE;self.Smite +bad;20;19;TIL That in 1974 a US Army Private stole a helicopter and landed it at the White House Twice;en.wikipedia.org +good;20;2;Rottweiler pup;imgur.com +good;20;4;New stealth Bonnaroo additions;self.bonnaroo +bad;20;5;Any Houston Rockets fans here;self.Eugene +good;20;10;Pictures of Tube Televisions the moment they re Turned Off;imgur.com +bad;20;10;Camping this summer with a 9 5 month old Tips;self.beyondthebump +good;20;15;Toss this into your old 1 4 7 based packs to improve falling block rendering;minecraftforum.net +good;20;13;StreetPass Thank You Bundle takes EXTRA 1 off the new Mii Plaza games;technologytell.com +good;20;11;First Step of Becoming a Real Sissy M m F m;self.gonewildstories +good;20;10;Big BART delays after apparent suicide at Civic Center station;sfgate.com +bad;20;5;tornado sirens in northwest suburbs;self.Minneapolis +good;20;2;Me irl;i.imgur.com +bad;20;13;Kimi Raikkonen hints at Ferrari stay in 2016 if the team wants him;espn.co.uk +bad;20;16;If you had to Explain a game of LoL in one Analogy what would it be;self.leagueoflegends +good;20;6;What is your guilty pleasure song;self.AskReddit +bad;20;14;Suggestion Don t unlock the next unit until you can afford to buy it;self.swarmsim +good;20;1;Metal;imgur.com +bad;20;6;TheFatRat Time Lapse House Electro 2015;soundcloud.com +bad;20;22;Hey Reddit is it true that the silver fillings dentists put in our teeth contains mercury and could be harmful over time;self.AskReddit +good;20;5;request Will Photoshop For Pizza;self.RandomActsOfPizza +bad;20;13;My wife likes to put small things on the big thing shelf fixed;i.imgur.com +bad;20;14;Mi novio es de M xico y quiero practicar con l pero estoy nerviosa;self.SpanishImmersion +bad;20;5;Anybody have experience with PageFair;self.adops +good;20;23;Osoba na snimci kriva je za nekoliko kra a bicikala po Zagrebu pa tako i maznuo jedan mom frendu Ako ga prepoznajete javite;youtube.com +bad;20;9;Grogheads com Brother Against Brother The AAR Part 1;grogheads.com +good;20;29;St Bernadette Soubirous Feast April 16th outside of France One of the many Incorrupt Saints She looked upon the face of the Blessed Virgin Mary 18 times at Lourdes;en.lourdes-france.org +bad;20;18;My mom texted asking what food I want in the fridge including my preferred flavor of Greek yogurt;i.imgur.com +good;20;18;Spoilers All If Dragon Age II had a subtitle s like Origins and Inquisition what would it be;self.dragonage +bad;20;5;Best hidden places on campus;self.IndianaUniversity +bad;20;8;Rematch Snack Santa Snackta is wonderful and generous;redditgifts.com +bad;20;13;Half Of Yemen s Population Is Going Hungry As Violence Worsens UN Says;huffingtonpost.com +good;20;6;RBC Heritage Round 1 Live Thread;self.dfsports +bad;20;7;Feeling full all the time swollen liver;self.stopdrinking +bad;20;9;Recent events for MLP Zero Hard treasure trail completed;self.TrueLionhearts +bad;20;5;PS4 LF2 for NF Weekly;self.Fireteams +bad;20;5;Stardust with Ocular by yitaku;soundcloud.com +bad;20;4;PC M9 Bayonet Slaughter;self.GlobalOffensiveTrade +good;20;2;Spare food;self.tampa diff --git a/spring-security-oauth/src/main/resources/train.csv b/spring-security-oauth/src/main/resources/train.csv new file mode 100644 index 0000000000..a068a84fba --- /dev/null +++ b/spring-security-oauth/src/main/resources/train.csv @@ -0,0 +1,8000 @@ +bad;21;8;20 M4F TRADING female amateur pics w Females;self.dirtykikpals +bad;21;10;SPOILER The pain that i will endure within the hour;imgur.com +bad;21;11;T ll ist k on paskaduuni nykyp iv n Suomessa parodia;youtube.com +bad;21;25;Is it me or does the RV not seem to scale correctly with the players This one is the outside where you hunt with Trevor;youtube.com +bad;21;13;When the rest of us are waiting patiently for 11s purples be like;youtu.be +bad;21;8;Space Invaders Super Deluxe Custom Hyperspin Arcade Cabinet;i.imgur.com +bad;21;17;New Trailer Why does Luke presuming the narrator is Luke say that is father Has the force;self.StarWars +bad;21;5;NHL Playoffs Watching at Harpos;self.boulder +bad;21;9;Tim Burton did it first x post r funny;reddit.com +bad;21;8;iOS Bug no more offline continuation after reset;self.TapTapInfinity +bad;21;5;M4F The Meaning of Conquest;self.dirtypenpals +bad;21;17;Sims 4 Hermione s amp Snape s Potions for All Occasions WIP but already open for business;imgur.com +bad;21;11;H Keys W Any knife BFK Slaughter FT Kara CH FT;self.GlobalOffensiveTrade +bad;21;10;Will black skirt tetras get along with a dwarf gourami;self.Aquariums +bad;21;10;NA Need people to play with Silver III or above;self.RecruitCS +bad;21;10;Would anyone like to ELI5 The F3 of a Speaker;self.CarAV +bad;21;10;What is the worst carrier and why is it Verizon;self.androidcirclejerk +bad;21;8;Free Range Parents Defend Themselves Against Government Intrusion;vocativ.com +bad;21;3;Oshi Iced Tea;soundcloud.com +bad;21;14;How good is the f2p part of this game Also other questions about OSRS;self.2007scape +bad;21;1;Liberland;self.croatia +bad;21;3;Engine Temperature Question;self.GolfGTI +bad;21;3;America FUCK yeah;imgur.com +bad;21;9;What order to watch the Star Wars films in;self.StarWars +bad;21;5;Johnny s for away games;self.SportingKC +bad;21;12;Where do you put your thumbs when you do the gendo pose;self.evangelion +bad;21;19;Just found these old cast interviews from Season 1 and i ve got a major case of the feels;youtube.com +bad;21;18;What s the one thing that you wished you would have practiced more when you first started playing;self.Guitar +bad;21;17;Cleveland Browns not working out Marcus Mariota privately or hosting him but they already know him well;cleveland.com +bad;21;12;Shao Kahn s Tomb 1 6 Kano Brutality Just the Tip 6450;self.kryptguide +bad;21;16;Pastor rants against another anti gay pastor because the second pastor doesn t support killing gays;youtube.com +bad;21;7;Kill the weeds or Plant the seeds;self.yard +bad;21;7;Reduce calorie expenditure from walking by 7;awwnews.com +bad;21;10;Toronto cops ratify new contract by 92 5 per cent;thestar.com +bad;21;8;Don t you fucking lie to me Youtube;i.imgur.com +bad;21;10;We don t have to include T1m Dunc4n anymore guys;self.nbacirclejerk +bad;21;3;Hipsters With Nipples;self.Bandnames +bad;21;3;new to this;i.imgur.com +bad;21;19;Ate a perc 5 hours ago 5 325 gonna get drunk in an hour Am I gonna be okay;self.opiates +bad;21;13;Good foundation to get into IT field confused about where to go next;self.Advice +bad;21;6;31 M4F creampie impregnation rp prompts;self.dirtypenpals +bad;21;7;PS4 Criminal Mastermind starting today lets rock;self.HeistTeams +bad;21;7;H Awp asiimov FT W 24 Keys;self.GlobalOffensiveTrade +bad;21;29;REQ just got a new job won t get paid for 3 weeks Looking to borrow 450 Willing to pay back 525 by May 8th PayPal would be best;self.borrow +bad;21;9;What is the best gift you ve ever gotten;self.AskReddit +bad;21;20;US a decision making study participate in a 15 min study Matt S 75 plus bonus 10 min gt 99;self.HITsWorthTurkingFor +bad;21;5;3x20 Spoilery New Zealand promo;youtube.com +bad;21;5;MH4U Brute Tigrex solo bow;self.MonsterHunter +bad;21;2;Behati Prinsloo;i.imgur.com +bad;21;11;THE MITTANI SENDS HIS R E G A R D S;self.Eve +bad;21;18;What s up with all the Tim Burton Charmander that guys shitty lizard tattoo posts going on lately;self.AskReddit +bad;21;11;The Fox God will be pleased my wallet is not bm;i.imgur.com +bad;21;26;US RWBY In the supernatural world of Remnant four strong girls trained as Huntresses are mankind s sole hope of defeating shadowy creatures known as Grimm;netflix.com +bad;21;11;Another look at MySQL at Twitter and incubating Mysos Twitter Blogs;blog.twitter.com +bad;21;9;Nice clickbait Fios news Naya is really showing huh;imgur.com +bad;21;7;Planned Parenthood caught aiding child sex traffickers;youtube.com +bad;21;11;USA CA H AMD FX 8350 Black Edition W Verified PayPal;self.hardwareswap +bad;21;14;Prices aside what vendor has the most pure MDMA that is non domestic US;self.DarkNetMarkets +bad;21;3;With my penis;imgur.com +bad;21;6;Looking for friends Look over here;self.spiritstones +bad;21;7;Chloe Bennet being gorgeous cute as hell;instagram.com +bad;21;11;Who is winning it all and who is your Finals MVP;self.nba +bad;21;3;playing on phone;li.co.ve +bad;21;3;Descriptive Frankie Tweet;twitter.com +bad;21;13;Daily Deals Free Android Apps Mortal Kombat X 50 Xbox Live for 35;ign.com +bad;21;6;Now this view is alot better;i.imgur.com +bad;21;6;Troll Level Enhanced Player Experience UI;i.imgur.com +bad;21;18;Could somebody watch the replay of my last match and tell me how I lost mid so badly;self.learndota2 +bad;21;7;TTIP still a hard sell in Paris;euractiv.com +bad;21;11;Salt Suggestions for Developers of the Week 1 Thursday April 16th;self.ProjectSalt +bad;21;20;I am Chris Jericho Star of Comedy Central s Nothing to Report WWE Superstar author singer and much more AMA;self.IAmA +bad;21;9;Via Scott Michaels Executive Vice President and Partner Atimi;appstoreoptimization.tumblr.com +bad;21;10;Shopping help D Origen V2 Genesis amp Aeolus RDA Clones;self.ecr_eu +bad;21;9;Northeast High School Ignored to treat my broken nose;self.philadelphia +bad;21;16;What do you think of the statement If you don t vote you can t complain;self.POLITIC +bad;21;11;Playing around thought I would share some hope for you guys;i.imgur.com +bad;21;9;funny booty bopss in my dick hole gargle gargle;youtube.com +bad;21;8;Bug Getting stuck on the save disclaimer screen;self.GrandTheftAutoV +bad;21;2;PBE Update;self.leagueoflegends +bad;21;6;Blatter likened to Jesus amp Mandela;m.bbc.co.uk +bad;21;16;Dominick Cruz s full return fight Just a quick reminder of how beastly this man is;youtu.be +bad;21;32;The DEA s Castoff After having worked for decades as a DEA informant Carlos Toro says the U S government isn t living up to its end of their high stakes bargain;fcir.org +bad;21;9;8 Essential iOS Apps For This Spring And Summer;techdissected.com +bad;21;16;Conversation Do you guys tell your family you pole dance If so what was the reaction;self.poledancing +bad;21;10;VideoLan honors Terry Pratchet with release of 2 2 1;videolan.org +bad;21;12;Student Managed Investment Fund Gets 4 5 Million Infusion Recognizing Strong Returns;news.blogs.wlu.edu +bad;21;8;First number has a comma But the 2nd;i.imgur.com +bad;21;23;I spend over an hour everyday on my makeup This is the first time I ve posted a pic of me without it;self.gonenatural +bad;21;6;Terra Vapes Coupon 10 off sitewide;vape.deals +bad;21;5;My Uncle in Hawaii 1982;imgur.com +bad;21;8;The Big Picture Net Neutrality Intricacies and implications;youtube.com +bad;21;3;u NOTShutup868 IRL;derpibooru.org +bad;21;4;Regarding Smoker s power;self.OnePiece +bad;21;3;Emigration No Spoilers;self.asoiaf +bad;21;10;Community Fundraiser and Raffle Event for Outdoor Recreation Coming Up;self.Medford +bad;21;7;Crystal Castles Frail new song Electro Trash;soundcloud.com +bad;21;23;A mouse click sound effect is the most useless thing ever since it is a simulation of a sound that is already there;self.Showerthoughts +bad;21;20;WP 2015 04 Reto Foellmi Sandra Hanslin and Andreas Kohler A dynamic North South model of demand induced product cycles;snb.ch +bad;21;25;600 Show up against SB 277 while 100 showed up in support SB 277 is the vaccination bill which would remove personal exemption from vaccination;scpr.org +bad;21;24;Hello Reddit Today is my cakeday but nobody gave me karma So I thought I would share it with you Give me karma now;self.circlejerk +bad;21;11;What s the thing you hate the most about your job;self.AskReddit +bad;21;13;Looking to repeat Grizzly hurling to defend national championship in Missoula this spring;montanakaimin.com +bad;21;6;Daily NBA Discussion April 16 2015;self.testdfsports +bad;21;12;Binaural Scalp Massage No Talking Candlelight Hair Sounds For Sleep amp Relaxation;youtube.com +bad;21;16;Im still pretty new to Reddit what are some things that I should know about it;self.AskReddit +bad;21;1;Nipples;self.TagPro +bad;21;32;Police in Sicily reported that Muslim migrants had thrown 12 Christians overboard during a recent crossing from Libya and an aid group said another 41 were feared drowned in a separate incident;news.yahoo.com +bad;21;3;Slap Chop Dub;youtube.com +bad;21;12;237 559 29 She thought it was a pretty flower r oldpeoplefacebook;reddit.com +bad;21;11;NA New Ranked 5 s Team LF All Roles Gold 17;self.TeamRedditTeams +bad;21;6;Organic Cotton and Recycled Polyester Shirts;blog.fayettechill.com +bad;21;9;8 Essential iOS Apps For This Spring And Summer;techdissected.com +bad;21;11;What are your thoughts on the new Star Wars teaser trailer;self.AskReddit +bad;21;6;Throwback Thursday UHC PvP Montage Colorless;youtube.com +bad;21;6;20 M4F STL Let s boogie;self.RandomActsOfBlowJob +bad;21;6;15 Fearless Crystals All 2 Dupes;imgur.com +bad;21;2;Possessive pronouns;self.CHamoru +bad;21;3;Feels so nice;imgur.com +bad;21;17;ELI5 Why does Google Webmaster Tools report 10x more links than what s returned in Google SERPs;self.SEO +bad;21;8;Dying CIA Agent Admits To Killing Marilyn Monroe;yournewswire.com +bad;21;12;What s the craziest thing you ve ever done to get laid;self.AskReddit +bad;21;9;PS4 Experienced 32 Titan LFG for Crota PSN Adreno_Dreams;self.Fireteams +bad;21;7;Xbone Nightfall x2 Need 1 more person;self.Fireteams +bad;21;5;Having trouble remembering a game;self.AndroidGaming +bad;21;4;Desktop won t boot;self.techsupport +bad;21;9;lt Gallons of water Chillindude829 drank during Apex 2015;self.smashcirclejerk +bad;21;4;ORA ORA ORA ORA;youtube.com +bad;21;14;OnePlus One Nachfolger f r drittes Quartal 2015 geplant kommt eine g nstigere Zweitvariante;stadt-bremerhaven.de +bad;21;4;Downtown Lunch 4 22;self.BostonSocialClub +bad;21;5;Sudden Influx of views Bots;self.podcasts +bad;21;6;What happened at the second location;self.fivenightsatfreddys +bad;21;2;Say what;imgur.com +bad;21;7;The backstory of the original Apple Homepage;kfury.com +bad;21;10;Florida Supreme Court ruling strikes blow to red light cameras;orlandosentinel.com +bad;21;5;Friends race in GTA V;youtube.com +bad;21;18;Two female sisters have begun biting and humping each other since the start of spring 11 months old;self.Rabbits +bad;21;8;ELI5 How do you dispose of nuclear weapons;self.explainlikeimfive +bad;21;6;John Oliver Fargo to get Peabodied;cpluscomedy.com +bad;21;9;NASA announces unprecedented success in spacecraft study of Mercury;nasa.gov +bad;21;9;new stamps what colors should I use with these;imgur.com +bad;21;10;Man convinces her girlfriend he doesn t exist girl cries;i.imgur.com +bad;21;6;H mw m4a1s cyrex w 16k;self.GlobalOffensiveTrade +bad;21;5;Possibly returning had a question;self.ffxi +bad;21;15;Pulling the tape of our plays set to reveal the perfect stripes on our walls;imgur.com +bad;21;9;H 4 3 paypal W 2 chroma case keys;self.GlobalOffensiveTrade +bad;21;15;My colleague asked me if I d taken her whiteboard marker I sent her this;imgur.com +bad;21;10;NA SS S Silver 5 Jungler LF ranked 5 s;self.TeamRedditTeams +bad;21;8;American Woman Wounded in Shooting in Karachi Pakistan;nytimes.com +bad;21;13;If you re only using your torch for drugs you re missing out;imgur.com +bad;21;6;Domestic Shipping Still Coming From China;self.Idg0d +bad;21;5;Objects moving left when bouncing;self.jquery +bad;21;9;I need help getting out of an abusive relationship;self.Assistance +bad;21;21;Seeing as people aren t very fond of the newest AoU Variants what are some that you d like to see;self.funkopop +bad;21;5;His books are so deep;imgur.com +bad;21;2;Dumb question;self.CrazyHand +bad;21;8;Play games in Virtual Reality using your iPhone;self.gadgets +bad;21;25;PS4 LFG CE Normal preferrably Ir Yut CP but bridge or fresh would work too I m 32 Warlock with Gjally can also run sword;self.Fireteams +bad;21;5;FDL vs Clipper vs Python;self.EliteDangerous +bad;21;11;William Shatner sings Rocket Man With intro by Bernie Taupin 1978;youtube.com +bad;21;6;The start to a better me;imgur.com +bad;21;10;Kickstarter Nevergrind 9 Hours to Go Single player Browser RPG;self.IndieGaming +bad;21;5;Harmburger s IGS Rep Page;self.IGSRep +bad;21;9;Mike Tyson after a hard fight workout becomes Thor;self.Showerthoughts +bad;21;15;M4A My wife on tinder looking for a quickie while we re at dinner cheating;self.dirtypenpals +bad;21;7;So I just did this what the;puu.sh +bad;21;7;ESL South East Europe Championship Season 1;self.esportstats +bad;21;17;How long do I need to spend in a Spanish speaking country to learn the language fluently;self.Spanish +bad;21;7;META New Star Wars Trailer MUST SEE;youtu.be +bad;21;6;Econ 321 Final Emma Practice exams;self.uwaterloo +bad;21;12;Can I update to lollipop on my Verizon Note 3 through Kies;self.GalaxyNote3 +bad;21;11;I found a dick in my bag of jelly beans today;i.imgur.com +bad;21;18;ELI5 Why do we have the uncontrollable urge to yawn as soon as we witness another person yawning;self.explainlikeimfive +bad;21;9;D oh If it weren t for bad luck;imgur.com +bad;21;8;Falcon n0ne starts game two with a vengeance;gfycat.com +bad;21;13;Can we get a Reddit room for online matches fun training chilling ps4;self.MortalKombat +bad;21;14;We have yet to see what a rapper looks like as an old man;self.Showerthoughts +bad;21;12;Female Programmer Didn t Get the Job Because of How She Looks;popsugar.com +bad;21;6;Love Lab A comedy with heart;sentaifilmworks.com +bad;21;10;bringbackourgirls The ghost of Boko Haram continues to haunt Nigeria;saddahaq.com +bad;21;5;PSA Deadly dog flu spreading;wreg.com +bad;21;11;The brand new helicopter with 4 jet engines The MiLyushin 276;russianplanes.net +bad;21;26;Showerthought Russell Westbrook is the angriest player in the NBA After missing out on the playoffs imagine how angry he ll be if Harden wins MVP;self.nba +bad;21;8;debt remodeling and happiness what choice to make;self.personalfinance +bad;21;6;MRW I find out its cakeday;imgur.com +bad;21;7;NSV Wow you are looking thin lately;self.xxketo +bad;21;9;UK US relationship want to settle in US help;self.IWantOut +bad;21;4;Best Battery Saving Tweaks;self.jailbreak +bad;21;20;Redditors of reddit do you know anyone that has been personally victimized by Comcast aka the Third Reich Serious NSFW;self.circlejerk +bad;21;8;Hey guys old ps3 gamer how s home;self.PlaystationHome +bad;21;4;PS4 LFG Daily Heroic;self.Fireteams +bad;21;6;Spacewalk 2 3 has been released;fedorahosted.org +bad;21;18;Serious How do you make contact with your crush if you are a complete stranger to him her;self.AskReddit +bad;21;9;Selling ROTMG Account lots of 8 8 UT s;self.rotmgtradingpost +bad;21;14;Help I just discovered my boyfriend s furry porn collection IDK what to do;self.furry +bad;21;11;Computer Freezes Randomly Unsure if Hardward issue or Software Repost Clarification;self.techsupport +bad;21;13;What s the quickest way to feel full without having a proper meal;self.AskReddit +bad;21;11;Shao Kahn s Tomb 0 7 Liu Kang s Fireball Free;self.kryptguide +bad;21;11;Dozens of US government online whistleblower sites not secured by HTTPS;arstechnica.com +bad;21;3;Sword or sheath;youtube.com +bad;21;31;Fans heading to the race on Sunday Stand Up To Cancer signs will be able at Gates 1 3 4 5 6 8 13 15 amp 17 for Steve Byrnes tribute;twitter.com +bad;21;6;2days in Balancing that needs addressed;self.BF_Hardline +bad;21;7;This cup is filled to the top;i.imgur.com +bad;21;5;250 Year Old Dildo Found;au.news.yahoo.com +bad;21;23;Last night Rockstar killed a fan on my GTX 770 700 SEK 70 and an RMA later I have risen from the ashes;i.imgur.com +bad;21;3;Summer Session Classes;self.UCSD +bad;21;5;no sound with new update;self.h1z1 +bad;21;17;Any advice tips or tricks for a student planning to travel Europe with a friend next spring;self.travel +bad;21;7;Puppet dog with very life like animations;imgur.com +bad;21;3;overview for Jay_Pierce3535;reddit.com +bad;21;7;Sam Tomkins announced back to Wigan Thoughts;self.superleague +bad;21;5;This guy is weekend gold;armslist.com +bad;21;8;Can grad students register for undergrad artsci courses;self.UofT +bad;21;11;numberFire s Raptors vs Wizards First Round Preview complete with projections;numberfire.com +bad;21;6;Where to Find Good Office Furniture;self.kzoo +bad;21;6;Forgive me my holy 42 Brothers;self.thebutton +bad;21;17;A while back I posted a top here are all the pens I ve made so far;imgur.com +bad;21;6;Atlantis v2 By Aspire 22 50;vape.deals +bad;21;4;Blonde Open Shirt Selfie;i.imgur.com +bad;21;12;I was told to post here This is my new best friend;imgur.com +bad;21;9;ASUS N550JK Screen issues loose cable connection to motherboard;self.techsupport +bad;21;6;Looking for specific deep house sound;self.EDM +bad;21;5;Now that we have Aerith;imgur.com +bad;21;10;When will I be safe to update to windows 10;self.windows +bad;21;6;Forgot how badass my hunter looked;imgur.com +bad;21;2;100 save;self.GrandTheftAutoV_PC +bad;21;7;PS4 LFG VoG NM HM fresh DonButt_Manager;self.Fireteams +bad;21;3;Iroha Strength Question;self.SexToys +bad;21;2;Deadline dog;imgur.com +bad;21;34;MRW my man and I set up a date for sexy times with another couple Have to shave my everything for the first time in two years Gonna lose my lesbian virginity y all;imgur.com +bad;21;7;Any idea on how to fix this;i.imgur.com +bad;21;5;Variant Stormtrooper armour Trailer Screenshot;imgur.com +bad;21;6;HDMI Quality looks worse than DVI;self.pcmasterrace +bad;21;8;Be a part of the r balisong banner;self.balisong +bad;21;13;Everything You Need To Know About Jesus God The Bible and The Truth;youtube.com +bad;21;11;My friend who works at Shapes Fitness just had this conversation;imgur.com +bad;21;5;The man in the hat;self.DarkTales +bad;21;7;Black ops 1 amp 2 PC question;self.CallOfDuty +bad;21;2;Bbw deepthroats;self.deepthroat +bad;21;22;I haven t played dark souls since last year before the dlc dropped What do I need to know for pvp builds;self.DarkSouls2 +bad;21;17;Fellow subredditor do you agree or disagree with the idea that WWII wouldn t begin without Hitler;self.HistoryWhatIf +bad;21;22;Nicola Sturgeon s parent s bought their council house in 1984 why won t she allow Scots the same right in 2015;dailymail.co.uk +bad;21;10;Any way to avoid stutter steps before taking a shot;self.FIFA +bad;21;6;http www twitch tv epnreach mobile;self.bloodborne +bad;21;15;Need 2 more for cop uniform heist glitch on PC anyone want to help out;self.gtaglitches +bad;21;6;Face Shots in April on Blackcomb;youtube.com +bad;21;27;To all the people who don t know why they are making pics and gifs and shirts of the shitty charmander tattoo I have one simple word;imgflip.com +bad;21;3;NYANSEED is online;self.nyancoins +bad;21;6;Where do I even begin love;self.offmychest +bad;21;16;Pencil drawing I made of Ragnar a while back Thought I d share with you vikings;imgur.com +bad;21;7;Ignoring the main storyline to do sidequests;i.imgur.com +bad;21;7;Isn t it a bit ironic how;self.thebutton +bad;21;8;Saul in his last scene in Breaking Bad;self.betterCallSaul +bad;21;19;Roblox is a F2P game where users can develop and play other user s games Read for more detail;self.Games +bad;21;3;Blood Echoes Disappearing;self.bloodborne +bad;21;7;Small fake tit Asian girl is used;gfycat.com +bad;21;2;Meow 3;18sexmedia.tumblr.com +bad;21;8;I have a barely used logitech g9x mouse;self.pcmasterrace +bad;21;5;1 Question about the lootfilter;self.pathofexile +bad;21;10;Is Abathur possible to be next free week s specialist;self.heroesofthestorm +bad;21;3;sexy tight shorts;gfycat.com +bad;21;21;Would you like to be an aerospace stress engineer It is a rewarding career if you like that kind of stuff;self.engineering +bad;21;10;Millennials Save your cash move home and pay off debt;theglobeandmail.com +bad;21;17;My old girl always sits on my lap and gives me this look until I pet her;imgur.com +bad;21;17;What is the proper response if you re using the bathroom when someone knocks on the door;self.AskReddit +bad;21;10;My news feed the last hour per the StarWars teaser;i.imgur.com +bad;21;12;Buying expensive racing tires won t make your Civic into a Ferrari;self.talesfromtechsupport +bad;21;9;Looking for housing near Samford amp a possible roommate;self.Birmingham +bad;21;14;US 3 to 4 Minute Survey Research Survey 0 50 2 min gt 95;self.HITsWorthTurkingFor +bad;21;7;Mother 3 Hotel Yado Video Game Ska;youtube.com +bad;21;6;The Ultimate Beginners Guide to Hockey;medium.com +bad;21;9;Has anyone hit the reset button in their relationship;self.AskWomen +bad;21;5;Dawn Glimpses Ceres North Pole;jpl.nasa.gov +bad;21;1;Efficacit;liberation.fr +bad;21;15;From a bronze oce player thank you Nick ImLS De Cesare for making youtube videos;self.leagueoflegends +bad;21;1;gray;self.thebutton +bad;21;8;Netflix Sets Pricing Based on Local Piracy Rates;reddit.com +bad;21;18;I m stuck at a conference where everything is sugar and carbs What do I do Please help;self.keto +bad;21;20;Ever wonder what a fancypants meal at a three star Michelin restaurant looks like This is Geranium in Copenhagen Denmark;imgur.com +bad;21;4;Sneakers for running Suggestions;self.Sneakers +bad;21;7;Something happened to me over the weekend;self.mentalhealth +bad;21;15;Should you feel obligated to tip at fast food restaurants and if so how much;self.AskReddit +bad;21;12;Just moved in with the girlfriend Her shoe pile next to mine;i.imgur.com +bad;21;10;Tyler the Creator in St Petersburg FL Saturday April 25;jannuslive.com +bad;21;6;RTM Pedal Panic Sky Dash Run;play.google.com +bad;21;5;EU OT Dragon Ball Awakening;self.WritingPrompts +bad;21;5;PS4 LF3M ce nm fresh;self.Fireteams +bad;21;22;Has anyone else gotten really depressed the more aware you ve become of racism misogyny etc How do you deal with it;self.blackladies +bad;21;9;Love the way she rides xpost from r asianandlovingit;gfycat.com +bad;21;7;Made a quick background from the trailer;i.imgur.com +bad;21;6;UPDATE Living with a dishonest roommate;self.legaladvice +bad;21;13;Bought mom and dad watches with my tax return Do you like these;self.GMGFan +bad;21;2;GLP assholes;self.GMGFan +bad;21;8;Battlefield Hardline Front Flipping Car WTF Moment 1;youtu.be +bad;21;7;Indie Mobile MMO Werewolf Online Kickstarter Campaign;self.IndieGaming +bad;21;4;Brothers of the Shadows;hiduth.com +bad;21;19;The most annoying trend Not getting steam keys after you back a game or purchase before steam release RANT;self.pcmasterrace +bad;21;4;Where does stuff go;self.linux4noobs +bad;21;4;I can t even;imgur.com +good;21;8;Who wants to cum on my tits f;imgur.com +bad;21;11;Try Sudoku Mega Bundle with 38 unique game types for iOS;itunes.apple.com +bad;21;9;Uber vs taxis Medallion prices fall mogul demands bailout;bgr.com +bad;21;8;an amazing bird imitates perfectly a computer game;youtube.com +bad;21;10;PSA Fractured Space 9 99 Retail Free until April 20th;self.swapsteamgames +bad;21;7;Massdrop voting on some Raw Denim Brands;self.rawdenim +bad;21;3;GC adapter amazon;amazon.ca +bad;21;5;7OES Nova Original house track;soundcloud.com +bad;21;5;Osaka Japan 1280x800 u SuperFishy;i.imgur.com +bad;21;13;Why is everyone suddenly looking for a copy of Sherlock Holmes Consulting Detective;self.boardgames +bad;21;9;Week 16 Cuban Cuban Ropa Vieja with Black Beans;i.imgur.com +bad;21;23;WP For your crimes you have been sentenced to a new punishment you are at the mercy of the people of the Internet;self.WritingPrompts +bad;21;16;TOMT Article Someone explains how the repetitiveness and slow manipulation of the music is so good;self.tipofmytongue +bad;21;9;Caribou Can t Do Without You Official Video 2015;upstream.fm +bad;21;5;Something I noticed about Johnny;self.MortalKombat +bad;21;16;Family of four Need talking points for in laws and wife regarding selling our 2nd car;self.lowcar +bad;21;12;Let s Play The Binding of Isaac Rebirth 14 LOOSING THE GRIP;youtube.com +bad;21;15;I know nothing about make up but my friend assures me our haul was good;imgur.com +bad;21;12;Hey all I was told to post here about advice regarding IT;self.cscareerquestions +bad;21;6;Dallas Stars News Articles Round Up;self.DallasStars +bad;21;7;Luxury cave with a million dollar view;news.com.au +bad;21;13;What is the most active popular college beach week beach East coast USA;self.AskReddit +bad;21;4;Yo mama Joke Off;youtube.com +bad;21;8;Magnus Enigma and Sven Oh so clean combo;youtube.com +bad;21;4;Digitization by u kaldrazidrim;reddit.com +bad;21;13;A while back I posted a top now I ve moved to pens;imgur.com +bad;21;4;PC crashes while gaming;self.techsupport +bad;21;7;Green Party won t abolish the military;self.ukpolitics +bad;21;11;ROOKIE Anyplace to be able to watch tape on upcoming rookies;self.DynastyFF +bad;21;8;self I had requests for a smiling picture;i.imgur.com +bad;21;17;We ate our way through Paris A partial list of the restaurants and photos from our journey;weretherussos.com +bad;21;5;NEWS Syrian refugees number grows;self.worldpowers +bad;21;17;Street Artist Mr Andre Pays Fine to National Park Service I hope it was a big fine;nps.gov +bad;21;2;Elsa Hosk;i.imgur.com +bad;21;10;REQUEST TUNISIA Some english books to read used or new;self.RandomKindness +bad;21;4;Gone Chapters 1 4;self.FiveNightsAtFanfic +bad;21;8;I feel like a little kid on Christmas;imgur.com +bad;21;4;Coral the Furryfish Courier;youtube.com +bad;21;7;How Washington Adds to Yemen s Nightmare;consortiumnews.com +bad;21;6;Stratomyst Bogo Sale 2x30ml 16 99;vape.deals +bad;21;3;LFF FOR EOTW;self.hcteams +bad;21;19;No Spoilers Arrow s viewing numbers are up 38 over last season Here s to season 4 and beyond;tvbythenumbers.zap2it.com +bad;21;7;H 20 Walmart GC W Best Buy;self.giftcardexchange +bad;21;13;What to do if you think someone close to you is a kleptomaniac;self.AskReddit +bad;21;3;Lollipop is horrible;self.LGG3 +bad;21;7;40 F4F Kik group looking for you;self.R4R30Plus +bad;21;2;LFF 8;self.kohi +bad;21;7;Request Powdered Toast Man s Raisin Breath;youtu.be +bad;21;6;What class makes the most demos;self.tf2 +bad;21;8;Tennessee plan to make Bible official book derailed;bigstory.ap.org +bad;21;7;Question Carolina s Lineage SEASON 10 SPOILERS;self.RedvsBlue +bad;21;10;What are some lesser known obscure facts about your team;self.hockey +bad;21;4;From behind High res;i.imgur.com +bad;21;2;me irl;i.imgur.com +bad;21;7;Sorry all no new episode this week;self.whoathisexists +bad;21;8;PrideFest 2015 Lineup Announced June 27th amp 28th;pridestl.org +bad;21;3;Hello Mr President;imgur.com +bad;21;9;A couple of people requested a view from behind;imgur.com +bad;21;14;Insurance professionals I could use your help Let s talk User Experience in insurance;self.Insurance +bad;21;8;My Keybase proof reddit sodimel keybase sodimel C0r6bfXjITp6ltLdNZJbf1cwvRNIV_Q3bm8bHzbnThk;self.KeybaseProofs +bad;21;5;Map of Steins Gate locations;google.com +bad;21;4;Superfriends Proliferate amp Artifacts;self.EDH +bad;21;22;I decided to take the vinyl of the digitization of the tattoo of charmander and draw it on my to go mug;imgur.com +bad;21;8;Popular monk demon hunter builds for new patch;self.diablo3 +bad;21;5;Consoles are not that bad;self.pcmasterrace +bad;21;8;Godspeed You Black Emperor Piss Crowns Are Trebled;youtube.com +bad;21;39;Hilarious Game of Thrones commentary parody I had the pleasure of animating Basically an exercise in lip syncing but great writing and acting made it a lot of fun to work on Please Enjoy x post from r animation;youtube.com +bad;21;1;Suddenly;i.imgur.com +bad;21;5;Ugh i love amiibos but;self.amiibo +bad;21;15;Comments on my fruiting chamber I am also worried about blue discoloration on my cakes;self.shrooms +bad;21;16;How much is the limit per deck for fireball spell 6 dmg is it easily spamable;self.hearthstone +bad;21;18;30 M4F Boston Searching for a lady friend who likes beards and has a great taste in music;self.r4r +bad;21;42;My 1st grader son tried to convince me he did this himself Turns out a 5th grade girl named Angel did it for him Not sure if I should be mad or proud plus Angel seems to have a sense of humor;imgur.com +bad;21;5;What my brother snaps me;imgur.com +bad;21;7;The nicest Aventador I ve seen yet;imgur.com +bad;21;10;Top 10 Zombie Apocalypse Cars in Movies of All Time;titleloans-florida.com +bad;21;9;Comic Fog Drips eJuice 25 Off All City Vapors;self.ecig_vendors +bad;21;5;Kendall Jenner for GQ NSFW;cdn.barstoolsports.net +bad;21;9;NA LF U amp Y Andromeda Athena and Kirin;self.PuzzleAndDragons +bad;21;8;Questions about chrome os portable and cheap laptop;self.chromeos +bad;21;4;Pet Technology Shop Savings;wag.com +bad;21;7;Gotta get that hit of thermal paste;imgur.com +bad;21;23;106 year old Armenian defending his home with an AK rifle in his hands during the war in Nagorno Karabakh Republic 1990 620X416;joemonster.org +bad;21;16;What would you do if you noticed your SO posted something about you on r relationships;self.AskReddit +bad;21;3;Thanks that helped;imgur.com +bad;21;6;Just look at that racial superiority;media.cuckold69.com +bad;21;7;Pabst Smear banned PBR commercial 0 33;youtube.com +bad;21;21;Does this guy really love his job or is he just rolling his tits off I mean Look at his eyes;facebook.com +bad;21;10;Amazing 7D Augmented Reality Show at Seef Mall in Dubai;youtube.com +bad;21;9;First piece done by Spencer Kmyta at captains tattoo;imgur.com +bad;21;10;I d like to share my most recent RAW experience;self.SquaredCircle +bad;21;1;Kiss;i.imgur.com +bad;21;3;Red lipped redhead;i.imgur.com +bad;21;7;PS4 LF1M nightfall post psn for invite;self.Fireteams +bad;21;22;USA Almost hit by car who didn t check their blind spot First interesting that has happened since I got my cam;youtube.com +bad;21;19;Do GCs often end up unable to adjust to life outside of Nparents control substance abuse antisocial behavior etc;self.raisedbynarcissists +bad;21;2;Sexy reflection;i.imgur.com +bad;21;15;Mom had me send my sister flowers for her I took liberties with the card;imgur.com +bad;21;9;Musical Comedy Funny songs lyrics and music r musicalcomedy;reddit.com +bad;21;3;Butt hole bleaching;self.funny +bad;21;7;Unconfirmed Shipping match is unresponsive incomplete exchange;self.secretsanta +bad;21;5;4k Want a Lan Team;self.UKDota +bad;21;10;Making an alt on a pve server Class selection help;self.wow +bad;21;6;23F4M F Really Dirty Phone Sex;self.dirtyr4r +bad;21;9;Everyone at r StarWars and r movies right now;i.imgur.com +bad;21;16;PLOS ONE Computational Models of Consumer Confidence from Large Scale Online Attention Data Crowd Sourcing Econometrics;journals.plos.org +bad;21;21;I want to tourn off my Shader Cache but I can t access the Nvidia Control Panel What can I do;self.GrandTheftAutoV +bad;21;6;Should You Have a Temple Recommend;qzzr.com +bad;21;18;When A non presser pisses me off I just turn them into a can t press Take that;i.imgur.com +bad;21;11;H Butterfly Knife Fade FN NEAR BLUE TIP W Key Offers;self.GlobalOffensiveTrade +bad;21;9;Front caliper holding rotor without me holding the brakes;self.motorcycles +bad;21;10;LET S GO BLUES BEAT THE WILD HONK HONK HONNNNKKK;i.imgur.com +good;21;12;What is something that most people believe that has been widely debunked;self.AskReddit +bad;21;8;X1 31 Titan needs help completing thorn bounty;self.Fireteams +bad;21;20;When you re at work your code is compiling and all you have is a highlighter and a couple pens;i.imgur.com +bad;21;9;IS P ivi R s nen k vi vessassa;iltasanomat.fi +bad;21;4;Gosu is with me;youtube.com +bad;21;10;Sexy Lady A GTA V Short Film Rockstar Film Editor;youtube.com +good;21;8;Dota 2 Update MAIN CLIENT April 16 2015;self.DotA2 +bad;21;7;Tribal Rush EASY GOLD AND MANA VASSALS;youtube.com +bad;21;8;I want to get mad but I cant;imgur.com +bad;21;7;KIK I want to be your domme;self.KIKSnaps +bad;21;14;TIL Leonardo DiCaprio cut his hand on an Oscar but still kept not winning;self.circlejerk +bad;21;7;New Marvel Ant Man Trailer Available AntMan;merlotmommy.com +bad;21;2;OSOK Question;self.cigars +bad;21;3;Little help here;i.imgur.com +bad;21;9;I hate my job but am scared to quit;self.offmychest +bad;21;6;It s not a phase mom;imgur.com +bad;21;4;Regarding DX11 on ps4;self.ffxiv +bad;21;6;Who would win in a fight;self.MakeMeOrange +bad;21;9;What is the most fucked up fact you know;self.AskReddit +bad;21;12;Here are some more HoTs beta keys in picture form this time;imgur.com +bad;21;11;A short BF3 Failtage all recorded in one night of playing;youtube.com +bad;21;15;Store I love bets Bets bets bets Here they go down down into my belly;self.GlobalOffensiveTrade +bad;21;11;ps4 lf2m nightfall post level and Psn below level 31 please;self.Fireteams +bad;21;17;Can someone please explain to me what the button is and what we re supposed to do;self.thebutton +bad;21;19;FRESH From last night Mos Def with Hypnotic Brass Ensemble Live on stage at Ronnie Scott s in London;youtube.com +bad;21;13;Maroon 5 Sugar cover with Kevin Olusola of Pentatonix and From the Top;youtube.com +bad;21;13;Greetings Redditors what are some apps that no one knows about but should;self.AskReddit +bad;21;18;Build Ready About to pull the trigger on this for After Effects Premiere Pro work Any thoughts improvements;self.buildapc +bad;21;14;Most peoples reaction watching the SW trailer and realizing they are still at work;i.imgur.com +bad;21;7;xb1 lfg Crota Fresh HM 32 hunter;self.Fireteams +bad;21;10;To the raiders of Adsum Kiiva NicolasBoudu Azhakan Helkarm Kuistoh;self.CivilizatonExperiment +bad;21;10;Help fixing an out of bounds excepting when merging arrays;self.javahelp +bad;21;8;Skye Red at the Quiraing Isle of Skye;i.imgur.com +bad;21;8;29 Palms expansion training on hold for archaelogy;usnews.com +bad;21;14;Rush Puppet plays Peart Miniature drummer Chops Does Tom Sawyer on tin can Drums;classicrock.teamrock.com +bad;21;4;Daily Haruhiism 45 Dramatic;i.imgur.com +bad;21;16;PS4 Hardline helldivers AW borderlands GTA V Destiny warframe and bloodbourne A few different psns inside;self.PSNFriends +bad;21;5;Shaky hands paint awful eyebrows;imgur.com +bad;21;3;Scratch my belly;imgur.com +bad;21;4;Storm corrosion Storm corrosion;youtube.com +good;21;13;What episode of a TV show you liked made you quit watching altogether;self.AskReddit +bad;21;6;Man Self Defense according to Facebook;imgur.com +bad;21;3;Spectate Mode Change;self.hearthstone +bad;21;11;What are the most popular big data tools for data mining;self.datascience +bad;21;7;So my girlfriend does those trippy pictures;imgur.com +bad;21;31;LPT If a friend asks you to loan them money and you choose to give it to them consider it a gift or you ll probably end up losing a friend;self.LifeProTips +bad;21;11;Spoiler SK vs UOL first game dragon Frame by frame irregularity;self.leagueoflegends +bad;21;16;Any suggestions for helping a facial vocal tic for my son please x post r tourettes;self.Parenting +bad;21;6;Overwhelmed and out of my element;self.buildapcforme +bad;21;23;Can we address the fact that the story was just boring this time This was also the easiest MK game of all time;self.MortalKombat +bad;21;6;Something my girlfriend made for me;imgur.com +bad;21;24;Boston Marathon bombing Where were you when you heard what had happened What was your reaction both as a runner and as an American;self.running +bad;21;6;Farore s is the Best Edgeguard;gfycat.com +bad;21;7;18M Give me a 1 10 rate;self.amiugly +bad;21;7;Grimm Plays SUBNAUTICA EP 1 IM INVINCIBLE;youtu.be +bad;21;4;rhythmic amp hypnotizing gif;i.imgur.com +bad;21;18;AMULET by Kazu Kibuishi books 1 6 FREE right now through Amazon Kindle Edition x post r comicbooks;self.graphicnovels +bad;21;4;Beasts across the mountains;self.powersofmiddleearth +bad;21;5;dankest captcha ever upvote now;i.imgur.com +bad;21;11;I can t install tweaks themes or something else on Cydia;self.jailbreak +bad;21;15;Starting the big 3 today and just took my first fin pill BASELINE pics 20M;self.tressless +bad;21;4;SteamDB got another update;self.DotA2 +bad;21;11;having a leather jacket on is literally wearing a second skin;self.Showerthoughts +bad;21;9;Good photo sharing website for private sharing and comments;self.askart +bad;21;12;TealBay City Another beautiful location in the Ontario based region of Sikos;teh-piper.deviantart.com +bad;21;6;New to housing flips tax question;self.RealEstate +bad;21;8;Few small things i can do without jailbreak;i.imgur.com +bad;21;8;My coworkers screensaver is a montage of sandwiches;i.imgur.com +bad;21;5;Some Angel Human Boros love;self.EDH +bad;21;14;The Great Southern puts a little bit of Twin Peaks in RVA this weekend;rvamag.com +bad;21;9;Dude sometimes ice cubes aren t even that cold;self.trees +bad;21;5;Weed motivates me to workout;self.Drugs +bad;21;6;Black fucks an fake booby asian;gfycat.com +bad;21;6;I m 5 11 and insecure;self.tall +bad;21;12;Hey guys Anyone of u guys know the name of those rims;imgur.com +bad;21;14;El PP de B rcenas y Rato Menudos compa ero de viaje para Ciudadanos;self.podemos +bad;21;10;Hieronim Neumann s Blok 1982 Fun and Experimental Polish Animation;youtu.be +bad;21;13;Which one of you is this Probably shouldn t do that while driving;imgur.com +bad;21;15;SUDAN Undiagnosed Outbreak Two more children die of fever in Darfur s East Jebel Marra;dabangasudan.org +bad;21;9;Wait until there s room available then store variable;self.javahelp +bad;21;11;Nice Chrome update Pull to refresh add remove tab and widget;chrome.blogspot.com +bad;21;2;Phil Heath;i.imgur.com +bad;21;3;Brasilialainen etsii kielikaveria;self.LearnFinnish +bad;21;24;What are some actual English words that might sound made up to someone who wasn t familiar with them when used in a conversation;self.AskReddit +bad;21;13;Is it socially acceptable for my husband to throw me a baby shower;self.BabyBumps +bad;21;6;28 M4W friends maybe something more;self.atx4atx +bad;21;5;OCTGN Corp Cards Rezzing Automatically;self.Netrunner +bad;21;16;I had 3000 IP and bought Jax 1350 ip and now have 600 ip what happened;self.leagueoflegends +bad;21;10;Don t know what build to go for my ascension;self.pcmasterrace +bad;21;18;Theoretically if Agora did exit scam surely this would have to be the last of a centralized market;self.DarkNetMarkets +bad;21;12;GA Catahoula has been in boarding for 4 months Can you help;imgur.com +bad;21;23;I just got some Phillips Hue lights and paired them with my Echo I thought you guys might enjoy the video I made;youtube.com +bad;21;11;As a 10 year vet finally getting these feels so nice;i.imgur.com +bad;21;14;Platform Beer Co plans to open Urban Apple cider house in Cleveland s Flats;cleveland.com +bad;21;5;Hotels week of May 4;self.chicago +bad;21;6;University Biology Lac phenotypes concept check;self.HomeworkHelp +bad;21;54;On the route known as the Camino Frances pilgrims dot a trail across the Meseta the plateau of central Spain The Camino has no specific stopping point each day wrote photographer Michael George in his journal If you are tired injured or fall in love with a town or a person you can stop;imgur.com +bad;21;7;Boom Tough Actin Tenactin Tower of Guns;youtube.com +bad;21;5;So this loss just hapoened;self.MortalKombat +bad;21;6;Stick Magnetic Ribbons on your SUV;youtube.com +bad;21;6;The Adventures of SuperStar Comic Series;imgur.com +bad;21;27;Trickle Down economics is actually an appropriate name As the ocean of wealth at the top grows a tiny little bit trickles down to the general public;self.Showerthoughts +bad;21;2;Seriously Seriously;self.MAA +bad;21;1;Friends;self.BPD +bad;21;9;Spoilers Why did the Hood demand what he demanded;self.Thunderbirds +bad;21;9;J J Abrams behind the scenes pics from TFA;dailymail.co.uk +bad;21;15;Not saying the dev is stupid but I think this changelog is kinda funny D;imgur.com +bad;21;45;Saw some comments wondering Erykah Badu s effect on rappers this article breaks it down pretty well Badu s own words I m a cold motherfucka and Infidelity is not a deal breaker for me I don t require sex for happiness I need companionship;self.hiphopheads +bad;21;12;Why do Maryland State Troopers park diagonally when they pull someone over;self.maryland +bad;21;11;Anyone heard of this pain management method Laughing gas for labor;self.BabyBumps +bad;21;7;Request Side dish to accompany Zucchini Grinders;self.recipes +bad;21;9;Voices of Wrestling Ranking every 2015 WrestleMania Weekend match;voicesofwrestling.com +bad;21;27;What the Hell Are We Doing in Yemen The Obama administration is assisting Saudi Arabia in creating a humanitarian catastrophe in the Middle East s poorest country;reason.com +bad;21;3;Happy Birthday Volant;instagram.com +bad;21;11;26 m4m cute thin gayboy Looking for younger STR8 BI TOP;self.dirtykikpals +bad;21;5;Game of Thrones FAST FACTS;youtube.com +bad;21;9;28 M4F NE of Detroit Michigan in the burbs;self.dirtyr4r +bad;21;7;GBPUSD Attempts Bullish Breakout Above 1 4980;dailypriceaction.com +bad;21;8;Hey MaleHairAdvice what shampoo do you guys use;self.malehairadvice +bad;21;30;Academic Short survey for a Software Requirements class Trying to make a football stats website and I need to survey potential users Thanks sports fans take 2 minutes or less;docs.google.com +bad;21;13;Created an album with images from both trailers in a possible chronological order;imgur.com +bad;21;9;What do slinkies and the handicapped have in common;self.Jokes +bad;21;29;21 m Here confused with what 21 f Wants from me Does she like me Why did she reject me then What do I do next I WANT HER;self.relationships +bad;21;10;Can anyone confirm if this is true Always Online DRM;gfycat.com +bad;21;9;Alter Held sollte beim kritzelkrieg auch w hlbar sein;self.rocketbeans +bad;21;6;Joe Gatto smells like dog buns;self.OnePieceCircleJerk +bad;21;10;ELI5 How does a radar track multiple targets at once;self.explainlikeimfive +bad;21;7;DIPLOMACY Israel purchases WASP Class from California;self.worldpowers +bad;21;20;In honor of Hofmann s discovery of LSD 72 years ago today here is Dave Nichols fascinating take on it;erowid.org +bad;21;14;Is it just me or is GTA Online more civil on old gen lately;self.GTAV +bad;21;12;Anyone wanna bet on if Agora is coming back up or not;self.AgMarketplace +bad;21;27;Would it be weird if a girl that you d known for years but never talked to much starting openly flirting with you out of the blue;self.AskMen +bad;21;8;Jacare having fun with kids Open workout highlights;youtu.be +bad;21;13;Gintama episode 267 death scene what are they parodying x post r gintama;i.imgur.com +bad;21;19;Happy birthday u CHOPSWEE sorry if it looks a wee bit rushed I did most of it last night;imgur.com +bad;21;6;Ng lv 79 ebritas cosmos boss;self.huntersbell +bad;21;4;Hottie in black lingerie;4yimgs.com +bad;21;11;Peaceful antiwar protesters get apprehended by masked paramilitaries in Odessa today;youtube.com +bad;21;13;What are some of your favourite songs What do you hate about them;self.AskReddit +bad;21;6;This is looking pretty damn good;youtube.com +bad;21;8;Curious what virus infection I might be experiencing;self.AskDocs +bad;21;20;When singing along to music that features the N word is it ok to sing along if you are white;self.AfricanAmerican +bad;21;21;Looking to buy a house in the next 6 months In laws want to gift us 10k to help How to;self.personalfinance +bad;21;7;I also made a bird with eyeliner;imgur.com +bad;21;7;Guitarist looking for post rock indie alternative;self.AustinMusicians +bad;21;11;Concept ideas for an upcoming handmade animation from my favorite episode;i.imgur.com +bad;21;2;Alt Tab;self.heroesofthestorm +bad;21;6;EVENT Duma session escalates into brawl;self.worldpowers +bad;21;3;Betting odds archive;self.dota2loungebets +bad;21;11;Sixteen92 Review feat The Awakening Grimm Hellebore Lolita Mellifera amp Wicked;self.Indiemakeupandmore +bad;21;3;Work exchange program;self.ElectricForest +bad;21;8;340 days 3 5 teeth still going strong;imgur.com +bad;21;4;I pushed the button;self.thebutton +bad;21;13;Beard Plays Grand Theft Auto V Part 1 Lets get the party started;self.LetsPlayVideos +bad;21;11;Is there anything you d like to add in this game;self.GrandTheftAutoV_PC +bad;21;5;Original post on r funny;reddit.com +bad;21;10;Do I need a sterilizer if I have a dishwasher;self.BabyBumps +bad;21;9;Fire Sabrina Rubin Erdely for Lack of Journalistic Integrity;change.org +bad;21;6;Keebler really fucked up this time;i.imgur.com +bad;21;4;Gotta start off somewhere;imgur.com +bad;21;6;r detroitredwings Round 1 Poll Reminder;self.DetroitRedWings +bad;21;6;You promised me starry night skies;imgur.com +bad;21;10;What song are you most excited to hear on tour;self.TaylorSwift +bad;21;10;EUW S5 MASTER ADC Lf serious team diamond 1 only;self.TeamRedditTeams +bad;21;15;US Super short negotiation survey Nazli Mukadder Turan 0 40 2 5 min gt 94;self.HITsWorthTurkingFor +bad;21;7;keeps flashing on my MVP 3 0;self.electronic_cigarette +bad;21;4;Buying beans online freshness;self.Coffee +bad;21;6;Best way to find a band;self.WeAreTheMusicMakers +bad;21;10;Shadow Spider Hive 8 40 Liu Kang Concept Art 2310;self.kryptguide +bad;21;10;The skip to beat feature in the editor is incredible;youtube.com +bad;21;3;Recipe Brandied Fruit;self.DIY_eJuice +bad;21;9;Sak Noel Loca People wtf party all day night;youtube.com +bad;21;21;Raw Love 2010 A compelling and sincere story of mixed emotions and secrets that one dare not speak aloud 14 31;youtube.com +bad;21;15;My hard drive crashed and i can t enjoy Skyrim This is my right now;i.imgur.com +bad;21;7;Battle of Agincourt Medieval 1212 AD Mod;imgur.com +bad;21;10;Sheik One of the saddest phantoms I ve ever seen;gfycat.com +bad;21;13;Katya s name inspiration Yelena Zamolodchikova winning gold as I hope Katya does;self.rupaulsdragrace +bad;21;21;Crew member atop his Leopard 2A4 heavy tank from Telemark battalion during exercise Noble Ledger 2014 in Norway 640 x 960;imgur.com +bad;21;7;Sharp Teeth A FNAF Fanfic 2 Parts;self.FiveNightsAtFanfic +bad;21;3;Best Seattle shop;self.seaents +bad;21;6;ELITE DANGEROUS TRADER LIFE Episode 1;youtube.com +bad;21;7;Darius Champagne Kisses Remix electronic future 2015;bop.fm +bad;21;21;The Myth of Police Reform The real problem is the belief that all our social problems can be solved with force;self.autotldr +bad;21;10;MRW I got a summer job as a finger puppeteer;i.imgur.com +bad;21;5;Source for this dom daddy;self.gaypornhunters +bad;21;19;Hier wird ein Gesetzes Stumpf geschaffen auf dessen Platte sobald ein wenig Moos gewachsen ist neue Sprosse wachsen werden;christophkappes.de +bad;21;9;Can a battlenet prepaid card be used for gametime;self.wow +bad;21;7;19 Snapchat Seattle Live seattle 0 comments;reddit.com +bad;21;2;Weed games;self.trees +bad;21;6;Some of the towers character endings;m.youtube.com +bad;21;3;Hit a milestone;imgur.com +bad;21;16;I AM u 31337h4x0r AND YOUR BANS HAVE NO POWAH OVER ME 1 1 1 eleven;self.banme +bad;21;19;El crudo futuro que avizora el t cnico de Malla Si sigue as no llegar a ning n lado;emol.com +bad;21;6;Where to live in North Manchester;self.manchester +bad;21;3;Zz Top Portal;youtube.com +bad;21;12;Shot by shot breakdown of the second teaser for The Force Awakens;self.StarWarsLeaks +bad;21;12;My custom designed Severance from 3 Dog Knife up here in Alaska;imgur.com +bad;21;7;Where to get the latest EQNext information;self.EQNext +bad;21;45;You have lived on earth for however long you have been alive you have witnessed and observed many events occurrences both global and individual All of your observations and experiences have led you to conclude that the reason human civilization has so many problems is;self.AskReddit +bad;21;17;Auto Giants B10 done up to ToA 100 next Bonus Vote for my next 4 6 s;self.summonerswar +bad;21;8;Sun Prairie boys rank female classmates in bracket;channel3000.com +bad;21;10;Local Governments Continuing To Bar Us From Feeding the Homeless;reason.com +bad;21;9;What s the worst thing you have ever done;self.AskReddit +bad;21;8;And here s an image of the exploit;self.Diablo +bad;21;19;Is there some way to have the cable box HDMI go to both the TV and the xbox separately;self.xboxone +bad;21;6;TIFU by leaving milk out overnight;self.tifu +bad;21;8;This week s beer style post Belgian Tripel;beermakesthree.com +bad;21;4;The original selfie stick;imgur.com +bad;21;4;Terminal Extra A D;youtube.com +bad;21;8;Comrades we should free Liberland from liberal scum;self.FULLCOMMUNISM +bad;21;4;Amaterasu cosplay by Lonzi;i.imgur.com +bad;21;2;Central Spain;imgur.com +bad;21;10;The Bearded Lady Speaks An interview with a transgender comedian;digbatonrouge.com +bad;21;11;A map of Exeter in 1563 showing the old city walls;en.wikipedia.org +bad;21;11;21 T looking for friends to just be a girl with;self.Needafriend +bad;21;4;WHATS THIS GIRLS NAME;self.tipofmypenis +bad;21;11;SECRET United Arab Emirates Defense Force troops are moving to Turkmenistan;self.worldpowers +bad;21;13;Charlie Chaplin being held high in front of a wall street crowd 1918;i.imgur.com +bad;21;7;Need some advice This literally just happened;self.exjw +bad;21;22;This is what happened when Australians were asked to label a map of the UK PS you won t be very impressed;buzzfeed.com +bad;21;4;New Bench slogan proposal;self.baltimore +bad;21;14;Una adolescente se arroj de un cuarto piso tras ser amonestada en la escuela;lacapital.com.ar +bad;21;17;My family saw this in the sky the other day We have no idea what it was;imgur.com +bad;21;5;Awesome Fast Paced Dubstep Dance;youtube.com +bad;21;3;Osaka Japan 1280x800;i.imgur.com +bad;21;10;Cop Bleeds Profusely From A Bullet Hole In His Head;vid.me +bad;21;4;Thanks for the help;i.imgur.com +bad;21;5;NG 54 RoM WAAZZAAP Ltd;self.huntersbell +bad;21;2;Kate Grigorieva;i.imgur.com +bad;21;6;So Handstand balance just really clicked;self.bodyweightfitness +bad;21;6;To get an MBA or not;self.personalfinance +bad;21;8;My professor never quite reaches the end Ever;youtube.com +bad;21;5;Awkward length curly thin balding;self.FierceFlow +bad;21;9;The facial expressions of a woman enjoying a BBC;gfycat.com +bad;21;11;I m extremely anxious about the sport band fitting my wrist;self.AppleWatch +bad;21;4;Glitch found with Mewtwo;self.smashbros +bad;21;5;Hellbenders Hurricane Official Music Video;youtube.com +bad;21;4;Atheism s Best Arguments;self.DebateReligion +bad;21;13;Was trying to figure out what a word my boss said earlier meant;urbandictionary.com +bad;21;6;Buffalo Beauts to play at HarborCenter;bizjournals.com +good;21;8;Single girl looking f or a full inbox;i.imgur.com +bad;21;10;Shadow Spider Hive 7 42 Concept Art Outworld Market 1150;self.kryptguide +bad;21;23;This is the kind of crap i tried to overcome the whole time i was a youth minister Christian University of the Midwest;soundcloud.com +bad;21;8;All ground Strengths and weakness of each country;self.Warthunder +bad;21;7;New gear amp family photo New post;imgur.com +bad;21;13;NSA and FBI fight to retain spy powers as surveillance law nears expiration;theguardian.com +bad;21;8;New funding platform connecting adopters investors and inventors;nextors.com +bad;21;7;Reddit AMA with the Trailer Park Boys;youtube.com +bad;21;17;LPL is hosting a China vs Korea All stars game on the same day of LPL finals;self.leagueoflegends +bad;21;15;If life is the most difficult exam then would having superpowers be equal to cheating;self.Showerthoughts +bad;21;5;ATTENTION ALL STAFF URGENT TRANSMISSION;self.SecretSubreddit +bad;21;2;Well damn;imgur.com +good;21;12;BREAKING NBA NBPA agree to add HGH testing beginning 2015 2016 season;nba.com +bad;21;9;Anyone want an Amazing Spider Man 2 Ultraviolet code;self.Spiderman +bad;21;12;What is the Beasts Beauty and the Beast favorite kind of food;self.Jokes +bad;21;6;Hasselhoff enjoying some Power Glove action;youtube.com +bad;21;21;Pensamento de chuveiro As del cias do mar est o para o peixe como os cogumelos est o para a carne;self.portugal +bad;21;6;Examples of corruption in the Watchtower;self.exjw +bad;21;16;Meet the 93 year old Reading fan whose dislike of Arsenal dates to the 1920s Football;theguardian.com +bad;21;3;Second Writing Recommendations;self.OSU +bad;21;4;Guys i need help;self.leagueoflegends +good;21;14;De Gea with a funny unintentional back handed compliment after being nominated for PFA;twitter.com +bad;21;6;Weird text messages from the past;self.creepy +bad;21;4;Out of My Reach;gfycat.com +bad;21;16;To to tune of the Imperial March Dean Dean Dean Dean D Dean Dean D Dean;i.imgur.com +bad;21;11;Chicago 040 w detail 20x30in print amp plexi collage 4000x6000 OC;flickr.com +bad;21;7;Al Green L O V E Love;youtu.be +bad;21;3;Windows update issues;self.techsupport +bad;21;12;New York Red Bulls Hosting Autism Awareness Night At Tomorrow s Match;onceametro.com +bad;21;17;Niger In three months the country recorded 345 cases of the meningitis the epidemic with 45 deaths;allafrica.com +bad;21;7;I think I m ready for Evo;self.MortalKombat +bad;21;16;I ve had this keyboard for 14 of it s 32 years Still my everyday workhorse;i.imgur.com +bad;21;11;Academic repost Is that Racist Feelings About Race in America US;docs.google.com +bad;21;12;First Mod E Pipe Build Help Me Not Explode My Face Off;self.OpenPV +bad;21;2;Censored Chat;self.GTAV +bad;21;15;Can I help you Toshiba puts its humanoid robot to work in Tokyo department store;dailymail.co.uk +bad;21;44;The George W Bush Fundraisers Whose Firms Received Florida Pension Deals Under Jeb Bush While Jeb Bush was governor of Florida state pension officials committed at least 1 7 billion to financial firms whose executives were Pioneer fundraisers for his brother s presidential campaigns;ibtimes.com +bad;21;14;I think Amazon it trying to get me to plan some sort of quest;imgur.com +bad;21;12;How the fuck am I supposed to beat the damn Sanctuary Guardian;self.darksouls +bad;21;10;I can t see a Bush is in my way;i.imgur.com +bad;21;10;I ve been told they re a few different colors;imgur.com +bad;21;4;First one Rate 8;imgur.com +bad;21;9;GA amp NM sky burial legality for tribal member;self.legaladvice +bad;21;14;Reach out to farmers with government move on compensation Arvind Kejriwal to AAP leaders;ibnlive.in.com +bad;21;6;xbox one LFG Crota CP NM;self.Fireteams +bad;21;8;Westerado Double Barreled Impressions Pixelated Red Dead Redemption;youtube.com +bad;21;7;PC Looking for two people for Heists;self.HeistTeams +bad;21;7;Takeda shirai ryu Combos Mortal Kombat X;youtube.com +bad;21;10;A question about lances and elements from a new hunter;self.MonsterHunter +bad;21;5;Asian uncut cum from vibrator;vid.me +bad;21;7;How do you complete the salvage mission;self.Neverwinter +bad;21;9;Ryan Gosling Blade Runner Sequel Actor Joins Harrison Ford;variety.com +bad;21;6;PSA We are gt 220 again;self.Bitcoin +bad;21;19;M 20 5 6 110 lbs gt 142 lbs 18 months From suffering from bullimia to becoming a powerlifter;imgur.com +bad;21;2;Sexy reflection;imgur.com +bad;21;15;Suggestion The current lowest second holder gets to set a new rule for the sub;self.thebutton +bad;21;9;My View on AA After 2 Years of Practice;self.seduction +bad;21;6;The businessman Japanese prostitute and golf;self.Jokes +bad;21;1;Lines;self.Habs +bad;21;18;Subban admits he thinks the referee made the right call regarding the 5 minute major and game misconduct;twitter.com +bad;21;14;Project CARS elusive Xbox One version has finally appeared and we ve played it;dealspwn.com +bad;21;20;Xbox 1 Looking for 1 more for series a setups and finale on hard 40 20 cuts Gt Bill Doolittle;self.HeistTeams +bad;21;15;Anthony Cumia back after the O amp A issues that came up the other day;self.PKA +bad;21;9;Would you bleed for your team Playoffs Blood Drive;self.wildhockey +bad;21;1;Delaware;self.Wicked_Wet_Complaints +bad;21;9;Build Help Want to upgrade my cpu for streaming;self.buildapc +bad;21;1;saggy;imgur.com +bad;21;4;Compressed THC Vapor Tanks;self.highdeas +bad;21;16;How much Grump fans are as excited for the new Star Wars movie as I am;self.loungegrumps +bad;21;8;H fn m9 fade 85 fade w 150k;self.GlobalOffensiveTrade +bad;21;6;Wildstar on clearance at Best Buy;massivelyop.net +bad;21;3;Heads getting independent;imgur.com +bad;21;7;CHALLENGE Win a game without declaring war;self.eu4 +bad;21;21;DEV nextub The only app able to learn from you and identify a perfect hangout based on your interests in seconds;nextub.com +bad;21;10;Tried of messing with settings for performance Just do this;self.GrandTheftAutoV_PC +bad;21;9;There s something wrong with my kanthal or me;self.electronic_cigarette +bad;21;2;Well fuck;imgur.com +bad;21;4;Punny Fashion show ideas;self.self +bad;21;18;English cover of Stand Proud don t know if this has been posted before but it s awesome;youtube.com +bad;21;8;PSEUDOGOD The Firstborn of Abhorrence DEATH METAL HYPE;sektovgnozis.bandcamp.com +bad;21;6;Beating BRM Mage challenge via fatigue;self.hearthstone +bad;21;26;Americans on reddit Have you personally known an American woman who was blonde white and good looking go for a guy who was Pakistani or Indian;self.AskReddit +bad;21;22;The 90s are calling they want their stereo back Is there a simple in dash tuner that doesn t look so cheesy;self.CarAV +bad;21;8;The Dirty Nil Cinnamon punk punk rock 2014;soundcloud.com +bad;21;15;Petition to set the Google Doodle on April 24 to commemerate the Armenian Genocide armenian;redd.it +bad;21;4;RAFFLE Ray Laconico Magnus;self.Knife_Swap +bad;21;18;Tiny Dancer is the love song a long distance trucker sings to the hula girl on his dashboard;self.Showerthoughts +bad;21;15;Got this today my Charlie brown van Gogh doctor who shower curtain and its awesome;imgur.com +bad;21;8;getting info to show up on lock screen;self.kustom +bad;21;4;Indra Varuna s profile;reddit.com +bad;21;12;Me sporting my Snarl glow in the dark PJs back in 85;imgur.com +bad;21;20;This is a long shot but does anyone know of any good bars to watch the game in Bloomington Indiana;self.rangers +bad;21;19;Getting a good visible pic is hard for a black dog but not this time meet my schnoodle Maya;i.imgur.com +bad;21;4;Can t stop Belle;imgur.com +bad;21;7;I found this in a vintage shop;imgur.com +bad;21;4;New rats platform covers;self.RATS +bad;21;11;Shadow Spider Hive 6 42 Concept Art Jax s Farm 1450;self.kryptguide +bad;21;5;Fundamental disagreement with my sponsor;self.stopdrinking +bad;21;4;Gingerbread Chocolate Chip Cookies;youtube.com +bad;21;12;Anyone have a top ten that doesn t include their favourite director;self.movies +bad;21;11;Infinite Arcane Pool Points a k a The Monkey Stick technique;self.Pathfinder_RPG +bad;21;2;go away;gfycat.com +bad;21;6;Game Grumps Animated So Easy tithinian;youtube.com +bad;21;5;Actual Advice Duckface White Girl;i.imgur.com +bad;21;13;Just figured id remind all of you to stay careful with your drugs;self.Drugs +bad;21;8;Patent reform hits snag with human trafficking standoff;politico.com +bad;21;6;25 M4F anywhere bored at work;self.r4r +bad;21;23;Went to a horse farm this morning The horse models were very high poly but my main concern was the lack of AA;imgur.com +bad;21;3;Tits amp Ass;imgur.com +bad;21;8;Warren We re not done with Wall Street;self.autotldr +bad;21;12;When will the button run out Real time linear regression analysis says;button.mtsanderson.com +bad;21;8;Win a Samsung Galaxy S6 2 days left;gleam.io +bad;21;17;Conserving history Conservation Center for Art and Historical Artifacts in Philadelphia repairs old paper to preserve history;nj.com +bad;21;10;TURF is the same weekend as Riot Fest this year;torontourbanrootsfest.com +bad;21;13;Dems are now fighting taxes and spending cuts they imposed to fund ObamaCare;reddit.com +bad;21;5;Headshot Looking Around The Corner;streamable.com +bad;21;14;Proletarians of all countries unite on IRC Join the struggle at leftsec on IRC2P;self.socialistprogrammers +bad;21;3;Fuck This Hobby;imgur.com +bad;21;6;360 buying 600k for 75 microsoft;self.MCSXbox +bad;21;19;discussion slight rant anyone else think there s far too many fan made destiny apps and sites being made;self.DestinyTheGame +bad;21;7;The creator is taking FOREVER to load;self.GrandTheftAutoV_PC +bad;21;18;Batman vs Superman be one one of the first to see the teaser trailer at a local imax;batmanvsupermandawnofjustice.com +bad;21;12;First Level 70 Greater Rift Completed video is a few weeks old;youtube.com +bad;21;23;These 5 guys earn 60K a year and live for free in an LA condo just for being good at League of Legends;businessinsider.com +bad;21;7;Obama s deceptions on Iran and Cuba;washingtonpost.com +bad;21;18;MRW I read on reddit that an MRI proves there are no adverse health effects to cracking knuckles;i.imgur.com +bad;21;9;Google Venture Design Sprint as a one man band;self.Entrepreneur +bad;21;15;I don t know if I m plain stupid or if codeacademy is bugged Help;self.learnpython +bad;21;14;bipolar meetup at least five people literally got up and moved away from me;self.bipolar +bad;21;16;My brother participated in his first stand up show I think it s pretty damn funny;youtu.be +bad;21;5;Dawn Glimpses Ceres North Pole;photojournal.jpl.nasa.gov +bad;21;11;Got a new box to store some silver bits and pieces;imgur.com +bad;21;3;Open relationships suuuck;self.offmychest +bad;21;9;Flying Tsundere Shark is trying to make some friends;youtube.com +bad;21;6;How are you liking Daily Challenges;forums.pokemontcg.com +bad;21;2;Nosleep HoF;self.NoSleepOOC +bad;21;8;What s a good method for collecting koins;self.MortalKombat +bad;21;0;;self.CookieCollector +bad;21;12;For Trade 2 GA Floor tix in SC for 2 in Chicago;self.gratefuldead +bad;21;7;Ohio State s new rings are glorious;self.CFB +bad;21;6;Alkol s var lagligt bl s;gp.se +bad;21;10;Pittsburgh Zoo logo incorporates some of the zoo s attractions;imgur.com +bad;21;12;TSA s Investigation Into Groping Agents Ensured They Wouldn t Be Prosecuted;self.autotldr +bad;21;6;Question High res images of Invective;self.DestinyTheGame +bad;21;48;Top Mind asks Admins no longer ban people for using alts and goes on to complain about Bipolarbear0 Grand Master Top Mind u Flytape joins in with a long rant and ends it by saying BPB0 is a government agent and snoonet is operated by government employees also;np.reddit.com +good;21;14;Parents have not once acknowledged their attention starved kid for past 30 minutes straight;imgur.com +bad;21;10;Terry Richardson leaked a video of Kate Upton Cat Daddy;funnyordie.com +bad;21;25;UK The police want to take a friends 15 electronic equipment that have the ability to connect to the internet Do they have a right;self.asklaw +bad;21;6;m4f Looking for a naughty mommy;self.dirtypenpals +bad;21;5;Meta Personal Tribute for Springbok;self.asmr +bad;21;10;Shadow Spider Hive 5 42 Kenshi Brutality Demon Slice 1850;self.kryptguide +bad;21;7;Liliana vs Garruk in a Rap Battle;youtube.com +bad;21;21;You are forced to have sex with the last last thing you bought What is it and did you enjoy it;self.AskReddit +bad;21;6;Trying to stay glorious in art;imgur.com +bad;21;8;This raccoon climbed a crane in Toronto Today;i.imgur.com +bad;21;6;Why are words spelt with letters;self.shittyaskreddit +bad;21;11;More amateur pegging and cum from anal x post r MistressPorn;xvicious.com +bad;21;12;I m 30 years old and I have never seen this before;imgur.com +bad;21;29;Was a gurl got a creepy PM s and gold on reddit wanted to stop the oppression did a sex change operation and turned into a guy AMAA xD;self.circlejerk +bad;21;4;Favorite game favorite beer;i.imgur.com +bad;21;5;MISC Black Hammer Hive Disrupter;self.DestinyTheGame +bad;21;7;11 of the best Tyler Posey Vines;mtv.com +bad;21;5;The Dangerous Brothers Big Stunt;youtu.be +bad;21;4;Yamato strong Ore Monogatari;gifsound.com +bad;21;4;Z2 lollipop update help;self.SonyXperia +bad;21;6;Even ironman have full pernix almost;img.prntscr.com +bad;21;6;How the First Red will feel;self.thebutton +bad;21;7;Where to start with Ultron comics Meanwhile;youtube.com +bad;21;32;Karl Marx was Rothschilds third cousin He is best known for subverting the nascent Socialist movement likely as an agent of his cousin Rothschild and on instructions from his mentor Moses Hess;henrymakow.com +bad;21;6;Kim Jong Un vs the Pope;self.whowouldwin +bad;21;18;Hitachi Makes Me DRIP in Sheer Red Thong Pornhub Video in Comments Any tip gets a Download Link;imgur.com +bad;21;7;Adrian Peterson To Be Reinstated By NFL;npr.org +bad;21;6;What Root Canal treatment really is;mylocally.com +bad;21;5;Pacific Trade Deal Inches Forward;foreignpolicy.com +bad;21;8;A case for the Dunlop Jazz III pick;self.guitarpedalsjerk +bad;21;15;Have u tried cow dung Smartphones help Kenyan farmers text their way out of trouble;theguardian.com +bad;21;10;Apparent Islamic militant gun attack wounds US woman in Pakistan;theguardian.com +bad;21;4;Latest MOC Rogue Tahu;imgur.com +bad;21;12;Ohio man charged with providing support to al Qaida affiliate in Syria;theguardian.com +bad;21;10;Fed s Lockhart says murky data complicates rate hike decision;reuters.com +bad;21;20;I was at the dentist s office the other day and could not believe I heard this woman say this;i.imgur.com +bad;21;11;You can t take the cult out of culture Shawn Holster;self.quotes +bad;21;3;loudincleveland s profile;reddit.com +bad;21;17;Which skills to practise amp get down over the summer to be prepared adequately for calculus 1;self.learnmath +bad;21;9;Should women be allowed to serve in combat rolls;np.reddit.com +bad;21;6;Need Advice for Playing Against Annie;self.summonerschool +bad;21;3;JUST ONE MORE;i.imgur.com +bad;21;3;I regret everything;youtu.be +bad;21;7;ObamaCare s Financial Crisis Is Fast Approaching;news.investors.com +bad;21;5;Not sure of the website;imgur.com +bad;21;2;App issues;self.Ingress +bad;21;11;Entire gta5onlinefreemoney subreddit created by u gta247365 as spam survey scam;reddit.com +bad;21;13;Za to je slu bena web stranica op ine Borovo na srpskom jeziku;opcina-borovo.hr +bad;21;4;My piranha plant lamp;imgur.com +bad;21;19;Prospect Hummer Vinyl Coming In Mayo Str8 from the Avey Tare himself You won t BELIEVE what happens next;imgur.com +bad;21;5;Dual American Serbian Citizenship Question;self.serbia +good;21;8;My student handed this to me mid lecture;imgur.com +bad;21;6;What will your last words be;self.AskReddit +bad;21;1;Suggestion;self.kohi +bad;21;12;Hoping Arin tries out Fixed Camera in Mario 64 at some point;danshive.tumblr.com +bad;21;15;Through 9 games the Mets have already matched their longest winning streak from last year;self.NewYorkMets +bad;21;6;Cedi osman declares for the draft;self.sixers +bad;21;17;Star Wars Ep VII Trailer 2 Opening Shot minor color correction antialias and cropping 2577 x 1080;i.imgur.com +bad;21;4;Dota 2 network down;self.DotA2 +bad;21;3;Scorpion 4K Wallpaper;i.imgur.com +bad;21;19;My Hello Waffle order came today and it included samples of Hephaestus Aphrodite and Artemis from the upcoming collection;imgur.com +bad;21;10;Who are the best kick punt returners in the draft;self.NFL_Draft +bad;21;25;There was a time when Best Buy was my absolute favorite place for movies Still enjoy it just a shame to see it fading away;imgur.com +bad;21;2;Ghost Sleeves;i.imgur.com +bad;21;9;Are you ready for august 15 2048 630 pm;self.AskReddit +bad;21;11;Shadow Spider Hive 4 41 Kung Lao Brutality Z Hat 2100_;self.kryptguide +bad;21;3;Levelled up Slayer;self.AbraxxisRS +bad;21;10;Star Wars Battlefront Pre Orders Open Tomorrow Releases November 17;gamnesia.com +bad;21;7;Star Wars Battlefront Release Date Possibly Leaked;ign.com +bad;21;3;Loricaria Catfish gif;gfycat.com +bad;21;2;Brunette bombshell;m.imgur.com +bad;21;10;Mercury Probe s Dramatic Death Plunge Set for April 30;space.com +bad;21;10;So How do we fix this one Season 3 5;self.Diablo +bad;21;13;Daily Deals Free Android Apps Mortal Kombat X 50 Xbox Live for 35;ign.com +bad;21;10;I AM THE GREAT JAGGI KNEE IN FRONT OF ME;imgur.com +bad;21;5;Thoughts on mid lane Morgana;self.leagueoflegends +bad;21;9;Any Interest In Meeting Up At a Dog Park;self.dayton +bad;21;4;Question about battle videos;self.pokemon +bad;21;23;Bill Belichick is Herb Brooks Version 2 0 I swear every quote this man made directly reflects Belichick s attitude with his team;imgur.com +bad;21;15;HRC Sends New Case Study to Missouri Lawmakers Don t Repeat the Mistakes of Indiana;boom.lgbt +bad;21;7;Anybody else Searching for Dota 2 Netowork;self.DotA2 +bad;21;10;MRW my co pilot tells me that we re home;i.imgur.com +bad;21;1;Windows;digital.report +bad;21;20;Found this girl 2 years ago running around my brother s neighborhood for months Finally we caught her Meet Shadow;imgur.com +bad;21;12;DAE think that the Netflix Daredevil is fighting like a sighted person;self.Daredevil +bad;21;8;Cause No one has said it Thanks Mods;self.FFRecordKeeper +bad;21;8;Jerry Brown faces fight over mandatory water cuts;latimes.com +bad;21;6;LF Grank Chameleos GS LS bias;self.mhguildquests +bad;21;5;GUMI Sion Rt FUTURE POP;nicovideo.jp +bad;21;17;Do you think there s still any kids and wives waiting for the OK from Antoine Dobson;self.Showerthoughts +good;21;11;Torres Gerrard is the best player I have ever played with;skysports.com +bad;21;8;Perovskite Leads to 100 Percent Efficient Nanowire Lasers;spectrum.ieee.org +bad;21;1;onoff;li.co.ve +bad;21;24;I ve read more people s comments and ideas on reddit in one year than all other websites for the past 15 years together;self.Showerthoughts +bad;21;9;Can anyone help me to find a certain post;self.help +bad;21;8;Hester Street Fair Returns April 25 Grub Street;grubstreet.com +bad;21;3;roeintense s profile;reddit.com +bad;21;4;Quick coin giveaway PS4;self.MaddenUltimateTeam +bad;21;2;Borderline underweight;self.AirForce +bad;21;10;I heard you guys like knock off Regular Show merch;imgur.com +bad;21;6;20 F4M BBW looking to play;self.dirtykikpals +bad;21;10;EVERYONE MUST DIE GGG Play s Arkham City Part 2;self.LetsPlayVideos +bad;21;27;A guy right before me in my local retro store didn t want this he thought the gold cart was much rarer boy did he miss out;imgur.com +bad;21;13;How was this effect done BB 8 Rolling on Stage Star Wars Celebration;self.AskEngineers +bad;21;10;My HDD does not show up in Windows 8 1;self.techsupport +bad;21;11;Adam wants less grim dark more pink So I made this;imgur.com +bad;21;2;The Clam;penmen.com +bad;21;5;Italians revolt against migrant invasion;telegraph.co.uk +bad;21;6;XB1 lf1m nightfall GT whiskey theorms;self.Fireteams +bad;21;15;Can I help you Toshiba puts its humanoid robot to work in Tokyo department store;dailymail.co.uk +bad;21;12;No Man s Fort transformed into a party island for the rich;news.com.au +bad;21;15;Roadblocks Among Other Methods of Censorship Employed Against National Socialist Movement Rally Planned Apr 18;toledofreepress.com +bad;21;12;Vote for our Goddess in the Best Type Moon Character Poll Finals;self.OneTrueTohsaka +bad;21;30;We re well on our way to 3k users congrats everybody As a sign of gesture we will introduce a contest Whoever wins will get featured in the side bar;self.DickPics4Freedom +bad;21;5;Why is divorce so expensive;self.Jokes +bad;21;13;Gentle sir is pissed off that Brock Lesnar ignored his challenge to fight;youtube.com +bad;21;3;Mortualia Manic Euphoria;youtube.com +bad;21;7;Leaving my cart in the meat aisle;redd.it +bad;21;16;First inhabitant of my tank the rest of his friends will be joining him on Saturday;i.imgur.com +bad;21;10;Took me forever but finally finished my biggest project yet;imgur.com +bad;21;1;me_irl;imgur.com +bad;21;12;LazyLamper s Twitch Stream Ep 5 Adventuring into the Caverns of FUN;twitch.tv +bad;21;6;Taiga gets back at Baka Chi;imgur.com +bad;21;4;ITAP of a giraffe;flickr.com +bad;21;7;moto360 made it into the engagement pictures;imgur.com +good;21;8;Dota2 is going down It s happening HYPE;steamstat.us +bad;21;14;Richard Branson did a cringeworthy Ferris Bueller impression at the Virgin Hotel on Thursday;timeout.com +bad;21;8;Computer Analogy to the Human Body Article Needed;self.buildapc +bad;21;5;Advise need please from phychonaughts;self.LSD +bad;21;7;PS4 Crotas End Normal Mode Fresh Run;self.Fireteams +bad;21;7;Canada to involve itself in the Ukraine;self.canada +bad;21;8;Notifications are messed up after VZW Lollipop udpate;self.LGG3 +bad;21;8;DIPLOMACY Tunisia calls for a referendum in Ogaden;self.worldpowers +bad;21;7;Is he saying we have caller ID;gfycat.com +bad;21;4;WDYWT Air Max 95;imgur.com +bad;21;12;NA S Gold Plat Looking for Top Laner for Ranked 5s Team;self.TeamRedditTeams +bad;21;5;Dawn Glimpses Ceres North Pole;jpl.nasa.gov +bad;21;14;I made 50 in about an hour and a half yesterday using WiFi Metropolis;self.beermoney +bad;21;2;The Clam;penmen.com +bad;21;11;Any advice on how to style my mop whilst its growing;self.FierceFlow +bad;21;18;Fort Worth firefighter cleared of murder accused of punching elderly 78 year old man at TCU spring game;dallasnews.com +bad;21;5;The Howling Dogs Railroad Blues;youtube.com +bad;21;20;H Flip knife Doppler Phase 4 Scratchless AK Redline FT ST IBP Edition M4 X Ray FN ST W Keys;self.GlobalOffensiveTrade +bad;21;6;Can You Guess Which One Collapsed;i.imgur.com +bad;21;13;TIL that the icons for apps on my phone are in alphabetical order;self.self +bad;21;5;Crypto Challenge Help Cracking this;self.codes +bad;21;30;Is there a way to make my subscribed subreddits alphabetical Last time I pressed sync they all were erased That was about a year ago though Scared to try again;self.AlienBlue +bad;21;17;The only thing that I am certain of in this filthy pressing world in which we live;imgur.com +bad;21;17;Discussion about negating and rejecting cultivation and the traps that can arise to clinging to no view;self.zen +bad;21;10;Where can I buy a jersey that is responsibly priced;self.rockets +bad;21;4;Sente imensamente mal homem;boards.4chan.org +bad;21;8;Perovskite Leads to 100 Percent Efficient Nanowire Lasers;spectrum.ieee.org +bad;21;25;just found out the Elder Scrolls Online lets you make a fat or stocky female though not a bodybuilder exactly Still that s pretty cool;self.GirlGamers +good;21;9;My friend s fingers are all the same length;i.imgur.com +bad;21;4;Stop pressing the button;self.thebutton +good;21;10;On a hike last fall in Lake Louise AB 2448x3264;imgur.com +bad;21;3;NA LF Godins;self.PuzzleAndDragons +bad;21;4;dryness stringiness after dying;self.curlyhair +bad;21;16;New Belgium to team up with Ben amp Jerry s for Salted Caramel Brownie Brown Ale;cnn.com +bad;21;5;For Hire need logo branding;self.forhire +bad;21;14;Yet Another Faked Guilt Trip Holocaust survivor s love story exposed as a fraud;telegraph.co.uk +bad;21;19;I have something that looks like a permanent pimple anyone know what it is or what one can do;self.SkincareAddiction +bad;21;9;50 off Unlimited Ride Wristbands for Tampa Downtown Carnival;cldeals.com +bad;21;7;What does libertarianism look like in practice;self.PoliticalDiscussion +bad;21;11;First run of new Magpul G17 GL9 magazines defective Replacements inbound;imgur.com +bad;21;10;The origins of Sburb possibly linked to the house juju;self.homestuck +bad;21;7;H 8 CS GO Keys W H1Z1;self.SteamGameSwap +bad;21;7;Moonlit Ace gets his cutie mark back;i.imgur.com +bad;21;8;Hot amateur pegging Moaners x post r MistressPorn;xvicious.com +bad;21;9;Another look at MySQL at Twitter and incubating Mysos;blog.twitter.com +bad;21;10;metalcore War of Ages Guide for the Helpless motivational lyrics;youtu.be +bad;21;4;Munich oktoberfest worth it;self.travel +good;21;6;The joys of my job IT;imgur.com +bad;21;3;anyone do graphics;self.CoDCompetitive +bad;21;17;A Camerman has lost his job for the debate on BBC1 tonight That Robot so so cool;self.britishproblems +bad;21;8;part of a weight loss before and after;i.imgur.com +bad;21;7;VIDEO Bones Homage to Hart to Hart;tvline.com +bad;21;6;I took this surrealist photo Thoughts;flickr.com +bad;21;6;My 2 Cents on Saturday EotW;self.hcteams +bad;21;12;Olmec has been pretty bitter since Legends of the Hidden Temple ended;i.imgur.com +bad;21;10;Senate Kills Bill To Make Bible State Book Until January;scrippsmedia.com +bad;21;5;Sewing your own bras thoughts;self.ABraThatFits +bad;21;17;H a bunch of humble keys W some other steam games but will consider any reasonable offer;self.softwareswap +bad;21;2;Stalker alien;sageevans.deviantart.com +bad;21;7;GTA V PC Jagged edges Please help;self.GTAV +bad;21;8;Official Atleti Sticker Album and some other goodies;self.atletico +bad;21;4;BRM is too easy;self.hearthstone +bad;21;32;WP A Artificial Intelligence has found away out of a closed network and is trying to find a way to interact with humans to destroy them it stumbles upon World Of Warcraft;self.WritingPrompts +bad;21;15;Lockheed Martin Hopes Talk of Iran Getting S 300 Will Sell More F 35 Planes;news.antiwar.com +bad;21;6;V deo de escalada em Itacoatiara;companhiadaescalada.com.br +bad;21;6;Mensis Cages look a lot like;self.bloodborne +bad;21;6;Need help upgrading building special situation;self.buildapcforme +bad;21;13;What s the fattest thing you ve done with food out of laziness;self.AskReddit +bad;21;32;Senate Committee Approves Education Overhaul The bill reauthorizes and updates the Elementary and Secondary Education Act ESEA which was last overhauled in 2001 with President Bush s No Child Left Behind program;whitehouse.senate.gov +bad;21;4;No Spoilers ASOIAF Playlists;self.asoiaf +bad;21;5;Anesthesia Assisted Rapid Opioid Detox;sciencebasedmedicine.org +bad;21;2;Marcus Iron;4.bp.blogspot.com +bad;21;10;Millions of Tiny Dopamine Transactions redditor cracks code to Facebook;imgur.com +bad;21;17;WTF is this on my screen It stays there until reboot no matter what is on screen;imgur.com +bad;21;9;Giveaway 20 00 Amazon Gift Card 05 14 15;kookiekrysp.com +bad;21;5;Bury Tomorrow Hail the Lost;youtube.com +bad;21;8;Louisiana deputy shot while directing traffic near school;abcnews.go.com +bad;21;9;Low Carb Gluten Free Slow Cooker Lemon Garlic Chicken;the-lowcarb-diet.com +bad;21;1;1027;self.SVExchange +bad;21;3;overview for hanyablogger;reddit.com +bad;21;12;ELI5 Why are there weight limits for ball carriers in youth football;self.explainlikeimfive +bad;21;9;ONLY NY x Greats Spring Summer 2015 Royale Pack;highsnobiety.com +bad;21;5;This fella sure was hungry;imgur.com +bad;21;18;Hey guys I wrote a song about getting my TAX RETURN and then uhh did some other stuff;youtube.com +bad;21;9;One Million Dollars vs One Millionth of a Dollar;reddit.com +bad;21;4;pussy talks lil wayne;i.imgur.com +bad;21;7;2015 NHL Draft Profile 15 Jakub Zboril;lastwordonsports.com +bad;21;7;H AWP Asiimov ft W 23 Keys;self.GlobalOffensiveTrade +bad;21;12;How virtual reality is going to fix society and humanize social media;uploadvr.com +bad;21;9;Hello r writing I m looking for an intern;self.writing +bad;21;6;No reason to browse new today;i.imgur.com +bad;21;8;Doos in Tamriel Episode 15 Crown Store Rant;self.elderscrollsonline +bad;21;9;Scumbag AT amp T Congratulations on owing us money;imgur.com +bad;21;2;Fit girl;m.imgur.com +bad;21;11;Why does in become im before possible but not before put;self.linguistics +bad;21;8;PC doesn t recognize second XBOX 360 gamepad;self.pcmasterrace +bad;21;5;Dawn Glimpses Ceres North Pole;jpl.nasa.gov +bad;21;3;I am 23;self.thebutton +bad;21;5;terrain party height map increment;self.CitiesSkylines +bad;21;10;Ray the Blacksmith bessa r2a 35mm 2 5 fuji 200;daviddominguez215.tumblr.com +bad;21;13;Academic Very Short Science Career Survey Preferably College students but anyone can answer;surveymonkey.com +bad;21;8;Recruiting VictrixMortalis friendly and helpful clan of friends;self.ClashOfClansRecruit +bad;21;15;lined his post surgery cage with paper towels for easy cleanup woke up to this;imgur.com +bad;21;6;Wings prospect just beat Sedins record;self.DetroitRedWings +bad;21;14;Fallout 3 and NV need the ability to set new custom fast travel locations;self.Fallout +bad;21;7;Looks like lunchtime for Americans just happened;self.thebutton +bad;21;7;FT Vintage DL and others ISO List;self.beertrade +bad;21;4;John Cena Merch NSFW;i.imgur.com +bad;21;4;BBs and shot spread;self.WorldOfWarships +bad;21;14;Has anyone noticed what s wrong with Mangle s second head in this picture;img2.wikia.nocookie.net +bad;21;12;Hey guys Lent s over That means I m back to shitposting;self.mylittleandysonic1 +bad;21;8;Fluff Okay Which one of you is it;i.imgur.com +bad;21;9;it took all of 2 days GTA5 in VR;self.funhaus +bad;21;5;Silicon God Emoji 2 42;youtu.be +bad;21;4;Party in YEAH Poetry;youtube.com +bad;21;4;Reroll Advice Ancient Calamity;self.Diablo3DemonHunters +bad;21;30;20 year old child molester stabs the mother of the 13 year old he s molesting to death after being told they could not see each other Xpost r morbidreality;witn.com +bad;21;7;LulzBot Mini Finally A Reliable 3D Printer;readwrite.com +bad;21;10;EU says eager to finalize probe into Google market abuse;phys.org +bad;21;9;Airlines Are at Risk of Being Hacked GAO Warns;eweek.com +bad;21;8;Target Settles With MasterCard For US 19 Million;theregister.co.uk +good;21;10;Exceptional Logging of Exceptions in Python x post r programming;loggly.com +bad;21;7;H 5 MAX BETS W 24 keys;self.GlobalOffensiveTrade +bad;21;6;Found this thought it was funny;imgur.com +bad;21;18;The Minecraft Server a lesson on why to not roll out your own data formats and responsible disclosure;reddit.com +bad;21;5;Can Someone Please Recreate This;self.skrillex +bad;21;9;Trust Online is at Breaking Point for UK Organisations;informationsecuritybuzz.com +bad;21;31;QUESTION Chicken is often used because it is healthy but it s also very dry and plain What sauces do you guys use for dipping or topping chicken with besides ketchup;self.fitmeals +bad;21;7;Help feel like I m getting screwed;self.obamacare +bad;21;6;foreign driver offers solution to gov;arstechnica.com +bad;21;5;A Baby and her bunny;imgur.com +bad;21;4;Collaborative robotics software development;opensource.com +bad;21;11;Geek Trivia The Longest Running Software Line Produced By Microsoft Is;howtogeek.com +bad;21;8;Paypal dispute tracking number not work for USPS;self.paypal +bad;21;19;NSV When your fanciest jeans fit again you re basically required to wear them that night right Also pickles;self.keto +bad;21;5;10 Trickiest Mobile Security Threats;esecurityplanet.com +bad;21;17;Most of Them are About People Conquering the Problems They Created for Themselves in the First Place;imgur.com +bad;21;13;Could somebody near The Hague copy a document for me and my colleague;self.thenetherlands +bad;21;5;Ransomware Teslacrypt Still Targeting Gamers;threatpost.com +bad;21;3;Home from School;cdn.awwni.me +bad;21;12;Fire TV 1 5 update knocked out keyboard mouse functionality please help;self.cordcutters +bad;21;2;me irl;i.imgur.com +bad;21;3;Breach Defense Playbook;darkreading.com +bad;21;11;Server crashing Minecraft exploit published after game maker failed to act;zdnet.com.feedsportal.com +bad;21;9;PC M9 Doppler FN Phase 3 0 037 FV;self.GlobalOffensiveTrade +bad;21;12;Grand Theft Auto V community hacks in basic Oculus Rift VR support;pcworld.com +bad;21;9;FT Free Redemption All Region Limited to 3 Spots;self.pokemontrades +bad;21;1;Back;i.imgur.com +bad;21;5;c Drawing shapes in console;self.learnprogramming +bad;21;18;Just came out of a long clean streak and I want to quit for good but should I;self.leaves +bad;21;12;Buying or Selling There s a cars com equivalent for commercial trucks;fleetmover.com +bad;21;9;Humans doing a Rooster sound who is the best;youtube.com +bad;21;10;H 25 Restaurant com GC W 5 Amazon GC Paypal;self.giftcardexchange +bad;21;6;Creating a new page automoderator schedule;self.AutoModerator +bad;21;12;Do bearded dragons recognize their owners What reptiles do recognize their owners;self.reptiles +bad;21;9;TX Need advice about an unfair uncomfortable work environment;self.legaladvice +bad;21;8;Disappointed about not seeing Gleeson in the trailer;self.StarWarsLeaks +bad;21;4;People who litter why;self.AskReddit +bad;21;1;Damn;imgur.com +bad;21;7;Big Chicago tournaments coming up in May;self.sm4sh +bad;21;6;HUGE LIVE STREAM April 17 2015;self.NewTubers +good;21;32;MSW said the audio wasn t legit according to his sources and more or less called the guy an idiot for believing it was Can we ban him as a source already;self.StarWarsLeaks +bad;21;5;Team Comp Criticisms and Analysis;self.heroesofthestorm +bad;21;5;Good looking growth u s;self.BabyBumps +bad;21;10;For those of you who started in small Accounting firms;self.Accounting +bad;21;16;like how am I now supposed to get a chipmunk voice without giving spiderman a BJ;i.imgur.com +bad;21;10;After a sudden shutdown my computer is lagging a bit;self.techsupport +bad;21;6;Why are wilderness aviansies always deserted;self.2007scape +bad;21;17;Redditor would never sexualize a m lady he s single btw x post r niceguys r whiteknighting;i.imgur.com +bad;21;8;Came for the dicks stayed for the freedom;i.imgur.com +bad;21;8;IBM unbolts vast threat database to fight cybercrimes;itworld.com +bad;21;7;There s a tomato on my desk;imgur.com +bad;21;7;Hot amateur pegging and cum from anal;xvicious.com +good;21;3;Incoming Transmission STOP;self.fivenightsatfreddys +bad;21;19;12 Racist a hole still doesn t understand that being a racist a hole has consequences worldnews 20 comments;reddit.com +bad;21;4;Song from Princess Mononoke;self.NameThatSong +bad;21;13;Is there a spotify playlist that is updated with the new Monstercat songs;self.Monstercat +bad;21;29;My stepdad had his first colonoscopy about a month ago My mom never laughs at toilet humor but she thought his farts were the funniest thing ever 1 51;youtu.be +bad;21;5;Scott Eastwood The gay interview;dallasvoice.com +bad;21;4;XBOX ONE Xyor help;self.Fireteams +bad;21;35;I ve spent my afternoon off working in the garden Now time for a hot shower anybody wanna come help me clean myself up And maybe get me dirty again PM your thoughts English 23;i.imgur.com +bad;21;5;We ve come so far;i.imgur.com +bad;21;15;Hey Reddit what at some of the best conspiracy theories conspiracy documentaries on the internet;self.AskReddit +bad;21;7;Big Chicago tournaments coming up in May;self.SSBPM +good;21;16;Notice Adam is following proper gun safety finger off the trigger pointed in a safe direction;i.imgur.com +bad;21;7;Question Sort of Getting Desperate for Gjally;self.DestinyTheGame +bad;21;10;Colts Work Out Colorado State Pueblo Pass Rusher Darius Allen;horseshoeheroes.com +bad;21;11;My new EDC bag just came in the mail Timbuk2 Prospect;i.imgur.com +bad;21;24;Instead of surpressing special talents to make ponies equal Starlight Shimmer had found a way to divide and share special talents among her followers;self.mlpwritingprompts +bad;21;4;Pregame things to do;self.NYCFC +bad;21;6;Reddit what s your Blowjob Story;self.AskReddit +bad;21;6;Cities Skylines Live 03 Arc Roads;youtube.com +bad;21;22;Would Majordomo be playable if the Ragnaros he summoned actually replaced swapped your hero and your hero would return when ragnaros died;self.hearthstone +bad;21;45;I am an average 28 year old with 60k in college debt I am married and me and my wife make 45k about 90k combined what should I be doing to pay down my debt put down on a house and save for retirement and;self.personalfinance +bad;21;10;Jen Murphy Stand Up Pondering A Career Change Into Whoring;youtube.com +bad;21;2;underwear help;self.ftm +bad;21;18;How can I change it on Facebook so that videos don t automatically play on my news feed;self.NoStupidQuestions +bad;21;10;My great uncle s traveling kit from the 70 s;imgur.com +bad;21;15;MRW I watch the new Star Wars trailer and Chewie and Ford are in it;i.imgur.com +bad;21;20;Discussion So who else is waiting for this week s update for DeeJ that starts out Soooo about that Raid;self.DestinyTheGame +bad;21;1;200;skai.gr +bad;21;7;Big Chicago tournaments coming up in May;self.SSBM +bad;21;17;So I decided to be a polar bear His name is Chorage Like Anchorage Alaska Get it;imgur.com +bad;21;29;I have my first crush in a long time In person it s easy and fun talking to her But I m insecure about texting and kind of confused;self.socialskills +bad;21;16;EVENT A Society of Assassins Thieves and Spies The Cabal of the Obsidian Rose is formed;self.SuperFantasyPowers +bad;21;6;WTB yellow classic logo size Medium;self.Supreme +bad;21;24;Discurso de la presidenta del Parlamento griego en la sesi n inaugural de la Comisi n de la Verdad sobre la Deuda P blica;self.podemos +bad;21;7;What do you do for overnight diapers;self.breakingmom +bad;21;11;Way out of my league until I had something m f;self.gonewildstories +bad;21;11;Hollow of Darkness 18 2 Ferra Torr Brutality Play Thing 2140;self.kryptguide +bad;21;9;Gulp Browserify Watchify Es6ify Reactify sourcemaps are messed up;self.webdev +bad;21;9;PS4 LF4M VoG Hard Fresh Post info for invite;self.Fireteams +bad;21;1;Waterfalls;imgur.com +bad;21;28;Vaughn Palmer Provincial government land sales helped with budget on razor s edge Emails show a sense of urgency on getting proceeds banked by end of fiscal year;vancouversun.com +bad;21;14;I m moving out on my own soon should I upgrade to a 55gal;self.Aquariums +bad;21;7;MR to the new Star Wars trailer;i.imgur.com +bad;21;7;Draw for me A new mail icon;self.DrawForMe +bad;21;12;Can anybody make some background pics from the new Star Wars trailer;self.xboxone +bad;21;8;Interesting new device to make stove top caramel;meldhome.com +bad;21;24;WP Write a short story of your choice but if it were ever adapted to film would have nothing but jokes a la Airplane;self.WritingPrompts +bad;21;16;Uncle sent me this last Christmas It s an old Gatorade cap from the 70 s;i.imgur.com +bad;21;4;Alaskan Homeward Bound Cast;i.imgur.com +bad;21;7;What series amp episode is this from;self.TopGear +bad;21;5;News bloopers are the best;youtube.com +bad;21;13;Now the customer pays service charges for the privilege of being their customer;imgur.com +bad;21;8;FT Stuff and Things LF 9 Scrap Codes;self.pokemontrades +bad;21;10;Channahon IL Found in my house VERY hard to kill;lh5.googleusercontent.com +bad;21;5;Media Yep This Just Happened;self.DestinyTheGame +bad;21;22;Why did Czechoslovakia not ignore the Soviet Union s warning and elect to participate in the Marshall Plan as they had wished;self.AskHistory +bad;21;8;Glitch Mewtwo can still play with 0 stock;youtu.be +bad;21;12;Ryan Gosling in Talks to Join Harrison Ford in Blade Runner 2;slashfilm.com +bad;21;32;When I was little my grandmother would pay me a nickel for every dandelion I rooted from her lawn Now you pay a dollar for them to put it on your salad;self.Showerthoughts +bad;21;8;Advice on how to handle this job opportunity;self.Advice +bad;21;10;I fixed the lack of Stars in the T62 Crew;i.imgur.com +bad;21;6;American Soccer Is Surprisingly Huge Overseas;ibtimes.com +bad;21;16;Jake Shane The Upper Sun Singer Songwriter 2015 A fusion of Flamenco and Americana awesome guitar;youtube.com +bad;21;6;Q What Phase is this Doppler;self.GlobalOffensiveTrade +bad;21;12;Two Gallants have a new album out and it is SO GOOD;play.spotify.com +bad;21;9;Minimum Wage Workers Walk Out Rally For 15 Hour;denver.cbslocal.com +bad;21;4;AMA Request Patrick Kane;self.IAmA +bad;21;5;ELI5 what Androstenedione is please;self.explainlikeimfive +bad;21;3;Lucina Amazon UK;amazon.co.uk +bad;21;7;Bad symptoms after changing my water intake;self.AskDocs +good;21;7;Andrew Hawkins showing off his footwork again;instagram.com +bad;21;7;A few college kids need your opinions;self.southafrica +bad;21;10;H Karambit Crimson Web FN W M9 Sapphire and Ruby;self.GlobalOffensiveTrade +bad;21;4;Bumper stickers done right;imgur.com +bad;21;10;Miracle Coach Brooks Addresses Team Pre Game pump up material;youtube.com +bad;21;3;No navel ridge;self.piercing +bad;21;10;What fact is useful to know for life in general;self.AskReddit +bad;21;7;Would a slow speed accident break struts;self.MechanicAdvice +bad;21;8;Grand Theft Auto V Scooter Brothers Easter Egg;youtube.com +bad;21;9;Currently it s April 16 2015 at 03 46PM;self.every15min +bad;21;9;The poorly drawn charmander is just what I needed;self.offmychest +good;21;6;Windy day on the tennis court;i.imgur.com +bad;21;6;AnimeSongCollabo Winter 2015 OP ED Covers;youtube.com +bad;21;5;New knife my first ZT;imgur.com +bad;21;7;European Commission clarifies new GMO import rules;euractiv.com +bad;21;6;RMT Game Over 1FT 7 2M;i.imgur.com +bad;21;3;Not U Kodi;i.imgur.com +bad;21;18;Question Can anyone explain to me what the meaning of the triangles are in my J J dictionary;self.japaneseresources +bad;21;18;The New Free Twitch Emotes are from Old Spice the deoderant one is already great for copy pasta;epicpowergaming.com +bad;21;10;discussion Buying a graphics card cant decide which to choose;self.buildapc +bad;21;8;FrayJota busca feedback para sus tutoriales de GameMaker;plus.google.com +bad;21;14;PC Just a small and quick check on a gun with Kato 2014 stickers;self.GlobalOffensiveTrade +bad;21;10;HHIG dass der gro artige Harald ein FMA veranstaltet hat;self.kreiswichs +bad;21;2;Pure White;cdn.awwni.me +bad;21;11;Cigarette Smoking Drops Yet Remains a Significant Cause of Cancer Deaths;cancer.org +bad;21;18;Jennifer Dolling s Masters Thesis on adopting an Opt out system for organ donation instead of Opt in;self.kidney_match +bad;21;7;484 174 65 Train games r WTF;reddit.com +bad;21;10;JJo glad to be ahead of the curve this offseason;houstontexans.com +bad;21;8;Why Netflix s Insane Valuation Actually Makes Sense;seekingalpha.com +bad;21;7;Leaving MMOs Good single player exploration games;self.gaming +bad;21;4;Decay info and question;self.playrust +bad;21;2;Flipped Magic;imgur.com +bad;21;2;VY1V4 RING;nicovideo.jp +bad;21;11;This was my smoke spot for the last week Pacific Northwest;imgur.com +bad;21;6;It s getting out of hand;imgur.com +bad;21;11;Interested in World Events or Military Matters Check out r NorthAtlanticTreaty;self.promotereddit +bad;21;4;The thoughts are back;self.SuicideWatch +bad;21;14;Just saw Devin Funchess and Tray Walker at the airport with Seahawks name plates;self.Seahawks +bad;21;11;Mongol Armed Forces with Tug Banner in Sukhbataar Square Ulaanbaatar 2523x3784;upload.wikimedia.org +bad;21;5;Zoku Ice Cream Maker set;facebook.com +bad;21;5;He put away the laundry;self.breakingmom +bad;21;13;DA appoints well known trial lawyer as special prosecutor in Boyd shooting case;krqe.com +bad;21;5;jpn palico quests and others;self.monsterhunterclan +bad;21;3;Six Days Left;self.LongDistance +bad;21;9;Less than 4 days left to register to vote;gov.uk +bad;21;7;LORE Lords Of The Darkness THE VEX;self.DestinyTheGame +bad;21;13;Websites look really basic and don t allow me to access certain things;self.techsupport +good;21;4;This is not CGI;twitter.com +bad;21;6;Ugh they backpedaled and apologized Boooooo;cbc.ca +bad;21;14;Do you wanna know why people are making theories on why Ray is leaving;self.roosterteeth +bad;21;4;Virgin cock 23 yo;imgur.com +bad;21;13;Why aren t Basically unknown and EE s disciples playing Dreamleague right now;self.DotA2 +bad;21;5;Erie Canal Packet Boat Stories;eriecanal.org +bad;21;9;Hollow of Darkness 13 4 Shinnok Kutie Icon 1340;self.kryptguide +bad;21;12;Not counting rivals what school do you hate just cause you do;self.CFB +bad;21;6;Elevator system in Use Rail Systems;youtube.com +bad;21;5;Best mens haircut in Shreveport;self.shreveport +bad;21;6;Need help deciding on a 60;self.MechanicalKeyboards +bad;21;38;Since it s men who oppressed women shouldn t men be the ones fighting for equality Isn t telling women they have to do it or excluding men from fighting sexism just another way to keep women struggling;self.AskReddit +bad;21;13;Help in getting out of the 1K mmr trench Support and hard carry;self.DotA2 +bad;21;3;PC Motorcycle Meet;self.GTAV +bad;21;13;9 10H ISO 1 Mage 1 Lock for final two core raiding slots;self.wowguilds +good;21;13;I M NOT YELLING video archive 135 matches w amp w o spoilers;self.smashbros +bad;21;10;Keep the rpf s or move on to something else;imgur.com +bad;21;4;Verysmart man enjoys puzzles;imgur.com +bad;21;7;Wigan s Ovation Skiing In The Snow;youtu.be +bad;21;8;What s your favorite classic episode and why;self.classicwho +bad;21;6;This douchebaggery needs to be punched;imgur.com +bad;21;7;Lucina mains can I get some advice;youtube.com +bad;21;4;Whisker Tickles Day 503;youtube.com +bad;21;7;Showing my face for the first time;imgur.com +bad;21;4;Zero to Z Cup;imgur.com +bad;21;8;Michael Jackson Get On The Floor Kon Extended;youtube.com +bad;21;2;Mellisa Clarke;sexinhot.blogspot.com +bad;21;9;How my cellphone saved me from being a purple;self.thebutton +bad;21;6;2015 North American Collegiate Championships Meetup;self.leagueoflegends +bad;21;5;Upkeep of my new bone;self.Trombone +bad;21;15;I hate the things I say and how I act in social situations Anyone else;self.depression +bad;21;14;Apparent 1st Phase of Regional Express Rail Rollout via Toronto Star reporter Tess Kalinowski;imgur.com +bad;21;8;Oculus Rift DK2 First Encounter Arma 3 Overpoch;youtube.com +bad;21;13;DA appoints well known trial lawyer as special prosecutor in Boyd shooting case;krqe.com +bad;21;19;American soon to be Watch owners are you going to use Apple Pay more often because of the Watch;self.AppleWatch +bad;21;2;First Names;self.AskMen +bad;21;10;These Automator Actions Make Apple s Photos Way More Useful;lifehacker.com +bad;21;8;DIY spinning product shots using a cake turntable;youtube.com +bad;21;19;Everyday can be either good or bad but we cant know until we wake up Schr dinger s day;self.Showerthoughts +bad;21;11;H AK Blue Laminate MW Katowice 2014 stickers W 2 keys;self.GlobalOffensiveTrade +bad;21;6;Portland Trail Blazers History by Season;imgur.com +bad;21;5;Retheming a stock market game;self.tabletopgamedesign +bad;21;12;Will the non pressers be the caretakers for those pressers seeking rehabilitation;self.buttonrehab +bad;21;16;How is no one speaking about this It s Nearly Impossible To Play Jobs With Friends;self.GrandTheftAutoV_PC +bad;21;11;What are some creative projects for lots of fiber optic jumpers;self.AskReddit +bad;21;2;Indistinct results;self.HearthArena +bad;21;11;Mongol Armed Forces with Tug Banner in Sukhbataar Square Ulaanbaatar 2523x3784;upload.wikimedia.org +bad;21;4;I would say so;imgur.com +bad;21;6;An earthquake of a snowstorm Column;usatoday.com +bad;21;7;Dev Studios that could make good movies;self.pcgaming +good;21;13;Amazing This LoL Player Made It to LPL Quarterfinals without a Small Intestine;esportsexpress.com +bad;21;4;X1 LFG VOG NM;self.Fireteams +bad;21;9;Some people age well and some people don t;i.imgur.com +bad;21;5;I like my lips sometimes;imgur.com +bad;21;35;I made this video resume as a joke in response to a crappy employer but now I also send it when applying for other jobs and it s actually NOT kept me from being hired;youtube.com +bad;21;7;My balls are closer to my body;self.NoFap +bad;21;21;Incredibly powerful and moving comic piece by a mother who PTSD Such a difficult thing to illustrate to others Potential NSFW;nautil.us +bad;21;5;subreddit for getting tattoo advice;self.findareddit +bad;21;11;He is getting a haircut this weekend Most of them actually;imgur.com +bad;21;8;How are you spending these resource saving days;self.kancolle +bad;21;7;Matt Kemp being an awesome human being;youtu.be +bad;21;5;First tire change on Ducati;self.TrueDucati +bad;21;5;MFW I browse r funny;i.imgur.com +bad;21;8;Epic Gurren Lagann Rap Kamina by VI Seconds;youtube.com +bad;21;9;Tips and things to look for for upgrading cellos;self.Cello +bad;21;3;Relapsing or not;self.NoFap +bad;21;8;MRW I watch the new Star Wars teaser;i.imgur.com +bad;21;6;Giveaway World stationary day prize hamper;prpage.co +bad;21;4;Hatsune Miku Love Song;nicovideo.jp +bad;21;16;Todd Gurley Discussion Would You Take Him in the First Round if You re the Browns;self.Browns +bad;21;26;Antes de legalizar la prostituci n tendr amos que dignificar el sexo y el cuerpo que las religiones machistas se encargaron y se encargan de denigrar;self.podemos +bad;21;25;Microsoft should consider including Halo MCC in Games with Gold near the launch of Halo 5 given all of the predominant issues have been corrected;self.xboxone +bad;21;4;Brittany furlan on snapchat;imgur.com +bad;21;11;Request Can you help me to finish my half sleeve tattoo;self.ICanDrawThat +bad;21;18;Bf just asked me to prom two days prior by asking me if I had a prom dress;imgur.com +bad;21;11;FT 1 RNG d 6IV Jolly Ditto LF 1 casual Reshiram;self.pokemontrades +bad;21;13;TCG Players whats a card or concept you don t want in Heartstone;self.hearthstone +bad;21;8;Hollow of Darkness 9 2 2000 Koins 650;self.kryptguide +bad;21;9;Build Ready Not too sure what I m doing;self.buildapc +bad;21;7;Center Console Jeep Cherokee 84 96 Tan;2ndlifejeeps.com +bad;21;16;Hey casual people If you were accepted to Hogwarts what house would you be in Why;self.CasualConversation +bad;21;17;Help My cats who have known each other for two years suddenly have started attacking each other;self.cats +bad;21;18;Serious Participants of Russian roulette Why did you take part What was the atmosphere in the room like;self.AskReddit +bad;21;11;Silly question that may or may not have been asked before;self.Borderlands +bad;21;12;PS4 LF4M VOG hard mode add deadlyxsniper98 i can be relic holder;self.Fireteams +bad;21;24;What technological advance have you seen been made in movies shows video games and you re surprised haven t been made in real life;self.AskReddit +bad;21;29;How is it that the Hubble telescope can take vivid pictures of distant galaxies and yet we have to send missions to places like Pluto to get detailed photos;self.AskReddit +bad;21;6;Request Help Finding A Music Video;self.hiphopheads +bad;21;16;Gonzalo Higua n Goal better angle good call on no offsides however I say hand ball;playola.co +bad;21;14;If this post gets five upvotes I will make another asking for six upvotes;imgur.com +bad;21;12;TIL that in 1970 Jeep built a sports car The XJ 001;hemmings.com +bad;21;7;Vote of No Confidence for President Kelley;self.und +bad;21;22;My federal tax refund was larger than I expected How do I fix my withholdings so this doesn t happen next year;self.personalfinance +bad;21;8;Tip Copying Guides from One PSD to Another;self.graphic_design +bad;21;4;That fluffy bunny butt;imgur.com +good;21;15;My mom is too sensitive She thinks my girlfriend hates her over the smallest thing;self.AskMen +bad;21;7;How free is a macbook running linux;self.freesoftware +bad;21;7;Does Rey ever have those Skywalker genes;i.imgur.com +bad;21;26;PSA Oculus released a new runtime 0 5 0 1 2 weeks and if you don t update the Rift won t work on new demos;self.oculus +bad;21;3;Hausaufgabe Dragonslayer Kino;self.rocketbeans +bad;21;5;So Gamestop did something right;self.amiibo +bad;21;38;TIL Norway s prisons are made to help you readjust to society They don t have barred windows and have sharp knives in the kitchen Norway believes that you shouldn t have your freedom taken away in prison;reddit.com +bad;21;23;Jordan Hill The first month I was showing energy but the first time having all these minutes I started feeling myself getting fatigued;twitter.com +bad;21;8;Why can t i have a normal life;self.MyLittleSupportGroup +bad;21;12;Store 3 Chroma knives Tiger doppler and marble CSGO COPIES FOR 4K;self.GlobalOffensiveTrade +bad;21;8;Interesting results from the stackoverflow 2015 developer survey;self.Israel +bad;21;11;Was it only me who was freaked out when this happened;youtube.com +bad;21;6;Clipping birds wings could be dangerous;self.parrots +bad;21;3;April 17 2015;self.NoFap +bad;21;4;Parry spammers in arena;self.DarkSouls2 +bad;21;6;Other Lojo Master 3 LagerrSK 76561198124795302;self.csgoscammers +bad;21;9;Five year old shocked by electric fence for dog;fox23.com +bad;21;18;MRW I m trying to act fancy and order something gross and I just want mac and cheese;i.imgur.com +bad;21;12;H Kara Doppler P2 M9 Fade 90 Karanilla W 290k 138k 78k;self.GlobalOffensiveTrade +bad;21;22;Middle school class uses Data Viz to show why The Iliad is the greatest war story ever told Video link in comments;amorsciendi.tumblr.com +bad;21;3;Self adhesive styrene;self.crafts +bad;21;18;H ST Karambit Doppler fn P2 99 pink W Pure keys or Easy sellable items CHEAPER then normal;self.GlobalOffensiveTrade +bad;21;8;How to install phpList in under 3 minutes;self.Emailmarketing +bad;21;7;Arran Millenium Casks Edition 2013 A Review;i.imgur.com +bad;21;9;Free Queen Mattress amp Boxspring almost new Park Slope;self.FreeStuffNYC +bad;21;7;Champions with power curves similar to Caitlyn;self.summonerschool +bad;21;8;Surprise draft entrant Donovan Smith could fit Bears;chicago.suntimes.com +bad;21;12;Would people be interested in a Cactus Canyon tips amp tricks video;self.tf2 +bad;21;4;Free Couch Today Newark;self.FreeStuffNYC +bad;21;7;Vintage 1940s Nesco Roasting Oven Yonkers NY;self.FreeStuffNYC +bad;21;15;H ST Butterfly Fade 30 70 W 175 pure keys 185 k in betting items;self.GlobalOffensiveTrade +bad;21;6;Klippan Ikea Sofa Red Woodside Queens;self.FreeStuffNYC +bad;21;11;Creme Caramel Directed and Produced by Canada not the country NSFW;nowness.com +bad;21;4;Free Bricks Long Valley;self.FreeStuffNYC +bad;21;1;Trippy;i.imgur.com +bad;21;10;What does it take to get into a successful threesome;self.LetsGetLaid +bad;21;14;24 M4F Nashville TN Bigger guy looking for BBW for FWB situation maybe more;self.r4rplus +bad;21;3;I feel lost;self.hearthstone +bad;21;3;Can you not;self.offmychest +bad;21;9;Star Wars The Force Awakens Teaser Trailer 2 Official;youtube.com +bad;21;26;Justin bieber If this post gets to the frontpage it Will show on Google images when you Search Justin bieber and gives you free reddit gold;imgur.com +bad;21;6;People who sign their YouTube comments;imgur.com +bad;21;6;Hey everybody is it the playoffs;self.hockeycirclejerk +bad;21;36;Today s daily classical guitar upload is a harmonically beautifull composition by Leo Brouwer Estudio Sencillo N 6 Please enjoy and don t forget to subscribe for daily classical guitar video uploads Feedback more than welcomed;youtube.com +bad;21;3;Tips for grenadier;self.Hawken +bad;21;3;Is cereal bullshit;self.shittyaskreddit +bad;21;28;I don t know why but on my phone cover I doodled that vinylized image of that guy s digitalized image of that guy s shitty Charmander tattoo;imgur.com +bad;21;18;Interview with Falconshield and guest singer Nicki Taylor sings Ashe in the current top thread on the subreddit;team-dignitas.net +bad;21;15;Do you get the bonus pre order money on every playthrough or just the first;self.GrandTheftAutoV_PC +bad;21;6;Social Club not loading crashing FIX;self.GrandTheftAutoV +bad;21;10;ZeusHides is playing LeagueofLegends 1pm pst advice and support encouraged;self.vgstreams +bad;21;6;Nutritional information is for raw meat;self.loseit +bad;21;12;Sell 3 Red Tulle and Chantilly Bridesmaid Dresses Never worn 100 Each;self.weddingswap +bad;21;27;Me 21M with my girl I m dating 21F of a month I opened up to her last night and just feel like I screwed things up;self.relationships +bad;21;12;CGF Bloodborne part 22 Rom the Vacuous Spider boss and pregnant ladies;youtu.be +bad;21;6;What grudge are you still holding;self.AskReddit +bad;21;5;Diapers Help Your Plants Grow;youtube.com +good;21;16;A UK newspaper weren t invited to the Game of Thrones premiere so wrote this review;imgur.com +bad;21;3;Online Distance Relationship;self.TrollRelationships +bad;21;11;Wikileaks has published the complete Sony leaks in a searchable database;theverge.com +bad;21;1;Request;self.skrillex +bad;21;6;If Middle Earth were Europe 807x561;drseansdiary.files.wordpress.com +bad;21;1;HOLD;i.imgur.com +bad;21;10;ELI5 Does sneeze noise depends on a person s voice;self.explainlikeimfive +bad;21;19;Morni Ut li W Nocy P ynie Ch odny Wiatr feat Ewa Kleszcz polish one man atmospheric black metal;youtube.com +bad;21;10;28 M4A I draw stuff well Add me pics inc;self.snapchat +bad;21;23;PT Before negotiations begin determine your best alternative Knowing you can walk away gives you confidence and keeps you from selling yourself short;self.PsychologicalTricks +bad;21;3;short question i;self.summonerswar +bad;21;7;Was watching interstellayyer and spotted this lmao;imgur.com +bad;21;12;Detroit police officer arrested for firing shots at a Ray Township home;macombdaily.com +bad;21;12;Old classic voicemail always good for a contagious laugh From the vault;youtube.com +bad;21;10;Heatmap Hyperthermic Immigrant deaths in the Southern Arizona Border OC;sleeplessintucson.com +bad;21;12;I know this is the right thing but it s still embarrassing;self.stopdrinking +bad;21;8;Hit a pretty serious milestone the other day;imgur.com +bad;21;2;bicycle day;self.LSD +bad;21;8;Request Jackrabbit the one playing at tribeca 2015;self.BestOfStreamingVideo +bad;21;8;New Islamic State video from Baji oil refinery;sendvid.com +bad;21;4;A Place Called Chiapas;youtube.com +bad;21;14;Had the worst falafel of my life today This town needs more proper kebabs;i.imgur.com +bad;21;7;REQUEST Pizza for a tired hungry family;self.RandomActsOfPizza +bad;21;10;Reddit how did you get scammed out of your money;self.AskReddit +bad;21;12;Trailers have gotten really bad at spoiling great parts of movies recently;i.imgur.com +bad;21;20;Ps4 lfg5m ce hm 32 only plz have tracking rocket let s get it done quickly leave Psn for invite;self.Fireteams +bad;21;13;TIL The Left Hand is also a reference to Isaac s ambiguous sexuality;self.bindingofisaac +bad;21;3;4 20 happenings;self.Michigents +bad;21;21;My ultra wide monitor setup takes up so much space on my desk I can t fit my speakers on there;i.imgur.com +bad;21;17;What kinds of dB sensitivity range should I look for in a mic for recording screamed vocals;self.audioengineering +bad;21;5;Kurt Angle In Rough Shape;fangoria.com +bad;21;9;VGC Let me build you a team part 2;self.stunfisk +bad;21;25;Is it me or does the RV not seem to scale correctly with the players This one is the outside where you hunt with Trevor;youtu.be +bad;21;9;Question What works for you in a FFM threesome;self.sex +bad;21;10;H Huntsman Night MW BTA W 100 keys or offer;self.GlobalOffensiveTrade +bad;21;18;Yet Another Faked Guilt Trip Woman who wrote fake Holocaust memoir must pay back 22 5M to publisher;foxnews.com +bad;21;19;4 star Gamecock DE signee Shameik Blackshear not expected to enroll this fall due to legal and other issues;self.CFB +bad;21;11;Illusion Of Gaia HD GamePlay I AM THE DARK KNIGHT SNES;m.youtube.com +bad;21;7;Language to use for a simple experiment;self.AskProgramming +bad;21;7;Another Former IMF Head Arrested Rodrigo Rato;zerohedge.com +bad;21;4;Are we our jobs;self.AskMen +bad;21;8;Halo MCC Looking for some players for customs;self.HaloPlayers +bad;21;2;Done trying;self.depression +bad;21;6;Armenians continue to live in Turkey;self.armenia +bad;21;8;Build Help Outdated AM3 CPU debating upgrade options;self.buildapc +bad;21;12;Riding in the passenger side of my best friends ride in GTAV;i.imgur.com +bad;21;12;Accessing preseason win share predictions against Vegas over unders and more gambling;self.nba +bad;21;2;Ann Sheridan;i.imgur.com +bad;21;4;Calculate column in datagridview;self.csharp +bad;21;9;TUPAN le Fond D la Classe Conseils d ami;youtube.com +bad;21;13;Throwback Garrett Anderson s 10 RBI night against the Yanks back in 07;youtube.com +bad;21;12;What is the most useless thing you learned in high school college;self.AskReddit +bad;21;7;Feels great not to be completely stock;self.Jeep +bad;21;3;A missed kick;liveleak.com +bad;21;19;Does ratting count as hunting My hunting partner in the hay barn no mouse rat or vole is safe;i.imgur.com +bad;21;13;How many people LOVE this religion I m sure most of you do;youtube.com +bad;21;11;Let s discuss the application of Steam Workshop on GTA V;self.pcmasterrace +bad;21;10;Any metal concerts or Bars for an 18 year old;self.stockholm +bad;21;5;Creativerse mini guide to Extractors;youtube.com +bad;21;10;A very graphic video of a snake eating an egg;youtube.com +good;21;7;Here s my system going in tomorrow;imgur.com +bad;21;10;Is there a fancy word on german for short person;self.NoStupidQuestions +bad;21;4;Regarding Good Enterprise Email;self.privacy +good;21;5;She is one of us;imgur.com +bad;21;11;Man hits girl after being provoked I will fuck you up;youtube.com +bad;21;13;18M russian rate me glasses or no glasses comment if any flaws thanks;self.Rateme +bad;21;7;The asterisk symbol looks like a butthole;self.Showerthoughts +bad;21;14;Is it ok to add a fourth different stick in a triple channel motherboard;self.techsupport +bad;21;5;Thinking of Getting a Tattoo;self.ChronicPain +bad;21;10;Battlefield 4 Light Em Up Dualtage So7o 219 With MOTORCITYMURDA;youtube.com +bad;21;7;Build Help First off the shelf upgrade;self.buildapc +bad;21;2;Custom amiibo;self.amiibo +bad;21;24;Check this shit out A post about My Fair Lady got removed because of two letters Good job mods Caint get nuthin pass you;i.imgur.com +bad;21;9;Watch and Hear Honeywell Lyric Voice Control in Action;cepro.com +bad;21;6;Anyone want to scrim 2v2 4v4;self.HaloOnline +good;21;4;Best Draft Card Ever;imgur.com +bad;21;4;Sony Xperia M2 Aqua;youtube.com +bad;21;9;LF A Town Between July September FT 5m Bells;self.ACTrade +good;21;17;What s something that no matter what your opinion is you ll always get a hostile response;self.AskReddit +bad;21;9;Shwinge Paranoid MV VERY RARE AND BASED Cloud rap;youtube.com +bad;21;6;What is your dream blogging platform;self.writing +bad;21;2;Nearly done;m.imgur.com +bad;21;21;Looking for someone to make my personal subreddit beautiful Compensation available in product trades PLEASE BE AWARE MY SUBREDDIT IS NSFW;self.ProjectCSS +bad;21;5;Ledge hogging in Smash 4;self.smashbros +bad;21;3;Manual Profile Template;self.BuildFightSystem +bad;21;8;Guns with S ATK or T ATK Why;self.PSO2 +bad;21;5;How I picture the mods;i.imgur.com +bad;21;10;How does my parent s computer compare to Raspberry Pi;imgur.com +bad;21;5;WTS YHM Diamond Rails VA;self.Gunsforsale +bad;21;10;Can t be mad when you wake up to this;imgur.com +good;21;3;Football Soccer Tattoos;self.soccer +good;21;12;who do you think we will the PFA Player of the Year;strawpoll.me +bad;21;9;25 places to watch the Habs in Montreal French;lapresse.ca +bad;21;15;Reserve deputy who fired fatal shot was among lots of wealthy donors in reserve program;tulsaworld.com +bad;21;15;Bracket Reset 15 live stream ft Problem X Andreas Shoryusengan Tyrant F Word and more;eventhubs.com +bad;21;19;I challenge you to come up with a greater bit than this Beetlejuice v Gary Battle of the Wits;youtube.com +bad;21;12;Visiting in early June which restaurants do I need to check out;self.phoenix +bad;21;6;TIFU by submitting the wrong file;self.tifu +bad;21;10;Looks like DLL is stocking MXM Opinions on this chem;self.RCSources +bad;21;8;How to view code size and assembly code;blog.benoitblanchon.fr +bad;21;2;Surgeon Flask;self.pathofexile +good;21;6;Ryan Howard is hitting 7th tonight;twitter.com +bad;21;5;Winston loves ponds and ducks;imgur.com +bad;21;10;Kavern of Doom 12 9 Takeda Brutality Force Slice 6960;self.kryptguide +bad;21;10;star wars what time line is The Force Awakens in;self.AskScienceFiction +bad;21;4;Little gypsy singing wiggle;youtube.com +bad;21;5;S3E19 spoiler Where was Merlyn;self.arrow +bad;21;17;If you could have sex with anyone in the world past or present who would it be;self.AskReddit +bad;21;9;How much does your skin vary day to day;self.SkincareAddiction +bad;21;12;Israel moves to cover up its alliance with al Qaeda in Syria;veteranstoday.com +bad;21;12;360 lf2 to run NF no mic needed just be level 29;self.Fireteams +bad;21;10;US Looking to possibly borrow a PS3 Memory Card Adapter;self.gameswap +bad;21;6;Virtuix Omni Grand Theft Auto V;youtube.com +bad;21;3;watch and learn;self.hearthstone +good;21;12;PK Subban said the referees made the right call on the ice;twitter.com +bad;21;3;ELI5 Cultural Appropriation;self.explainlikeimfive +bad;21;4;Considering a natural pool;self.landscaping +bad;21;1;Number;self.Almost_Idle +bad;21;13;I m adopting a kitten soon what advice do you have for me;self.Frugal +bad;21;11;Friend gave me her 10 gallon Here is Betta amp friends;imgur.com +bad;21;6;GTA V Funny Moments 1 Finnish;youtube.com +bad;21;6;Breaking the Ice 3 peekaboo f;i.imgur.com +bad;21;7;H 65 keys W offers knives only;self.GlobalOffensiveTrade +bad;21;3;Legs held up;i.imgur.com +bad;21;3;Trying to decide;self.thebutton +good;21;9;Which one of you guys live in Kansas City;imgur.com +bad;21;10;What is the most personal question you can ask someone;self.AskReddit +bad;21;8;Tryna be a stormtrooper but she still suckin;imgur.com +bad;21;8;Haiku What Is this some kind of magic;youtu.be +bad;21;15;Will someone please design a little flyer for my college class presentation Details in text;self.ineedafavor +bad;21;11;I think he s still a little upset after last night;imgur.com +bad;21;7;Lawyers question alleged cat killer s competency;wickedlocal.com +bad;21;5;T Mobile vs ATT coverage;self.lancaster +bad;21;8;USA H 40 games W WoW game time;self.gameswap +bad;21;9;H Howl BTA looks 0 16 FV W Keys;self.GlobalOffensiveTrade +bad;21;13;I moved back for him he broke up with me 3 days later;self.LongDistance +bad;21;18;What song did you use for your first dance at your wedding Why did you choose that song;self.AskReddit +bad;21;15;Grand Theft Auto V has stopped working after 20 or so minutes in GTA O;self.GrandTheftAutoV_PC +bad;21;10;For those of you that missed out on this gem;i.imgur.com +bad;21;2;Reaching out;self.trees +bad;21;16;So you ve watched tons of subbed anime how many Japanese words do you actually know;self.anime +bad;21;29;You are about to go back to a time without internet You get to download one youtube video to take with you Which one do you take and why;self.AskReddit +bad;21;7;but what if leaderboards are not kyall;imgur.com +bad;21;6;On Any Sunday The Next Chapter;onanysundayfilm.com +bad;21;4;Cyborg Hand and R2;self.StarWarsLeaks +bad;21;5;Kissing Balls outside Home Depot;imgur.com +bad;21;5;30 f4a cops and robbers;self.dirtypenpals +bad;21;19;I was playing an ARAM and this happened Guess who won btw I got sneered for like 7 seconds;self.leagueoflegends +bad;21;13;When the countdown hits 0 00 where do you think you will be;self.thebutton +bad;21;32;I M 23 was on anti depressants for a while and I had problems getting staying hard Now I ve been off them for a while and it still troubles me Help;self.sex +bad;21;17;What s the most creative explanation you can think of to explain why the sky is blue;self.AskReddit +bad;21;10;If Ozzy is with us who could be against us;imgur.com +bad;21;9;Spoilers Written What is your favorite moment of foreshadowing;self.asoiaf +bad;21;18;Doctors call for Dr Oz to be dismissed from Columbia University surgery faculty over egregious lack of integrity;nydailynews.com +bad;21;11;Les bo tes postales deviendront elles des antiquit s Montr al;self.montreal +bad;21;4;Anime Questions for Dyrone;self.LOLDyrus +bad;21;11;Hi guys How can I switch from a program to another;self.uwaterloo +bad;21;7;As A Bathtub I Can Confirm This;self.FunniestComments +bad;21;16;HDqTV The Vampire Diaries Season 6 Episode 18 watch online I Could Never Love Like That;self.errantsignal +bad;21;6;Superdrag Sucked Out Alt Rock 1996;youtube.com +bad;21;13;Podemos advierte que ser responsabilidad del PSOE si tienen que repetirse las andaluzas;elboletin.com +bad;21;10;Apr 16 20 45 UTC NA Chris 13 To2 Vanilla;self.UHCMatches +bad;21;11;TOMT Music Video documenting the lives of a group of teenagers;self.tipofmytongue +bad;21;9;Kavern of Doom 11 15 Music Kuatan Jungle 1500;self.kryptguide +good;21;4;h x w y;self.GlobalOffensiveTrade +bad;21;4;Elite treasure trail completed;self.GWDalog +bad;21;4;Anyone selling Copenhagen mint;self.DippingTobacco +bad;21;4;Let s Talk Jackets;self.rawdenim +good;21;10;What s your best excuse for calling in to work;self.AskReddit +bad;21;12;Predicting preseason college football AP 11 25 teams Un insidered in comments;espn.go.com +bad;21;5;BattenVEDA Day 16 Funniest news;youtube.com +bad;21;11;Heap of problems with my PC no sound or internet connectivity;self.techsupport +bad;21;9;What s the most unhygeinic thing you ve done;self.AskReddit +bad;21;9;The smile on this pit at my local shelter;i.imgur.com +bad;21;1;Reptile;self.MortalKombat +bad;21;8;Oculus Rift DK2 First Encounter Arma 3 Overpoch;youtube.com +bad;21;11;Beautiful orchestral arrangement of the Kerbal Space Program Theme Emil Persson;youtu.be +bad;21;10;How soon is too soon to call and follow up;self.AskHR +bad;21;6;Freedom bleeds red white amp blue;i.imgur.com +bad;21;17;What s your personal highlight of the 13 15 season What are you going to remember fondly;self.sabres +bad;21;2;Reconstructing History;self.sewing +bad;21;2;me irl;i.imgur.com +bad;21;31;Discussion Whilst the hockey Universe lights their torches and grabs their pitchforks for the Subban witchhunt Let s talk Game one and potential obstacles within the team going against the Lightning;self.DetroitRedWings +bad;21;5;H Liberte Athena W offers;self.SmiteTrades +bad;21;3;Is Mogstation down;self.ffxiv +bad;21;2;Burp Arrousals;self.SleepApnea +bad;21;2;OCTOPUS Parodius;youtube.com +bad;21;8;Recruiting Ouzo Gaming TH5 All ages Competitive Warring;self.ClashOfClansRecruit +bad;21;11;Canada s tax and transfer system more progressive than people think;macdonaldlaurier.ca +bad;21;2;Steady Entrance;18sexmedia.tumblr.com +bad;21;6;Is creatine supposed to taste bitter;self.Fitness +bad;21;2;Melissa Sagemiller;m.imgur.com +bad;21;7;My mom s new Border Collie Pup;imgur.com +bad;21;30;TIL Alan Rickman almost turned down his first film role Hans Gruber in Die Hard changed his mind and suggested wearing a suit and pretending to be a hostage todayilearned;reddit.com +bad;21;15;Oregon Brewers Festival will stop using glass for sampling beer thanks to Portland Police Bureau;oregonbrewfest.com +bad;21;12;Well this guy could see into the future it seems EU 2014;youtube.com +bad;21;44;TIL that a woman driving to a Dave Matthews concert stopped to help a motorcyclist with a flat tire who turned out to be Dave Matthews She and her boyfriend got front row seats backstage passes and Matthews took them to dinner afterwords todayilearned;reddit.com +bad;21;20;Tuscaloosa News It s time to quit pretending that there is broad outrage over the decision to end UAB football;tuscaloosanews.com +bad;21;8;ELI5 Theories of personal identity that Functionalist accept;self.explainlikeimfive +bad;21;4;Should I be worried;self.personalfinance +bad;21;27;Harrison Ford interview from 1997 I remembered this exact interview and was sad that he wouldn t play Han in a new film He s a phony;youtu.be +bad;21;5;Past CBE 2221 Fluids Exam;self.uwo +bad;21;24;This sweet girl is Lily she is at my local animal shelter She has something called Degenerative Myelopathy Her story is in the comments;imgur.com +bad;21;3;XB1 friendly anyone;self.FIFA +bad;21;9;give me a vouch after we traded ty D;self.rotmgvouches +bad;21;14;Hello fellow redditor skiers Simple project on a 97 Yamaha GP 760 Primer Install;self.jetski +bad;21;16;Free markets and anarchism Absent a capitalist state does the inequity in the market remedy itself;self.Anarchism +bad;21;16;37 M4R Middle of Nowhere USA I don t know anyone within 500 miles of me;self.r4r +bad;21;2;merit badge;seanmonstar.com +bad;21;8;NASA announces results of spacecraft studies of Mercury;nasa.gov +bad;21;23;While you enjoy the first round of the playoffs starting please take a minute to fill out my r hockey Anti Awards survey;docs.google.com +bad;21;6;How can I help my friend;self.bipolar +good;21;4;Susan makes a costume;i.imgur.com +bad;21;3;Worst debut ever;self.FifaCareers +bad;21;10;USA H Mewtwo code 3DS W equivalent of 300 coins;self.ClubNintendoTrade +bad;21;10;Darick Robertson Drawn Poster for Action Film The Dead Lands;spinoff.comicbookresources.com +bad;21;7;2 x EMC Clariion CX4 240 systems;self.buildapc +bad;21;11;ORIGINAL Ellie Corleone Sunday Night A Sedan With No Brand Sketch;soundcloud.com +bad;21;6;FREE Cord cleats for window coverings;self.FREE +bad;21;4;Clapton Coils For Sale;ebay.com +bad;21;9;What bachelor s degree has the best job prospects;self.AskReddit +bad;21;12;Zombie Worms Eat Bones and Age as old as Prehistoric Marine Reptiles;dailytimesgazette.com +good;21;5;Good Luck From Los Angeles;self.winnipegjets +bad;21;8;This game was to mlg for this guy;m.imgur.com +bad;21;9;Demonstrating the dangers of plastic wastes to sea creatures;i.imgur.com +bad;21;10;If George Carlin asked for AMA what would you ask;self.AMA +bad;21;4;Taiga needs a tissue;imgur.com +bad;21;13;Does an Amazon Prime Free Trial charge your credit card in any way;self.amazon +bad;21;14;What s the best way to mix 3 sources x post from r audiophile;self.DJs +bad;21;20;So you guys told me that my ugly face wasn t ugly enough in my previous post I tried again;imgur.com +bad;21;9;Selling US 18 Cute black and pink VS panties;imgur.com +bad;21;6;26 m4r straight Pics and stories;self.dirtykikpals +bad;21;12;Playing dirty as an Infiltrator or how to troll people in Planetside;self.Planetside +good;21;11;We ve had one winter yes but what about second winter;imgur.com +bad;21;4;Found In Atlanta Tracy;imgur.com +bad;21;13;Russian parents in the audience fall silent while they watch their daughters twerk;youtube.com +bad;21;13;What is your favourite piece of wrestling merchandise that you ve ever had;self.SquaredCircle +bad;21;7;Scriabin tude Op 8 No 12 Classical;soundcloud.com +bad;21;5;Non Pressers for Non Pressing;self.thebutton +bad;21;8;I had no idea about sprinting up ladders;self.bloodborne +bad;21;2;Kristina Romanova;i.mdel.net +bad;21;4;In front of others;li.co.ve +bad;21;1;picsonly;imgur.com +bad;21;11;How Many Americans Don t Know How To Ride A Bike;fivethirtyeight.com +good;21;8;20 year old wife would u fuck her;self.WouldYouFuckMyWife +good;21;15;Austin s Podcast Today DDTs and is there smoke coming from the Broken Skull Ranch;self.SquaredCircle +bad;21;8;First Round Mock Franchise QB On The Move;footballnation.com +bad;21;4;Right handed TWD help;self.NHLHUT +bad;21;5;Lagging despite having low ping;self.GlobalOffensive +good;21;3;Busty ass Milf;imgur.com +bad;21;12;How have understandings of the planet and the world changed throughout history;self.AskHistory +bad;21;15;the funny weird guy from computer class turned out to be my husband 7 years;imgur.com +bad;21;5;Handsome Jack s Loot Contest;borderlandsthegame.com +bad;21;6;The Day After Tax Day confettiaddledmind;confettiaddledmind.wordpress.com +bad;21;15;Lawyers of Reddit how do you feel when you lose a case for a client;self.AskReddit +bad;21;8;Oculus Rift DK2 First Encounter Arma 3 Overpoch;youtube.com +bad;21;6;High Elo Lissandra Montage Season 5;youtube.com +bad;21;7;Another Steam trading Bot to lookout for;imgur.com +bad;21;5;Punjabi Mc Knight rider Bhangra;youtube.com +bad;21;17;My friend posted this on our college s facebook page about a girl he saw on Yeti;imgur.com +bad;21;12;TOI Want to buy a hill or lake Come to Faridabad Gurgaon;da.feedsportal.com +bad;21;12;Seems a lot for a high point but he did test it;armslist.com +good;21;3;Banana for Scale;i.imgur.com +bad;21;17;Store Blue Gem Butterfly Knife Crimson Web ST Orion BTA Awpiimov ST AK Redline and much more;self.GlobalOffensiveTrade +bad;21;4;Me loose subscribers whyyyyyyy;youtube.com +good;21;5;F ingering my holes 0;imgur.com +good;21;7;R F Perfectly Terrible Great Moth Turbo;self.yugioh +bad;21;10;I m a very fussy eater What should I eat;self.EatCheapAndHealthy +bad;21;3;Helping with packing;i.imgur.com +bad;21;8;Trying to get rid of my GG249 Bars;self.AgMarketplace +bad;21;12;Xbox One Going through starting storyline currently on the moon GT DivineFate69;self.Fireteams +bad;21;8;TV Riding with Arya Game of Thrones vine;youtube.com +bad;21;8;Watching The Wire for the first time spoilers;self.TheWire +bad;21;4;any Pidgey M 3;self.BreedingDittos +bad;21;1;Slutwalk;4yimgs.com +bad;21;23;Take a look behind the curtain at an indie wrestling show Preparing a blade gigging trainee initiation opponents showing up late and more;youtube.com +bad;21;29;For all 90s kids like me see I m a 90s kids and I miss the 90s doesn t anyone else miss 90s I m a 90s kid btw;self.circlejerk +bad;21;3;Through her panties;i.imgur.com +bad;21;8;Calculating the fractal dimension of one dimensional data;self.askmath +bad;21;6;PS4 LF2M CE NM need swordbearer;self.Fireteams +bad;21;5;Heist in order challenge question;self.GrandTheftAutoV +bad;21;1;2;forklog.com +bad;21;9;DIGITAL LEAGUE OF EXTRAORDINARY POCKET Z YOKAI FIGHTER BROS;imgur.com +bad;21;4;Had my car drawn;imgur.com +bad;21;8;H FN Fire Serpent W Keys or Skins;self.GlobalOffensiveTrade +bad;21;8;My friend has enjoyed this meta very much;imgur.com +bad;21;15;TIL Tampa had a training school for strippers in a mansion in a gated community;tbo.com +bad;21;5;Mookie Betts deal with it;i.imgur.com +bad;21;10;NG 52 Rom can someone surpise my roommate no password;self.huntersbell +bad;21;3;I m obsessed;imgur.com +good;21;4;A mild wild f;imgur.com +bad;21;5;ps4 lfg ce hm fresh;self.Fireteams +bad;21;10;Federal Judge Declares Marijuana is Still a Schedule 1 Drug;vice.com +bad;21;5;Real world video game locations;self.Games +bad;21;2;Lineup rumors;self.electricdaisycarnival +bad;21;18;For the next hour I will be providing T6 Rift Carries to fellow monks NA Seasonal SC only;self.Diablo3Monks +bad;21;16;I recently spent 4 months in Southern Thailand here are my favorite pictures from the trip;imgur.com +bad;21;22;TU the mods need your help picking the logo for the sidebar Please view the images and vote which is your favourite;self.TrollUniversity +bad;21;9;Recipe Tags Now Added to Subreddit Please Use Responsibly;self.ketorecipes +bad;21;5;ell dubya gee dot giff;i.imgur.com +bad;21;30;If doomsday actually ends up happening for a reason other than climate change will all the extreme environmentalists wish they had used their time of activism to actually live life;self.Showerthoughts +bad;21;14;Schenectady woman plants pansies in potholes to make a point city fills them in;syracuse.com +bad;21;9;What is the companion app called in play store;self.FIFA +bad;21;17;There is a site out there solely to express yourself in many ways this need more attention;letitgo.space +bad;21;15;Oregon Brewers Festival will stop using glass for sampling beer thanks to Portland Police Bureau;oregonbrewfest.com +good;21;42;Guide to flying everyone s most hated airline Spirit You can save 36 on the ticket price of every single round trip you take manage expensive baggage fees and travel thousands of miles on a regular basis for as little as 15;self.travel +bad;21;2;Naught shield;self.BorderlandsPreSequel +bad;21;12;Night amp Day 2015 The double life of a go go dancer;youtu.be +bad;21;4;Experiencing lag on CM12s;self.oneplus +bad;21;5;World Superstars Future Sets Discussion;self.yugioh +bad;21;4;Good Property Management Companies;self.springfieldMO +bad;21;5;Regarding the new background pic;self.stlouisblues +bad;21;14;Playing on a new squad this season tonight s my first game cant wait;self.slowpitch +bad;21;39;Italian police Migrants threw Christians overboard Muslims who were among migrants trying to get from Libya to Italy in a boat this week threw 12 fellow passengers overboard killing them because the 12 were Christians Italian police said Thursday;cnn.com +bad;21;4;Molten Tigrex eating meats;self.MonsterHunter +bad;21;6;Getting ready for the topless season;flickr.com +bad;21;9;PSA Dont forget to turn off Automatic Collision Avoidance;self.WorldOfWarships +bad;21;42;USA H Misadventures of Tron Bonne PS W Whomp Em Metalstorm Vice City of Doom Shadow of the Ninja Megaman 4 6 Neo Geo CD Neo Geo Pocket Neo Geo AES Games NES SNES Rares and Obscures TurboGrafx games Offers See List;self.retrogameswap +bad;21;14;Honestly are any of the Modern Warfare games still good playable for online multiplayer;self.xbox360 +bad;21;10;Here s How American Cities Can Learn From Italian Piazzas;nextcity.org +bad;21;13;Flat 12 is hosting an event for National Adopt A Shelter Pet Day;facebook.com +bad;21;6;22 M4F London Message then Meet;self.dirtyr4r +bad;21;8;LF Salac berries and leftovers FT ability capsule;self.pokemontrades +bad;21;5;Help me figure out pricing;self.treedibles +bad;21;13;Indeed Custom Pack Ultimate Questpack 700 Quests Regrowth amp more Whitelist Teamspeak 21;self.feedthebeastservers +bad;21;19;Is there a reason why my Calves seem to stay sore much much longer than any other body part;self.bodybuilding +bad;21;17;I can t believe they re still together after all of the crap they ve been through;self.dadjokes +bad;21;7;h NEW BOT w to test it;self.GlobalOffensiveTrade +bad;21;28;Video of me messing with my buddy while at Country Thunder last weekend somehow managed to make it on the Jimmy Kimmel show last night proof in comments;youtu.be +bad;21;6;H Amazing Spiderman 17 W 1;self.comiccodes +good;21;20;TIL a 2013 Princeton study found the U S economy performs much better under Democratic presidents than under Republican presidents;princeton.edu +bad;21;8;Mura Masa When U Need Me Moxsa Flip;soundcloud.com +bad;21;5;Who is your Dallas favorite;self.GlobalOffensive +bad;21;5;Question about the USS Sims;self.WorldOfWarships +bad;21;6;Help Can I run Thursday Mythical;self.PuzzleAndDragons +bad;21;9;Follow for cheap pc game keys of your choice;twitter.com +bad;21;5;7OES Nova Original house track;soundcloud.com +bad;21;3;PS4 LF2M Nightfall;self.Fireteams +bad;21;11;Your Rain Instrumental Electric Guitar Cover by cursedlemon Silent Hill 4;youtube.com +bad;21;5;WTF IS THIS OP GLIDER;i.imgur.com +bad;21;12;Kavern of Doom 15 16 Reptile Costume Tournament 470 lt TIMED gt;self.kryptguide +bad;21;9;What does it mean when a post is gilded;self.AskReddit +bad;21;13;Rap murder rates and I snap vertebrates Proof was sick in this one;youtube.com +bad;21;12;Re Upload for sound Not Length Don t Tell Me A Story;youtu.be +bad;21;8;Did I told you that I love sushi;i.imgur.com +bad;21;6;How many basses do you have;self.Bass +bad;21;2;SERIOUS POST;self.circlejerk +bad;21;7;Build Help Need help on some parts;self.buildapc +bad;21;3;Torn Kantai Collection;cdn.awwni.me +bad;21;18;Is it possible to pay a credit card balance with another credit card effectively double dipping in rewards;self.churning +bad;21;2;Cat School;dailymotion.com +bad;21;12;F4MMMMM Any Black Thugs Wanna Run A Train On This White Whore;self.dirtypenpals +bad;21;4;Franzen Article on Deadspin;deadspin.com +bad;21;14;Tesla Motors on Twitter Meet Wolverine Professor X Iceman Beast from the Tesla Factory;twitter.com +bad;21;7;I have no time for your praise;explosm.net +bad;21;19;Digs Reveal Stone Age Weapons Industry With Staggering Output Millions of weapons made at Paleolithic factory in the Caucasus;news.nationalgeographic.com +bad;21;4;PC stat track counter;self.pcmods +bad;21;2;me irl;img.4plebs.org +bad;21;11;Dion Runaround Sue Doo Wop A classic of the 60 s;youtube.com +bad;21;6;Was Yoshi always a Pok mon;imgur.com +bad;21;16;Coffee is made from ground roasted beans Beans are a fruit Coffee is a fruit juice;self.Showerthoughts +bad;21;15;ALLIANCE 10 10H lt The Dictators gt RECRUITING ALL DPS CLASSES FOR ITS RAID TEAM;self.wowguilds +bad;21;4;Traveling alone with baby;self.beyondthebump +good;21;8;Question Girls Who Enjoy Getting Spanked During Sex;self.sex +bad;21;10;Arctic Tank 25 99 Authentic Ships Today from Phoenix AZ;kinglyvapes.com +bad;21;20;TOMT Text Game Website Website with ridiculous articles and a couple of text multiple choice based fantasy role playing games;self.tipofmytongue +bad;21;17;My friend bought me a Dennerle 20l Nano for my birthday I hope I did him proud;imgur.com +bad;21;8;Hero s US based partner files for bankruptcy;business-standard.com +bad;21;4;23 m rate me;imgur.com +bad;21;9;Mindtree expects to beat Nasscom growth guidance in FY16;business-standard.com +bad;21;9;China exporters expect more pain as economy sputters Survey;business-standard.com +bad;21;5;PS4 LF2M CE NM Fresh;self.Fireteams +bad;21;21;Just got a H107D to learn on prior to dropping cash on a proper mini Flying FPV is REALLY difficult Tips;self.Multicopter +bad;21;10;6 of US adults plan to buy Apple Watch Poll;business-standard.com +bad;21;20;MISC Supercell pauses your gem boost on barracks during updates and you can choose when to start it back up;i.imgur.com +bad;21;20;My friend s thug life Pikachu tattoo Late to the party AKA ya ll got any more of them karmas;imgur.com +bad;21;14;March FDI robust at 12 4 bn outbound flows up 29 6 in Q1;business-standard.com +bad;21;10;Govt draws the line says no arbitration for tax issues;business-standard.com +bad;21;13;Nokia deal is full of risks as Moody s digs into merger details;business-standard.com +bad;21;7;Gucci Men s 1627 S Aviator Sunglasses;guccioutletus-sales.com +bad;21;13;17 F4R Did something really stupid anyone wanna talk I ll listen too;self.Needafriend +bad;21;22;If I have to listen to that girls scream in the Unfriended ad one more time I m going to break something;self.youtube +bad;21;13;Why has Taylor Swift gotten so much hotter in the last few years;self.shittyaskscience +bad;21;5;Francia Research 400 425 ce;self.HistoricalWorldPowers +bad;21;8;How Lego could one day save your life;powerofthebrick.com +bad;21;9;Tell me about your most frustrating Battle Maison loss;self.pokemon +bad;21;11;What would win in a race a snail or a slug;self.shittyaskscience +bad;21;4;when reading r diabetes;self.diabetes +bad;21;6;Why hate when we can love;self.AskReddit +bad;21;7;Is it from weed Or something else;self.trees +bad;21;10;Fed 14Apr On the Welfare Properties of Fractional Reserve Banking;philadelphiafed.org +bad;21;8;Test your knowledge with the Mega Hookah Quiz;self.hookah +bad;21;4;Question About blue sparrows;self.DestinyTheGame +bad;21;6;Dear BBC your servers are shit;self.ukpolitics +bad;21;4;Air conditioning help needed;self.microgrowery +bad;21;12;KIK Going to be at work alone all night Keep me company;imgur.com +good;21;7;Who are your favorite adult film stars;self.AskReddit +bad;21;8;A one sided conversation with my lost love;self.offmychest +bad;21;18;I missed my lab when he s 2 month old he s now 2 year old fat dog;l6brador.com +bad;21;18;Teachers of Reddit what are some of the dumbest things your students have said on essays or tests;self.AskReddit +bad;21;32;Planning on selling all but 1 squad of 6 i have to make this one do you think it s worth and what are your thoughts on the line up in general;futhead.com +bad;21;9;Greg Grunberg s in Star Wars The Force Awakens;self.StarWars +bad;21;6;21 M Great Shape Ann Arbor;self.hookup +bad;21;25;Getting ready to send my resignation Will the replies go to the address they have on file or the address I send with my letter;self.exmormon +bad;21;6;Why are some people so observant;self.offmychest +bad;21;7;SPOILERS About Kano s ending and MK11;self.MortalKombat +good;21;12;Pink socks panties and pussy One White Dick F eels So Good;imgur.com +bad;21;3;Rome Italy tours;self.rome +bad;21;1;3227;self.SVExchange +bad;21;13;Dal 17 al 19 aprile XXI edizione di Torino Comics a Lingotto Fiere;lospaziobianco.it +bad;21;21;A few years ago I hit myself directly in the left testicle with a dvi cable Just found the CCTV footage;i.imgur.com +bad;21;5;How big are your collections;self.Marvel +bad;21;13;r australia Australian model DJ killed fighting for ISIS in Syria link removed;self.UnitedNationsOfReddit +bad;21;11;Cleveland man accused of shooting daughter in groin during family argument;cleveland.com +bad;21;3;Velvet Cacoon Genevieve;youtube.com +good;21;3;F lashing again;i.imgur.com +bad;21;2;Curvy Milf;imgur.com +bad;21;9;CRUSADER KINGDOM RP NO KOS NEWB FRIENDLY ACTIVE ADMINS;self.ReignOfKingsServers +bad;21;9;My best 9 pin no tap series to date;imgur.com +bad;21;7;Just picked up my new Edge today;i.imgur.com +bad;21;6;Are you a pilot V5 pen;self.ShittyPickupLines +bad;21;5;ORAS What breaks a chain;self.pokemon +bad;21;8;Source of the second part of this gif;self.tipofmypenis +bad;21;7;What can t you do with water;self.Showerthoughts +bad;21;11;A special surprise for sunrise My epiphyllum is finally in bloom;i.imgur.com +bad;21;13;PSA If you got a cancellation email check your Nintendo Store UK account;self.amiibo +bad;21;15;Henry Ford Health System shipping 35 000 new Carhartt made rear end covering hospital gowns;crainsdetroit.com +bad;21;19;Buying first plane out of state Any companies that deal in the buyers interest and take care of everything;self.flying +bad;21;14;Are there any studies that show how much lack of sleep affects muscle growth;self.Fitness +bad;21;6;NOSGOTH LIVESTREAM HIGHLIGHTS 1 Bacon Face;youtube.com +bad;21;23;ELI5 Are things expensive in Australia because of the high minimum wage Or is there a high minimum wage because things are expensive;self.explainlikeimfive +bad;21;9;Unpowered Exoskeleton Videos Carnegie Mellon University Experimental Biomechatronics Lab;biomechatronics.cit.cmu.edu +bad;21;9;University of Victoria student to defend his thesis underwater;timescolonist.com +bad;21;14;Lies my Ndad told me and why he didn t come to my wedding;self.raisedbynarcissists +bad;21;12;Is there currently any way to play this on a mobile device;self.SuperSmashFlash +bad;21;7;Seekers I ll Never Find Another You;youtu.be +bad;21;12;Linux Pro s What are the must have books in your library;self.linuxquestions +bad;21;10;Tweaked BR W legendary healer based on suggestions second take;i.imgur.com +bad;21;10;searched bitcoin on the local jobs website and found one;self.Bitcoin +bad;21;5;What Tr4sh will soon be;i.imgur.com +bad;21;17;When my friends ask if it s possible that I partied a little too hard last night;gfycat.com +bad;21;7;Display driver has stopped working and recovered;self.pcgamingtechsupport +bad;21;27;I know this isn t the place but I talk to a lot of you on my main account But I need help from my redditor friends;self.casualconversations +bad;21;6;Mr Easy Nuh Fraid Dancehall 2015;youtube.com +bad;21;9;Has anyone ever made a mono poly combination work;self.polyamory +bad;21;13;How to record cell outputs into a different worksheet Crosspost from r Excel;self.vba +bad;21;6;The little Walkers are the fastest;i.imgur.com +bad;21;9;Feedback appreciated on 2 Invitation Drafts I made today;self.weddingplanning +bad;21;7;Lessons Learned Confessions Of A Financial Adviser;self.investing +bad;21;2;Love Letter;self.fakeid +bad;21;16;Hedge fund manager Paul Tudor Jones is selling his Florida Keys mansion for 14 5 million;businessinsider.com +bad;21;16;Advice BDSM Dom Sub questions I have How to bring up the topic with my girlfriend;self.sex +bad;21;7;Way to help protect bases against raiders;self.h1z1 +good;21;13;Norris Cole has the most playoff experience on the New Orleans Pelicans team;self.nba +bad;21;12;Galaxy S6 durability test gives the King of Bendgate a new title;sammobile.com +bad;21;2;add object;self.PhotoshopRequest +bad;21;11;Woman Defends Muslim Couple After Listening To Racist Rant On Train;youtube.com +bad;21;37;When you make a donation to the Media Research Center you give them the much needed resources to work overtime to ensure that the American public is educated and liberal media bias is exposed countered and neutralized;stopthepropaganda.com +bad;21;8;What happens when a rogue gets bad draws;self.hearthstone +bad;21;6;Tangerine Diesel O G Shatter Wax;dabithabit.com +bad;21;13;Little crown for Kingsday Just need to ad a pin on the back;imgur.com +bad;21;6;Botany Waterparker Electronic 2011 3 15;youtube.com +bad;21;1;Huh;preview.adzerk.net +bad;21;14;How many runs it takes to get all the items in Countdown to Destruction;self.FFRecordKeeper +bad;21;5;I don t know why;self.circlejerk +bad;21;5;Are Jenn and Joe dating;self.survivor +bad;21;8;H AK Fire Serpent FT W 46 keys;self.GlobalOffensiveTrade +bad;21;9;What s one food you never get bored of;self.AskReddit +good;21;13;Armed guard at Disneyland pulls gun on two guest motorcyclists xpost r motorcycles;youtube.com +bad;21;6;My plushie collection has grown again;i.imgur.com +bad;21;5;Is EUNE working RIGHT now;self.leagueoflegends +bad;21;7;Is it bad im getting white hairs;self.AskReddit +bad;21;13;Thousand Song of Abdication indie rock pop 2015 French indie rock ala Phoenix;soundcloud.com +bad;21;18;UK S6 Edge users Any of you managed to get your hands on the gold plat 64GB version;self.GalaxyS6 +bad;21;7;TLOU Factions Perfect time to press L3;fat.gfycat.com +bad;21;11;Why apartments are the blind spot in Chicago s recycling program;wbez.org +bad;21;5;Chon Story Progressive Drum Cover;youtube.com +bad;21;4;Going to Denver Airport;self.illuminati +bad;21;8;Butt problems Doc says scabies I m skeptical;self.AskDocs +bad;21;11;PS4 2M coins FOR SALE 13 100K 240 for all 2M;self.MCSPlaystation +bad;21;13;Know Your Enemy isn t Human Anxiety Pride and the Wilderness of Souls;youtube.com +bad;21;1;sunil;sunil +bad;21;19;Afraid of getting cancer Get chemotherapy before you get cancer so you are immune to it in the future;self.shittyaskscience +bad;21;10;White man jumps over 2 lawn chairs in slow motion;youtube.com +bad;21;14;Got a whopper of a bill for a leading hose Is this cost typical;self.MechanicAdvice +bad;21;8;Best Ecchi And Funny Anime Scenes Part 1;youtube.com +bad;21;14;Team WE Spirit just announced on his Facebook that he goes to All Stars;self.leagueoflegends +bad;21;2;Best controller;self.MortalKombat +bad;21;8;PC Grand Theft Auto 5 in Virtual Reality;ign.com +bad;21;11;360 Podcast Unlocked 191 Guitar Hero Live vs Rock Band 4;ign.com +bad;21;4;PC Guardian Class Trailer;ign.com +bad;21;7;The beautiful cat that lives next door;imgur.com +bad;21;6;Me after watching the new trailer;imgur.com +bad;21;10;Run The Jewels Blockbuster Night Part 1 A Pocket Party;youtube.com +bad;21;13;Kung Lao X Ray Set Up Tips Insane Damage Output Mortal Kombat X;youtube.com +bad;21;12;You won t see Hillary Clinton in the same light ever again;dailykos.com +bad;21;4;Sin Death and Hell;scontent-iad.xx.fbcdn.net +bad;21;6;Elections Alberta ad Decide For Yourself;youtube.com +bad;21;6;College Dance Contest Who was better;youtube.com +bad;21;8;SAUDI ARABIA 1 New Confirmed Corona Case Recorded;moh.gov.sa +bad;21;8;Need help ASAP slide show mode wont play;self.powerpoint +bad;21;9;Hyatt credit card holders Not sure in right sub;self.personalfinance +bad;21;4;Interesting documentary on darts;youtu.be +bad;21;3;Safe Food Handling;self.rawpetfood +bad;21;19;YSK If a car is flashing it s HiBeams at you at night your headlights might no be on;self.YouShouldKnow +bad;21;3;Tiers and grades;self.archeage +bad;21;13;Can we imagine nothing and will imagining it be empirically sound A paradox;self.askphilosophy +bad;21;7;Love in the gaze of a dog;mobile.nytimes.com +bad;21;15;U S Analyst Admits Moderate Syrian Rebels Have Been Working With Al Qaeda All Along;pjmedia.com +bad;21;16;A man stuck on the tracks spins like a top between the train and the platform;vps42209.vps.ovh.ca +bad;21;8;Discussion DONT LEAVE 4 15 15 Day 2177;youtube.com +bad;21;5;This is your fate goyim;41.media.tumblr.com +bad;21;20;1 The United States eyes sending air naval support to The Philippines amid South China Sea dispute worldnews 0 comments;reddit.com +bad;21;13;ALEC Threatens To Sue Critics That Point Out It Helps Keep Broadband Uncompetitive;techdirt.com +bad;21;19;The original trilogy were three of the best movies ever made The crappy prequels brought balance to the force;self.Showerthoughts +bad;21;9;Despite 1 status Christie says he s not wealthy;msnbc.com +bad;21;2;Paxyl sit;imgur.com +good;21;11;A few days old lamb at my Forestry and Agricultural school;i.imgur.com +bad;21;5;Sailor Pluto Sara Moni Cosplay;imgur.com +bad;21;2;M4F Celebrity;self.dirtypenpals +bad;21;3;TankScape Main Theme;vid.me +good;21;8;Cannot graduate unless I pay another 10 000;self.gatech +bad;21;8;well this is embarrassing best alley oop ever;vine.co +bad;21;3;Remove motion blur;self.PiratedGTA +good;21;13;If you want to leech XP for a low level Frame PLEASE LISTEN;self.Warframe +bad;21;24;My 21F mother 40 got back together with her abusive ex for the 4th time and I want to be done with this drama;self.relationships +bad;21;9;Build Help Regarding the FX 4130 cpu from AMD;self.buildapc +bad;21;33;I won Ugggh the DE I ll revenge He has so much Noooo it s all gone How I imagine the roller coaster of emotion after my opponents were raid ed this morning;imgur.com +bad;21;10;Can some add an image of space outside the window;imgur.com +bad;21;40;Trevor Booker Wouldn t go to war with any other guys Helluva season Jazz Nation And oh yeah glad we aren t bitch ass pussy fucbois that ride Westbrook s dick and can t make the playoffs for shit Enes_Kanter;self.nbacirclejerk +bad;21;34;I m working with a long established local estate agent UK and they ve recently gained competition from a local start up estate agent offering fixed 499 sales how do I compete with them;self.Entrepreneur +bad;21;2;Custom keycaps;self.MechanicalKeyboards +bad;21;13;Vaya desastre Y lo peor es que esto no es un caso aislado;self.podemos +bad;21;13;THEORY What if we are all just super AI s in training mode;self.Glitch_in_the_Matrix +bad;21;7;keyboard_art 3D Printed Starcraft II Terran Keycap;instagram.com +bad;21;8;When I try to flirt with a girl;imgur.com +bad;21;14;Galaxy S6 S6 edge sales put Samsung on the offensive Apple on the defensive;sammobile.com +bad;21;6;Trachemys scripta laying eggs in Florida;i.imgur.com +good;21;20;SI Twitter NBA NBPA agree to HGH testing beginning in 2015 16 First positive test 20 game ban Second 45;twitter.com +bad;21;6;Please do a champ like Avatar;self.leagueoflegends +bad;21;9;What is the loud banging in the west end;self.glasgow +bad;21;6;Extra tickets for graduation ceremony PLS;self.fsu +bad;21;10;A few questions about the new movie and the canon;self.StarWars +bad;21;9;How can I join a private tracker for games;self.trackers +bad;21;9;Way Out an addict s journal another day 1;self.NoFap +bad;21;14;Most najavio izlazak na parlamentarne izbore elimo one koji su odgovorni i po teni;slobodnadalmacija.hr +bad;21;7;Could GTA VI take place in Chicago;self.GrandTheftAutoVI +bad;21;2;Fairy Original;cdn.awwni.me +bad;21;4;interesting Fun Build Ideas;self.bloodborne +bad;21;8;Looking for Someone to Sublease for Summer 2015;self.UGA +bad;21;4;Diamond Dynasty Becoming Unplayable;self.MLBTheShow +bad;21;27;H The most Cancerous knife ever kara ch bs fv 0 915 W Offers of any kind Also someone that can check what fv ranking it s;self.GlobalOffensiveTrade +bad;21;8;SO MANY BLACK BALLS PES 2015 PACK OPENING;youtube.com +bad;21;2;Diva RTG;self.wwesupercard +bad;21;10;Wanna satisfy your button pressing urge without sullying your sanctity;self.thebutton +bad;21;8;Got some gobblers to gobble but saw nothing;imgur.com +bad;21;21;Mellow Rock Joe amp Gus Guess You Could Say I m really happy with the mellow thoughtful feel on this track;youtube.com +bad;21;12;IIT IIM Shaadi idk what to even think about this any thoughts;iitiimshaadi.com +bad;21;2;Seafood Safari;self.FishFriday +bad;21;11;What s the difference between Hitler and a bowl of soup;self.Jokes +bad;21;2;Mewtwo Flairs;self.smashbros +bad;21;7;Cum over here and lick me clean;imgur.com +bad;21;8;CONFLICT Pirates TSS prepare to raid Porto Amboim;self.worldpowers +bad;21;6;Elections Alberta ad Decide For Yourself;youtube.com +bad;21;3;Close Call Wallride;youtube.com +bad;21;9;4 Worthy Tools For Building iOS Apps in Java;geekswithblogs.net +bad;21;13;Foxes in Fiction 8 29 91 ambient with a Bukowski essay in it;youtube.com +bad;21;15;Local election signs are being defaced and no one is even mad including Mr Denis;imgur.com +bad;21;14;Koei Tecmo Goes DMCA On DOA Modders For Undressing Its Already Scantily Clad Characters;techdirt.com +bad;21;11;Wikileaks has published the complete Sony leaks in a searchable database;theverge.com +bad;21;17;If this post gets 4201 upvotes Jar Jar binks will not be in the Star Wars movie;self.circlejerk +bad;21;8;GOG Thanks to u energy_tank for Mirrors Edge;self.GiftofGames +bad;21;12;Kids and their imaginary friends are like a schizophrenic and their hallucinations;self.Showerthoughts +bad;21;7;21F4M Looking for friends and possibly dating;self.bostonr4r +bad;21;11;When scrolling fast letters will mark your position in a list;imgur.com +bad;21;7;Power of The Middle Finger Rockstar Editor;youtube.com +bad;21;1;hello;self.depression +bad;21;5;r distension redd it 32u8pd;gfycat.com +bad;21;8;Tesla is hiring a product specialist in Birmingham;chc.tbe.taleo.net +bad;21;9;sell UK to Anywhere Large Coach Signature Taxi Tote;self.handbagexchange +bad;21;9;SUGGESTION List of Local User Groups like r PowerShell;self.SCCM +bad;21;1;Blackhawks;self.Jokes +bad;21;8;GTA PC All Simeon missions don t complete;self.GrandTheftAutoV +bad;21;11;Wikileaks has published the complete Sony leaks in a searchable database;theverge.com +bad;21;27;TIL The only Japanese who survived the Titanic lost his job because he became known as a coward in Japan for not dying with the other passengers;reddit.com +bad;21;7;Trying to get back into the genre;self.poppunkers +bad;21;3;Am I Shadowbanned;self.ShadowBan +bad;21;7;PC BTA M9 Bayonet Crimson Web FT;self.GlobalOffensiveTrade +bad;21;7;TOMT SONG Clip of a japanese song;self.tipofmytongue +bad;21;12;He s back Tyrone s reaction to The Force Awakens teaser 2;youtube.com +bad;21;5;Suggestion Hot Foot Cake Walk;self.roosterteeth +bad;21;7;Crackdown on shopping trucks wanted by minister;stuff.co.nz +bad;21;12;Additional readings critiques of Kitcher s entry for OHET Biology and Ethics;self.askphilosophy +bad;21;10;Massachusetts exports enjoying a gold rush Business The Boston Globe;bostonglobe.com +bad;21;9;Dance Dance Revolution Extreme machine from Spring 14 semester;self.Temple +bad;21;12;Bailiff Debt enforcers of reddit how do you decide what to take;self.AskReddit +bad;21;13;Any good tips on how to level fast on D3 after paragon 500;self.Diablo +bad;21;16;Would you get behind a petition to get key board and mouse functionality for GTA V;self.PS4 +bad;21;8;839 279 20 AMA Request Harold r youdontsurf;reddit.com +bad;21;6;High I O but low bandwidth;self.EMC2 +good;21;9;PK Subban answers questions about the Game 1 slash;video.canadiens.nhl.com +bad;21;8;Westerado Double Barreled Impressions Pixelated Red Dead Redemption;youtube.com +good;21;10;One day a very rich man announced in a party;self.Jokes +bad;21;7;ELI5 Why are fetch lands so good;self.magicTCG +bad;21;5;The ghosts of products past;medium.com +bad;21;4;This is so HOT;33.media.tumblr.com +bad;21;7;Cabinet Streaming tonight 4 16 9pm eastern;self.StreamingNow +bad;21;8;Best US states to move to for SRS;self.asktransgender +bad;21;12;NeedAdvice How to get out of bed to go to the gym;self.getdisciplined +good;21;6;Get these hoes up off me;i.imgur.com +bad;21;8;18 m4r wants to be made to cum;self.dirtykikpals +bad;21;5;Odd nexus 7 2013 issue;self.Nexus7 +bad;21;6;Kacy Anne Hill in the kitchen;i.imgur.com +bad;21;17;A more up to date review of the system for handling the flow of conversation with examples;self.Mneumonese +bad;21;6;Good OCM oils for the shower;self.SkincareAddiction +bad;21;9;Are you pumped for Star Wars The Force Awakens;self.AskReddit +bad;21;5;narutojak1 1vs1 Superweapon667 Round 2;youtu.be +bad;21;3;All my post;imgur.com +bad;21;7;Vmware Web Client on 5 5 6;self.vmware +bad;21;2;Music Corona;reddit.com +good;21;20;I probably wasted a lot of time doing this but I don t care Episode VII Teaser 2 Screenshots 1600x900;imgur.com +bad;21;2;Thanks Blizzard;self.hearthstone +bad;21;4;Tumblr and Dissociative Disorders;self.TiADiscussion +bad;21;11;Chamber of Bones 6 13 Kitana Brutality All is On 7650;self.kryptguide +bad;21;22;Apple is worried Samsung won t make enough chips for the iPhone because the Galaxy S6 is suddenly doing better than expected;businessinsider.com +bad;21;9;REDACTED Episode 05 Orion Thermyte Striker II amp Mining;youtube.com +good;21;15;Reent pickups finally have a jacket from each set of my 4 favorite supreme jackets;i.imgur.com +bad;21;13;Could this be how the old cast will look in The Force Awakens;m1.behance.net +bad;21;2;Ninja Snoo;i.imgur.com +bad;21;26;Elementary school field trip to some local colleges sounds like a fun and educational time unless you re a white kid and not allowed to go;self.autotldr +bad;21;8;How to take screenshots in GTAV for PC;self.GTAV +bad;21;7;Copper Rig Mod 0 Concrete Floor 2;imgur.com +bad;21;9;Any body know this video with these 2 girls;self.tipofmypenis +bad;21;4;Seohyun s nip slip;imgur.com +bad;21;6;When your favorite song comes on;gfycat.com +bad;21;6;Episode 116 Paul s hostile takeover;self.icecreamsocial +bad;21;13;LF Ornate clothes to borrow for Gracie FT Bells Most fruits except persimmons;self.ACTrade +bad;21;16;ELI5 Why does the math not add up when you look at total up down votes;self.explainlikeimfive +bad;21;13;Steven Big Funaki Adams exit interview I m growing a Mullet this summer;youtu.be +bad;21;20;My little brother making up excuses to smoke after I suggested Allen Carr s book I wish he quits soon;imgur.com +bad;21;12;Wilkes Barre Scranton Penguins Matt Murray Voted AHL s Top Goalie Congrats;theahl.com +bad;21;10;Universal game case inserts at 300 ppi is too big;self.gamecollecting +bad;21;12;So I think I just played against some sort of IT wizard;self.FIFA +bad;21;8;Twitter out to crack down on abusive tweets;news.yahoo.com +bad;21;5;Stuck at installing help please;self.GrandTheftAutoV_PC +bad;21;1;Etiquette;self.Diablo +bad;21;9;xbox one LF1M CE HM Crota CP gt kennethkaniff5;self.Fireteams +bad;21;18;VICE why can t you backwards island hicks be progressive and have unregulated abortions like us in Toronto;np.reddit.com +bad;21;7;21 F with one previous sexual partner;self.relationship_advice +bad;21;9;DIPLOMACY Lebanon to seek a Peace Treaty with Israel;self.worldpowers +bad;21;13;False Flag Weekly News with Kevin Barrett and Jim Fetzer 2015 04 16;grizzom.blogspot.com +bad;21;17;Wars are now being waged by corporations and through corporations The Blackwater Sentences and the Killing Initiative;counterpunch.org +bad;21;5;An accurate description of life;youtube.com +bad;21;12;Study says guns deaths surpass vehicle deaths in Indiana WTHI Terre Haute;wthitv.com +bad;21;9;They had to ask one the saints for help;imgur.com +bad;21;4;Possible Classic Zed Chroma;self.leagueoflegends +bad;21;8;video Reddit help me rate this video plz;self.bloodborne +bad;21;8;if you keep failing try a new approach;self.NoFap +bad;21;13;Flemington deli owner ruined by White History Month backlash puts plea on GoFundMe;nj.com +bad;21;17;Anyone know if it s possible to transition from closer relief in RTTS to being a starter;self.MLBTheShow +bad;21;21;In AppInfo all my apps used to be here and you could disable updates etc but why are no apps showing;i.imgur.com +bad;21;3;since Stateful Tail;welz.org.za +bad;21;10;Question Can a bar reject all out of state IDs;self.fakeid +bad;21;37;Cubans to open talks about US fugitives as ties warm The U S and Cuba will open talks about two of America s most wanted fugitives as part of a new dialogue Joanne Chesimard and William Morales;news.yahoo.com +bad;21;10;The skip to beat feature in the editor is incredible;youtube.com +bad;21;21;If you want to try a free game try Roblox I ve highlighted some of the best parts in my opinion;self.gamesyoumightnotknow +bad;21;23;Request can someone please make it look like this guy is being kicked out of a clash of clans TH8 by a barbarian;self.picrequests +bad;21;14;Saw this on r adviceanimals and just knew it applied to all of us;i.imgur.com +bad;21;7;Big Chicago tournaments coming up in May;self.smashbros +bad;21;4;Table for 1 please;imgur.com +bad;21;13;A romance like kokoro connect but just straight up romance comedy or drama;self.Animesuggest +bad;21;5;Lupus CYPHER CYCLES S1 EP12;youtube.com +bad;21;10;Help Blueberries dying not thriving x post from r gardening;self.Berries +bad;21;13;Google s Android search now pulls content from apps you haven t installed;engadget.com +bad;21;7;NG 126 Pthumeru Ihyll Bloodletting beast BDoon;self.huntersbell +bad;21;16;Is it just me or are the pros using more double AWP setups since the patch;self.GlobalOffensive +bad;21;7;USA H PayPal W GTA V PC;self.GameSale +bad;21;3;Overview for downvotesyoass;reddit.com +bad;21;14;Any of the Fam going to Number Fest in Athens Ohio OU this saturday;self.fakeid +bad;21;5;Shake it off baby style;youtube.com +bad;21;4;Beer vs wine fermenting;self.Homebrewing +bad;21;11;New Lenox Fire Offering CPR AED Classes in May and June;nlfire.com +bad;21;7;PS4 LF2M CE HM have Crota CP;self.Fireteams +good;21;10;Gunnarsson over Bortuzzo Don t know that I like that;self.stlouisblues +bad;21;8;Battlefield Hardline Front Flipping Car WTF Moment 1;youtu.be +bad;21;12;Fernando Torres says Steven Gerrard is the best he has played with;skysports.com +bad;21;5;OC we were the ones;self.HFY +bad;21;15;Campaign started by Ben of Ben amp Jerry s to reduce Big Money in politics;stampstampede.org +bad;21;37;My real estate agent is pushing for me to use his staging associate I have a 1 bedroom condo 770 sqft condo in downtown SF And told that staging STARTS at 6k This seems high to me;self.RealEstate +bad;21;21;lt Choose an Arrow If it s Orange you shall exit the Friendzone If Blue you die a fat lonely virgin;self.circlejerk +bad;21;13;ALEC Threatens To Sue Critics That Point Out It Helps Keep Broadband Uncompetitive;techdirt.com +bad;21;11;When we hug someone we re inches away from their insides;self.Showerthoughts +good;21;10;Grown up adult men enjoying the new Star Wars trailer;imgur.com +bad;21;8;How Game of Thrones Could Boost Game Installs;chartboost.com +bad;21;3;New rust update;self.playrust +bad;21;5;Restoring Honda Trail 70 s;i.imgur.com +bad;21;7;24M4F Young athletic swimmer looking for fun;self.dirtypenpals +bad;21;13;decided to make my first grime edit a nice Tupac Fan edit Grime;imgur.com +bad;21;16;original article of the Sukhobok s death placed in the journal he used to work on;obkom.net.ua +bad;21;15;H 85 Blue M9 CH amp 100 Blue Stat AK CH W 500k amp 350k;self.GlobalOffensiveTrade +bad;21;3;24 Hour Event;self.swBurnedangels +bad;21;11;IOS Phone keeps asking Updating your carrier settings stingray or hacker;self.tracking +bad;21;49;Store Multipack openings PAYDAY 2 Insurgency Killing Floor 1k Don t Starve DLC Space Engineers 2k 7 Days to Die 4k Other South Park 10k ARMA 2 CO 6k Complete 7k AC Brotherhood Revelations III 4k Deluxe 5k Black Ops 2 11k Dishonored GotY 7k BoI Rebirth 6k MORE;self.SteamGameSwap +good;21;15;At 5 11 I f ind myself getting a lot of compliments on my legs;imgur.com +bad;21;9;Some of my art twerks plus a stoner comic;hobartlutz.tumblr.com +bad;21;10;The right finds a fresh voice on same sex marriage;washingtonpost.com +bad;21;4;Anybody watching Hackaweek com;self.motorcycles +bad;21;23;Name two extremely different celebrities that you re attracted to Who s your easily understood celebrity attraction and who s your embarrassing crush;self.AskReddit +bad;21;8;Anyone willing to trade 3ds mewtwo for offers;self.Club_Nintendo +bad;21;16;Book 7 Spoilers A mistake I found in A Crown of Swords chapters 35 and 36;self.WoT +bad;21;4;by Fran ois Bard;i.imgur.com +bad;21;4;Lightsaber plot point confirmed;self.StarWarsLeaks +bad;21;8;Important Info On Patcher And Repair Tool Fixes;self.OutreachHPG +bad;21;14;Since Cho seems to be quite popular right now here have his personal song;self.leagueoflegends +bad;21;11;PS3 Prison Break Finale amp Humane Raid Setups Finale Right Now;self.HeistTeams +good;21;6;New Dundey Rainbow Six 6 Siege;youtu.be +bad;21;4;Critique my deck please;tappedout.net +bad;21;4;Tied up again DanMachi;cdn.awwni.me +bad;21;14;AMULET by Kazu Kibuishi books 1 6 FREE right now through Amazon Kindle Edition;self.comicbooks +bad;21;7;10 Week Old Baby Kitten Cookie Playing;youtu.be +bad;21;2;Edward Squidwardhands;youtube.com +bad;21;7;Parkour REPETITION is the KEY to SUCCESS;self.perfectloops +bad;21;8;Getting Jerked Off Onto Mia McKinley s Feet;chaosclips.com +bad;21;13;PC EUW Looking for someone to play LoL with right now skype preferable;self.Playdate +bad;21;9;Warum Schroecks einer Arm dicker ist als sein anderer;imgur.com +bad;21;10;Rumor Agent Carter Has A 75 Chance At Getting Renewed;bleedingcool.com +bad;21;9;Mattias Backman and Jason Dickinson assigned to Texas Stars;texasstarshockey.com +bad;21;7;I feel like a horrible person now;gyazo.com +bad;21;10;Lettre ouverte Axelle Lemaire sur le projet de loi Renseignement;florian.rivoal.net +bad;21;5;April 15 Final Jeopardy qualm;self.Jeopardy +bad;21;11;Antonio Gates has started a second career as a boxing promoter;mmqb.si.com +bad;21;22;Apple is worried Samsung won t make enough chips for the iPhone because the Galaxy S6 is suddenly doing better than expected;businessinsider.com +bad;21;15;In the context of a swelling precariat union organizing is about more than hourly wages;americamagazine.org +bad;21;24;45 M4F Denver Great conversationalist who loves everything oral interested in a fwb situation with a confident relaxed woman Cross post from r dirtyr4r;self.r4r +bad;21;24;Over the past year my girlfriend printed T Shirts for me as gifts I present you B Day X Mass amp Easter Masterrace Collection;imgur.com +bad;21;16;Some posters for my dorm room this fall That s the fuckin way she goes boys;imgur.com +bad;21;6;GTA 5 PC stuck in loadingscreen;self.GTAV +bad;21;3;Question About Necrochasm;self.DestinyTheGame +bad;21;0;;apostrophe.com.ua +good;21;18;I spliced the opening pan from the new Star Wars trailer into a 3840x1080 dual monitor wallpaper Enjoy;self.scifi +bad;21;6;Draggy How to clean windows Humour;youtube.com +bad;21;3;HELP ME PLEASE;self.NoFap +bad;21;16;My daughter is a filthy presser I m thinking about kicking her out of the house;i.imgur.com +bad;21;5;Asus Hero VII and DDR3;self.buildapc +good;21;3;Red lipped redhead;m.imgur.com +bad;21;3;Geddon too strong;self.hearthstone +bad;21;12;How much did PG13 s 91 minutes this season cost the Pacers;self.nba +bad;21;10;Lets Play The Forest Season 2 Episode 2 Cannibal Soup;self.LetsPlayVideos +bad;21;8;m2bk docker Send your mongodumps to AWS S3;registry.hub.docker.com +good;21;19;Girls of reddit when you see a guy you find hot how would you like him to approach you;self.AskReddit +bad;21;2;me irl;i.imgur.com +bad;21;8;Star Wars The Force Awakens Official Teaser 2;youtube.com +good;21;8;Are you sure about that GTA V installer;imgur.com +bad;21;8;My friend decided to show off his donuts;i.imgur.com +bad;21;6;Daybreak is SOE all over again;self.Planetside +good;21;12;Serious Reddit Parents at what age is your child the WORST Why;self.AskReddit +bad;21;5;The Three Stages of Gentrification;i.imgur.com +bad;21;3;Xbox release possible;self.killingfloor +bad;21;3;Scratched marble tile;self.homeowners +bad;21;11;Google Now Reminders not alerting me on my HTC One M8;self.AndroidQuestions +bad;21;5;An accurate description of life;youtube.com +bad;21;15;Petition to set the Google Doodle on April 24 to commemerate the Armenian Genocide armenian;redd.it +bad;21;8;WSIG Interested in Purchasing my First Board Game;self.boardgames +bad;21;5;First time at Celebration HALP;self.StarWars +bad;21;13;Finally had a knife display made Used magnets to hold up the blades;imgur.com +bad;21;3;Lee Me Alon;youtube.com +bad;21;6;Typical signs of an exit scam;self.AgMarketplace +bad;21;14;The douche who just clicked it at 39 seconds just now that s me;self.thebutton +bad;21;12;Amazing goal from Pel against Sweden in the 1958 World Cup gif;akigifs.blogspot.com.br +bad;21;5;What are you looking at;self.CasualConversation +bad;21;5;SPOILERS Story Summary TL DR;self.TerraBattle +bad;21;10;Tamy Te iubesc Cea mai proast melodie a acestui an;youtube.com +bad;21;5;Champagne Pool NZ OC 3648x2736;i.imgur.com +good;21;7;This is awful In a good way;self.Twitch +good;21;39;Italian police Migrants threw Christians overboard Muslims who were among migrants trying to get from Libya to Italy in a boat this week threw 12 fellow passengers overboard killing them because the 12 were Christians Italian police said Thursday;cnn.com +bad;21;18;Changed countries changed schools and now everything that as interesting about me is gone what should I do;self.highseddit +bad;21;14;I wanted to test run the game first before buying is the savefile transferable;self.PiratedGTA +bad;21;12;If I get 511 updroids I will swallow this brand new samshit;imgur.com +bad;21;9;Questions About Small Claims Lawsuit in Los Angeles County;self.legaladvice +bad;21;8;Fake Tweak anyway to get back the money;self.jailbreak +good;21;14;24 m4f LosAngeles Looking for a 35 woman preferably with kids slender to average;self.RandomActsOfBlowJob +bad;21;9;Custom Mog FFVI Funko Commission Made From 6 Baymax;gemr.com +bad;21;4;Old Spice Nature Adventure;twitch.tv +bad;21;8;John Schneider talks ball with Brock and Salk;fieldgulls.com +bad;21;11;Loot from 10K bird s nests from mole claws amp skins;self.2007scape +bad;21;1;pedophile;self.Joe56780 +bad;21;12;Rare image of PK Subban immediatley after being ejected from game 1;img3.wikia.nocookie.net +bad;21;6;French interview with madeon in Nante;youtube.com +bad;21;6;XB1 LF2M for CE Nm fresh;self.Fireteams +bad;21;26;The ancient Somnath Temple Gujarat India which was destroyed six times by Islamic invaders and rebuilt consecutively and has thus been compared to the Phoenix 1024x683;farm5.staticflickr.com +bad;21;8;Pretty much the only time this is ok;imgur.com +good;21;10;Initial release Magpul Glock 17 PMags are defective Magpul CEO;self.guns +bad;21;14;Got to the N key with cock ring feel free to send comparison shots;i.imgur.com +bad;21;7;Ever seen the movie Spies Like Us;imgur.com +bad;21;2;Further goals;self.swarmsim +bad;21;9;Skiing Demming Peak and Red Mountain xpost r backcountry;adventuresoffrank.com +bad;21;8;Americans favor 15 00 an hour for Congress;newyorker.com +bad;21;6;MySQL Help understanding a query question;self.SQL +bad;21;6;NY Does my employer owe me;self.legaladvice +bad;21;7;STOLEN BIKE AT RAVENSWOOD AND BRYN MAWR;self.EdgewaterRogersPark +bad;21;6;He has his mother s eyes;i.imgur.com +bad;21;5;I don t need you;self.UnsentLetters +bad;21;8;NATO chief concerned by Russian escalation in Ukraine;iol.co.za +bad;21;9;The exceptional thing the successful GOP candidate must say;washingtontimes.com +bad;21;6;ELI5 How do pencil erasers work;self.explainlikeimfive +good;21;15;At 5 11 I f ind myself getting a lot of compliments on my legs;imgur.com +good;21;5;YOU RE GOD DAMN RIGHT;i.imgur.com +bad;21;2;My Cycle;self.NoFap +bad;21;4;M4F Filthy word game;self.dirtypenpals +bad;21;9;How Every Parking Sign Should Be pulled from Pics;imgur.com +bad;21;16;The Bobcat Trade is Still Going Strong in This State Thanks to a Watered Down Ban;takepart.com +bad;21;11;Here s a picture of my Technics 1210 MKII with AT110E;flickr.com +bad;21;7;Switching out the caps in a CMOY;self.diyaudio +bad;21;8;Congressional Chairmen Strike Deal on Pacific Trade Accord;nytimes.com +bad;21;1;Kiss;imgur.com +bad;21;10;Setup Men pick 2 J Johnson K Giles T Watson;self.fantasybaseball +good;21;4;Thanks for the warning;imgur.com +bad;21;2;These updates;self.granturismo +bad;21;21;I m a little late to the party but I screen shoted the digitalized tattoo from buzzfeed of the crappy charmander;i.imgur.com +bad;21;9;Vietnam 6 Panel Khaki DJ Love Tee Black Large;imgur.com +bad;21;6;so what do you guys think;i.imgur.com +bad;21;6;Lost dog Campbell and McKinney streets;self.Denton +bad;21;6;We need to talk about Chai;self.crusadersquest +bad;21;12;Put my locker outside enjoy bending down a little bit more everyday;self.pettyrevenge +bad;21;11;So Kanye and Kim made Time s 100 Most Influential People;imgur.com +bad;21;15;An uphill battle sounds bad but when things are going downhill that s bad too;self.Showerthoughts +bad;21;6;xb1 n1m atheon nm Gt TheySmokeAway;self.Fireteams +bad;21;25;D Double E P Money amp Footsie spitting over 040 Joker amp Swindle Minors 040 Joker amp Swindle Let It Be Known amp Wiley Morgue;youtu.be +bad;21;8;W NZB su invite would be most excellent;self.UsenetInvites +bad;21;2;What If;self.leagueoflegends +bad;21;10;Paul Tudor Jones II Why we need to rethink capitalism;youtu.be +bad;21;17;Doing a fishing survey for a market research class about rod protection anyone want to take it;lasalle.co1.qualtrics.com +bad;21;3;Aquaclear or Canister;self.Aquariums +bad;21;16;How can a bus have a clock speed How does PCI Express have a clock speed;self.AskEngineers +bad;21;5;So this is a thing;self.showerorangegonewild +bad;21;4;Victoria tries gymnastics OC;i.imgur.com +bad;21;4;smesh mov 2 pstre;vignette1.wikia.nocookie.net +bad;21;11;Would simply lifting my iPhone 6 screen up void my warranty;self.iphone +bad;21;2;Reviews Airborne;savehorror.com +bad;21;9;Gov Chris Christie takes strong stance against marijuana legalization;wpxi.com +bad;21;8;John Carmack seems pretty pissed off with Nvidia;self.oculus +bad;21;10;My Fox Penn National updates plans for Plainville slot parlor;myfoxboston.com +bad;21;9;Paper airplanes likely existed before there were real airplanes;self.Showerthoughts +bad;21;8;Penn National updates plans for Plainville slot parlor;myfoxboston.com +bad;21;7;NASA Spacecraft Achieves Unprecedented Success Studying Mercury;nasa.gov +bad;21;6;My favorite songs of all time;topstuff.urdublog.com +good;21;5;Gifted Dedonarrival Random I swear;i.imgur.com +bad;21;6;Has anyone exacted revenge on you;self.AskReddit +bad;21;11;USW LOOKING Position 1 2 player seeking team with careful playstyle;self.compDota2 +bad;21;5;EUW 4k LF RANKED PARTNERS;dotabuff.com +bad;21;12;ok its my hairy ass lol but am hard i swear colin;imgur.com +bad;21;10;What happens when you take your helmet off in space;self.space +bad;21;4;I need your help;self.leagueoflegends +bad;21;17;Impetuous Ritual Despair Australia 2014 FFO Portal Teitanblood music that sounds like the 7th circle of Hell;youtube.com +bad;21;17;I took this photo the other day Somewhat new to photography and your critique is greatly appreciated;imgur.com +bad;21;8;M4F Not the wedding day you had expected;self.dirtypenpals +bad;21;10;What s the difference between a rooster and your mom;self.Jokes +bad;21;8;Palastic Far Away feat Josh Roa Indie Pop;youtube.com +bad;21;3;My saves disappeared;self.GrandTheftAutoV_PC +bad;21;8;5E I need suggestions for non magic Ranger;self.DnD +bad;21;20;Don t know if you guys follow fashion but Japanese Designer Yohji Yamamoto did a Ground Y x Evangelion line;fashion-press.net +bad;21;1;Image;claudio-pesca.com.ar +bad;21;12;So it s dress up day at my friend s kids school;imgur.com +bad;21;12;Measurement Check 32H but actually probably a 28 band switching to Comexim;self.ABraThatFits +bad;21;40;Twenty One Pilots Guns for Hands pop 2013 The duo that is Twenty One Pilots Tyler Joseph and Josh Dun has earned widespread applause for their energetic live sets and distinctive fusion of piano driven pop and lyrical uplift h;youtube.com +bad;21;5;That room I made today;self.OnePieceCircleJerk +bad;21;8;Repost Academic Affordable Care Act Survey All Welcome;unh.az1.qualtrics.com +good;21;12;It only took 5 months to get these imported Ukrainian Silver Stash;i.imgur.com +bad;21;11;I miss when it used to snow more here in California;flickr.com +good;21;10;NASA Probe to Crash Into Mercury in 2 Weeks Time;news.discovery.com +bad;21;2;MINI GAMES;self.GrandTheftAutoV +good;21;5;Dark Summoning by David LaRocca;imgur.com +bad;21;30;Miss Toronto The early days of Toronto s now long gone beauty pageant are amazingly documented in our archives and intersect with a lot of our regional and national history;buzzfeed.com +bad;21;7;Low budget Turkish anti drug TV spot;youtube.com +bad;21;4;Advice Needed Scratched Car;self.Advice +bad;21;20;My mother has some social hierarchy in her head that means she infinitely thinks she is better than everybody else;self.rant +bad;21;12;I have TOYPAJ Untitled Buddah and 2 other blink vinyls for sale;self.Blink182 +bad;21;5;Man Stuck In Seat Belt;youtube.com +bad;21;13;I start working a 2nd job next week Any tips for staying sane;self.CasualConversation +bad;21;11;WANT 20 000 000 dollars 20 000 Donuts 360 SP tiles;self.freedonuts +bad;21;11;Learn how to drive before you kill someone you little fuckboys;self.rant +bad;21;7;FT Schramms Black Agnes ISO Vanilla Rye;self.beertrade +bad;21;9;The Lost Viking Interactive Quotes Heroes of the Storm;youtube.com +bad;21;22;Apple is worried Samsung won t make enough chips for the iPhone because the Galaxy S6 is suddenly doing better than expected;businessinsider.com +bad;21;9;GOG THANK YOU u nTesla27 for dead space 2;self.GiftofGames +bad;21;7;Blizzard cannot balance this game worth shit;self.hearthstonecirclejerk +bad;21;6;Has anyone here ordered off reverb;self.Guitar +good;21;14;Anybody here in IT Could you help a 19 year old with career advice;self.AskMen +bad;21;7;What is the latest news on lollipop;self.republicwireless +bad;21;9;The Passenger Experimental Iggy Pop and some Ghanese vocals;soundcloud.com +bad;21;15;It looks like Pandora is the title of the game with my phone s background;self.bloodborne +bad;21;11;Valkyria Chronicles Main Theme amp Desperate Fight Guitar Cover LevelUp Challenge;youtube.com +bad;21;14;Redditor epically tricks his SO into believing he was a figment of his immagination;imgur.com +bad;21;14;I don t know why but I turned that guy s Charmander into a;m.imgur.com +bad;21;15;Can t seem to cancel out the red tone in my face any makeup suggestions;self.MakeupAddiction +bad;21;13;Shadow Spider s Kave 5 2 Kano Brutality Terminate 385 lt TIMED gt;self.kryptguide +bad;21;14;Nicola Sturgeon calls out David Cameron for not attending the election debate BBC News;youtube.com +bad;21;10;Women 24 more likelily to suffer heart attack from divorce;dailymail.co.uk +bad;21;9;Homemade chocolate sponge dulce de leche and cream 3664x1858;imgur.com +bad;21;7;Boom Tough Actin Tenactin Tower of Guns;self.LetsPlayVideos +bad;21;4;Swedish brand CH TEAU;chateauclothing.se +bad;21;11;Recent events for Kamikazi3000 I killed 5 boss monsters in Daemonheim;self.thebritishelites +bad;21;9;Kayaking on the Detroit river next to Belle Isle;imgur.com +bad;21;23;Why do HOAs keep popping up in north county I feel like it s getting hard to find a newer non HOA home;self.sandiego +bad;21;5;lt Petition to ban petitions;self.circlejerk +bad;21;13;Would bad odors smell bad to someone who has never smelled anything before;self.NoStupidQuestions +bad;21;6;I found a crystal triskelion fragment;self.JGsAdventureLog +bad;21;11;De ce nu m duc la o cafea n sediul Parlamentului;contributors.ro +bad;21;6;Build Ready Just a final check;self.buildapc +bad;21;8;Fox News loves to steal stories from Reddit;imgur.com +bad;21;3;After the gym;imgur.com +bad;21;7;Gimme score if u cri ever tim;i.imgur.com +bad;21;7;Oh man I love the latest update;i.imgur.com +bad;21;8;It s gonna be okay cousin G Baby;imgur.com +bad;21;5;H Paypal W Starbucks 75;self.giftcardexchange +bad;21;12;M Pesa Shuts Down as They Move Servers from Germany to Kenya;self.MuchBitcoin +bad;21;11;29M with 29F SO having problems with Birth Control amp Libido;self.relationships +bad;21;3;overview for gamezterror;reddit.com +bad;21;25;For those of us who grew up on Schwan s the sight of this truck usually meant good things Like Chocolate Chip Mint Ice Cream;savingdollarsandsense.com +good;21;15;How I think it would feel having a full amiibo collection in the long run;imgur.com +bad;21;7;where to buy some specially printed baggies;self.trees +bad;21;5;Start date for changing firms;self.Accounting +bad;21;8;xbox1 selling 3mil 14 100k very fast delivery;self.MCSXbox +bad;21;1;Opposites;imgur.com +bad;21;2;Music Corona;youtube.com +good;21;15;Popper NBA announces it will begin blood testing for HGH in the anti drug program;twitter.com +bad;21;5;YOU RE GOD DAMN RIGHT;i.imgur.com +bad;21;9;I am Bread Gameplay Ep 6 JUST GARDEN THINGS;youtube.com +bad;21;7;Which television episode still haunts your dreams;self.AskReddit +good;21;6;Arjun Invokes War Goddess by nisachar;imgur.com +bad;21;8;WTS Fleet all LTI Auroras Starfarer Relciamer Herald;self.Starcitizen_trades +bad;21;7;Hackers take down Google s Malaysian homepage;engadget.com +bad;21;13;Can we get some promo or event for people who arent in college;self.heroesofthestorm +bad;21;7;THE FUCKOFF SQUAD GTA V PC BANTER;youtube.com +good;21;15;Astounding Video of Volcano Shock Wave Can you calculate distance of boat to the blast;dailymotion.com +bad;21;4;https gfycat com VastKindlyBufeo;gfycat.com +bad;21;12;Request for help a letter postcard sent from every province amp territory;self.canada +bad;21;7;Damn it Wolfskull what happened to you;self.TheWolfskullParty +bad;21;5;Miami Niggers Drive Shit Like;i.imgur.com +bad;21;7;This guy shaving his entire upper body;youtube.com +bad;21;4;Calling all colorblind players;self.ultimate +bad;21;5;Looots of Charmander Pictures Recently;imgur.com +bad;21;4;Sneak Peek AtV 40;star-citizen-news-radio.de +bad;21;5;Cheryl s Birthday Problem singingbanana;youtube.com +bad;21;11;What is the worst case of social anxiety you have witnessed;self.AskReddit +bad;21;9;I think my debit card may have gotten scammed;self.legaladvice +bad;21;8;I feel like there is something missing here;trialx.com +bad;21;18;Build Help Need help finding compatible parts with the stuff I ve got for a semi budget build;self.buildapc +bad;21;7;Charlie LeDuff Golfs the Length of Detroit;youtube.com +bad;21;5;23F4M I want a sissy;self.dirtypenpals +bad;21;22;How come people with J as one of their initials end up having their name shortened e g BJ PJ CJ etc;self.Showerthoughts +bad;21;42;Why are card companies advertising on sites like FlyerTalk which is basically all people who are just using these cards for the rewards It doesn t make sense that they would approve those sites as affiliates Am I missing something Just curious;self.churning +bad;21;10;WCVB New England Patriots to be honored at White House;wcvb.com +bad;21;9;WCVB Hillary Clinton to visit New Hampshire next week;wcvb.com +good;21;16;Three of the better sets of tits in Hollywood Christina Ricci Eva Green and Jessica Pare;i.imgur.com +bad;21;10;F4A relaxing ASMR whispering kissing counting Swedish a little moaning;self.gonewildaudio +bad;21;8;Gerry amp The Pacemakers I ll Be There;youtu.be +bad;21;13;Someone needs to edit in a protect from melee prayer above his head;gfycat.com +bad;21;33;WP A young women is murdered Her husband is distraught but eventually moves on and remarries Then decades later a cold case team turns up and arrests his new wife for the murder;self.WritingPrompts +bad;21;9;My dad gave me these to put on cars;imgur.com +bad;21;5;Noob questions about jogging stroller;self.running +bad;21;7;6 US Beta Keys to Give Away;self.HotSBetaKeys +bad;21;15;Cajmere Percolator House Chicago Cajmere 2010 rework Crazy funny video from the classic Cajual label;youtu.be +bad;21;11;Really old spam ring using reddit to gain hits users funds;self.spam +bad;21;10;ELI5 Why do I get sick whenever the season change;self.explainlikeimfive +bad;21;5;Advice on Cancellation Agreement Preparation;self.legaladvice +bad;21;11;Everything you need to know about the Orange amp White game;utsports.com +bad;21;7;BPA trumps temperature to decide turtle sex;futurity.org +good;21;5;Oh fuck Pepe on Sportsnation;imgur.com +good;21;5;Some new bills some old;imgur.com +bad;21;7;The ESA s 2015 study is out;theesa.com +bad;21;5;overview for rotundamedia com au;self.SEO_Killer +bad;21;1;6000;self.thebutton +bad;21;3;A quick question;self.GrandTheftAutoV_PC +bad;21;8;Claim of the Saxon Kingdom of the Kustervolker;self.HistoricalWorldPowers +bad;21;17;Prominent Zionist says the Holocaust was a good thing because it increased Jewish American support for Israel;thejewishweek.com +bad;21;7;TOMT rapper Name of a british rapper;self.tipofmytongue +good;21;43;The r political is r personal when someone says they don t consider firefighters and police public servants I hope your house burns down while you re being robbed at gunpoint We ll see how quick your tune changes asshole Eat shit dude;np.reddit.com +bad;21;8;Russia threatens military action over NATO missile shield;wsj.com +bad;21;25;D Double E P Money amp Footsie spitting over 040 Joker amp Swindle Minors 040 Joker amp Swindle Let It Be Known amp Wiley Morgue;youtu.be +bad;21;10;NA H MARIO GOLF WORLD TOUR 3DS W 10 Eshop;self.Club_Nintendo +bad;21;12;Oklahoma Restaurant Owner Leaves Note Inviting Dumpster Diver to a Free Meal;gma.yahoo.com +bad;21;9;Who you got if WCF matchup is GS SA;self.nba +bad;21;3;U S Residence;self.digitalnomad +bad;21;3;new account peeps;self.slashdiablo +bad;21;7;Civilization 5 Lets Play China Deity 6;youtube.com +bad;21;15;Hiring Online Sweden Need help getting Klarna a Swedish payment system to work with Shopify;self.forhire +bad;21;6;Ned Stark was a complicated man;imgur.com +bad;21;11;TIFU by accidentally telling the girl I like to marry me;self.tifu +bad;21;8;Let s talk about QBs for a moment;self.KansasCityChiefs +bad;21;8;Cache Creek Animal Rescue Opens in New Lenox;patch.com +bad;21;6;We would really appreciate some help;self.RandomActsOfPizza +bad;21;7;Sugar Bear Pretty Pussy Raw Dancehall 2015;youtube.com +bad;21;17;Me 26 M with my 25F girlfriend of four years Gut feeling or do what s logical;self.relationships +bad;21;10;Looking for 2 tickets to Walk the Moon for Monday;self.Louisville +bad;21;10;Chris Christie s Loud Expensive and Very Controversial Urban Agenda;nextcity.org +bad;21;6;SotFS when to start the DLC;self.DarkSouls2 +bad;21;5;Minecraft The origin of Steve;self.AskScienceFiction +bad;21;7;Pokermens battling x post from r gif;i.imgur.com +bad;21;8;AngelBeats AMV Anime Music Video World s System;youtube.com +bad;21;16;TIL Vince has been shoving unpopular matches things to the fan s throats since the 80s;self.SquaredCircle +bad;21;6;Question Confused about death grip syndrome;self.sex +bad;21;14;What actor was a complete miscast and who would you replace in the role;self.movies +bad;21;3;PS4 LF1M NF;self.Fireteams +bad;21;6;Anybody ever order from thekingofthevapes com;self.electronic_cigarette +bad;21;6;PC M9 Bayonet Tiger Tooth FN;self.GlobalOffensiveTrade +bad;21;11;Brand new group of players and DM Me where to start;self.DnDBehindTheScreen +bad;21;13;PC Stattrak Karambit Doppler P2 FN w epic top1 cosmic orgasm pink pattern;self.GlobalOffensiveTrade +bad;21;10;American Woman Debra Lobo Wounded in Pakistan Drive By Shooting;nbcnews.com +bad;21;11;I shot this video strictly for the free Matzo Ball Soup;youtu.be +bad;21;12;Obesity Linked to Greater Risk of Prostate Cancer in Blacks Study Says;drugs.com +bad;21;4;New Nike Huarache pickups;imgur.com +bad;21;7;Internet org may ask govt for help;financialexpress.com +bad;21;5;Roundworm Parasite Targets Canine Eyes;drugs.com +bad;21;16;Recruiting Reddit_Force 100 Vp Any HQ 10 people required in task force 6 people can join;self.boombeachrecruit +bad;21;11;E Cigarette Use Triples Among U S Teens in 1 Year;drugs.com +bad;21;4;Order 772 Payment Help;self.FakeYourDrank +bad;21;9;Calif Measles Outbreak May Be Coming to a Close;drugs.com +bad;21;7;Prelude speedometer not working sometimes Easy fix;self.Honda +bad;21;8;Man 4 16 15 patch what a mess;self.h1z1 +bad;21;4;Swapping for GTA V;self.h1z1 +bad;21;8;How to return home after a mini hiatus;self.ACON_Support +bad;21;9;What are the chances of my order being cancelled;self.amiibo +bad;21;10;Bill Shuster admits private and personal relationship with airline lobbyist;politico.com +bad;21;28;TOMT song Upbeat electronic sound with two guys singing i think one was asian I also remember that all the girls in the music video were ridiculously hot;self.tipofmytongue +bad;21;10;Hey guys just making sure this pc build is compatible;self.buildapc +bad;21;8;Worth buying for PC when only have keyboard;self.MortalKombat +bad;21;3;Super megaforce Blue;i.imgur.com +bad;21;13;I hung out with this little guy at Le Doggy Cafe in Montreal;i.imgur.com +good;21;13;When it s time to get the nails trimmed and my sensor hand;imgur.com +bad;21;22;UDL NDINGE STR MMER TIL P R CRUSADERKINGS FOR AT SKAFFE DRONNINGENS ULTIMATIVE F DSELSDAGSGAVE OG SLUTNING P KRIGEN MOD R INGLIN;reddit.com +bad;21;18;MRW after my dog and I finally make it to my birthplace in Mexico to visit my cousin;imgur.com +bad;21;6;What are you saving yourself for;self.thebutton +bad;21;59;REQ Columbus OH 700 PayPal to buy car at VOA auction this weekend Can pay back 200 mo starting in May hopefully faster but thats what I can promise Going through divorce let soon ex wife keep family van for my kids sake Staying at friend s but need car to get job to get on my own again;self.borrow +bad;21;4;Batch 1 my review;self.Barreling +bad;21;24;I did an assignment for my vid editing class using public domain footage to make a music video with subtext I used Nude thoughts;youtu.be +bad;21;15;Oliver Reed s very loose interview Might be a loose fit Might be nonetheless awesome;youtube.com +bad;21;10;Dog Transmitted Rabies Kills 160 People a Day Worldwide Study;drugs.com +bad;21;8;Humans Can t Resist Those Puppy Dog Eyes;drugs.com +bad;21;7;Dog Flu Outbreak Unleashes Warnings From Veterinarians;drugs.com +bad;21;23;I m really looking forward to the remake of Longest Yard with the Cons team being made up of all former NFL Players;self.Showerthoughts +bad;21;8;DAI Spoilers Some thoughts and questions about Blackwall;self.dragonage +bad;21;14;Sarajevo Bosnia and Herzegovina Photographer Emir Terovic 2048 x 1076 OS u trot trot;drscdn.500px.org +bad;21;19;What piece of advice have you been given that helped you a great deal later on in your life;self.AskReddit +bad;21;9;Problem with lollipop update for note 3 sm n9005;self.note3 +bad;21;6;Wach out 4 mi bOOERdy rolls;youtu.be +bad;21;4;Mississippi State Cheerleader Haley;collegecheerheaven.blogspot.com +bad;21;10;What do you wish more people understood about your job;self.AskReddit +bad;21;21;You can t think of Belichick without thinking of Brady and vice versa What are some other famous coach QB duos;self.nfl +bad;21;6;kindle Damselfly by Jennie Bates Bozic;amazon.com +bad;21;3;Rant Husband related;self.BabyBumps +bad;21;20;Landing in Frankfurt at 11am flying out at 8 30pm looking for recommendations on where to eat what to see;self.frankfurt +bad;21;17;Just started to play Links Awakening for the first time and thought this was really cool level;m.imgur.com +bad;21;13;Got another bone marrow biopsy today but first let me take a selfie;i.imgur.com +bad;21;18;I don t think I ve ever built horizontals on my 454 Here s my attempt 0 2ohms;imgur.com +bad;21;12;USA H Platinum Reward and CN Coins W Eshop card Amazon Credit;self.ClubNintendoTrade +bad;21;16;Why or how did you end up working with databases and SQL Do you enjoy it;self.SQL +bad;21;7;Civilization 5 Lets Play China Deity 6;youtube.com +bad;21;11;H PayDay 2 W Valve or Counter Strike Complete Pack Offers;self.SteamGameSwap +bad;21;14;guy tries to start a disco dance in a supermarket but security ruins it;youtu.be +bad;21;10;It s BOGO time Two 2 30mls for 16 99;self.Vaping +bad;21;4;A very special message;i.imgur.com +bad;21;5;m4M make me yours Daddy;self.dirtypenpals +bad;21;14;A great explanation of why and how children should be taught programming in schools;np.reddit.com +bad;21;5;Tint tail lighs with plastidip;youtube.com +bad;21;4;Not on my watch;i.imgur.com +bad;21;9;Possibly the best mid suplex photo ive ever seen;imgur.com +bad;21;7;Man has difficulty walking on slippery floor;youtube.com +bad;21;5;Automated Malware Virus File Transfers;self.AskNetsec +bad;21;16;Looking at the PTR notes what do you guys think the ranks for tanks will be;self.wow +bad;21;23;Request Is there any fix to stop these Ads by Google from automatically popping up every time I open an app by ESPN;media.giphy.com +bad;21;15;Discussion Should there be ship specific quests in the PU with some vignettes to illustrate;self.starcitizen +bad;21;7;MISC Servers Down Rumor 10 Minutes Left;self.ClashOfClans +bad;21;31;3648x2736 I took this shot of the Sun breaking through the Clouds over the Snow covered Mountains The Road to Milford Sound from Queenstown New Zealand May 2009 OC u Kleon333;i.imgur.com +bad;21;8;Prayer Request Friend s Father Unexpectedly Passed Away;self.Christianity +bad;21;8;With regards to all these Charmander tattoo posts;i.imgur.com +bad;21;28;People who academically study language have to know it better than native speakers so they understand the what the writing of people who misunderstand their own language means;self.Showerthoughts +good;21;8;Not sure if cs is right for me;self.cscareerquestions +bad;21;16;ServerSmash VODs for Match 33 Emerald vs Cobalt and 34 Briggs vs Miller are now available;np.reddit.com +bad;21;7;Creatine is not bad for your kidneys;ergo-log.com +bad;21;8;No mum I didn t eat your yoghurt;imgur.com +bad;21;6;In Delhi do as Beijing does;indianexpress.com +bad;21;4;Got My Stickers on;self.TopGear +bad;21;13;I just got hired as a correctional officer for my county jail AmA;self.casualiama +bad;21;15;Interesting Vice article about a trans woman in prison Sickening to read but very insightful;vice.com +bad;21;6;Question about plumbing for a sump;self.ReefTank +bad;21;11;What are some of the easiest tablet backup and transfer software;self.AndroidQuestions +bad;21;10;TIFU by giving myself two huge hickeys on my forehead;self.tifu +bad;21;15;Chiang Kai shek Winston Churchill amp amp FDR at Cairo Conference 1943 580x442 u cjthomas16;upload.wikimedia.org +bad;21;15;I think that steak fucking sucks and i can t see why people like it;self.unpopularopinion +good;21;5;I realised this earlier woah;imgur.com +bad;21;5;Request Gaming logo for accounts;self.picrequests +bad;21;7;First time paying off an outstanding debt;self.personalfinance +bad;21;2;Fishing boats;imgur.com +bad;21;3;What is aromantic;self.aromantic +bad;21;2;Kolacky Cookies;eating2health.blogspot.com +bad;21;9;Want to see some old GYM dvz not beta;twitch.tv +bad;21;20;This is going to create some very bad blood between these two teams Going to make for a fantastic summer;m.mlb.com +bad;21;9;Harrison Ford Rare Interview about his Life and Career;youtube.com +bad;21;9;Odds for the first round of games this weekend;self.nba +bad;21;10;What are you looking for in this year s shows;self.bonnaroo +bad;21;13;H ST Fire Serpent FT 940 pure keys W Keys or Sapphire Rubies;self.GlobalOffensiveTrade +bad;21;17;In celebration of finishing my final exams and graduating college Reddit what is your craziest exam story;self.AskReddit +bad;21;11;Good Times Actor Ben Power s Keith Passes Away At 64;iloveoldschoolmusic.com +bad;21;8;Trying to do more backgrounds still r ArtistLounge;i.imgur.com +bad;21;17;My free local paper focused this week s issue on trees Thought you d enjoy the cover;i.imgur.com +bad;21;10;A Man gets a hot iron pressed on his penis;i.imgur.com +bad;21;9;I just got a papercut from a 100 bill;self.firstworldproblems +bad;21;6;Celestial Bodies Image 2657 x 6000;imgur.com +bad;21;16;Should my daughter visit her mom in jail Do you agree with what this officer said;self.relationship_advice +bad;21;4;PS4 LF2M Crota Normal;self.Fireteams +bad;21;8;Saw this picture and was reminded of ss13;i.imgur.com +bad;21;5;I tried some fancy plating;i.imgur.com +bad;21;16;Me and a friend made a bet that I would reach challenger before he reaches diamond;self.leagueoflegends +bad;21;13;DOTA 2 has experienced the highest loss of players since release in 2012;puu.sh +bad;21;8;20 M4F Montreal Looking for tomorrow Infos inside;self.r4r +bad;21;7;Get a free Vanguard pack for Neverwinter;gaming.corsair.com +bad;21;6;Be Good Tanyas Rain and Snow;youtube.com +bad;21;2;Poker Survey;self.poker +bad;21;10;Pokemon Trading Card Game GBC Mason s Lab World Map;youtube.com +bad;21;7;Buying a used MKII at Guitar Center;self.maschine +bad;21;6;How do I imagine every grey;i.imgur.com +good;21;29;Wherever you are reading this is where you are for a year and cannot leave or enter a new place where are you and how bad would it be;self.AskReddit +bad;21;9;H BTA M9 Night MW W Keys items knives;self.GlobalOffensiveTrade +good;21;1;Content;i3.kym-cdn.com +bad;21;10;Does a professor really count as a low wage worker;americamagazine.org +bad;21;39;Most partisans treat politics like sports rivalries instead of focusing on issues Unlike previous research the study found that loyalty to the party itself was the source of partisan rivalry and incivility instead of a fundamental disagreement over issues;sciencedaily.com +bad;21;8;Useful forum for scouting out places to live;city-data.com +bad;21;17;People who waste moderators time and act like the victim when they were clearly in the wrong;imgur.com +good;21;2;Elisha Cuthbert;i.imgur.com +bad;21;12;So i jump on draghi s desk and people discuss my undies;reddit.com +bad;21;4;Transfiguration 16 April 2015;self.PotterPlayRP +bad;21;5;Multiple accounts using one computer;self.archeage +bad;21;8;MagMaw DIE INSEC oops I am an insect;hearthcards.net +bad;21;15;Rand Paul isn t think skinned or sexist but he isn t answering our questions;evanponter.tumblr.com +bad;21;3;Any amiibo ideas;self.amiibo +bad;21;2;Hangover boobs;imgur.com +bad;21;21;I blended the end of Links 2 3 4 to the start of Sonne You can hear it at 3 29;puu.sh +good;21;12;Record of Teams Who Have 40 or More Rushing Attempts Since 2000;self.CFB +bad;21;6;Someone explain this argument to me;self.GMGFan +bad;21;4;Cryptic tweet from Sturridge;twitter.com +bad;21;10;New Comic Challenges What It Means to Have Super Powers;kickstarter.com +bad;21;11;Cow Milk Without the Cow Is Coming to Change Food Forever;reddit.com +bad;21;4;The Buzz Summer Vibe;youtube.com +bad;21;15;Critique 26 F I don t get many messages or replies What do you think;okcupid.com +bad;21;6;Your gaming clips videos and montages;self.GlobalOffensive +bad;21;9;For Trade Mishka Bootleg Kaiju Spongebob Chase 3 ex;self.vinyltoys +bad;21;23;I think a gentleman is someone who holds the comfort of other people above their own Anna Kendrick 640x427 OS quotesart u meowser33;simplethingcalledlife.com +bad;21;2;Mewtwo amiibo;self.amiibo +bad;21;24;Senate Democrats stall anti human trafficking bill by fighting to tack on government funding for abortion in violation of the Hyde Amendment r prolife;politico.com +bad;21;17;A Podcast Interview w Cities Skylines Lead Designer Karoliina Korppoo New Features Coming and City Planning Background;usa.streetsblog.org +bad;21;5;One cute chick with puppies;liveleak.com +bad;21;14;Slightly OT Slavoj i ek Political Correctness is a More Dangerous Form of Totalitarianism;youtube.com +bad;21;2;Railroad city;self.CitiesSkylines +bad;21;14;Suggestions or comments Reactivated after a couple of months trying to change my approach;okcupid.com +bad;21;14;45 m4f fancy a chat with an older guy pm me for my kik;self.Kikpals +bad;21;44;The next US president could be dangerously clueless about foreign policy There are already a handful of front runners And when it comes to foreign policy they ve each said things that are to put it gently a little out of touch with reality;reddit.com +bad;21;33;Officer chooses not to write citation for the guy who read ended Me Now his insurance company says there is no proof of fault Can I get the officer to amend his report;self.legaladvice +bad;21;1;Taxes;self.AdamCarolla +bad;21;22;Debatt Sweddit tycker till 17 homosexuella som inte kommer till himlen gamla m nniskors lagliga r tt att vistas ute och hockeytacklingar;self.sweden +bad;21;9;TIFU by having a 3 way with my supervisor;self.tifu +bad;21;6;Women s jerseys in the US;self.canucks +good;21;10;Bombed because I share a name with a fellow user;self.cigars +bad;21;7;Top websites secretly track your device fingerprint;kuleuven.be +bad;21;34;We ve all heard Jeff s remix of Days Turn Into Nights but how many of you guys have heard the original Do yourselves a favour I wasn t expecting this kind of beauty;youtube.com +bad;21;5;Risked 3 87 no winnings;self.csgolounge +bad;21;13;Kung Lao X Ray Set Up Tips Insane Damage Output Mortal Kombat X;youtube.com +bad;21;21;Serious What is the dumbest thing you ve ever thought said out loud found out about later that was completely wrong;self.AskReddit +bad;21;16;If you re looking for a great prosthetics gore flick check out Australia s Body Melt;rotundamedia.com.au +bad;21;6;She Kept it in the Basement;self.nosleep +bad;21;2;Pillow talks;imgur.com +bad;21;4;Labx7 Break the Barriers;soundcloud.com +bad;21;16;What exactly are the mechanisms involved that prevent the absorption and metabolism of antibiotics on marijuana;self.AskDocs +bad;21;4;players on cs go;self.GlobalOffensive +bad;21;6;Does anyone else feel guilty sometimes;self.introvert +bad;21;9;The Verdict Is In The Season Finale of Broadchurch;youtube.com +bad;21;11;Lore What The Moon Brings And Why They Hide Their Eyes;self.bloodborne +bad;21;4;Rant Attempted account retrieval;self.aion +bad;21;2;Point Imperial;pixtowords.com +bad;21;2;Gorgeous Blonde;i.imgur.com +good;21;6;Datome Twitter Q amp A Highlights;self.bostonceltics +bad;21;4;NAW Living alone sucks;self.offmychest +good;21;18;BBC Sport tweet about Bad News Barrett and use a picture of Randy Orton and Alberto Del Rio;twitter.com +bad;21;9;I just wanted to see what colour I am;self.thebutton +bad;21;8;USA CA H 20 30 PayPal W Case;self.hardwareswap +bad;21;5;Asian girl on a machine;gfycat.com +bad;21;12;Michigan sells nearly 9000 acres of treaty protected land for limestone mines;reddit.com +bad;21;8;Lupul is leafs King Clancy Memorial Trophy nominee;mapleleafs.nhl.com +bad;21;13;Brought MKX on PS4 but doesn t let me do story or online;self.MortalKombat +bad;21;11;Best bars venues to watch game 1 tonight in Mpls STP;self.wildhockey +bad;21;4;What are these birds;i.imgur.com +bad;21;11;Loads of Android apps free on Amazon Appstore GET Wolfram Alpha;amazon.co.uk +bad;21;14;It wasn t easy but Netflix will soon use HTTPS to secure video streams;reddit.com +bad;21;8;APPLE Quietly Removes iWatch Release Date from Website;reddit.com +bad;21;8;Anne Robinson watches porn for the first time;youtube.com +bad;21;9;Is she 17F ignoring me 17M What to do;self.relationships +bad;21;13;The early spring on the GAP CO trail Part 2 the CO Canal;self.bicycletouring +bad;21;10;After Rescuing Ukraine US Taxpayers To Bail Out Iraq Next;self.conspiro +bad;21;10;Why are direct input controllers not supported Joysticks and wheels;self.GrandTheftAutoV_PC +good;21;3;Reddit right now;i.imgur.com +bad;21;9;I made sheeple homebrew creatures what do you think;self.DnD +good;21;7;What subreddit do you always return to;self.AskReddit +bad;21;9;r conspiracy missing from my reddit account Anyone else;self.conspiro +bad;21;4;Knock and Fatima Miracles;self.Christianity +bad;21;4;Motorcycle Club First Look;youtube.com +bad;21;9;Candid in Paris Porte St Denis Looking for feedback;daanraman.com +bad;21;11;This is what happens when put a landmine in your hands;imgur.com +bad;21;12;So i jump on draghi s desk and people discuss my undies;theguardian.com +bad;21;8;LF Crowns FT Whatever you want to dupe;self.ACDuplication +bad;21;5;PC Karambit Doppler Phase 1;self.GlobalOffensiveTrade +bad;21;13;Anular las licitaciones a empresas privadas que rozan la temeridad en sus presupuestos;self.PlazaMenorca +bad;21;6;No Download Code in Mewtwo Email;self.smashbros +bad;21;18;Why are the motifs in so many english language nursery rhymes dark or having to do with violence;self.AskHistorians +bad;21;11;Communists urge no debt repayment to countries supporting anti Russian sanctions;self.conspiro +bad;21;1;Matchmaking;self.smashbros +bad;21;3;Estimating the Crowds;self.WaltDisneyWorld +bad;21;8;Just got accepted to grad school Some questions;self.GradSchool +bad;21;11;Are we all done shitting our pants about Emperor Thaurissan now;self.hearthstonecirclejerk +bad;21;14;Hypocrisy from beyond the grave Charlie Hebdo artist decries the special treatment Muslims get;self.conspiro +bad;21;6;baby photos i got baby photos;self.hiphopheads +bad;21;5;New Lenox Tropical Smoothie Robbed;chicagotribune.com +bad;21;3;dank mr skeletal;self.smesh +bad;21;9;What evidence is there for the historicity of Muhammad;self.islam +bad;21;17;YamanTV Ep 12 with English subs Second part of Unpretty Rapstar vs SMTM3 aired on April 6;dailymotion.com +bad;21;14;What s the word for when something is odd and frowned upon or outcasted;self.whatstheword +bad;21;18;Your taxes have nothing to do with the government s need for money Gold Anti Trust Action Committee;self.conspiro +bad;21;15;Once again today Israel comes to a complete stop for Holocaust Remembrance Day 2014 video;youtube.com +bad;21;6;Big booty prepared for hardcore screwing;xhamster.com +bad;21;20;An in depth account of the Apollo 13 rescue and the underlying reasons for the disaster in the first place;spectrum.ieee.org +bad;21;13;Rumours about Frozen 2 speculation on Hans helping Elsa amp Anna save Arendelle;christiantoday.com +bad;21;4;Peasantry in YouTube comments;imgur.com +bad;21;12;Wildstar s been pulled from shelves Might be dropping the sub fee;self.WildStar +bad;21;14;New pc for the wife and i plus camand center desk ideas as well;self.buildapc +bad;21;5;Rocket Thrower Autocord Digibase CN200;flickr.com +bad;21;8;Do Flu Shots Work Ask A Vaccine Manufacturer;self.conspiro +bad;21;15;Canucks tried to trade up to draft Bennett last summer last section of the article;blogs.theprovince.com +bad;21;7;Why do our airways constrict and dilate;self.biology +bad;21;4;Puppeteer vs Little Girl;reddit.com +bad;21;9;Anyone able to locate Bonobo s 2015 UMF set;self.EDM +bad;21;9;Citadel Head Bond Trader Leaves After Losing 1 Billion;self.conspiro +bad;21;8;ServerSmash 33 and 34 VODs are now available;self.PlanetsideBattles +bad;21;7;The Chalice Of Malice Bloodborne Part 6;youtu.be +bad;21;10;ELI5 Why is it illegal to pay for organ donations;self.explainlikeimfive +bad;21;6;Lf2m Vog hard fresh xbox one;self.Fireteams +bad;21;14;Would this rock hopper 29 bike a good mtb to get back into trails;specialized.com +bad;21;8;How many people here participate in this website;self.conspiro +good;21;3;Anon does track;imgur.com +bad;21;7;Is he cheating Chop his wiener off;facebook.com +bad;21;11;Deal Reached on Fast Track Authority for Obama on Trade Pact;nytimes.com +bad;21;38;US sponsored Democracy in Ukraine Kherson region Armed masked Right sector Nazis try to get into the People s Council to disrupt it At 3 20 one of them even tries to shoot someone but has a misfire;self.conspiro +bad;21;7;Cloud Trap Robbing Banks Prod GrandMaster Crack;soundcloud.com +bad;21;3;Flowers and glitter;i.imgur.com +bad;21;6;Nee help choosing my first Zippo;self.Zippo +bad;21;11;PvP Live Developer Q amp A with Brian Holinka Wowhead summary;wowhead.com +bad;21;5;Silver Elite needs help EU;self.AdoptASilver +bad;21;9;What did the pirate say when he turned 80;self.dadjokes +bad;21;25;Bills have 2 picks in first 4 rounds but have plugged tons of holes What trade down scenario do you think would be worth considering;self.buffalobills +bad;21;7;28F4A More captioning for you lovely people;self.exxxchange +good;21;13;Was just picked on in a reddit chat I could use a hug;self.CasualConversation +bad;21;5;Trouble finding the right character;self.MortalKombatX +bad;21;11;Elven Knights What keyboard key do you use for Chain Rush;self.DFO +bad;21;8;Get published with Sword amp Laser on Inkshares;swordandlaser.com +bad;21;14;Anyone going to the game this Saturday willing to ship me an Astrodome replica;self.Astros +bad;21;6;Colts Offseason Sleeper WR Duron Carter;colts.com +bad;21;2;Australian Servers;youtube.com +bad;21;10;Mercedes Benz F CELL Roadster with Hybrid Drive Concept 1500x1125;i.imgur.com +bad;21;9;What 22 to buy a 8 year old girl;self.guns +bad;21;7;Pelosi Iraq vote doesn t disqualify Clinton;thehill.com +bad;21;5;Pushbullet has Space Engineers Channel;self.spaceengineers +bad;21;10;Mimicking Iowa trip Hillary Clinton books first New Hampshire swing;cnn.com +bad;21;8;Pseudogenes Genetic Relic that contributes to cancer rates;lncrnablog.com +bad;21;3;Blek in minecraft;self.SethBlingSuggestions +bad;21;7;So what are you guys gonna wear;complex.com +bad;21;4;Natural history quiz answers;self.TheRedLion +bad;21;5;LF2M CE NM FRESH xbONE;self.Fireteams +bad;21;10;Seems like the way to the front page right now;i.imgur.com +bad;21;10;What percentage of your day do you spend being productive;self.DecidingToBeBetter +good;21;7;Magpul screwed up Glock 17 Pmags jamming;self.Firearms +bad;21;11;Lake Mille Lacs Walleye Limit to be lowered to 1 Fish;outdoornews.com +bad;21;11;Anyone have a working strategy for making money of spectating matches;self.smashbros +good;21;4;Spidey is a fan;i.imgur.com +bad;21;6;Jap gt Eng What does mean;self.translation +bad;21;7;PC M9 Bayonet Fade FN 95 Fade;self.GlobalOffensiveTrade +bad;21;1;Capitalism;i.imgur.com +bad;21;4;Hottie on the beach;4yimgs.com +bad;21;39;TIL that a woman driving to see a Star Wars movie stopped to help a motorcyclist with a flat tire who turned out to be Harrison Ford She and Chewie got free tickets and Harrison Ford took them home;self.circlejerk +bad;21;4;Somebody eventually had to;i.imgur.com +bad;21;6;The hands in this Twister app;imgur.com +bad;21;17;osu Taiko shinchikuhome DJ Sharpnel Exciting Hyper Highspeed Star Highspeed DT FC S 98 55 437 pp;youtube.com +bad;21;7;How to beat Lucina s crescent slash;self.smashbros +bad;21;3;GE world dependent;self.2007scape +bad;21;1;standing;li.co.ve +bad;21;7;Thinking of going blonde good bad idea;self.FancyFollicles +bad;21;22;Anyone know where I can watch the 1986 San Marino GP The full race is on YouTube but only with Brazilian commentary;self.formula1 +bad;21;3;Game Throwback Thursday;self.OkCupid +bad;21;13;Blackwater Employees to Prison Their Boss Honored Guest at University of Virginia Today;globalresearch.ca +good;21;6;I can t believe this shit;imgflip.com +bad;21;6;30 M4F Looking to share details;self.dirtyr4r +bad;21;4;Flair Profile u wognessmonster;self.sgsflair +bad;21;8;Feedback on BBEG introduction to the players please;self.DnDBehindTheScreen +bad;21;23;For those who train MMA any of you use videos for motivation Here is one that gets me really motivated Rise and Grind;youtube.com +bad;21;17;How to add multiple Sprites of same type created in SpriteKit Editor and add them on demand;self.swift +bad;21;4;Alzheimer s Coconut oil;juststarthealth.com +good;21;4;My veri f ication;imgur.com +bad;21;13;Google s Android search now pulls content from apps you haven t installed;engadget.com +bad;21;9;The scariest end to a mission I ve experienced;i.imgur.com +good;21;6;VERTIDO DE FUEL EN GRAN CANARIA;self.podemos +bad;21;3;uuuuuuuuuhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh Yuru Yuri;gifsound.com +bad;21;7;Reddit You can t negotiate your salary;money.cnn.com +bad;21;6;Focus restraint vs convention of elements;self.Diablo3witchdoctors +bad;21;6;Not Mine Steven universe RP roblox;roblox.com +bad;21;15;Since 5 7 I constantly have a high ping even though my internet is fine;self.leagueoflegends +bad;21;9;USA H 5 Amazon Credit W Earthbound DL code;self.ClubNintendoTrade +bad;21;13;Apr 16 20 30 UTC NA Dancingninjas s 121 FFA Time Bomb CutClean;self.UHCMatches +bad;21;16;original article of the Sukhobok s death placed in the journal he used to work on;obkom.net.ua +bad;21;10;SELL Original Penguin Color block long sleeve shirt size Small;self.wardrobepurge +bad;21;16;My 21M mom 50F is too sensitive She thinks my girlfriend hates her for no reason;self.relationships +bad;21;15;ELI5 Why can t a file name contain any of the following characters lt gt;self.explainlikeimfive +bad;21;3;Area border designs;self.Unity2D +bad;21;5;Gaia spitting on her tits;gfycat.com +bad;21;17;Did you spazz out and hit it as fast as possible as quickly as possible Be proud;self.thebutton +bad;21;4;Rainbow Six Siege Dunkey;youtube.com +bad;21;27;Knowing nothing about plumbing with no experience whatsoever I just fixed my leaky toilet I feel like Ron fucking Swanson Have you had any little victories lately;self.CasualConversation +bad;21;10;First Sub Ohm build 0 46 How can I improve;imgur.com +bad;21;2;On Demand;self.StarVStheForcesofEvil +bad;21;12;Please sign the White House Petition to pardon Gyrocopter Pilot Doug Hughes;wh.gov +bad;21;6;Zulrah Scales jagex makes another mistake;self.2007scape +bad;21;5;Impregnable love new br ferdi;steamcommunity.com +bad;21;11;New Horizons This Is The First Ever Color Picture of Pluto;forbes.com +bad;21;23;Couple with a lot of debt and poor money managing skills and low paying jobs wants to get better and get married help;self.personalfinance +bad;21;11;PS4 PSN FlyingPunk Looking for more people to play games with;self.PSNFriends +good;21;40;ELI5 Why as a normal citizen can t I wear the digital camo uniform that our military wears in public without getting beaten up Is there a law against the uniform itself or just impersonating an officer in the military;self.explainlikeimfive +bad;21;6;XB1 LF2M for CE NM fresh;self.Fireteams +bad;21;16;S Nightwish w Sabaton amp Delain Town Ballroom Buffalo NY April 16th 32 OBO 1 ticket;self.CONCERTTICKETS +bad;21;9;Who would be your ultimate celeb to cuck you;self.Cuckold +bad;21;7;PC M9 Bayonet CH Answer fast please;self.GlobalOffensiveTrade +bad;21;6;Vods of todays Na Vi match;self.DotA2 +bad;21;9;Changes to the Cartel Market Thursday April 16 2015;self.swtor +bad;21;9;Quick question about what Break means don t upvote;self.ultimate +bad;21;10;Grouper attacks diver for bag of invasive and destructive lionfish;self.autotldr +bad;21;10;Any of ya ll try that s mores frappuccino yet;self.starbucks +bad;21;10;Does anyone know a good restaurant around the Willowbrook area;self.chicagofood +good;21;11;What body modification is the most attractive or unattractive to you;self.AskReddit +bad;21;4;Blackbank a reliable alternative;self.AgMarketplace +bad;21;31;A friend and former bandmate of mine passed away last night I just wanted to share one of my favorites of his The is Suicide Clutch A Still Life Without You;animoto.com +bad;21;7;Anyone else reminded of The Seventh Tower;self.thebutton +bad;21;6;Cafes are the new internet cafes;self.Showerthoughts +bad;21;14;21 F4M Experienced Lil Princess looking for LTR funny experienced Daddy x post BDSMpersonals;self.LittlespacePersonals +bad;21;3;Testing the waters;imgur.com +bad;21;3;New Smash Announcement;i.imgur.com +good;21;14;An Alley in Tokyo s Golden Gai Bar District OC 1 836 2 448;i.imgur.com +bad;21;8;S3E20 Spoilers Arrow 3x20 The Fallen Promo Pictures;thetvjunkies.com +bad;21;2;Apartment Hunting;self.recentcollegegrads +good;21;6;SV 50 day mark 34lbs down;self.keto +bad;21;11;El nuevo presidente del Parlamento andaluz un condenado por quebrar Cajasur;meneame.net +bad;21;15;When Reverse Image Searching how do I remove the little description google adds to it;self.google +bad;21;4;Denver ComicCon Star Wars;self.StarWars +bad;21;24;NYC Offline I will be running a few Fiasco and Dungeon World one offs over the next couple months Let me know if interested;self.lfg +bad;21;8;Balkan Where there s hate there s love;imgur.com +bad;21;0;;dom-vika.blogspot.com +bad;21;11;How to listen to the Twins radio broadcast on your phone;self.minnesotatwins +bad;21;6;Sell Clarisonic Cleanser some make up;self.skincareexchange +bad;21;8;Is it still worth to buy a PS3;self.PS3 +bad;21;23;This is a pretty amazing one Check the channel for more awesomeness bike riding tightrope walking etc This time fruit pulling 1 28;youtube.com +bad;21;21;DEV nextub The only app able to learn from you and identify a perfect hangout based on your interests in seconds;nextub.com +bad;21;21;Would bull dozers be more threatening if they acted abit more like their Payday the heist counter parts in payday 2;self.paydaytheheist +bad;21;9;Did anyone get the Tri X 290 from Sapphire;self.buildapc +bad;21;29;Shakespeare by far and away the greatest wordsmith in the history of English was also brilliant at concocting insults Here is a Shakespeare Insult Generator just press the button;pangloss.com +bad;21;18;USA H 3DS Mewtwo and or Donkey Kong Country Tropical Freeze Code W Paypal MS or other offer;self.ClubNintendoTrade +bad;21;6;What s worse than warm milk;self.ImGoingToHellForThis +bad;21;6;Professor Meme The Animation OP 1;youtube.com +bad;21;9;Misc Blessed by RNGesus Weekly Rewards 14 04 2015;self.DestinyTheGame +bad;21;10;So I did one of those name tests on facebook;i.imgur.com +bad;21;5;Jon Gruden s Mock Draft;self.nflcirclejerk +bad;21;3;Trash Pickup Services;self.Louisville +bad;21;17;Is Latin America considered The West by the Middle East Russia China and the rest of Asia;self.AskHistorians +bad;21;12;Game Breaking Glitch I ve been experiencing for a few days now;self.GrandTheftAutoV_PC +bad;21;14;317 274 9 When I found out I wasn t the father r reactiongifs;reddit.com +bad;21;11;What is the best way to practice round one pistol rounds;self.GlobalOffensive +bad;21;6;What is the benefit of quickwitching;self.GlobalOffensive +bad;21;18;H Karambit Doppler FN P1 M9 Marble Fade FN Blue tip AK Vulcan MW W Keys Dragon lore;self.GlobalOffensiveTrade +bad;21;16;Redditors of the Netherlands Is the country drowning as much as environmentalists feared ten years ago;self.AskReddit +bad;21;4;WTB Umbrella Corp Keycap;self.mechmarket +bad;21;6;25M4F MF Good time in NNJ;self.dirtyr4r +bad;21;12;Is a grave Gravey As in the state of bring a grave;self.Showerthoughts +bad;21;6;Pusuit of DLPFC with tDCS PDF;neuralengr.com +bad;21;7;Lord Forkington Followers Ho RoK RP Series;youtube.com +bad;21;2;Workmans comp;self.starbucks +bad;21;5;Control iTunes on another device;self.windows8 +bad;21;8;My prediction for the future of the Vive;i.imgur.com +bad;21;13;Request I really want to see my sexy friend cover in your cum;imgur.com +bad;21;14;Witcher 3 Wild Hunt All Achievements Trophies info for the Witcher 3 amp thoughts;self.witcher +bad;21;25;In a wind tunnel a hummingbird will turn its body in the direction of the airflow using its wings for control tail as a rudder;i.imgur.com +bad;21;5;Just received my Mini Museum;i.imgur.com +good;21;3;Reddit meet Gunner;imgur.com +bad;21;2;Goalie Cat;youtube.com +bad;21;27;God is the ultimate procrastinator He had all of eternity to design the Universe but instead he did it all in finals week then took Sunday off;self.Showerthoughts +bad;21;12;Day 4 and the locals have not spotted my undercover covert mission;imgur.com +bad;21;2;Dogecoin Marketplace;self.dogecoin +bad;21;15;Looking for a RAF d DUO or Recruits to build a 5 man levelling squad;self.wowraf +bad;21;11;What do I do about the required classes for Rutgers SAS;self.rutgers +bad;21;14;Malcolm Butler reflects on his GW pick and everything that s happened since then;theplayerstribune.com +bad;21;7;PSA eldroado exe fails to launch FIX;self.HaloOnline +bad;21;22;Grateful Dead Cornell University Barton Hall Ithaca NY 5 8 77 Saint Stephen Not Fade Away Morning Dew I get it now;youtube.com +bad;21;5;Ever see hams doing this;self.TalesofFatHate +bad;21;3;Be More Imaginative;imgur.com +bad;21;23;Just excitedly emailed my wife the new Star Wars trailer and she asked if it was a reboot This about sums it up;imgur.com +bad;21;6;Requesting save after the jewelry heist;self.PiratedGTA +bad;21;3;Consumable Mob Drops;self.minecraftsuggestions +bad;21;2;The fuck;self.CivilizatonExperiment +bad;21;5;Finding out caps for i80;self.ffxiv +bad;21;9;India Star of the East Defender of the West;powerlineblog.com +bad;21;6;Can somebody explain something to me;self.smashbros +good;21;9;All of me in one album for your pleasure;imgur.com +bad;21;4;can you help me;self.UnsentLetters +bad;21;5;Lot of these posts sorry;self.2007scape +bad;21;11;Do you guys use NFL s combine profile ratings while scouting;self.NFL_Draft +bad;21;7;US US H EX Cards W Paypal;self.pkmntcgtrades +bad;21;8;Batman vs Superman Dawn Of Justice leaked trailer;youtube.com +bad;21;11;House votes to repeal federal estate tax White House threatens veto;upi.com +bad;21;6;Europe Losing Hope on Greek Deal;wsj.com +bad;21;4;Mad Max Firebird Video;youtube.com +bad;21;10;Italy Investigates Claims of a Religious Clash on Migrant Boat;wsj.com +bad;21;10;Reddit I volunteer at my local animal shelter Meet Izzy;i.imgur.com +bad;21;7;Dada or Jammy as the next captain;self.kirkit +good;21;7;3 2 1 PTS Update 1 Mined;torcommunity.com +bad;21;9;Another Sneak Peek of Star Wars The Force Awakens;sputniknews.com +bad;21;13;Why does it seem like so many of these are from college campuses;self.DesirePath +bad;21;8;Intensity of US Propaganda Very Dangerous John Pilger;sputniknews.com +bad;21;2;Asian cum;vid.me +bad;21;2;Adding Cichlids;self.Cichlid +bad;21;5;Hope isn t dead yet;self.pokemon +bad;21;25;If all the fandoms in the world went to war with their rival fandoms which ones would fight against one another and who would win;self.AskReddit +bad;21;7;Is it possible to be too old;self.ComicWriting +bad;21;7;How are you guys running Dragon Consort;self.hearthstone +bad;21;8;White Lotus Temple 21 1 2000 Koins 50;self.kryptguide +bad;21;4;Misc The Raiding Song;self.DestinyTheGame +bad;21;3;a heavy idea;self.tf2 +bad;21;15;Higuain goal vs Wolfsburg No Offside angle X post from r soccer from u andyko2611;gfycat.com +bad;21;10;Stay away from Paradise as transport chiefs warn of gridlock;birminghampost.co.uk +bad;21;10;W S5F2 D sword and S5F2KB2 D sword H Dimmenz;self.CivcraftExchange +bad;21;13;Did anyone else notice the Friday the 13th reference in the Selfie fatality;self.MortalKombat +bad;21;7;Hosting White fatalis for about 45 minutes;self.monsterhunterclan +bad;21;3;Witcher 3 graphics;self.witcher +bad;21;8;Happiness and how its becoming a company perk;medium.com +bad;21;4;WeBeHigh San Antonio Texas;webehigh.org +bad;21;7;Pro Russia Journalist Shot Dead In Ukraine;npr.org +bad;21;12;24 M4F Having a bad day really need a pick me up;self.dirtyr4r +bad;21;6;Which DM servers do you use;self.GlobalOffensive +bad;21;8;Professional Hit Man on Kijiji hilarious or horrifying;kijiji.ca +bad;21;5;Mesquite High School Lip Dub;youtu.be +good;21;15;It s been 2 weeks since the last main client update Could it be time;self.DotA2 +bad;21;6;closing day les gets Gaper style;youtube.com +bad;21;2;Indian Problems;youtube.com +bad;21;6;BBC election debate gets under way;bbc.co.uk +bad;21;5;Spanish former IMF chief detained;bbc.co.uk +bad;21;6;Blatter likened to Jesus amp Mandela;bbc.co.uk +bad;21;10;reading yes yes yes chants with the new nocaps rule;imgur.com +bad;21;7;Question about GTA V PC boxed copy;self.gaming +bad;21;3;Levelled up Crafting;self.Aelful +bad;21;6;Man planned to execute US soldiers;bbc.co.uk +bad;21;4;Genocide Under Our Watch;foreignpolicy.com +bad;21;10;I guess I m over here now doing the limbo;self.Miscarriage +bad;21;10;DPR Defense Ministry Ukrainian army shelling militia positions in Donetsk;tass.ru +bad;21;4;Within a few runs;self.slashdiabloevents +bad;21;9;Yahoo Flexes Muscle In Restructured Microsoft Bing Search Partnership;ibtimes.com +bad;21;9;Russian start up to clinically test first human exoskeleton;rt.com +bad;21;5;Need help with Motherboard Compatability;self.buildapc +bad;21;4;Paul Simon Duncan Folk;youtu.be +bad;21;6;Mongoose did not like me gt;i.gyazo.com +bad;21;32;Do you experience blinking graphical glitches in game with Gigabyte R9 280X 3GB card e g Green polygon appearing on a screen for a split second This is how I fixed it;self.Amd +bad;21;4;PC Karambit slaughter FN;self.GlobalOffensiveTrade +bad;21;10;Muslim migrants going to Italy threw Christians overboard police say;edition.cnn.com +bad;21;4;US Hardcore Powerleveling Guy;self.d3hardcore +bad;21;5;Windows 7 boot priority issues;self.techsupport +bad;21;8;Extravaganja is THIS SATURDAY on Amherst Town Common;facebook.com +bad;21;9;Who else knew Chef had sex with a goat;i.imgur.com +bad;21;9;Can Someone Help Me Find this Sixx AM Song;self.Music +bad;21;25;TIL Freud s obsession with the Oedipus complex began with a patient who would dream that white wolves in a walnut tree were watching him;rotundamedia.com.au +bad;21;7;Discussion Silver equivalent of 1 legacy courier;self.Dota2Trade +bad;21;3;General Root questions;self.AndroidQuestions +bad;21;7;Piano Nisekoi S2 OP Rally Go Round;youtube.com +bad;21;4;LaTeX editors for windows;self.math +good;21;12;Using bodybuilding to create awareness for Ataxia Hasan Mr No Excuses Banks;self.bodybuilding +bad;21;9;Did my battery die iPod will no longer charge;self.applehelp +bad;21;5;Learning how to play Nami;youtu.be +bad;21;25;I worry incessantly about crazy things and I get really sad and feel guilty just knowing that people are sad I think I m weird;self.offmychest +bad;21;18;MRW I need to conduct the orchestra on a cruise ship but the seas are especially rough tonight;i.imgur.com +bad;21;5;Frustrated with the Interview Process;self.cscareerquestions +bad;21;4;First go at i3;self.unixporn +bad;21;10;What do you and your frients do on 4 20;self.trees +bad;21;4;Animation Floating Above Ground;self.Maya +bad;21;11;Day 6 and I just had a huge problem come up;self.NoFap +bad;21;10;White Lotus Temple 21 1 Ermac Brutality Controlled Chaos 2640;self.kryptguide +bad;21;4;Recruit a Friend Code;self.FFXIVFriends +bad;21;7;There are some things one cannot derive;i.imgur.com +bad;21;8;Star Wars The Force Awakens Official Teaser 2;youtu.be +bad;21;5;Stephen Lynch is a shitlord;youtube.com +good;21;20;Brightness At 10 But Why Bloodborne is such a beautiful game I want to see as many details as possible;self.bloodborne +bad;21;7;need landscape advice after foundation excavation pics;self.landscaping +bad;21;10;Chief Justice John Roberts reports for jury duty is rejected;politico.com +bad;21;17;She tried to lick her lips right as I took the picture She s normally very cute;imgur.com +bad;21;15;Anti Vax Mom Pulls 180 After All 7 Of Her Kids Get Whooping Cough Simultaneously;distractify.com +bad;21;13;Cochran Georgia city council votes 5 1 to fly Christian flag at courthouse;13wmaz.com +good;21;7;FO Structured shadows shawl in muted blues;images4-d.ravelrycache.com +bad;21;7;Reaching out to Nmom for motherly love;self.raisedbynarcissists +bad;21;5;Alcoa AA Time to buy;self.investing +bad;21;7;Problems with HBO Now on Win 8;self.hbo +bad;21;10;4 13 2015 Monster Bull Redfish Tug of War Charters;youtube.com +bad;21;9;H Blue StatTrak 5 7 CH FT W 25k;self.GlobalOffensiveTrade +bad;21;5;Drinking milk on a cut;self.Fitness +bad;21;14;Ted Cruz s presidential campaign raises more than 4 3 million in nine days;washingtontimes.com +bad;21;12;Double false awakening and problems with all my dreams being very dark;self.LucidDreaming +good;21;4;Charmander is everywhere today;i.imgur.com +bad;21;7;Let s Play The Witch s House;self.LetsPlayVideos +bad;21;5;You guys want some cream;youtube.com +bad;21;13;TSA s Investigation Into Groping Agents Ensured They Wouldn t Be Prosecuted Techdirt;reddit.com +bad;21;19;De cabo de Gata hasta Finisterre hay que ver la gente como esta con JR JR de Jodido Rato;self.podemos +bad;21;10;did anyone see Jeff s letters he writes to astronauts;imgur.com +bad;21;3;My gaming copmuter;self.RateMyPC +bad;21;4;made at home penis;i.imgur.com +bad;21;11;this clown that always needs to be the center of attention;i.imgur.com +bad;21;17;Drunk scumbag came over asking to crash Reeking of beer and cigarettes Passed out right after this;imgur.com +bad;21;10;Printed letterhead logos save to PDF but not to print;self.word +bad;21;16;Eugene Mirman Comedy Festival Presents Pretty Good Friends at The Shubert Theater Friday 04 17 15;self.BostonComedy +bad;21;10;NYC Editors Post Production folks come to our NAB event;self.editors +bad;21;6;How can I analyze my game;self.summonerschool +bad;21;5;Best Cape Cod Lumber Yard;self.CapeCod +good;21;7;Holding Shift allows you to toggle lock;self.thebutton +bad;21;4;Iris Gameplay Chapter 8;youtube.com +bad;21;11;Question Best Possible Deck made from 3 x HERO Starter decks;self.Yugioh101 +bad;21;4;17 F4R group chat;self.Kikpals +bad;21;9;Build Help First time 2 000 gaming machine build;self.buildapc +bad;21;14;Lotag 11 or a tribute to the bugs of game engines past 0 25;youtube.com +bad;21;7;Would you like some asian twink cum;vid.me +bad;21;7;H 10keys W AK CH MW FT;self.GlobalOffensiveTrade +good;21;13;Reddit what s the most NSFW thing you ve done at school NSFW;self.AskReddit +bad;21;13;Looking for a cheap way to keep my number over summer while abroad;self.Frugal +bad;21;3;Am I shadowbanned;self.ShadowBan +bad;21;11;Gujarat riots Canadian court issues summons for Prime Minister Narendra Modi;thehindu.com +bad;21;17;I asked my sister in law if there was any wildlife in the lake we were in;i.imgflip.com +bad;21;2;Preventing minmaxing;self.rpg +bad;21;7;Summer Camps at Boyd Hill Nature Preserve;stpeteparksrec.org +bad;21;1;d;self.NothematicCSS +bad;21;9;r unitedkingdom Lord Janner Prosecution not in public interest;self.UnitedNationsOfReddit +bad;21;10;Stay away from Paradise as transport chiefs warn of gridlock;birminghampost.co.uk +bad;21;9;Recommendations for a Rabbit travel carrier 20 or less;self.Rabbits +bad;21;9;27 M4F NOVA DC Anywhere Study buddy spammer required;self.r4r +bad;21;7;SET The Wise Guy lt Sniper gt;self.TF2WeaponIdeas +bad;21;7;Imaqtpie s clone welcome YOU in BDC;youtube.com +bad;21;4;Haircuts for the homeless;self.LosAngeles +bad;21;6;Improving VGA display quality on Thinkpad;self.computers +bad;21;4;Premier League Week 11;self.Darts +bad;21;10;Chief Justice John Roberts reports for jury duty is rejected;politico.com +bad;21;10;How long does GTA V take to install from discs;self.gaming +bad;21;5;Red City Radio album prestream;absolutepunk.net +bad;21;7;Help Me Out With An Exporting Question;self.Rockband +bad;21;7;List of past Artists Of The Month;self.PostHardcore +bad;21;19;Misc Spoilers Made it to the other side of the Terminus post 1 1 2 2 min video tour;self.DestinyTheGame +bad;21;10;Robin Ventura White Sox bullpen has different vibe in 2015;csnchicago.com +bad;21;3;Tornado alley mommas;self.BabyBumps +bad;21;4;Wrath s Flavor Text;self.hearthstone +bad;21;15;StarWars nuts what is the silliest way that JJ Abrams can ruin the upcoming film;self.AskReddit +bad;21;6;Just bought good places for faces;self.lggwatchr +bad;21;8;Lets Play Skyrim Part 25 The Fappin Hut;self.LetsPlayVideos +bad;21;9;Looking for big guy advice between these two bikes;self.motorcycles +bad;21;11;Prism Canon AE 1 50mm f 1 8 Fuji Superia 400;flickr.com +bad;21;12;Technically every mother can celebrate her offspring s birthday as her own;self.Showerthoughts +bad;21;7;What character has your favorite singing voice;self.disney +good;21;15;PSA Chris Jericho will be doing an AMA over at r IAMA at 4PM EST;self.SquaredCircle +bad;21;4;Weekend in Traverse city;self.traversecity +bad;21;16;Why shouldn t you be concerned when your dog slobbers on your Neil Degrasse Tyson poster;self.Jokes +bad;21;9;PC Kara CW fn VS Kara CH ft 99;self.csgotrade +bad;21;20;Landlord found 15 Pieces of Cat Food and Plans to Charge for a Cat that doesn t exist PA USA;self.legaladvice +bad;21;4;Rainbow Six Siege Dunkey;youtube.com +bad;21;2;SUCCESS FORMULA;self.Jokes +bad;21;5;Madonna pops her cherry again;yifof.com +bad;21;5;i have few questions Help;self.MortalKombat +bad;21;8;I hate the phrase It s playoff hockey;self.hockey +bad;21;31;WP Your spaceship has been afloat in deep space for years with you in hypersleep You are intercepted and woken up by a strange race of aliens they call themselves humans;self.WritingPrompts +bad;21;15;Angela Merkel gekackt obsz ne skulptur von Let 3 Flug 3 Rockband aus Rijeka Kroatien;lupiga.com +bad;21;5;Tr dl s laddning IKEA;ikea.com +bad;21;16;Jordanian redditors In your culture what is the most sympathetic apology you can say or do;self.AskReddit +bad;21;12;TSA s Investigation Into Groping Agents Ensured They Wouldn t Be Prosecuted;techdirt.com +bad;21;9;I m literally drooling over these desk y all;babini.com +bad;21;39;TOI has gone full retard Harper said that Indian Govt will now give Visa on Arrival to Canadians and the TOI publishes the opposite saying that Indians will get Visa on Arrival to Canada which they have now deleted;webcache.googleusercontent.com +bad;21;8;Indian companies withdraw from Facebook s Internet org;bbc.com +bad;21;11;Finishline has a full size run of laser 1s just sitting;m.finishline.com +bad;21;15;Where can I find out about the day to day operation of a hydroelectric dam;self.AskEngineers +bad;21;11;What seems like a much better idea than it actually is;self.AskReddit +bad;21;6;TACS Episode 147 Live Chat Thread;self.TACSdiscussion +bad;21;3;Genning giveaway question;self.CasualPokemonTrades +bad;21;8;23 M4F I ve had too much coffee;self.dirtykikpals +good;21;22;TIL that in order to get your pirate certificate at MIT you must complete courses in archery pistol shooting sailing and fencing;bostonglobe.com +bad;21;14;Requesting Help from Those who value education and the work that goes into it;self.Assistance +bad;21;6;Never seen it coming Dog died;self.Petloss +bad;21;12;Chatting to a Builder while watching Cowboys and Angels and Fake Britain;self.britishproblems +bad;21;11;LF Axes FT Perfect Peaches or Bells Make me an offer;self.ACTrade +bad;21;5;YOLO May 16 P puts;self.wallstreetbets +bad;21;3;Reset Upgrade Cost;self.crusadersquest +bad;21;17;Serious What is the best way to exchange currency without losing ridiculous amounts in fees and etc;self.AskReddit +bad;21;9;Extravaganja 2015 is THIS SATURDAY on Amherst Town Common;facebook.com +bad;21;4;Girlfriend spills her past;self.asktrp +bad;21;13;Amazon Free App Bundle Osmos HD Wolfram Alpha Prince of Persia and more;amazon.com +good;21;6;I hope someone drops a fry;imgur.com +bad;21;2;40k Posts;self.shanix +bad;21;15;Petition to set the Google Doodle on April 24 to commemerate the Armenian Genocide armenian;redd.it +bad;21;8;Anyone headed to Portland International Raceway this weekend;self.pnwriders +bad;21;9;That moment when you realize you forgot your backpack;imgur.com +bad;21;13;Jordan Stewart not on the media guides injury list for game on Friday;twitter.com +bad;21;21;Here s how I do some late game blood farming Some mild spoilers no bosses Hope this helps some fellow hunters;self.bloodborne +bad;21;9;Coventry Festival of Motoring could roar back into life;coventrytelegraph.net +good;21;9;Behold Grand Theft Auto 5 on the Oculus Rift;pcgamer.com +bad;21;8;Arrow and Flash make room for ATOM Spoilers;war-verse.com +bad;21;9;Samsung Galaxy S6 Edge Commercial 2015 Unboxing Parkour Tour;youtube.com +bad;21;1;Dropcam;self.dogs +bad;21;10;Meet Eco Modernism The New Face of 21st Century Environmentalism;powerlineblog.com +bad;21;9;White Lotus Temple 21 3 Reptile Kutie Icon 1240;self.kryptguide +bad;21;8;Rejected from 3 graduate schools in one day;self.depression +bad;21;6;Why Transparency Matters in Local Politics;youtube.com +bad;21;10;Map of available wind power for the United States 1100x831;upload.wikimedia.org +bad;21;10;i just want to crawl into a hole and die;self.SuicideWatch +bad;21;10;Now imagine if we d reverse the gender 2 34;youtube.com +bad;21;10;Podcast Unlocked 191 Guitar Hero Live vs Rock Band 4;ign.com +bad;21;7;That isn t how lightning works Barakiel;imgur.com +bad;21;11;Reddit what do you do that makes you that guy gal;self.AskReddit +bad;21;10;Most tasteful thing you ve seen at a live show;self.SquaredCircle +bad;21;5;26 F4M Big Cock Shaming;self.NSFWskype +bad;21;6;Everyone online has Grey Ping AUS;self.MortalKombat +bad;21;8;Starwars Battlefront Webm gameplay From TFA Teaser 2;a.pomf.se +bad;21;7;Are weather teams still a legitimate strategy;self.pokemonshowdown +bad;21;10;16 Male USA looking for email pal or something similar;self.penpals +bad;21;19;Racing and REC Incentivizing use of slower ships by adding a REC multiplier if you drive a slower one;self.starcitizen +bad;21;6;Is EMC World worth the trip;self.sysadmin +bad;21;15;I ve been waiting for 10 fucking minutes now Apple don t give a fuck;imgur.com +bad;21;15;Can someone please for the love of god explain why Im seeing AP Reksai built;self.summonerschool +bad;21;2;Holy Shit;liveleak.com +bad;21;3;EU PC LFC;self.warframeclanrecruit +good;21;3;Hello old friend;i.imgur.com +bad;21;9;Rare porcelain sells for 30 000 at Shrewsbury auction;shropshirestar.com +bad;21;4;What do I do;i.imgur.com +bad;21;4;Asian cum from vibrator;vid.me +bad;21;38;I ve been watching the new Daredevil and I keep thinking Murdoch s probably cute as hell behind the glasses So I looked up the actor and guess what I was right his name s Charlie Cox btw;ilarge.listal.com +bad;21;5;The ghosts of products past;medium.com +bad;21;8;Dropbox Launches Bug Bounty Program Starting At 216;v3.co.uk +bad;21;3;Drivers for MOBO;self.techsupport +bad;21;8;UK Law Firms Putting Client Data at Risk;infosecurity-magazine.com +bad;21;8;Iran Poses Growing Cyber Threat to US Study;securityweek.com +bad;21;8;ELI5 Can someone please explain Quibids to me;self.explainlikeimfive +bad;21;10;2 Brooklyn Landlords Accused of Making Units Unlivable Are Arrested;nytimes.com +bad;21;11;April 16 2015 panero Spanish having a great liking for bread;self.ForeignWordoftheDay +bad;21;10;Consumers Don t Get the Value of Passwords to Hackers;toptechnews.com +bad;21;7;I put my collection in slim cases;i.imgur.com +bad;21;10;Tonight s lineup visualized aka Eight Men and a Baby;twitter.com +bad;21;11;What are these random muscle twitches in my neck and face;self.AskDocs +bad;21;12;MRW I m asked what is the 25th letter in the alphabet;vine.co +bad;21;11;Nearly a third of UK consumers prefer fingerprint ID bank login;biometricupdate.com +bad;21;17;Reddit why is it that when I twist roll my ankle I experience hearing and vision changes;self.AskReddit +good;21;8;Next year s GM Week Mugs came in;i.imgur.com +good;21;13;Losing mobility in a jet without Gyro makes the jet Instantly flip around;youtu.be +bad;21;5;May 2015 blogmonth challenge blogoklahoma;blogoklahoma.com +bad;21;3;128000000XP in Dungeoneering;self.Julienzd +bad;21;14;The Marketing Team or Developers may want to reconsider the name of their App;play.google.com +bad;21;19;20 A Corporate Trojan Horse Critics Decry Secretive TPP Trade Deal as a Threat to Democracy news 1 comments;reddit.com +bad;21;3;Asian Western brands;self.AsianBeauty +bad;21;9;I think I look good for an IT professional;imgur.com +bad;21;10;RadioShack Demise Could Signal the Rise of Mom and Pop;hackaday.com +bad;21;10;What line from Star Wars do you quote most often;self.AskReddit +bad;21;13;Bank card sniffing shop menace Punkey pinned down in US Secret Service investigation;theregister.co.uk +good;21;7;Reverse cowgirl is my favorite f m;vid.me +bad;21;4;How to enable fps;self.GrandTheftAutoV_PC +bad;21;7;Miami WR Phillip Dorsett visiting Titans today;twitter.com +bad;21;15;US KY H Mint Condition Blue 3DS XL Pok mon X W PayPal possibly trades;self.hardwareswap +bad;21;5;Cards Against Humanity Disney Edition;sergberet.com +bad;21;1;Eyes;imgur.com +bad;21;4;The importance of segregation;thewindowsclub.com +bad;21;6;Cannot change time format in Freya;self.elementaryos +bad;21;6;Can t join KOTH lobbies PS4;self.MortalKombat +bad;21;11;FightFor15 isn t just about wages it s about basic citizenship;americamagazine.org +bad;21;5;PS4 LF5M NM Crota CP;self.Fireteams +bad;21;10;Fixed Error Downloading There is Insufficient Space on the Device;geeksgyaan.com +bad;21;12;Summoned wind monkey king What the heck to do with this guy;self.summonerswar +bad;21;4;custom games being public;self.EvolveGame +good;21;7;Naya Rivera makes my lady parts EXPLODE;m.imgur.com +bad;21;7;Would you buy the gentleman no boner;self.IWouldBuyThat +bad;21;12;TIL about Kanamara Matsuri a Japanese penis festival celebrating all things phallic;reddit.com +bad;21;2;Unscheduled Posts;self.TTPloreplaycentral +good;21;11;Email Self Defense a guide to fighting surveillance with GnuPG encryption;emailselfdefense.fsf.org +bad;21;8;Weight Linked to Nearly 500 000 Cancers Worldwide;cancer.org +bad;21;9;We put old Dew Tour ramps to work oc;swarmlife.net +bad;21;10;Jon Kasich is the GOP s best hope for 2016;politico.com +bad;21;11;Study Chest Radiation Helps Small Cell Lung Cancer Patients Live Longer;cancer.org +bad;21;11;Scientists Predict Risk of Infertility in Women Treated for Hodgkin Disease;cancer.org +bad;21;18;Should white people be able to listen to hiphop rap music or just blacks Serious discussion only please;self.hiphopheads +bad;21;5;Which is a better georep;self.Repsneakers +bad;21;5;Animals instantly regretting their desicions;imgur.com +bad;21;6;3K9 Punk Correctional city News record;i.imgur.com +bad;21;11;Of Mice and Synthetic Muscle Big Science On SpaceX Dragon Spaceship;space.com +bad;21;9;my pee is yellow and it s 2 30pm;self.cripplingalcoholism +bad;21;11;Anyone play fighting games Street Fighter IV Marvel vs Capcom etc;self.TexasTech +bad;21;5;X360 Crota hm Crota cp;self.Fireteams +bad;21;4;Killing the Requirements Document;medium.com +bad;21;7;Horrible pop in even on maxed settings;self.GrandTheftAutoV_PC +bad;21;12;100 Confirmed Shitmus tried to murder BryDan Vince most likely behind this;self.SquaredCirclejerk +bad;21;8;Has anyone else taken a look at Orses;self.soccerspirits +bad;21;10;White Lotus Temple 21 3 Liu Kang Fatality Splitter 2640;self.kryptguide +bad;21;11;Short Trailer For Upcoming Mortal Kombat X Review Check It Out;youtube.com +bad;21;6;Buying Guide Gear for Better Coffee;gear.kinja.com +bad;21;11;Local Arizona Food shipped to your or your friend s door;boxofarizona.com +bad;21;10;PS4 LF HM Templar CP for practicing with the relic;self.Fireteams +bad;21;10;Blame P K Subban not the officials for tough call;theglobeandmail.com +good;21;6;Mildly interesting vintage OC Transpo Game;872c47d2e8e101776041-fa795f0722807313fb994c5b9515cf92.r58.cf1.rackcdn.com +bad;21;14;Why We ve Decided to Organize Gawker Media employees announce their intention to unionize;gawker.com +bad;21;7;A380 Economy about to get more cramped;foxnews.com +bad;21;16;I m NOT A BABY BIRD Mom records son after getting his wisdom teeth cut out;wthr.com +bad;21;3;WTB 350R LTI;self.Starcitizen_trades +bad;21;15;Why can i say lesbian in chat but i cant say homo blizzard homophobic confirmed;self.heroesofthestorm +bad;21;3;a brief inspection;33.media.tumblr.com +bad;21;8;Co ed team at Kicks looking for players;self.houstonsoccer +bad;21;9;Woke up to a new present in the mail;imgur.com +bad;21;13;Is there any way to keep yourself locked as host of a game;self.GrandTheftAutoV_PC +bad;21;5;L amant parfait est barbu;neonmag.fr +bad;21;4;Motorcycle Club First Look;self.simracing +bad;21;7;H 66 Pure Keys W Any Knife;self.GlobalOffensiveTrade +bad;21;15;Found this in the bed of my pickup Any idea what animal this belongs to;imgur.com +bad;21;8;Anybody doing the color vibe run this saturday;thecolorvibe.com +bad;21;13;23 M with an amazing new gf at least 7 days hard mode;self.Fapstronauts +bad;21;5;Lightning Networks Part IV Summary;rusty.ozlabs.org +bad;21;3;Post Claims DarkJesusMN;self.Civcraft +bad;21;13;Help looking for free my life among serial killers audiobook by helen morrision;self.audiobooks +bad;21;11;Just did a tour of our venue and it was amazing;self.weddingplanning +bad;21;9;H M9 Slaughter FN Adds W Karambit Slaughter FN;self.GlobalOffensiveTrade +bad;21;3;Mega Giant Spam;self.skyrimrequiem +bad;21;8;How Jarrett keeps getting back into 4chan clan;i.imgur.com +good;21;13;Did we ever get T on why Untucked is on YouTube this year;self.rupaulsdragrace +bad;21;12;What was your most racial slur comment you ever made by mistake;self.AskReddit +bad;21;11;What s your secret drink combination at Sonic Starbucks or fountains;self.AskReddit +bad;21;33;TIL that there is a penis festival in Japan called the Festival of the Steel Phallus during which people worship giant pink penis shrines which are usually carried in a procession by transvestites;en.wikipedia.org +bad;21;5;Dragons Giants Auto Team Help;self.summonerswar +bad;21;9;And what do we say to Signs Not Today;gfycat.com +bad;21;8;We are so close internally screaming of joy;self.fivenightsatfangames +bad;21;12;Times were tough for Darth Vader since the fall of the Empire;livememe.com +bad;21;6;Meet Olly Red Bull for scale;imgur.com +bad;21;16;World Bank breaks its own rules as 3 4 million people are forced off their land;theguardian.com +bad;21;8;Is that really Clay Matthews on the left;twitter.com +bad;21;12;BP dropped green energy projects worth billions to focus on fossil fuels;theguardian.com +bad;21;3;Tie Pilot request;self.StarWars +bad;21;36;A book on Islamophobia written by late Charlie Hebdo editor Charb completed two days before he was killed in an attack on the weekly s Paris offices on January 7 is to be published on Thursday;france24.com +bad;21;6;Funny sound when Parking 2012 Sportage;self.kia +bad;21;9;Best place to watch the game in south city;self.stlouisblues +bad;21;10;I can t get my 10 Bourbon Stout to carbonate;self.Homebrewing +bad;21;7;What a broken tail bone sounds like;youtu.be +bad;21;4;DAE Pee at night;reddit.com +bad;21;2;Progression Curves;self.powerlifting +bad;21;6;Free ts3 server for 4 days;self.teamspeakstp +bad;21;4;Vibrating dildo and cum;vid.me +bad;21;7;R F Yosenju before regional this weekend;self.yugioh +bad;21;6;reddit s infatuation with a button;gfycat.com +bad;21;18;Ghanaian American Filmmaker Akosua Adoma Owusu Focuses On Rosa Parks amp The Civil Rights Movement In Bus Nut;okayafrica.com +bad;21;11;White Lotus Temple 19 3 Quan Chi Fortress Concept Art 780;self.kryptguide +good;21;7;Caught him at just the right time;i.imgur.com +bad;21;12;Without mentally stimulating and imaginative conversation I feel like a wilting flower;self.infp +good;21;2;Buff Bomb;video.jets.nhl.com +bad;21;11;Who needs friends when you have an inventory of cash stacks;imgur.com +bad;21;4;Poetry Gotta set priorities;youtube.com +bad;21;16;How would this childrens video song look like in an Ancoms Anarchist society with no capitalism;youtube.com +good;21;11;Decided to draw Fame during a two hour break at school;imgur.com +good;21;6;Ursula K Le Guin on Fantasy;self.Fantasy +bad;21;4;Help approaching a guy;self.socialskills +good;21;7;The single most irritating mechanic of MH4U;self.MonsterHunter +bad;21;5;r girlsfinishingthejob redd it 32u9bz;gfycat.com +bad;21;8;But why are they starting with Episode IV;i.imgur.com +bad;21;4;Need some help Graffiti;self.Graffiti +bad;21;12;Ryan Gosling is in negotiations to star in the Blade Runner sequel;theverge.com +bad;21;23;Republicans aren t my age politically ideologically morally and they represent a distortion of what it actually means to be free in America;np.reddit.com +bad;21;7;Fresh DJ KAYSLAY New Bronx City Cypher;youtube.com +bad;21;10;Looking for a production picture from Nightmare on Elm Street;self.horror +bad;21;3;Every fffffffuuuuuuuuuuuucking Time;i.imgur.com +bad;21;9;I would like to volunteer to start a cell;self.HisHouse +bad;21;14;Jamaica Marijuana Law Now In Effect But Arrests And Even Police Killings May Continue;cdnsource.inquisitr.com +good;21;13;ALEC Threatens To Sue Critics That Point Out It Helps Keep Broadband Uncompetitive;techdirt.com +good;21;6;reddit s infatuation with a button;i.imgur.com +bad;21;11;PS4 LF5M VoG HM at Gatekeeper CP post PSN lvl below;self.Fireteams +bad;21;5;Why are you still drinking;endtimestube.com +good;21;22;If a CEO of a company sponsoring a golf tournament had a handicap of 0 could he make himself a sponsor exemption;self.golf +bad;21;10;Deutschland trauert um die 400 toten Fl chtlinge vor Libyen;facebook.com +bad;21;8;Views like this make Utah seem pretty nice;imgur.com +bad;21;6;Testing Mortal Kombat X in 4k;self.MortalKombat +good;21;9;What was the single best moment in your life;self.AskReddit +bad;21;5;Iam8bit selling MH caravan gear;self.MonsterHunter +bad;21;2;Udp question;self.verizon +bad;21;11;The Heroin Loving Piss Takers Running Against Nigel Farage in Kent;vice.com +bad;21;5;IDARB 25 point trick shot;youtu.be +bad;21;17;S X Customs Average Joe Donkey Kong Vs WS Boss Luigi SSB4 Winners Finals Smash Wii U;youtube.com +bad;21;31;The two smugglers their employer and a robot have all retrieved their cargo in their spaceship and are on the run from another spaceship Don t use any proper nouns CW;self.WritingPrompts +good;21;5;Not all Cops are bad;imgur.com +bad;21;13;27 M4F Fit hard worker dying to get off and looking for distraction;self.dirtykikpals +bad;21;11;Copa90 at the New Balance kit launch and interview with Mignolet;youtube.com +bad;21;5;Harley Ann Harder for Harley;spankbang.com +bad;21;11;General Election 2015 The BNP has almost vanished from British politics;independent.co.uk +bad;21;11;What would Elon Musk do about California s water crisis WWMD;self.AskReddit +good;21;8;New Nate Bargatze Special Coming to Comedy Central;foolicity.com +bad;21;4;Just a quick question;self.smashbros +bad;21;5;Tony Martin Stranger In Paradise;youtu.be +bad;21;2;Buff Bomb;video.jets.nhl.com +bad;21;10;Is our brain capable of processing simultaneous 360 degree view;self.AskReddit +bad;21;5;How to disable clipboard events;self.chrome +good;21;2;Gorgeous Blonde;m.imgur.com +bad;21;15;Question When did the cost of green engrams go up from 250 to 450 glimmer;self.DestinyTheGame +bad;21;10;April 16 2015 at 01 00AM Winterface 142000000XP in Dungeoneering;self.GUDRSPLAYERS +bad;21;3;PS4 LfG Nightfall;self.Fireteams +good;21;4;The perfect chastity belt;i.imgur.com +bad;21;18;guide Easy guide for dropping Mother Brain getting Blood Rock and the best moon rune 30 videos included;self.bloodborne +bad;21;9;I need to get naked by JasDisney on DeviantArt;jasdisney.deviantart.com +good;21;9;We re Nearly At 500k Subs Ask Us Anything;youtube.com +bad;21;13;In the same way that one could be transgender can someone be transracial;self.AskReddit +bad;21;20;In WW2 They haven t exploited the limited trench crossing and wall climbing capability of tanks Why is that so;self.AskHistorians +bad;21;9;What is the best comeback you have ever had;self.GlobalOffensive +bad;21;10;Paladin Zeta can have 88 stats added instead of 75;self.ariyala +bad;21;6;What s going on with Greek;self.duolingo +bad;21;12;I think this is what he was going for in a tattoo;pokemon.alexonsager.net +bad;21;12;WW6 BK T6 speed run build Quick as Lightening shard key farming;self.Diablo3Barbarians +bad;21;8;2 18 15 Buffalo Battleground Highlights Steven Cam;youtube.com +bad;21;24;Columbus man trained with al Qaeda cell in Syria arrested after returning to the U S with a directive to carry out terrorist attack;dailymail.co.uk +bad;21;8;Proof that Nickelodeon doesn t think about abbreviations;imgur.com +bad;21;8;Who else plans on trying one of these;youtu.be +bad;21;4;Knot on my watch;i.imgur.com +bad;21;6;Linfield Fan Solves Arab Israeli Conflict;youtube.com +bad;21;8;Growing from using my new vibrator and cum;vid.me +bad;21;5;DAE LOVE STORIES ARE STUPID;reddit.com +bad;21;6;ELI5 What happens during a colonoscopy;self.explainlikeimfive +bad;21;5;The world is your turtle;preview.adzerk.net +bad;21;13;Foot fetishists what kind of socks do you want your Sir to wear;self.GayKink +bad;21;18;Prediction someone will get a sub 20 second time while reddit explodes with the new Star Wars trailer;self.thebutton +bad;21;8;Spoiler The second Star Wars teaser is out;gfycat.com +bad;21;5;Albums Out Of Popular Context;self.LetsTalkMusic +bad;21;17;Put Your Hands Together with Cameron Esposito Andy Kindler Brian Babylon Andy Erikson Ian Abramson Michelle Biloon;feralaudio.com +bad;21;3;Kaligraph E Juswanna;soundcloud.com +good;21;14;Bayern s Dr M ller Wohlfart resigned after being blamed for loss vs Porto;twitter.com +bad;21;11;The Heroin Loving Piss Takers Running Against Nigel Farage in Kent;vice.com +bad;21;18;Looking for some close up W1 footage Snuck in a good mic and zoom lens hope you enjoy;self.Coachella +bad;21;12;EVENT Severn Members of Parliament are arrested with connections to Neo Nazism;self.worldpowers +bad;21;6;Top Gear Pop Art Wallpapers 1920x1080;imgur.com +good;21;13;Reddit what have been the greatest 4th wall breakings in television film history;self.AskReddit +bad;21;4;Test Pack Please Ronto;self.rontocraft +bad;21;2;Awesome wallpaper;i.imgur.com +bad;21;6;Is this enough to run ffxiv;self.ffxiv +bad;21;4;34 f4a femdom captions;self.exxxchange +bad;21;12;Damming Tibet China s destruction of Tibet s rivers environment and people;theecologist.org +bad;21;22;Orson Welles s Last Movie Taking a Look at his unedited and ill fated final film The Other Side of the Wind;criminalelement.com +bad;21;5;I am Kind Stranger AMA;self.circlejerk +bad;21;3;Imaginary turtle worlds;preview.adzerk.net +bad;21;13;Some genius shipped my Unmasked Starlord from China in just a paper envelope;m.imgur.com +bad;21;8;Old Spice guy is cheering for the Jets;cbc.ca +bad;21;18;When the end comes only those with the purple power may be saved Grays aim for those PURPLES;self.thebutton +bad;21;10;Dear people of r smite who has the prettiest flair;self.Smite +bad;21;11;All these posts about exploding batteries have me paranoid Advice please;self.Vaping101 +bad;21;7;One of my cups was upside down;i.imgur.com +bad;21;17;What s the earliest that it s reasonable to ask someone to get up in the morning;self.AskReddit +bad;21;7;IIL Planet Caravan by Black Sabbath WEWIL;self.ifyoulikeblank +bad;21;6;For all things Shitty Charmander Tattoo;i.imgur.com +bad;21;5;The Collect by Keith Thompson;keiththompsonart.com +bad;21;5;Hoping for the SECOND pick;self.timberwolves +bad;21;8;Twitter out to crack down on abusive tweets;news.yahoo.com +bad;21;5;It had never happened before;imgur.com +bad;21;8;Recruiting the entire immune system to attack cancer;newsoffice.mit.edu +bad;21;13;Is startnext com the right platform for music Or what are good alternatives;self.Crowdfunding +bad;21;7;When does merch go on sale online;self.Coachella +bad;21;9;Currently it s April 16 2015 at 03 31PM;self.every15min +good;21;11;Spoilers S1 Amazon has the 2014 Comic Con Panel for free;amazon.com +good;21;9;I can see clearly now the rain is gone;imgur.com +bad;21;15;23 M4F VA TX USA Let s game together nerd out and fall in love;self.r4r +bad;21;31;One of my 4th grade gay autistic Activist students yelled at me yesterday My WWII vet co teacher told him to make me an apology letter This is what he made;self.circlejerk +bad;21;4;Theory 523 AG DT;self.AgMarketplace +bad;21;6;What a time to be alive;imgur.com +bad;21;4;UGC HL Finals Question;self.truetf2 +bad;21;8;killed the defile watchdog on my first try;self.bloodborne +bad;21;8;Draft Talk Thursday OT OG La El Collins;self.miamidolphins +bad;21;5;Anyone have piano based tracks;self.trap +bad;21;22;Can anyone explain how we went from a small weak diving and not physical team to the DIRTIEST TEAM IN HOCKEY overnight;self.Habs +bad;21;5;Ready to go to Disneyland;i.imgur.com +bad;21;3;Fixed ROBIN doppleganger;imgur.com +bad;21;16;Life is short the art long opportunity fleeting experiment treacherous judgement difficult Hippocrates 460 370 BC;self.quotes +good;21;12;Trying this new subreddit out ladies what are your thoughts on this;imgur.com +bad;21;6;USB Universal Serial Bus History versions;gtumca.com +bad;21;18;My friend and I both keep tarantulas I bought this jumper for my friends two year old son;i.imgur.com +bad;21;11;The Richard Engel Kidnapping Fake MoA Scooped MSM By 28 Month;self.autotldr +bad;21;7;Save files won t load since patch;self.projecteternity +good;21;5;Nom Nom Photographer Tanaphan Phiantham;drscdn.500px.org +bad;21;5;The Scaffold Lily The Pink;youtube.com +bad;21;8;xbone 24 hunter looking for Sherpa through VOG;self.Fireteams +bad;21;13;Tickets for this year s Green Mountain Comedy Festival are now on sale;greenmountaincomedy.com +bad;21;2;IK Roll;self.Diablo3Barbarians +bad;21;7;What Microphone Do You Use To Podcast;self.podcasts +bad;21;7;Anybody going to Death and Taxes day;deathandtaxesday.bpt.me +bad;21;12;S3E19 spoilers Flash S1E18 A question of time for Felicity and Ray;self.arrow +bad;21;20;I m building a database for my company I ve only taken one class so im already lost HELP ME;self.Database +bad;21;3;M4A Machine experiments;self.dirtypenpals +bad;21;10;After Rescuing Ukraine US Taxpayers To Bail Out Iraq Next;zerohedge.com +bad;21;15;qui vive alert lookout used in the phrase on the qui vive Pronounced kee veev;dictionary.reference.com +bad;21;8;Spoiler The second Star Wars teaser is out;giant.gfycat.com +good;21;11;Crucial 960gb SSDs for 285 Give your rig truly glorious speeds;newegg.com +bad;21;4;R89 and R90 Troubles;self.lightingdesign +bad;21;9;I tip my fedora to the classiest of vehicles;i.imgur.com +good;21;7;What everyone keeps forgetting about the Unsullied;self.piratesofthrones +bad;21;9;933 2454 637 Who s that Pokemon r funny;reddit.com +bad;21;12;Dog on a couch Pfff Check out my cat in his chair;imgur.com +bad;21;16;All Avengers Age of Ultron trailers clips featurettes and TV spots conveniently collected in one place;rantingdragon.com +bad;21;5;a theory about wrong lyrics;self.deathgrips +bad;21;7;Offering to Brodin at the Iron Temple;self.swoleacceptance +bad;21;10;Just hit Grand Master Prestige 30th Here are my stats;self.CodAW +bad;21;4;How many players required;self.gtaonline +bad;21;5;Cum from my new vibrator;vid.me +bad;21;3;Summer storage options;self.uofm +bad;21;4;Radiator in castle fireplace;imgur.com +bad;21;5;r hotchickswithtattoos redd it 32u4wp;gfycat.com +bad;21;21;Just a reminder there is only 14 more days to enter your idea for the R KayleeMason Exclusive Photo Request Game;reddit.com +bad;21;6;WTS Aurora LX 6 Month insurance;self.Starcitizen_trades +good;21;6;Hamsik goal vs Wolfsburg 0 2;streamable.com +bad;21;7;Help with ideas to make an animation;self.gis +bad;21;7;I saw a nakama in the wild;self.OnePiece +bad;21;7;Totally confused about dieting vs gaining muscle;self.Fitness +bad;21;8;Will there ever be Competitve on other consoles;self.Smite +bad;21;6;Hiring Jr Account Manager in SF;self.SFBayJobs +good;21;14;Stephen Curry says Warriors season will be failure if they don t win title;sports.yahoo.com +bad;21;29;So I got an update on my custom enclosure today it s so tall he had to make it a stackable two piece so it will fit through doors;imgur.com +bad;21;6;Wife is busy packing her clothes;self.Jokes +bad;21;11;Why Some of Japan s Elderly Want to Go to Jail;bloomberg.com +bad;21;15;How long does it normally take to add new cards or new versions of cards;self.PucaTrade +good;21;22;A Saudi citizen was executed Wednesday for drug trafficking He was the 61st person executed in the kingdom so far this year;arabnews.com +bad;21;10;looking for a 2000 point game during weekdays or weekends;self.Vassal40k +bad;21;8;The ever so rare Chrystler Explorer Sport Trac;imgur.com +bad;21;8;What anime genre can you absolutely not watch;self.anime +bad;21;8;Twitter out to crack down on abusive tweets;news.yahoo.com +bad;21;4;Morales Red Card Appealed;mlssoccer.com +bad;21;9;En fr ga till sverigedemokrater nationalister och vriga invandringskritiker;self.svenskpolitik +bad;21;11;Our first time out in the sun Happy baby hog 3;imgur.com +bad;21;4;Helpful Honda Guy OC;youtube.com +bad;21;22;TOMT A song in GTA 2 by a female artist that is like Gonna get in my car gonna go real far;self.tipofmytongue +bad;21;25;While this isn t strictly related to TPP Do you think Nature Man from the Old Spice stream counts as a host of the voices;self.twitchplayspokemon +bad;21;11;The Best Hot Brush Air Styler For Your Hair in 2015;primehairtools.com +bad;21;3;Girl in blue;i.imgur.com +bad;21;13;Charles Bradley The World Is Going Up in Flames Live on KEXP Blues;youtube.com +bad;21;3;Rogue Squadron assemble;gifsound.com +bad;21;2;Memory Maker;self.rundisney +bad;21;12;Such a nice day for a few smokes and an energy drink;imgur.com +good;21;7;Dr Hans Wilhelm M ller Wohlfahrt resigned;twitter.com +bad;21;5;Mission Mart on Pioneer Parkway;self.PeoriaIL +bad;21;13;Can someone clarify how to best set up your NAT Type for GTAO;self.GrandTheftAutoV +bad;21;3;PGP for iOS;self.GnuPG +good;21;5;WikiLeaks Publishes Hacked Sony Documents;global-gathering.com +good;21;10;I m wet and ready for a good dick F;imgur.com +bad;21;22;Hey guys I pressed the button Now what I m going to make some popcorn while I wait to see what happens;bogleech.com +bad;21;7;My Frankenstein build is alive First build;imgur.com +bad;21;6;The Fleeca Job online heist stuck;imgur.com +bad;21;7;8 Ways Developers Could Redesign Winthrop Square;bostinno.streetwise.co +bad;21;9;Not sure what to do with your wedding ring;self.Divorce +bad;21;7;8 Ways Developers Could Redesign Winthrop Square;bostinno.streetwise.co +bad;21;5;Russian youth movement called Set;self.russia +bad;21;15;PC Just turned 120 looking for some easy going heist team members in UK Europe;self.HeistTeams +bad;21;9;Game takes up a lot of Internal Memory m8;self.htcone +bad;21;16;German soldier with captured Russian PPSh 41 submachine gun Battle of Stalingrad Russia October November 1942;i.imgur.com +bad;21;3;Vibrator and cum;vid.me +bad;21;13;Coyotes Announce Season Tickets for 2015 16 Season on Sale Today Arizona Coyotes;coyotes.nhl.com +good;21;13;Question Boyfriend M19 always likes to have his penis on my F19 body;self.sex +bad;21;5;Add me please s8839866 ty;self.AppNana +bad;21;10;Just found this wtf is it Not a drug user;imgur.com +bad;21;23;While you enjoy the first round of the playoffs starting please take a minute to fill out my r hockey Anti Awards survey;docs.google.com +bad;21;16;Bad news Teva Sandoz has an FDA nod for generic Copaxone But when will it launch;fiercepharma.com +bad;21;11;WTF Don t Help My Ex Husband Continue to Control Me;change.org +bad;21;7;Joined the Millionaires Club today Thanks woweconomy;self.woweconomy +bad;21;17;H Karambit Crimson Web Field Tested 150 float and a Butterfly CW 151 Float W Keys Offers;self.GlobalOffensiveTrade +bad;21;21;ELI5 Why do some games with expansion packs add icons for each pack even though they all open the same game;self.explainlikeimfive +good;21;6;still got my hands on it;i.imgur.com +bad;21;4;Hottie on the beach;4yimgs.com +bad;21;20;My 18 F girlfriend might be pregnant and I m 17 M not sure how I feel about an abortion;self.relationships +bad;21;18;WWII German soldier with captured Russian PPSh 41 submachine gun Battle of Stalingrad Russia October November 1942 3295x1954;i.imgur.com +bad;21;15;20 M4F Creampie Sharing Dom Sub Slave Celeb and more A few scenes Kinkchart included;self.dirtypenpals +bad;21;6;Metro Redux performance better on Linux;self.linux_gaming +bad;21;9;Google maps should allow you to search by intersection;self.Showerthoughts +bad;21;12;We had a great time a couple Halloweens ago Completely blacked out;imgur.com +bad;21;3;Ice boat challenge;i.imgur.com +bad;21;11;H 324 Keys W 2 50cad each via interact e transfer;self.GlobalOffensiveTrade +bad;21;5;Sarah Chalke 38 r SarahChalke;gfycat.com +bad;21;6;Star Wars The Force Awakens trailer;youtu.be +bad;21;26;Had my hands on encounter with morbid reality when I jokingly asked an old schoolmate Have you been raped as a child and she said Yes;self.secondary_survivors +bad;21;10;EVENT President Guardado Diagnosed With Breast Cancer and Other News;self.worldpowers +bad;21;2;ayy lmao;i.imgur.com +bad;21;6;Does anyone else work long hours;self.ireland +bad;21;14;How I feel now that most of the snow has melted from the roads;weknowmemes.com +bad;21;5;what color to paint inside;self.HomeImprovement +bad;21;9;Agent Orange on trial Franco Vietnamese victim seeks justice;youtube.com +bad;21;18;WWII German soldier with captured Russian PPSh 41 submachine gun Battle of Stalingrad Russia October November 1942 3295x1954;i.imgur.com +bad;21;4;LAWN Gansta my sides;self.Eve +bad;21;3;Practice makes perfect;18sexmedia.tumblr.com +bad;21;6;Luke Skywalker vs Neo The Matrix;self.whowouldwin +bad;21;5;Single most amazing DK2 demo;self.oculus +good;21;5;Suck my nipples would you;imgur.com +bad;21;3;Money tsi1337 76561197962164966;self.csgoscammers +bad;21;6;Champion idea Korremar the Great Conjuror;self.leagueoflegends +good;21;7;I predict few oranges here s why;self.thebutton +bad;21;5;r hotchickswithtattoos redd it 32u5du;gfycat.com +bad;21;7;Ocean Drive Some people 4eme voix femme;youtube.com +bad;21;14;US crossed all imaginable lines forcing Ukraine to do its bidding Russian Def Min;self.autotldr +bad;21;4;Positive u shufflesthedrummer seller;self.PMsFeedback +bad;21;10;SPOILERS ALL How did Lord Tywin get his hands on;self.asoiaf +bad;21;13;Frost Path 19 20 Kitana Brutality Back that Up 6800 lt TIMED gt;self.kryptguide +bad;21;19;F Pasta does Caraoke why Cardlin why 3 songs for the price of one mostly laughs and horrible screeches;self.Recordings +bad;21;5;The New Call of Duty;self.blackops3 +bad;21;12;Want to spend a weekend in Santa Catarina Any advice much appreciated;self.Brazil +bad;21;7;H FT AWP Redline W Keys skins;self.GlobalOffensiveTrade +bad;21;9;Setting up and managing Asus RT N66U router QoS;self.techsupport +bad;21;15;Self My friend u blueboxreddress as Kuvira from Megacon 2015 X Post from r TheLastAirbender;imgur.com +bad;21;3;Anthony Davis Dougie;gfycat.com +bad;21;29;2 000 years ago the zombie apocalypse began and most societies of the world have adapted to that Suddenly all zombies die off and the dead stop coming back;self.hypotheticalsituation +bad;21;8;What do you look for in a thread;self.AskReddit +bad;21;11;Foreign correspondent Richard Engel will be Stanford s 2015 Commencement speaker;self.autotldr +bad;21;8;Is GTA V on PC worth the money;self.gaming +good;21;6;No Spoilers THIS BELONGS IN ZOAFU;i.imgur.com +bad;21;5;What s your favorite gum;self.trees +bad;21;5;m4f Has anyone else cheated;self.dirtypenpals +bad;21;3;I need gear;self.canucks +bad;21;5;Hr 4 mission clean up;self.monsterhunterclan +bad;21;17;Hello I am an art student and I would like to understand the illustration industry better D;self.Illustration +good;21;9;A chart matching snack food to types of wine;imgur.com +bad;21;3;Welcome to Canada;imgur.com +bad;21;14;Turning Finnish Europe will watch Finland s election closely perhaps for the wrong reasons;economist.com +bad;21;8;r Futurebeatproducers Monthly Compilation Series Episode VII NOSTALGIA;soundcloud.com +bad;21;8;Scrooge McDuck over here with money sign eyes;imgur.com +bad;21;9;New Dutch pill Pink Mario Heads tested at 150mg;imgur.com +good;21;4;Phillies Nats 4 17;self.Nationals +bad;21;2;yes good;33.media.tumblr.com +bad;21;2;Introducing myself;self.NoFap +good;21;9;Champions Korea Playoff Preview CJ Entus vs Jin Air;thescoreesports.com +bad;21;9;Finally I ve made you Pirate King r WhiteBeard;imgur.com +bad;21;8;AutoModerator Obscene Locals Reflection Acoustic Hip Hop 2011;redd.it +bad;21;6;Fixing the Metagame Clean and Simple;self.GlobalOffensive +bad;21;8;You can t say Glass without saying Ass;self.Showerthoughts +bad;21;17;Jessica Pratt Back baby Dreamy Indie Folk 2015 A beautiful and unique voice with a smooth melody;youtube.com +good;21;13;When Ke ha is in the EU does she go by K sha;self.Showerthoughts +bad;21;4;I ve gone crazy;self.amiibo +bad;21;10;Dragon Lady super macro coil x post from r interestingasfuck;imgur.com +bad;21;18;centralscruuutinizer Jessica Pratt Back baby Dreamy Indie Folk 2015 A beautiful and unique voice with a smooth melody;redd.it +bad;21;9;Is it drug induced lupus It s never lupus;self.medical +bad;21;5;DEMD Dead End Mental Disorder;self.Eve +bad;21;9;r conspiracy missing from my reddit account Anyone else;self.conspiracy +bad;21;7;Jessie Ware Champagne Kisses electronic future 2015;bop.fm +bad;21;4;Google offered no help;self.breastfeeding +bad;21;7;What would make Hastened Fatalis more viable;self.Smite +bad;21;3;Cortadito OC 3264x2448;i.imgur.com +bad;21;12;It has been a long time I m gonna Stream some Strife;twitch.tv +bad;21;21;Ladies what do you think of guys I m a 21 M with hair buns pony tails Need an honest opinion;self.relationships +bad;21;9;raddit bot Jessie Ware Champagne Kisses electronic future 2015;redd.it +good;21;7;FRESH Young Thug Constantly Hating feat Birdman;soundcloud.com +good;21;8;Twitter out to crack down on abusive tweets;news.yahoo.com +bad;21;16;Mathcore NIGHTCORE Turn Off the Lights I m Watching Back to the Future Dance Gavin Dance;youtube.com +bad;21;16;All Avengers Age of Ultron trailers clips featurettes and TV spots conveniently collected in one place;rantingdragon.com +bad;21;4;Britain s best trait;imgur.com +bad;21;3;Wait What Really;self.rant +bad;21;17;USA H 3DS Gamecube PS2 Wii Xbox 360 games W Wii amp Wii U games and accessories;self.gameswap +bad;21;11;Oof Are we still doing Opie s lie of the day;self.opieandanthony +bad;21;14;Anyone selling tickets for tonights LA show Willing to pay more than face value;self.Interpol +bad;21;10;ASMR TRIPLE BINAURAL Whispers Humming amp Hand Movements Intentional Female;youtube.com +good;21;5;Suck my nipples would you;imgur.com +bad;21;11;Self organized workers in Greece press SYRIZA to keep its promises;roarmag.org +bad;21;14;For Better Or Worse Clinton Is Likely Stuck Running For Obama s Third Term;fivethirtyeight.com +bad;21;4;Good side business opportunity;self.Entrepreneur +bad;21;4;Katya s New Pedicure;instagram.com +bad;21;12;Anybody have a good dark battery saving wallpaper they want to share;self.GalaxyS6 +bad;21;7;Swiggity sWOWty X post from r wow;gfycat.com +bad;21;8;Question Mesh size power of 2 or not;self.UE4Devs +bad;21;12;To those who miss the bloopers at the end of animated films;i.imgur.com +bad;21;10;I have a question about what to wear when exercising;self.ftm +bad;21;5;How can I seem older;self.acting +bad;21;2;Jealous Javert;i.imgur.com +bad;21;11;i got the PSU for free how good bad is it;self.buildapc +bad;21;3;Snapchat Seattle Live;self.Seattle +bad;21;6;xb1 32 warlock L42 for Nightfall;self.Fireteams +good;21;21;Help Cracked corner of mouth Been like this for a month I don t know how to make it go away;imgur.com +bad;21;6;ps4 ce hm fresh lf5m elementxxiii;self.Fireteams +good;21;3;Elite Dangerous question;self.pcgaming +bad;21;29;Critique If anyone is free to lend me your time could you please review my profile and tell me the good the bad and the ugly truths Thank you;okcupid.com +bad;21;2;Botany Waterparker;youtube.com +good;21;2;Infinite Train;imgur.com +good;21;13;If reincarnation were true what who would you want to be reincarnated as;self.AskReddit +bad;21;14;When an Elon Musk is asked to write a praise of a Kanye West;i.imgur.com +bad;21;4;GTA Installer wont open;self.GTAV +bad;21;11;Reddit s reaction when the new Star Wars teaser was posted;i.imgur.com +bad;21;11;Welp this is certainly one way to kill a Kushala Daora;youtube.com +bad;21;14;Nefashuu s Pokemon Black 2 Bambuulocke Custom Nuzlocke w TechnoBambino Part 14 Treasure Hunt;youtube.com +bad;21;15;Marth Pit Lucina Ike Wave4 are online on yesasia com with FREE SHIPPING 20 each;yesasia.com +bad;21;27;New Sports Bar Restaurant in Old Town Gaithersburg And it s awesome Grand opening this Saturday with four bands and even comedians starting 1 Check it out;thecornerpubmd.com +bad;21;12;Calling artists and image editors to help a questioning pre everything mtf;self.ask_transgender +bad;21;3;Shannon Green bikini;imgur.com +bad;21;8;1994 Honda Accord LX standard having trouble starting;self.MechanicAdvice +bad;21;1;Millwalkey;self.hearthstone +bad;21;10;Where can i find this video if it is one;self.tipofmypenis +bad;21;6;List of online summer courses anywhere;self.uvic +bad;21;9;A Study in Red Michelle H album in comments;i.imgur.com +bad;21;9;What is the best blueprint for a big three;self.nba +bad;21;19;After not seeing some friends for awhile my friend s wife called me boo and he got overly jealous;livememe.com +bad;21;3;Awesome pegging gif;lix.mx +bad;21;4;Andr Matos Separate Ways;youtube.com +bad;21;12;Man in Obama mask robs Alexandria store caught in Jacksonville deputies say;annistonstar.com +bad;21;8;EU Poland MG2 looking for a dedicated team;self.RecruitCS +good;21;17;Guess it s time to share my pokemon tattoo This is the beiginning of a whole piece;imgur.com +good;21;23;Because Vatican City is so small there are 2 3 popes per square mile and 4 6 if Benedict the 16th is visiting;self.Showerthoughts +bad;21;5;Xbox 360 Giveaway New Players;self.NHLHUT +bad;21;12;Harvard Students Expand Blockade Calling for School to Divest from Fossil Fuels;self.autotldr +bad;21;7;Help please good people of namma bangalore;self.bangalore +bad;21;3;Sunscreen stained swimshorts;self.malefashionadvice +bad;21;5;Anyone want a picstitch done;self.tappedout +good;21;17;An Easter egg I ve yet to see in every Daredevil easter egg articles Spoilers Daredevil Ep3;self.marvelstudios +bad;21;12;So I m watching pilot again and guess who I ve found;i.imgur.com +bad;21;7;Tom Morello The Fabled City Rock Acoustic;youtu.be +good;21;15;Ramasser seul des d chets au bord d une rivi re n est pas vain;bigbrowser.blog.lemonde.fr +bad;21;8;Anxiety at the thought of making new friends;self.socialanxiety +bad;21;13;30 M4F Northridge In the area tomorrow for work let s meet up;self.RandomActsOfBlowJob +bad;21;6;Wrestling With Wregret Should Wrestlers Unionize;youtu.be +good;21;10;One of our dolphins turned 14 this week lt 3;i.imgur.com +bad;21;7;Is Leviathan Syldra summon ability worth creating;self.FFRecordKeeper +bad;21;8;This Is War 4 Freljord Collab Higher Volume;youtube.com +bad;21;9;Why don t our brains explode at movie cuts;aeon.co +bad;21;9;RHOA Reunion first looks Posted by the man himself;i.imgur.com +bad;21;16;A Navy Seal a Yacht Captain and the Other People Billionaires Trust to Manage Their Money;bloomberg.com +good;21;9;How to Watch the NBA Playoffs Legally without Cable;cutcabletoday.com +bad;21;10;Iran the new Nazis says Satanyahu during Holocaust C remembrance;self.autotldr +good;21;3;Curly Hair Problems;imgur.com +bad;21;2;Ermac Mains;self.MortalKombat +bad;21;3;HELP ERR_NO_LAUNCHER error;self.GTAV +bad;21;2;Cashout Question;self.opskins +bad;21;13;What Seedbox will give me the best chance of streaming large media files;self.seedboxes +bad;21;8;r Futurebeatproducers Monthly Compilation Series Episode VII NOSTALGIA;soundcloud.com +bad;21;15;Every redditor s reaction when they say they like episodes 1 3 of star wars;i.imgur.com +bad;21;6;Please stop making me hate Phil;self.LastManonEarthTV +bad;21;4;SPOILER S02E17 about Raina;self.shield +bad;21;11;The result of using a fused grid and 1x4 shaped plots;i.imgur.com +bad;21;6;GOP free for all over reconciliation;politico.com +bad;21;25;Watch PS4 fans flock to make things up and show how little they understand about technology in order to defend the PS4s babby AMD CPU;neogaf.com +bad;21;7;I Have 500 What Should I Upgrade;self.buildapc +bad;21;3;Sniping from faraway;youtube.com +good;21;18;CW Re write history What is the true origin of April Fool s Day Less than 200 words;self.WritingPrompts +good;21;9;Announcement Major rule update not a joke this time;self.GlobalOffensiveTrade +bad;21;5;Hjemmeside med noter til HHX;self.Denmark +bad;21;3;GTA Online Rant;self.GTA +bad;21;18;H Fake Fire Ice Gut Marble FN W M9 Urban masked MW adds Stattrak M9 Urban masked MW;self.GlobalOffensiveTrade +good;21;9;The Latest Update on Augur a Decentralized Prediction Market;reddit.com +bad;21;7;What is the flashiest class graphics wise;self.elderscrollsonline +bad;21;3;Sea Of Clouds;i.imgur.com +bad;21;9;How do you plan on wearing your yeezy boosts;self.Repsneakers +bad;21;14;Par for the course Holocaust C survivor s love story exposed as a fraud;self.autotldr +bad;21;11;Walkway of Souls 15 19 Kung Jin Fatality Pinned Down 2600;self.kryptguide +bad;21;7;H 5 MAX BETS W 24 keys;self.GlobalOffensiveTrade +bad;21;5;Seeking Help with Symbology Tattoo;self.Buddhism +good;21;6;Taking the day off on Monday;imgur.com +bad;21;50;TIL the cocktail tequila sunrise was popularized by The Rolling Stones on their 1972 US tour After enjoying the drink at their launch party the band kept ordering it at bars all over the country They went as far as dubbing their whole tour the cocaine and tequila sunrise tour;en.wikipedia.org +bad;21;8;Native Brazilian Portuguese Looking for Finnish Penpal C1;self.LanguageBuds +bad;21;12;What can I add to my run to keep my hens entertained;self.BackYardChickens +bad;21;4;Chalice Dungeons Gone Sexual;self.bloodborne +good;21;16;A Navy Seal a Yacht Captain and the Other People Billionaires Trust to Manage Their Money;bloomberg.com +bad;21;13;STORE Karambit M9 Tiger Tooth Doppler s Kara Slaughter s Fade CW MW;self.GlobalOffensiveTrade +bad;21;10;I don t smoke myself but the smell looks amazing;reddit.com +bad;21;6;Onondaga Lake clean for swimming CNYMeanTweets;youtu.be +bad;21;12;The Wild East Drunk on Power a western fantasy by James Hunter;goodkindles.net +bad;21;12;Sarajevo Bosnia and Herzegovina Photographer Emir Terovic 2048 x 1076 OS CityPorn;drscdn.500px.org +bad;21;15;How long would it take you to memorize 16 pages of written notes A4 paper;self.AskReddit +bad;21;16;Izzo on Failings of College Basketball and NBA We ve Got to Do a Better Job;teamstre.am +good;21;7;Scout says Zimmerman has decided on UNLV;ucla.scout.com +good;21;11;Man helps dead shark give birth x post from r HumansBeingBros;i.imgur.com +bad;21;8;What the hell is in my string cheese;imgur.com +bad;21;5;Indie Royal The Insulin Bundle;indieroyale.com +bad;21;5;My Hot Ass Neighbor jab;imgur.com +bad;21;10;VT Genji the jock rabbit LF Bunnie or Tangy Bells;self.AdoptMyVillager +bad;21;2;Phoebe Griffiths;40.media.tumblr.com +bad;21;5;PC Karambit CW FT BTA;self.GlobalOffensiveTrade +good;21;7;What s a good Female Dog Name;self.AskReddit +bad;21;2;Rui Kamiyama;img.pornocereza.com +bad;21;12;Need advice on filling the void in the middle of Soviet wall;self.HomeImprovement +bad;21;12;WTS Poker ii mx blacks OR WTT for any 60 mx blues;self.mechmarket +bad;21;3;That Body Though;img.pornocereza.com +bad;21;10;Mmayimmayi Part 3 Lexicon Argument Structure Translating Ergative Verbs Phonotactics;self.conlangs +bad;21;11;Looking for a new home for my 6 yr old Siamese;self.Richardson +good;21;8;Cum clean up after Sir s f un;imgur.com +bad;21;10;I can t see the numbers on the countdown anymore;self.thebutton +good;21;3;My chubby gf;imgur.com +bad;21;10;Idea for Streetcar based local Culture Understanding Tradition your thoughts;self.cincinnati +bad;21;18;What new features do you want to see in the next major release of the Tron Launcher GUI;imgur.com +bad;21;11;660ti and Phenom II X4 965 Am I out of luck;self.GrandTheftAutoV_PC +bad;21;9;Advice on receiving an inheritance and buying a house;self.personalfinance +good;21;9;In ordeal with Angels some weight belongs to Hamilton;m.mlb.com +bad;21;7;Did skill level drop suddenly or something;self.GlobalOffensive +good;21;4;What an amazing feeling;imgur.com +good;21;9;Is there such a thing as an anti novel;self.books +bad;21;5;LF LGBT friendly realm guild;self.wow +good;21;8;12 year old ISIS escapees describe systematic rape;hrw.org +bad;21;6;Just dropped 19mg 4 AcO DMT;self.TripSit +bad;21;7;Trains lining up to leave the city;self.CitiesSkylines +bad;21;6;HUGE LIVE STREAM April 17 2015;youtu.be +bad;21;5;CDPROJEKTRED Inviting youtubers to Poland;youtube.com +bad;21;16;Max out a date once a set number of issues is reached for that particular date;self.sharepoint +bad;21;6;More tiling questions because I suck;self.HomeImprovement +bad;21;9;A quick test of the Rockstar Editor i did;youtube.com +good;21;18;US choose a drink 6 questions J Robert Parker 0 30 1 5 min gt 97 gt 500;self.HITsWorthTurkingFor +bad;21;9;The Legend of Zelda Ocarina of Time Old skool;youtube.com +bad;21;11;Lady Antebellum tour bus catches fire in Texas no one hurt;reuters.com +bad;21;13;Hey Champ Clich electro Going for Gold Hey Champ on Last fm i;youtube.com +bad;21;2;0 o;vimeo.com +bad;21;27;WP You come into possession of a book that for all intents and purposes is about your life What do you do when you reach the present;self.WritingPrompts +bad;21;10;Called EB Yonge Dundas Manager knows nothing about Ness yet;self.AmiiboCanada +bad;21;7;Can anyone race trade me on ps4;self.gtaonline +bad;21;7;Place where I can post cover videos;self.Guitar +bad;21;7;Have you ever skipped a demo service;self.TrueDucati +bad;21;2;M4F Omaha;self.RandomActsOfBlowJob +good;21;5;Suck my nipples would you;imgur.com +bad;21;5;Please don t eat me;youtube.com +bad;21;5;Climbing in Castle Rock CA;self.climbing +bad;21;10;Star Wars Celebration The Force Awakens Panel Ended Livestream Continues;darkjedibrotherhood.com +good;21;13;No Spoilers Saw this on another subreddit reminded me of Ray and Felicity;imgur.com +bad;21;4;28 m4f Afternoon Delight;self.sexytimechat +bad;21;16;Surprise surprise Woman who wrote fake Holocaust C memoir must pay back 22 5M to publisher;self.autotldr +bad;21;22;An escape artist films their own death as they fail to get out of a new trick and they end up drowning;vps42209.vps.ovh.ca +bad;21;3;S3 Monk Rush;self.diablo3 +good;21;9;I got blue Because I like the color blue;self.thebutton +bad;21;11;EU Netherlands MG1 been MGE looking for team to play with;self.RecruitCS +bad;21;4;Lost all my data;self.FFRecordKeeper +bad;21;6;Bet she misses this dick P;imgur.com +bad;21;9;EVO 15 S Gaming Laptop Contest 3 Days Left;gleam.io +bad;21;7;Has anyone seen Omer this happy before;i.imgur.com +bad;21;12;I am having gpu issues and don t know what to do;self.techsupport +good;21;6;A guy walks into a bar;self.Jokes +bad;21;4;Event Anglo Ships Constructed;self.SuperFantasyPowers +bad;21;14;I would like to see these cats in tpp Afghanistan is a big place;en.wikipedia.org +bad;21;5;Minimalist views on video games;self.minimalism +bad;21;13;Saw a friend post this on Facebook today Ottawa has some awesome residents;imgur.com +bad;21;13;MMW Someone could probably die this week I dunno if they wanted to;self.MarkMyWords +bad;21;15;Are you passionate about cats Want to work at the 1 cat startup in NYC;self.NYCjobs +bad;21;10;Cypress Mountain village open house ends today in West Vancouver;cbc.ca +bad;21;11;Communists urge no debt repayment to countries supporting anti Russian sanctions;rt.com +bad;21;26;As someone who is trying to avoid spoilers as much as possible this is how I will be spending the next few days on social media;i.imgur.com +bad;21;10;Walkway of Souls 14 19 Sub Zero Concept Art 1470;self.kryptguide +bad;21;11;I can t decide if my sona should talk or not;self.furry +bad;21;1;Flirting;imgur.com +good;21;6;So this happened in Watch Dogs;imgur.com +bad;21;11;People who start their search find a game and not play;self.halo +bad;21;5;Business wardrobe advice wanted UK;self.malefashionadvice +bad;21;16;Reddit what led you to successfully get back together with your spouse after agreeing to separate;self.AskReddit +bad;21;9;Tips on Subtank Mini wicking for high VG juices;self.electronic_cigarette +bad;21;4;BIFL and Wabi Sabi;self.BuyItForLife +bad;21;10;I know it s early spring but keep it up;imgur.com +bad;21;5;New head of the empire;self.StarWarsLeaks +bad;21;7;Best practices for developing a decision tree;self.rails +bad;21;4;Reccomendations for International ETFs;self.investing +bad;21;10;Finally made a space shuttle but i still have problems;self.KerbalSpaceProgram +bad;21;14;Petition to set the Google Doodle on April 24 to commemerate the Armenian Genocide;change.org +bad;21;3;Tretinoin and surgery;self.SkincareAddiction +bad;21;6;Sophie Turner from Game of Thrones;i.imgur.com +bad;21;11;Fuck Candy Crush I think I ll play Shitty Charizard instead;youtube.com +bad;21;7;I came out to my brother today;self.exmuslim +bad;21;3;Keys4Coins is Wow;self.dogecoin +bad;21;13;My new 2015 Mazda 3 S Touring Miko She s a nice ride;i.imgur.com +bad;21;14;Hypocrisy from beyond the grave Charlie Hebdo artist decries the special treatment Muslims get;france24.com +bad;21;8;Not who I wanted Someday Miss Wednesday someday;imgur.com +bad;21;8;Why does she spin webs while she eats;self.tarantulas +bad;21;11;Where are you from and what do you do for fun;self.AskReddit +bad;21;7;Scarface 1983 Count the word Fuck NSFW;youtube.com +bad;21;18;Your taxes have nothing to do with the government s need for money Gold Anti Trust Action Committee;gata.org +bad;21;20;I m a budding wedding photographer in Chicago Just thought I d share some recent work I m excited about;imgur.com +bad;21;5;FS Blue Diagonal Soccer Top;self.supremeclothing +bad;21;7;Swastikacycle inspires a classic Nazi pun thread;reddit.com +good;21;55;Hygeine requires time and money It s easier for a person who s staying in a luxury hotel to get clean than it is for the kid who is couchsurfing with a bunch of his friends It s not just access that s expensive though deodorant costs money soap costs money clean clothes cost money;hipstersofthecoast.com +bad;21;17;CAN Graduating college in a week Landed a career and pretty much starting my life Any thoughts;self.personalfinance +good;21;5;So this is me tonight;imgur.com +good;21;9;Hawk kills deer by pulling him off a cliff;i.imgur.com +bad;21;4;What an amazing feeling;imgur.com +bad;21;5;Bonson Berner Traveling Electronic Rock;youtube.com +bad;21;12;Say whatever you want this Hellraisers line up is looking very promising;self.DotA2 +bad;21;12;Could you guys help out a 19 year old with career advice;self.sysadmin +bad;21;10;Star Wars Celebration 2015 in Finland x post r suomi;i.imgur.com +bad;21;11;Conflict one of Saskatoon s local comics just finished another episode;moreconflict.com +good;21;8;Han amp Chewie from the Star Wars trailer;imgur.com +bad;21;5;Odd noise coming from tires;self.cars +bad;21;5;The Other Guys Bar Scene;youtube.com +bad;21;12;We have officially hit 50 subscribers Yay Who wants free Kaylee stuff;self.KayleeMason +bad;21;5;Fucked While Playing Console Game;vidbox.us +good;21;6;Off to the park aww yiss;i.imgur.com +bad;21;5;WEEKEND 1 OR WEEKEND 2;self.Coachella +bad;21;8;r Futurebeatproducers Monthly Compilation Series Episode VII NOSTALGIA;soundcloud.com +bad;21;7;Bond Grylls Parody Of Man Vs Wild;youtube.com +bad;21;15;Queen Bee PART THREE You can t have sex or no man will respect you;self.badroommates +bad;21;3;Thunder Fan Here;self.bostonceltics +bad;21;13;Fan Art True Detective Season 2 Intro For Vince Vaughn xpost r TrueDetective;i.imgur.com +bad;21;12;GUYS My Cruiseship Level Crossing is causing congestion SEND HELP and coats;i.imgur.com +good;21;2;Cervena Fox;i.imgur.com +good;21;27;MRW my father sees Brienne of Tarth for half a second while I m watching GoT and says she doesn t look like a very likable character;38.media.tumblr.com +bad;21;13;Early Rainbow picture shows that the show could have been unsuitable for children;imgur.com +bad;21;6;Some Gawker Staffers Start Unionizing Effort;gawker.com +bad;21;17;If you were a villain in the Star Wars Universe what would you call yourself and why;self.AskReddit +bad;21;10;Bitcoin Exchange in India Allows Conversion of Turk to Rupees;newsbtc.com +bad;21;3;I hate you;self.offmychest +good;21;35;Tesco Pre Orders for this year s big releases Star Wars Battlefront Halo 5 Tom Clancy s The Division Just Cause 3 Mad Max Elder Scrolls Online etc Xbox One amp PS4 2 for 70;tesco.com +good;21;6;chrisJ Profound Aggression POV demo Movie;youtube.com +bad;21;10;The Prologue One Shot Iron Man 3 Chinese Exclusive Scenes;self.marvelstudios +bad;21;21;WP While fleeing from an intruder a man runs into his panic room Which is precisely what the intruder had planned;self.WritingPrompts +bad;21;10;Exporting for localization gives Localization failed reading var folders p6;self.swift +bad;21;10;NASA Probe to Crash Into Mercury in 2 Weeks Time;news.discovery.com +bad;21;9;Finally hit the button this is how i feel;youtube.com +bad;21;20;x post from r sm4sh A nice string to start off the match with Dr Mario This racked up 93;imgur.com +bad;21;10;What is your favorite type of professor and learning environment;self.AskReddit +bad;21;8;Not Happy about the 24 Hour Forced Cycle;self.dayz +bad;21;12;Action Adventure RPG Hack n Slash Playmaker kit Your input is needed;self.Unity3D +bad;21;5;PS4 LFG VoG NM fresh;self.Fireteams +good;21;12;I couldnt imagine the fun of two sets of these u leadthecharge;i.imgur.com +bad;21;4;Wednesday Premier RV question;self.FireflyFestival +bad;21;23;Ever think one of your friends is a poster lurker on here judging by what they post on Facebook A A Underage story;self.bigdickproblems +good;21;10;Yoga pants for men could be marketed as Broga pants;self.Showerthoughts +bad;21;11;If you needed more hype for the playoffs Under Pressure commercial;youtube.com +bad;21;8;Do Flu Shots Work Ask A Vaccine Manufacturer;youtube.com +good;21;18;Wooaaaaahhh red flag I am the Alpha fux and right now shes going to see the beta Bux;self.asktrp +bad;21;3;Study or die;self.depression +good;21;2;Elisha Cuthbert;i.imgur.com +bad;21;3;Hey I wonder;self.GrandTheftAutoV +bad;21;14;What did Dave Matthews see when he spilled the potato salad at the picnic;self.Jokes +good;21;15;Post your favourite scene from your favourite movie Everyone else why is that scene bad;self.AskReddit +bad;21;13;An illustrated general theory of macro politics by me looking for feedback criticism;imgur.com +good;21;8;Cranks to u I_Lase_You for my awesome lase;imgur.com +bad;21;9;A Study in Red Michelle H album in comments;i.imgur.com +bad;21;14;Rockets Mavs playoff tix at Toyota are about 18 more expensive than at Dallas;blog.tiqiq.com +bad;21;11;HK 2044 E P Neon Arrow UK based 80s inspired synth;neonarrow2044.bandcamp.com +bad;21;9;What language would you recommend for animating a logo;self.learnprogramming +bad;21;6;Anyone know where this is from;imgur.com +bad;21;6;And i now am officially converted;i.imgur.com +bad;21;12;R I s unemployment rate drops to 6 3 percent in March;providencejournal.com +good;21;4;Lefty 3 Gun setup;i.imgur.com +bad;21;5;Crime rate figures in mc1;self.dredd +bad;21;7;Which Jedi Sith is the most powerful;self.whowouldwin +bad;21;5;Michigan announces summer satellite camps;mgoblue.com +bad;21;4;Question Rio straps slipping;self.ABraThatFits +bad;21;15;F4A The Monster Under the Bed tentacles monster fdom rape script fill poor tentacle monster;self.gonewildaudio +bad;21;15;After the adjustments what is the better way to go about a dps sith sorcerer;self.swtor +bad;21;2;Gear question;self.wow +bad;21;13;STAR WARS VII EDIT THANKS FOR THE FRONT PAGE KIND STRANGERS GOLD REALLY;self.circlejerk +bad;21;4;Aaron Gordon good lawd;gfycat.com +bad;21;5;What would Connor have done;self.ANGEL +bad;21;13;28yr old jaded online advertiser Should I stay or should I go Help;self.findapath +bad;21;8;r Guitar once again asking the important questions;np.reddit.com +bad;21;10;Project Reality sequel Squad is Greenlit in just one week;rockpapershotgun.com +bad;21;8;US CA H sony xperia Z2 W Paypal;self.phoneswap +bad;21;7;MSN Money drops the ball on ETSY;self.windowsphone +bad;21;4;R F Heraldic Beasts;self.yugioh +bad;21;13;Superman Vs a perfectly mundane chair with a angry face drawn on it;self.whowouldcirclejerk +bad;21;8;When is the appropriate time to change factions;self.MortalKombat +bad;21;10;Madhog Plays The Longest Journey Part 3 Paint It Red;youtube.com +good;21;2;Jenna Valentine;i.imgur.com +bad;21;27;ELI5 Is Hitler to blame for the holocaust or is this something that would have likely happened even if someone else came to power instead of him;self.explainlikeimfive +bad;21;6;April 18 19 Feeder Series Timetable;imgur.com +bad;21;11;Expansion N land annexes the rest of the isle of satindar;self.SuperFantasyPowers +bad;21;9;Trail section closure change News from director of SHTA;self.SuperiorHikingTrail +bad;21;8;New Wavers what s my 80s playlist missing;self.newwave +bad;21;18;Being able to queue up again with the same team at the post match screen in team builder;self.leagueoflegends +bad;21;30;After reading that everyone will eventually get cancer if nothing else kills you first wouldn t the best cancer prevention strategy be to make sure something else kills you first;self.Showerthoughts +bad;21;9;LFM Behemoth Server Infinity FC Recruiting Static 3 0;self.FFXIVRECRUITMENT +good;21;15;FC Bayern Team Doctor M ller Wohlfahrt and his team end engagement with the club;focus.de +bad;21;41;NSFW Me 26F with my BF 27M 10 months had sex when friend was passed out in the same room on NYE Found out he wasn t asleep was faking now I m paranoid that everyone I know will find out;self.relationships +bad;21;7;Anyone else having trouble finding hidden packages;self.GrandTheftAutoV_PC +bad;21;4;H Blackiimov W Keys;self.GlobalOffensiveTrade +good;21;3;Leave Kerry Alone;reddit.com +good;21;22;Please DO NOT put the names of returning guest stars in your title it s a spoiler and not everyone reads them;self.shield +good;21;12;10 Great Moments from the Last 40 Years of the Boston Marathon;runnersworld.com +bad;21;13;LF Most my GQs deleted Looking for help getting them back List inside;self.mhguildquests +bad;21;6;Nature Man is live on twitch;twitch.tv +good;21;14;F irst Post Let s see what you and my red lips get up;imgur.com +bad;21;20;If you were to take an online social media marketing course what kind of experience would you want to have;self.socialmedia +bad;21;5;Any viewing parties in NYC;self.lolviewingparty +bad;21;17;Does anyone else feel like The Interstellar 2009 is an homage to Moon The Force Awakens 1994;self.moviescirclejerk +bad;21;14;How to draw a betta Stumbled onto this today and thought I d share;4.bp.blogspot.com +bad;21;19;ESPN Anchor Britt McDaniels berating a store clerk I suspect some discipline is going to be handed down soon;vid.me +bad;21;3;Beorn goes BOOM;youtube.com +bad;21;4;I am Pixel Alpha;self.incremental_games +good;21;5;NO SPOILERS A Lannister always;imgur.com +good;21;16;Are Rams called Rams because they ram things Or is ramming called ramming because Rams ram;self.Showerthoughts +bad;21;2;Dread Game;self.RedPillWomen +bad;21;6;Left channel popping issue help needed;self.vinyl +bad;21;19;I really want to order from the dark net but I m scared of the consequences it might have;self.LSD +good;21;10;Spoilers possibly Arrow amp The Flash Three Minute Fight Club;youtube.com +bad;21;11;Catch and release fishing is like an alien abduction for fish;self.Showerthoughts +bad;21;6;XB1 LF5M for CE NM fresh;self.Fireteams +bad;21;3;NEW FACTION FLUSS;self.rustfactions +bad;21;2;Cumshot gif;lix.mx +bad;21;13;CIG needs to add a unsubscribe link at the end of org emails;self.starcitizen +bad;21;9;Le plein d motions Le Journal de Montr al;journaldemontreal.com +bad;21;2;Overcapping stats;self.Smite +bad;21;4;Brothers in the Barracks;self.Xcom +bad;21;13;GTA V PC 60FPS FOV MOD 1920X1080 GTX 780 amp i74790K 4 8;youtube.com +bad;21;4;Bone Ash Armor Set;self.bloodborne +bad;21;10;How to party up to join a job with friends;self.GTAV +bad;21;5;Crying Christina vs He Man;imgur.com +bad;21;9;Rivers in Snow Biomes should be Snow Ice Rivers;self.minecraftsuggestions +good;21;8;These Photos Of Recreational Marijuana Users Shatter Stereotypes;huffingtonpost.com +bad;21;5;What could this error mean;imgur.com +bad;21;6;pst hey dongs get in here;self.raiseyourdongers +bad;21;10;WHAT SHOULD I BE BE A HOBO GTA V PC;youtube.com +bad;21;14;Is there a cumulative line graph anywhere for the entire history of the button;self.thebutton +bad;21;2;Tampa fans;self.DetroitRedWings +bad;21;10;I don t know how to feel about this hat;38.media.tumblr.com +bad;21;9;Need a new mattress Recommendations on stores or brands;self.askportland +bad;21;10;Took this on my Terrace and thought of you guys;i.imgur.com +bad;21;7;Six Rules For Being a Frugal Foodie;medium.com +bad;21;6;Dungeon World pathfinder or DND 5e;self.rpg +bad;21;10;TIL about The Two Jakes the 1990 sequel to Chinatown;en.wikipedia.org +good;21;14;Another gi f where I m rubbing my pink pussy Hope you like it;i.imgur.com +bad;21;6;Swans TV Preview Monk on Leicester;youtube.com +bad;21;13;Huntsville may extend the city limits across the Tennessee River into Morgan County;al.com +bad;21;21;Pic I took of a droplet of water in a leaf in my front steps sorry about the filter from instagram;imgur.com +bad;21;19;Baby is run over by train in Mumbai A baby falls on the tracks as a train goes by;vps42209.vps.ovh.ca +bad;21;2;FU NiP;self.csgojerk +bad;21;7;G Where to go for multimedia content;self.incest +bad;21;34;Have you or do you know someone who actually believed that the world would end on one of many past Armageddon dates How did you they respond when they realized it wasn t happening;self.AskReddit +bad;21;16;UCLA is offering a summer Armenian language course for high school students xpost from r hayeren;imgur.com +bad;21;2;Using Botany;self.feedthebeast +bad;21;8;How Teenage Mutant Ninja Turtles Should Have Ended;youtube.com +bad;21;15;My building overlooks the parking lot I often see people making things harder on themselves;imgur.com +bad;21;12;S A F E T Y Hotline Miami Lovers Listen to This;soundcloud.com +good;21;7;Why do you love your main hero;self.heroesofthestorm +bad;21;21;After 2 years of hard work I finally finished college Wrote my final exam 20mins ago Today is a good day;imgur.com +bad;21;4;Tips for Paramedic School;self.ems +bad;21;39;Hey there I m about to do this build link in comments I was wondering how it will run GTA V I can t afford the nicest build so I felt this was the best bang for the buck;self.GrandTheftAutoV_PC +bad;21;6;Real news all day every day;i.imgur.com +bad;21;10;To nom or not to nom That is the question;imgur.com +bad;21;3;Help with eof;self.learnprogramming +bad;21;10;What I feel like saying during every porn video ever;livememe.com +bad;21;8;ISO JK Viking metal FT anything from Colorado;self.beertrade +good;21;2;r weakmods;33.media.tumblr.com +bad;21;3;Back to Work;self.shortscarystories +bad;21;6;Dating Life in AA for 30yo;self.AnnArbor +bad;21;3;Piano Roll Reason8;self.reasoners +bad;21;9;future food cricket protein conversion rates may be overestimated;entomologytoday.org +bad;21;6;M4F Student looking for seductive teacher;self.dirtypenpals +bad;21;10;How can I fix random lag spikes in the game;self.runescape +bad;21;11;NEWS Hispaniolan military to build new manufacturing plants at Las Calderas;self.worldpowers +bad;21;7;Why I don t push the button;24.media.tumblr.com +bad;21;10;22 m4f nj honestly I m high and horny lol;self.dirtykikpals +bad;21;5;Titanfall 2 Map Ideas Thread;self.titanfall +good;21;13;Gifted fatalis_vox and pixelationnation Some homemade stuff and a bunch of other shit;imgur.com +bad;21;10;The real headline is that this made The Irish Times;irishtimes.com +bad;21;7;April 19 UHC and The Lightning Spire;self.asov +bad;21;2;Warcraft Fanfiction;self.wow +bad;21;14;x1 32 on his day off lfg hm vog ce preferred fresh get kidr3volver;self.Fireteams +bad;21;13;If she thinks I am insecure is it grounds for ending a relationship;self.relationship_advice +bad;21;13;Just before my job interview via web conference they changed the job title;i.imgur.com +bad;21;23;H Heroes of storm beta key 1 NA 4 EU Dishonored GOTY Garrys mod Skullgirls Gauntlet Postal 2 W Keys Gems Csgo items;self.SteamGameSwap +bad;21;10;Alone with your Thoughts April 17 2015 23 00 UTC;self.shadownet +good;21;3;Tasty looking tears;imgur.com +bad;21;6;NOFAP rocket crashed after 402 Days;self.NoFap +bad;21;2;Chelsea Bell;i.imgur.com +good;21;10;Japan Zoo offers first look at quadruplet White Tiger cubs;si.wsj.net +bad;21;20;IndieKings The BundleStars Shadow of Mordor Bundle Is Live http t co cDBth2MQ0P steam_games monolithdev WB_Games http t co f1lMbaPUAs;twitter.com +bad;21;22;IndieKings The humble Weekly Strategy Bundle 2 Is Live http t co cDBth2MQ0P steam_games strategy games bundle steam http t co 7k5ApblwsZ;twitter.com +bad;21;9;I don t know what the shot challenge is;self.britishproblems +bad;21;15;A look back Reddit s reaction when the first Dark Souls II gameplay was revealed;self.DarkSouls2 +bad;21;2;Eating popcorn;i.imgur.com +bad;21;3;Lap count question;self.formula1 +bad;21;4;First Pick Draft Game;self.Colts +bad;21;3;Sci Fi Mods;self.mountandblade +bad;21;15;Am I taking this subreddit out of context by reading it outside of the shower;self.Showerthoughts +good;21;15;Castle De Haar in Utrecht The Netherlands It s the largest castle in The Netherlands;imgur.com +bad;21;13;Another place to sell your e cigarettes New site looking for feedback 3;sellecigs.com +bad;21;6;Godzilla Gameplay Trailer PS4 PS3 YouTube;youtube.com +bad;21;5;Spoilers AGOT Syrio s Animals;self.asoiaf +bad;21;8;Update 01 078 Main Cockpit Button Panel hints;forum.keenswh.com +bad;21;2;Parrot fish;self.AgMarketplace +bad;21;2;O face;li.co.ve +bad;21;2;Deepthroat fuck;4yimgs.com +bad;21;7;XB1 LTS VoG NM 4 19 4pm;self.DestinySherpa +bad;21;4;Searching for vendor EmeraldTriangle;self.AgMarketplace +bad;21;22;Hey r Auckland If you are looking for something to do this Saturday night and pro wrestling tickles your fancy come along;i.imgur.com +bad;21;3;20 M4F Confessional;self.dirtypenpals +bad;21;7;Torrid Haute Cash codes for April 2015;gondoraspowderroom.com +bad;21;6;Anyone know how to fix this;self.analog +bad;21;3;Assuming the position;18sexmedia.tumblr.com +bad;21;2;Too sad;ps2.fisu.pw +good;21;10;Tom Hardy at the Child 44 premiere today in London;i.imgur.com +bad;21;7;unintentional female tutorial for os x finder;youtube.com +bad;21;11;TIL Freezing Pulse has 100 chance to Freeze at 0 distance;self.pathofexile +bad;21;5;What anime is this one;self.anime +bad;21;10;What s going to happen with the blood shard exploit;reddit.com +bad;21;11;Early on day 2 of the tourney I won for 6k;imgur.com +bad;21;15;Recommendation Torn between two watches looking for advice or other watches I may have missed;self.Watches +bad;21;6;People who have already received orders;self.ROTC +bad;21;8;Need some help fleshing out an underlying plot;self.DnD +good;21;8;Mewtwo s Unused Custom Moves on Wii U;youtube.com +bad;21;9;Anyone know a way to hide spoilers on facebook;self.AskReddit +bad;21;9;Explain DD to me I must be missing something;self.DimmDrive +bad;21;6;I did my first flashbang kill;youtu.be +bad;21;12;Buying or Selling There s a cars com equivalent for commercial trucks;fleetmover.com +bad;21;6;Another discussion on Sniper and Shrapnel;self.DotA2 +bad;21;7;Anybody want to press the bottom again;self.thebutton +bad;21;9;Hollow Grounds 7 21 Double Damage Fight Modifier 1960;self.kryptguide +bad;21;13;What s the best or most interesting visual guide or diagram you have;self.AskReddit +bad;21;14;26 M4F Wanting to have fun on skype or open minded no restriction chat;self.SkypePals +bad;21;1;Essure;self.TwoXChromosomes +bad;21;5;Is this a good deal;self.hometheater +bad;21;3;Rodgers in perspective;self.LiverpoolFC +bad;21;10;I ll fill your melee shaped hole for you _;i.imgur.com +bad;21;5;Logitech G303 Daedalus Apex Review;youtube.com +bad;21;4;Queenstown Boardwalk OC 3341x1638;i.imgur.com +bad;21;24;MRW people freak out because there are more purples born while we are awake here in the States than when while we are asleep;imgur.com +bad;21;8;Explosion in Tarpon Springs 1 injured 1 dead;wfla.com +bad;21;1;Really;self.Galipina +bad;21;12;Global record industry income drops below 15bn for first time in history;self.autotldr +good;21;12;U K Bren machine gun team and armored transport Bren gun carrier;i.imgur.com +bad;21;14;Official Google Chrome Blog Chrome for Windows XP will continue being supported through 2015;chrome.blogspot.com +bad;21;8;Star Wars The Force Awakens Official Teaser 2;youtu.be +good;21;2;Ann Sheridan;i.imgur.com +bad;21;14;Couldn t find any FF Funko s so I had a custom made Mog;gemr.com +good;21;1;Suckable;i.imgur.com +bad;21;9;Academic The value of pharmacy provided services USA only;docs.google.com +bad;21;2;Crisis averted;i.imgur.com +bad;21;3;Overview for Lara_ayame;reddit.com +bad;21;19;IIL Stacy s Mom Short Skirt Long Jacket One Week and a lot of Fountains of Wayne songs WEWIL;self.ifyoulikeblank +good;21;7;Soooo our whole medical staff just quit;mobil.n-tv.de +bad;21;14;Looking for a place to stay hang in Tempe the night of April 20th;self.PHXMeetup +bad;21;1;BooM;i.imgur.com +bad;21;9;University of Texas at Brownsville offers Mexican witchcraft classes;youtube.com +bad;21;23;If you could choose any five people to form a music band who would they be and what would their band be called;self.AskReddit +bad;21;9;I ve fallen and I can t get up;youtube.com +bad;21;9;George Lucas threatening his neighbors with Section 8 niggerbomb;sanfrancisco.cbslocal.com +bad;21;12;Fan Art I made a possible Season 2 intro for Vince Vaughn;i.imgur.com +bad;21;8;What is your favorite topic to talk about;self.FreeTalk +bad;21;11;PsBattle In honor of her 75th birthday The Danish Queen Margrethe;i.imgur.com +bad;21;15;Is it just me or do I run faster in 1st person than in 3rd;self.GTA +bad;21;2;16 2015;self.politota +bad;21;7;160k 90 Overall Help me upgrade please;self.MaddenUltimateTeam +bad;21;8;What is your personal best invasion boss score;i.imgur.com +bad;21;10;Is the 3DS version and good as the Wii version;self.Xenoblade_Chronicles +bad;21;15;How come Goldman Sachs blew away earnings growth expectations yet their stock dropped a little;self.investing +bad;21;9;Almost as bad as the bobby pins r CannabisExtracts;i.imgur.com +bad;21;4;World of Tanks cartoon;self.WorldofTanks +bad;21;8;Wallrides saves lives and looks extremely badass sometimes;youtube.com +bad;21;6;How to prepare for an internship;self.cscareerquestions +bad;21;11;PC How much does this karambit CW MW ST go for;self.GlobalOffensiveTrade +bad;21;7;Notes in Castle Cainhurst are the Best;self.bloodborne +bad;21;3;Live stream tonight;self.duelofchampions +bad;21;3;Bubba Watson raps;golfdigest.com +good;21;12;The X 47B successfully made its first aerial refuelling hookup yesterday 2048x1366;i.imgur.com +bad;21;5;Trap Rap Twerk Ratchet Mix;mixcloud.com +bad;21;11;I m not usually scared of cults but this is different;i.imgur.com +good;21;8;Update 01 078 Main Cockpit Button Panel hints;youtube.com +bad;21;10;Hollow Grounds 4 19 Quick Uppercut Recovery Fight Modifier 1600;self.kryptguide +bad;21;7;Calling all honeymoon registries are rude subscribers;self.weddingplanning +bad;21;18;Redditors what is the longest you have gone believing something to be true when it really wasn t;self.AskReddit +bad;21;11;Predicting adulthood Substance Abuse Disorder from childhood ADHD diagnosis and treatment;self.AcademicPsychology +bad;21;3;HD Cinema subtitles;self.showbox +bad;21;11;MLB Angels at odds with union over Josh Hamilton contract News;thescore.com +good;21;8;Explosion in Tarpon Springs 1 injured 1 dead;wfla.com +bad;21;10;Lone elbow macaroni in my son s mac and cheese;imgur.com +good;21;9;DISC Isekai Mahou ha Okureteru Volume 1 Chapter 5;self.LightNovels +good;21;7;RODRIGO RATO EL EXVICEPRESIDENTE DEL GOBIERNO PRESO;self.podemos +bad;21;14;I Think I figured Out Gene s Reasoning Behind The Future With No Money;self.startrek +bad;21;6;SECRET Expansion of the Soviet Navy;self.ColdWarMapGame +bad;21;2;Chat Bug;self.Battlefield_4_CTE +bad;21;11;2004 Mazda 6 sportwagon won t shift out of park again;self.MechanicAdvice +bad;21;14;When will Hi rez publicly say there are EU connection problems with logging in;self.Smite +good;21;7;Nerd Boner 10 10 Crashed Star Destroyer;i.imgur.com +bad;21;19;Since Wolverines body can heal immediatley he could workout tearing his muscles and become infinently stronger after each rep;self.Showerthoughts +bad;21;13;Difference between Mizon s Special Solution and original Good Night White Sleeping Mask;self.AsianBeauty +bad;21;15;Test Event Do Not Purchase why is a site of this size making this public;concerts.livenation.com +bad;21;10;UPDATE Part 3 in The Violet Hand Caught Red Handed;self.ButtonNews +bad;21;14;WWII U K Bren machine gun team and armored transport Bren gun carrier 1200x1029;i.imgur.com +good;21;8;Some one in Milan sucked the right dick;imgur.com +bad;21;5;Lets see how this goes;i.imgur.com +bad;21;12;Strange red eye in the Summoners Rift in a normal game O;self.leagueoflegends +bad;21;14;H CS GO Mount amp Blade complete Dungeon Siege W cs go keys offers;self.SteamGameSwap +bad;21;26;The only difference between cheating and learning is that you write the content on paper for one and the content in your brain for the other;self.Showerthoughts +bad;21;3;Super Kale Shake;self.nutrition +bad;21;10;67 of active users on this thread have not pressed;imgur.com +bad;21;12;lvl 107 lower loran chalice w mic 8pm pst jolly coop domesplitter13;self.huntersbell +bad;21;17;Appears to be a tear in my screen Is it large enough to need a warranty claim;self.mflb +bad;21;7;Adderall XR 20 mg Wellbutrin 150 mg;self.ADHD +bad;21;4;Any Luvdisc f lvl35;self.BreedingDittos +bad;21;19;The city council of a rural Georgia town just voted to fly the Christian flag over the county courthouse;13wmaz.com +bad;21;2;Chelsea Bell;i.imgur.com +bad;21;3;me too honey;38.media.tumblr.com +bad;21;16;Las instalaciones fotovoltaicas van derechas al concurso de acreedores Compraran los fondos buitre a bajo precio;self.podemos +bad;21;15;How were are you a victim of manipulation How has this event s affected you;self.AskReddit +bad;21;13;How would you get to the front page with 1 100 10 000;self.AskReddit +bad;21;10;GTA V Wallrides saves lives and looks extremely badass sometimes;youtube.com +bad;21;9;New Star Wars trailer not great quality 21 9;imgur.com +bad;21;12;Best time to find a recruiter in an armed forces career center;self.navy +bad;21;11;Let s play a multi player multiplayer Add me on steam;self.ck2multi +bad;21;7;Bozeman Montana Brewers Spring Festival May 7th;montanabrewers.org +bad;21;1;AskAnAtheist;self.religion +bad;21;11;GTA 5 s thunderstorms are incredible to watch and listen to;youtube.com +bad;21;3;Hairy girlfriends pussy;imgur.com +good;21;7;The corn maze in my home town;i.imgur.com +good;21;6;My men taking a cat nap;imgur.com +bad;21;9;5 WAYS TO KEEP YOUR HAIR INSIDE YOUR HIJAB;muskajahan.com +bad;21;7;Cut has been extremely draining any tips;self.Fitness +bad;21;24;The Nazz Hello It s Me 60s rock This is Todd Rundgren s pre Something Anything version Still one of the best songs ever;youtube.com +bad;21;6;45 m4f daddy role play expert;self.dirtykikpals +bad;21;6;xb1 lf2m nightfall GT whiskey theorms;self.Fireteams +bad;21;7;Can this Developer s unique be stacked;self.pathofexile +bad;21;12;The Greek Stand off A Proper Sense Of Perspective Is Urgently Needed;socialeurope.eu +bad;21;7;commands at taskkill in cmd not working;self.techsupport +bad;21;3;The Simpsons Infographic;public.tableau.com +bad;21;21;After getting into an accident the car catches on fire as this man escapes out of the front window on fire;vps42209.vps.ovh.ca +bad;21;4;Didn t expect this;self.self +good;21;8;TFA Panel Full Vide start at 38 00;youtube.com +bad;21;8;Which public figure do you admire and why;self.AskReddit +bad;21;9;Z97 Question Asus Z97 Pro Gamer or G1 Sniper;self.buildapc +bad;21;23;You know that thing when you agree with the tumblrite and then the Sparklies of Truth against the grossness are unleashed to you;jewishsocialist.tumblr.com +bad;21;11;Sarajevo Bosnia and Herzegovina Photographer Emir Terovic 2048 x 1076 OS;drscdn.500px.org +bad;21;7;Skateboardmag s one day in skateboarding video;theskateboardmag.com +bad;21;25;Room Available May 16th One bedroom in a 2 bedroom apartment in Carytown 470 a month with some utilities included Contact me through the ad;richmond.craigslist.org +bad;21;5;ITAP of the European Commission;i.imgur.com +good;21;13;My Simon Says game for Apple Watch iPhone is out Free until Sunday;itunes.apple.com +bad;21;15;What s a good VOIP call recording software that captures both sides of the convo;self.techsupport +bad;21;8;Cutting grass with a scythe x post DamnThatsInteresting;i.imgur.com +bad;21;6;Wolfsburg fans how good is Guilavogui;self.soccer +bad;21;7;3D printers I would appreciate your knowledge;self.electronic_cigarette +good;21;9;Ryan Gosling to Star in Blade Runner Sequel Variety;variety.com +bad;21;17;I couldn t find anything in search but I ve got a glitch with the corn strike;self.PvZGardenWarfare +bad;21;9;Is speed gather worth it fighting the Dahren Mohran;self.MonsterHunter +bad;21;4;Entering Liberland from Serbia;self.Liberlander +bad;21;10;What s your preferred bookkeeping software for a small business;self.Accounting +bad;21;18;What future professional Olympic or collegiate star did you play against in high school How did it go;self.AskReddit +bad;21;8;Any updates on codes for AOL AIM users;self.Club_Nintendo +bad;21;6;In Soviet Russia Pug drives tank;imgur.com +bad;21;16;GoPro Hero3 users does this mean 3 mins 3 hours Yes I m a noobest newb;imgur.com +bad;21;2;Terminator Genisys;youtube.com +bad;21;6;Rockstar called my computer a bitch;imgur.com +bad;21;12;Recently resubbed not sure if I want to play druid or rogue;self.worldofpvp +bad;21;2;Chelsea Bell;i.imgur.com +bad;21;9;Why don t i develop antibodies for common cold;self.NoStupidQuestions +bad;21;14;DAE dry their ass crack with a hair dryer when its a hot day;self.DoesAnybodyElse +bad;21;11;Think dank an institute that researches and designs the dankest memes;self.shittyideas +bad;21;7;Premi re et derni re fois Natoo;youtube.com +bad;21;9;Possibly switching into two separate games 1v1 traditional CCG;self.StarfighterGeneral +bad;21;11;Hollow Grounds 7 20 Sonya Blade Brutality Boot to Head 9780;self.kryptguide +bad;21;7;A youtube channel Tydutch1 recently subscribed to;youtube.com +bad;21;9;LTS XB1 VoG Hm 8pm pst 04 16 15;self.DestinySherpa +bad;21;21;TRENDING r StarWars Star Wars A long time ago in a galaxy far far away 890 subscribers today 453 trend score;redditmetrics.com +bad;21;8;Child 44 Premiere in London 4 16 2015;imgur.com +good;21;4;fat mid air floof;i.imgur.com +bad;21;2;The Date;youtube.com +bad;21;8;Will we be able to preload the game;self.witcher +bad;21;3;Shyvana by CGlas;cglas.deviantart.com +bad;21;30;What if they haven t actually decided what will happen when the button hits zero What if they ll decide the outcome to be whatever the most upvoted theory is;self.thebutton +bad;21;12;We are all time travelers since we all come from the past;self.Showerthoughts +bad;21;4;Let s Talk Rodney;self.survivor +bad;21;9;This could go bad very quickly World Cup 2042;steamcommunity.com +good;21;7;Higuain goal vs Wolfsburg No Offside angle;gfycat.com +bad;21;10;MISSOURI Missouri Senator delays passage of Convention of States resolution;conventionofstates.com +bad;21;8;Working Freya Beta 3 vs Wonky Freya 3;self.elementaryos +good;21;8;Britt McHenry ESPN loses temper with parking attendant;youtube.com +bad;21;9;Yeah i might just use pistols from now on;youtube.com +bad;21;7;VoG Golden Wall in Templar s Well;self.raidsecrets +bad;21;6;Dota 2 LAN in PDX metro;self.DotA2 +bad;21;18;Oldies of Reddit what keeps you around and what has changed most from the time that you joined;self.AskReddit +bad;21;12;Bro you better take a rest I ll do it for you;imgur.com +bad;21;8;Keeps downloading x64k rpf over and over again;self.GrandTheftAutoV_PC +bad;21;6;First Spiderbro for Banana Pepper Plant;imgur.com +bad;21;4;The Real Slim Shammy;youtube.com +bad;21;13;Why do people think it s correct to pluralize English words with apostrophes;self.NoStupidQuestions +bad;21;9;Will there by any position battles this off season;self.DenverBroncos +bad;21;6;Media Shores of time Sniping spot;self.DestinyTheGame +bad;21;17;The Beginner s Guide to 4 20 the Biggest and Most Iconic Cannabis Holiday of the Year;leafly.com +bad;21;29;WP A person with nothing left replies to what they think is a common con email stating that they ve inherited millions Within minutes millions appear in their account;self.WritingPrompts +bad;21;8;Y netimden nlerine ekilen Klanla lgili A klama;pbs.twimg.com +bad;21;10;History of Ukraine Told by Assassinated Ukrainian Writer Oles Buzina;russia-insider.com +bad;21;7;A good deck for a new player;self.hearthstone +bad;21;8;EXO Next Door Download Links Raw amp Hardsubs;self.exo +bad;21;5;form check 70 kg sn;self.weightlifting +bad;21;13;University Differential Equations How do I approach solving a differential equation like this;self.learnmath +bad;21;13;INCIDENTS IN THE NIGHT 2 Comic Book Review A Historical Literary Murder Mystery;thisisinfamous.com +bad;21;14;Stills from secret rehearsal of new Bob and David show not called Mr Show;splitsider.com +bad;21;3;Streaming XBOX Conquest;twitch.tv +bad;21;16;How do you guys keep strong when faced with so much rejection when trying to date;self.AskMen +bad;21;13;What do you think is the best printer for a Makerspace available today;self.3Dprinting +bad;21;5;Are there 2 identical Smiles;self.OnePiece +good;21;17;What were the political relations of the United States and Imprerial France like from 1795 to 1815;self.AskHistorians +good;21;8;How is sex like putting on a belt;self.Jokes +bad;21;16;Hey Reddit do you think keeping a personal Today I Learned book is a good idea;self.AskReddit +good;21;8;A few of my favorite bunny butt photos;imgur.com +bad;21;3;Pellaeon Class Inspired;self.StarWarsEU +bad;21;5;Im looking for a master;self.smashbros +bad;21;31;I was banned from r socialism for making remarks against feminists I am not anti feminist but in your opinion is it wrong to say Feminism is not central to Marxism;self.communism +bad;21;4;Golf MK4 LED Headlights;self.Volkswagen +bad;21;2;goober alert;40.media.tumblr.com +good;21;7;What do you do better while drunk;self.AskReddit +bad;21;9;Northern white rhinos guarded as 1 male left worldwide;cnn.com +bad;21;20;Even Geralt knows how you can play PC games with a gamepad just like on a console art by Maxifen;adanbareth.deviantart.com +bad;21;9;Where are the snapmatic pictures saved on the harddrive;self.GrandTheftAutoV +good;21;1;me_irl;imgur.com +bad;21;21;I thought the raptors might appreciate this I made a non conforming girl in boy clothes Lego minifigure for my town;imgur.com +bad;21;2;Damnit peter;imgur.com +bad;21;7;Lord Forkington Followers Ho RoK RP Series;youtube.com +bad;21;12;Help I m about to break my laptop because of Rome 2;self.totalwar +bad;21;18;M ller Wohlfahrt resigns with his medical team at Bayern because they were made responsible for the loss;spox.com +bad;21;2;Hearthstone Friends;self.hearthstone +bad;21;11;UCLA is offering summer Armenian language course for high school students;imgur.com +bad;21;12;Hitting Reply All should first require correctly answering a skill testing question;self.Showerthoughts +bad;21;9;Recent events for Phladdin I found an Armadyl chainskirt;self.thebritishelites +bad;21;4;NOT A DOPE SIM;youtube.com +bad;21;9;He thought I was just being sweet and affectionate;i.imgur.com +good;21;15;I loaned my mom a purse She tosses it back because my panties are inside;c2.thejournal.ie +bad;21;3;Another r realgirls;i.imgur.com +bad;21;5;El Shreko Thresh Jinx montage;youtube.com +bad;21;15;I give an X campaign to make people more aware of voting on May 7th;self.BritishPolitics +bad;21;2;How2React wmv;youtube.com +bad;21;7;Scorpion s Unlockable Fatality Who s Next;youtube.com +bad;21;46;My Lit class is re adapting Heart of Darkness into a live performance to slight our teacher for giving us her HBO Go account and then taking it away Request This image with the text HBO ConGo overlayed in the most movie poster y form possible;cdn.destructoid.com +bad;21;3;Pets in Hearthstone;self.hearthstone +bad;21;6;Reggie Jackson Full Highlights at Knicks;youtu.be +good;21;12;San Jose takes the fight against the MLB to the Supreme Court;mercurynews.com +bad;21;18;PLEASEEE HELP NEED WOMEN S ADVICE ON PICKING ENGAGEMENT RING narrowed down to 14 looking for top 3;self.relationship_advice +bad;21;6;Help Bug PAD resetting favorite monsters;self.PuzzleAndDragons +bad;21;7;TBT Whelen Modifieds experience The Big One;youtu.be +good;21;10;Essential Wilderness Equipment 7 Items To Never Leave Home Without;theprepperdome.com +bad;21;9;Recent events for Phladdin I killed 8 Kree arras;self.thebritishelites +bad;21;9;It s like a secret level from Sleeping Dogs;gifsound.com +bad;21;11;Looking into the HP Specter x360 Does it run some games;self.SuggestALaptop +bad;21;6;DAE GANON 1 0 6 BUFFS;self.GerudoDragon +bad;21;7;The best Apple Watch stands and docks;9to5mac.com +bad;21;12;Ich brauche ein gutes Bild von Ede M glichst Traurig Grumpy Desillusioniert;self.rocketbeans +bad;21;11;Planning 6 night trip to Vienna Public transportation and food question;self.solotravel +bad;21;5;23 m rate me guys;imgur.com +bad;21;15;USA LA H White custom keycaps Corsair RM1000 iPhone charging adapters GameCube Games W Paypal;self.hardwareswap +bad;21;7;How do I save my button layout;self.GrandTheftAutoV_PC +bad;21;2;Bridgette B;i.imgur.com +bad;21;10;Challenger 2014 5 Speed Auto vs 2015 8 Speed Auto;self.Dodge +bad;21;13;Biggest red pill of them all Why some people just can t change;self.asktrp +bad;21;4;Salomon rocker 100 anyone;self.skiing +bad;21;5;Muslim Migrants threw Christians overboard;reddit.com +bad;21;7;Bait Bike Sticker at Taraval Police Station;self.BAbike +bad;21;12;Off road tracks for dirt bikes and ATV s in the area;self.InlandEmpire +bad;21;21;If When the Halo MCC chat features get fixed would Halo MCC be better if Xbox Live Party Chat was disabled;self.halo +bad;21;17;r modlog A place to report and hold mods accountable for their actions in their respective subreddits;reddit.com +bad;21;6;Couldn t swipe left fast enough;imgur.com +bad;21;5;What to do with lemons;self.Cooking +bad;21;3;Familiar looking suit;pbs.twimg.com +bad;21;11;Jim Cat tore can t peel himself away from the story;imgur.com +bad;21;8;WTS Used Bach Stradivarius Trumpet Reverse Lead Pipe;self.Gear4Sale +bad;21;10;Asked my son 7 if he s crying or laughing;imgur.com +bad;21;13;Hey Jeremy and MMA Check in and I will school you about evolution;self.TYTLiveChat +bad;21;1;Summerslam;self.WWEGame +bad;21;11;What is the best comeback you thought of after the fact;self.AskReddit +bad;21;13;Dutch F 16 intercepts a B 52H Stratofortress during Exercise Polar Growl 1500x844;i.imgur.com +bad;21;3;Overview for WillyGChino;reddit.com +bad;21;29;WP A high schooler develops Telepathy and can broadcast thoughts to other classmates and teachers The only problem is he she can t figure out how to control it;self.WritingPrompts +bad;21;11;F1 2015 runs at 1080p on PS4 900p on Xbox One;videogamer.com +bad;21;13;are their any benefits for a business having a weak organisational company culture;self.smallbusiness +bad;21;5;camelCase terms drive me nuts;self.redrising +good;21;18;FiveThirtyEight breaks down how the Red Sox are on the wildest roller coaster ride in modern MLB history;fivethirtyeight.com +bad;21;18;Intenten no llorar Espero no sea la pr xima ni a Jobs ni o Harvard u otro NASA;cnnexpansion.com +bad;21;6;They must be in the Klub;scontent-lhr.xx.fbcdn.net +bad;21;15;USA OH H Dell Latitude E6530 i7 3520M NVIDIA NVS 5200M Graphics 1GB W Paypal;self.hardwareswap +bad;21;10;SELL Original Penguin Color block long sleeve shirt size Small;self.MaleFashionMarket +bad;21;19;TIL Ice Cube s son O Shea Jackson Jr will play him in the NWA biopic Straight Outta Compton;imdb.com +bad;21;19;Pricing for Rough Cut Oak 2000 Board Feet Would like 400 and will deliver Is this a good deal;imgur.com +bad;21;11;Discussion Since we can take our helmets off in the tower;self.DestinyTheGame +bad;21;3;PS4 nightfall anyone;self.Fireteams +bad;21;8;Do cats have conscious control over their tails;self.AskReddit +good;21;5;WIWT DIY Unbranded Burton Spring;imgur.com +bad;21;15;The Real NHLer s Guide to the Stanley Cup Playoffs Eastern Conference By Mike Rupp;theplayerstribune.com +bad;21;2;gamertag ideas;self.halo +good;21;2;Pure Enjoyment;40.media.tumblr.com +bad;21;11;Kicking off campaign Shabbos goy Marco Rubio attacks Obama on Israel;theuglytruth.wordpress.com +bad;21;4;Just started with Berserk;self.Berserk +bad;21;12;What Reddit and Imgur has been consist of for past few days;gfycat.com +bad;21;10;Which TV shows deserve their own comic book run Discussion;geekandsundry.com +bad;21;10;My flat iron has an easy to open scissor tab;imgur.com +bad;21;6;A dream that sparked an idea;self.TapTitans +bad;21;12;Debian Python 2 gt 3 porting a really good new contributor task;lists.debian.org +bad;21;17;Are You Trying to Be Too Original What I Learned About the Value of Imitation from China;scotthyoung.com +bad;21;6;Remembering the 96 Short SWFC video;youtube.com +bad;21;3;TRAIN SIMULATOR BITCH;youtube.com +bad;21;12;In serious need of a coach or mentor Someone to help me;self.summonerschool +bad;21;5;Senses Fail Ali for Cody;youtube.com +bad;21;10;Are there more narcs at Coachella than at other festivals;self.Coachella +bad;21;5;How strict are the uniforms;self.stjohn +bad;21;5;Shout out to tournament organizers;self.DotA2 +bad;21;18;suggestion For the love of god make us have to hold X or square to buy legendary weapons;self.DestinyTheGame +bad;21;6;Annexation Illinois and Michigan holds hands;self.USPowersSim +good;21;12;What Reddit and Imgur has been consist of for past few days;i.imgur.com +bad;21;3;Am I shadowbanned;self.ShadowBan +good;21;9;My Nsister is getting married shit just got real;self.raisedbynarcissists +bad;21;6;Top 20 Ecchi Harem Anime HD;youtube.com +good;21;18;Extroverts of Reddit How is it so easy for you to become sociable Coming from a shy introvert;self.AskReddit +bad;21;4;relapsed after 6 months;self.pornfree +bad;21;12;400 Professional Resources Covering data science R Python machine learning data mining;datasciencecentral.com +bad;21;11;SELL OR SWAP US only Perfume Darling Clandestine and one Moona;self.IMAMsales +good;21;5;Star Wars Celebration 2015 Suomessa;i.imgur.com +bad;21;12;New York Red Bulls MLS Fleece Fabric Now Available at Joann com;joann.com +bad;21;10;New to jeeps Good deal 07 X for 16 500;imgur.com +bad;21;3;New to Reason;self.reasoners +bad;21;9;La gala del Catal de l Any en directe;elperiodico.cat +bad;21;9;Rodrigo Rato detingut per blanqueig de capitals i frau;elperiodico.cat +bad;21;3;what a figure;40.media.tumblr.com +bad;21;6;The Sims 4 A NEW HOME;self.LetsPlayVideos +bad;21;6;What s your favorite EMS meme;self.ems +bad;21;2;Good Listener;explosm.net +bad;21;7;Worst Lineup Moves you ve ever made;self.fantasybaseball +bad;21;8;Worth buying for PC when only have keyboard;self.MortalKombatX +bad;21;7;East Connection We re Ready Wiley Remix;youtube.com +bad;21;7;rant What happened to chivalry guys serious;self.teenagers +bad;21;10;Judge Walter and BeardMan waiting for Bess who never came;imgur.com +good;21;9;Cum clean me up after Sir s f un;imgur.com +bad;21;6;I found a crystal triskelion fragment;self.hsiW +bad;21;8;Offer 6 post cards from New York City;self.RedditPost +bad;21;10;Lunch time at the Biltmore resort Santa Barbara C A;imgur.com +bad;21;17;Is it okay to maintain my current calorie deficit if I m feeling okay and monitoring nutrition;self.Fitness +bad;21;20;This Military Campaign is Illegal Under International Law A Statement on Saudi Arabia s Attack on Yemen by Yemen Scholars;counterpunch.org +good;21;19;Comparing a WW2 soldier who was injured in battle to your friend being the last one left in COD;imgur.com +bad;21;7;DVD BD Bargains For 4 16 2015;redvdit.com +bad;21;17;Is lasik with microkeratome an old less safe technology compared to lasik with bladeless laser and PRK;self.lasik +bad;21;4;Enemy Attacking you Macro;self.ffxiv +bad;21;11;Medicine is just another term for reverse enngineering the human body;self.Showerthoughts +bad;21;15;Spoilers Sarah is number one on this list of most motivating deaths in video games;nerdswole.com +bad;21;3;PlayStation Store question;self.PS3 +bad;21;16;People say frog tastes like chicken but what if it was chicken that tasted like frog;self.Showerthoughts +bad;21;4;HPPW 11 Second Year;self.FantasyBookers +good;21;7;I struck gold with my new duplex;imgur.com +good;21;9;5e official ELEMENTAL EVIL BONDS AND BACKGROUNDS FOR MULMASTER;dndadventurersleague.org +bad;21;10;In Last 9 Months Russia Repaid 100 Bn of Debt;russia-insider.com +bad;21;18;Did you or anyone you know panic over the y2k bug and if so what did they do;self.AskReddit +good;21;21;To the person who stabbed both my tires and stole my bike light I hope you fall and scrape your knee;self.bicycling +bad;21;5;Casual leveling to lv61 possible;self.DFO +bad;21;8;LF Acog supressor east FT AUG 1 mag;self.dayztrade +good;21;5;Request New Star Wars Pan;gfycat.com +bad;21;6;Build Ready Upgrading after 4 years;self.buildapc +bad;21;7;Just bought GTAV for the third time;self.GrandTheftAutoV +bad;21;8;What are some places I will never visit;self.AskReddit +bad;21;9;Spoilers Suggested Changes to Lost Mines of Phandelver LMOP;self.dndnext +bad;21;9;I want a glorious case for my future PC;self.pcmasterrace +bad;21;11;PS4 lfg ir yut cp preferable I don t have it;self.Fireteams +bad;21;9;Citadel Head Bond Trader Leaves After Losing 1 Billion;zerohedge.com +good;21;7;Putin Takes Questions More Economy Less Ukraine;nytimes.com +bad;21;13;Where can I listen watch vid with the interview of that amish model;self.howardstern +bad;21;15;Redditors who have eaten at a restaurant with a celebrity what was the experience like;self.AskReddit +good;21;12;If Another Civil War Started Today Which Side Would Win And Why;self.AskReddit +bad;21;9;CM12s is surprisingly far more smooth than CM12 nightlies;self.oneplus +bad;21;14;College Campus Rally Tour Free tickets to playoff games at PSU OSU and UofO;instagram.com +bad;21;7;Baby blanket patterns that work up quickly;self.crochet +bad;21;4;Tooth Paste and Gravity;self.Showerthoughts +bad;21;6;Orphan Black Season 3 Extended Look;youtu.be +bad;21;8;ph61a p35 overclocking doesn t seem to work;self.techsupport +bad;21;3;From r realgirls;i.imgur.com +good;21;7;I have three 3 yellow accounts AMA;self.thebutton +bad;21;9;Street Kids of Haight Just assholes or actually dangerous;self.AskSF +bad;21;13;Halp Watchdog lvl 139 NG if that matters for co op defiled chalice;self.huntersbell +bad;21;7;Does this kid have talent or what;youtu.be +bad;21;11;Looking for a fun and simple Tower Defense game Any suggestions;self.gaming +bad;21;7;Realistic Salary Expectations 2 5 years experience;self.PLC +good;21;12;How To I am Bread Real Life Edition is out for sponsors;roosterteeth.com +bad;21;4;Any Taillow Female 5;self.BreedingDittos +bad;21;6;Everything fails can t transfer file;self.applehelp +bad;21;6;32 m4r jerking again little inspiration;self.dirtykikpals +good;21;14;Ben amp Jerry s and New Belgium team up for salted caramel brownie beer;cnn.com +bad;21;12;ELI5 Biologically why do some people hurt themselves to deal with stress;self.explainlikeimfive +bad;21;11;Making money as a bounty hunter or through combat in general;self.starsector +bad;21;1;Farming;self.runescape +bad;21;2;Deepthroat fuck;4yimgs.com +bad;21;17;Next time when someone knocks on your window be very careful or this might happen to you;youtube.com +bad;21;8;I must go my island people need me;i.imgur.com +bad;21;11;OT Beat Stop Scuderia Ferrari Create music with pit garage sounds;formula1.ferrari.com +bad;21;6;360 lf4m crota HM GT naytandeltaco;self.Fireteams +bad;21;17;So I m guessing Ash Prime is next based off of the 2 Male 2 Female cycle;self.Warframe +bad;21;14;US Board Game Market Research Survey Emily Garbinsky 0 25 1 45 gt 95;self.HITsWorthTurkingFor +bad;21;15;There must have been a guy named Frank who was always brutally honest and upfront;self.Showerthoughts +bad;21;4;IT AND LIGHT BULBS;self.Jokes +bad;21;9;New England Patriots to be honored at White House;wcvb.com +bad;21;16;Trying to capture a nice surreal moment when I m reminded what game I m playing;youtube.com +bad;21;11;Reddit my Brother wants to propose How would you do it;self.AskReddit +bad;21;2;Nano blitzer;imgur.com +bad;21;7;Spend all of my coins on Robben;futhead.com +bad;21;5;Help me play Rama better;self.Smite +bad;21;8;Can anyone help me with this Windows problem;self.sysadmin +bad;21;11;Apr 18 09 00 UTC EU Warlord s 47 FFA Vanilla;self.UHCMatches +bad;21;8;Hillary Clinton to visit New Hampshire next week;wcvb.com +bad;21;7;who watches bigedude33 play Supercard on youtube;self.wwesupercard +bad;21;9;NOTES LINK 04 16 15 Colin and Greg Live;self.kindafunny +bad;21;10;H BTA FT Flip Night Scratchless W 34keys knife offers;self.GlobalOffensiveTrade +bad;21;9;Weekend missions 4 17 4 19 x2 crew xp;self.WorldofTanks +bad;21;5;Single Tap or Alternating Tap;self.osugame +bad;21;8;Do you need your computer fixed for cheap;self.sandiego +bad;21;18;Face getting on the Star Wars hype how would this photo look squeezed into a pebble time face;i.imgur.com +bad;21;9;shawey36 wife loves to be tied up by strangers;xhamster.com +good;21;2;Katie Banks;i.imgur.com +bad;21;9;Battle Royale with 2 players but only one left;self.h1z1 +bad;21;16;Cheap amp Fun Manuals 1 3 Years of Service Left Which do I look at first;self.whatcarshouldIbuy +bad;21;8;Store Some Personal Use skins Including FN Howl;self.GlobalOffensiveTrade +bad;21;7;The Mystical Creature Illustrations of Peter Mohrbacher;ravenectar.com +bad;21;12;Kik snp pic vid Super chubby brunette here to make you cum;m.imgur.com +bad;21;17;Maybe putting that White History Month sign in my deli window wasn t such a hot idea;nj.com +bad;21;10;website Would love your honest feedback on a site redesign;self.design_critiques +bad;21;14;I m looking to add a picatinny rail onto something Help details in description;self.airsoft +good;21;11;To both RS3 and OSRS Would you make this a thing;self.runescape +good;21;23;A short montage of time lapses I made over the past few months with my h3 b I would love cc and tips;youtube.com +bad;21;10;Frigid Burrows 0 16 Kung Lao Brutality Klassic Toss 3200;self.kryptguide +bad;21;1;picsonly;i.imgur.com +bad;21;7;Aaliyah Biography Childhood Life Achievements amp Timeline;thefamouspeople.com +good;21;2;Demi Moore;i.imgur.com +good;21;10;here s a picture of me scaling a rock face;imgur.com +bad;21;6;Maury Povich you made my day;imgur.com +bad;21;13;Reddit what s the best time you PUT THE PUSSY ON THE CHAINWAX;self.AskReddit +bad;21;21;Beginner For the first time ever I ve drawn painted a portrait and I would like some advice for the future;self.drawing +bad;21;6;Return Pain Rogue 0 mana spell;hearthcards.net +bad;21;6;Benny Benassi Satisfaction bros beauf electro;youtube.com +bad;21;10;What are you ents doing when the day strikes 420;self.trees +bad;21;2;Vud Ballerina;self.Bandnames +bad;21;5;finally got my fitlet pc;imgur.com +bad;21;6;Tiny Bottle of Tabasco Hot Sauce;i.imgur.com +bad;21;13;Is it because we were too different that they never looked us up;self.DysfunctionalFamily +bad;21;19;Kung Fu amp Twiddle Dirty Dozen Tour April 11 Rams Head Live Baltimore MD livemusicdaily com 2015 04 16;livemusicdaily.com +bad;21;11;Walking and Running in GTA V using the DK2 and Omni;youtube.com +bad;21;5;Bioshock Infinite trash can png;self.Bioshock +bad;21;6;TIFU by holding in a fart;self.tifu +bad;21;21;What is an unusual make up product that you wish was more popular just so you could have more cheaper options;self.MakeupAddiction +bad;21;3;Mount Suggestion Thoughts;self.elderscrollsonline +bad;21;5;Facebook in one picture FIXED;imgur.com +bad;21;9;PS4 looking for 2 people to do 3 nightfalls;self.Fireteams +bad;21;19;what is the most impactful event of the butterfly effect that you can actually trace back step by step;self.AskReddit +good;21;17;New York police chief defends cops caught on video making false arrest without having watched the video;photographyisnotacrime.com +bad;21;14;Family vacation in Nicaragua Complete with spear fishing surfing and lots of To a;vimeo.com +bad;21;11;Guidance for a microbiology undergrad looking at graduate programs in Microbiology;self.GradSchool +bad;21;6;Chicago lake front water stations open;self.running +bad;21;15;Uhhh no it s not Apparently Google does not speak the language of my people;imgur.com +bad;21;7;Allowing random insert type in champ select;self.leagueoflegends +bad;21;9;TIL Never under underestimate the power of loop for;self.learnprogramming +bad;21;13;Dealership can t find vehicle I wanted can I get my deposit back;self.PersonalFinanceCanada +bad;21;15;Last Taxi to Europe European regulatory structures all too often protect incumbents and stifle innovation;project-syndicate.org +good;21;11;Russia blames U S for security crises and turmoil in Ukraine;reuters.com +bad;21;6;WindowBlinds 8 prevented launcher from launching;self.GrandTheftAutoV_PC +bad;21;11;Announcement Gaming podcaster wants your game music comments for free giveaway;1pvs2p.com +good;21;9;Brad Stevens Named Eastern Conference Coach of the Month;nba.com +bad;21;7;Need help with a translating a meaning;self.Spanish +bad;21;28;Shocking footage of Ed Milliband s trip to Turkey for building greater relations between Britain and Turkey by taking part in Turkey s national sport of Kurd whacking;imgur.com +bad;21;11;Do I have depression or am I just lying to myself;self.depression +bad;21;10;Anyone L vendors like GG or HoS operating on BB;self.BlackBank +bad;21;4;Help Modifying Logo Please;self.PhotoshopRequest +bad;21;4;sniper counters for pubs;self.DotA2 +bad;21;12;Am I the only one feeling happy with my scheduled relapse s;self.NoFap +good;21;4;Star Wars Battlefront 1920x1080;i.imgur.com +good;21;14;Ben amp Jerry s and New Belgium team up for salted caramel brownie beer;cnn.com +bad;21;16;Since shitty tattoos are on the rise here is a great one off my Facebook feed;imgur.com +bad;21;31;You guys liked my Wasting Time cover so I ve decided to do at least song from each album What song would you like to hear me do from Dude Ranch;self.Blink182 +bad;21;2;me irl;ar.justporno.tv +bad;21;10;SELL American Apparel Urban Outfitters Levi s Open to offers;self.wardrobepurge +bad;21;6;100k Wager Match VS Ao2 Ares;youtube.com +bad;21;10;20 m4r looking to talk music and maybe other things;self.Kikpals +bad;21;12;Spoilers All DAI Spoilers Do we know what she was talking about;self.dragonage +bad;21;12;My class reaction when my chemistry says we have an unexpected test;i.imgur.com +bad;21;7;David Hasselhoff True Survivor Kung Fury score;youtu.be +bad;21;4;it s almost Friday;41.media.tumblr.com +bad;21;6;E e v e e Distance;soundcloud.com +bad;21;12;ROOKIE Who to target with my 2 1 and 2 2 picks;self.DynastyFF +bad;21;21;If my watch is 5 minutes behind the universal time does that mean I time traveled 5 minutes into the past;self.shittyaskscience +bad;21;7;What are the best FREE online games;self.gaming +bad;21;10;Does anyone know how to complete this Black Spirit Quest;self.blackdesertonline +bad;21;9;First timer who needs feedback draft of landscaping project;self.landscaping +bad;21;12;Try Scrotal Recall everybody Don t let the name turn you off;self.television +bad;21;4;Gta 5 character transfer;self.gaming +bad;21;13;Forget Steak and Seafood Here s How Welfare Recipients Actually Spend Their Money;slate.com +bad;21;9;As an agency worker what are my holiday rights;self.AskUK +bad;21;8;Save 50 on Amplitude Endless Pack on Steam;store.steampowered.com +bad;21;9;The easiest two points I ve scored in MUT;xboxclips.com +bad;21;10;H 10 Paypal W DKCR 3D or W101 or offers;self.ClubNintendoTrade +bad;21;9;Welcome Welcome to the sub Some more info inside;self.DestinyDoesHaveAStory +bad;21;8;20 M4F Montreal Looking for tomorrow Infos inside;self.RandomActsOfBlowJob +bad;21;13;Forget Steak and Seafood Here s How Welfare Recipients Actually Spend Their Money;slate.com +bad;21;5;One account across two devices;self.FFRecordKeeper +bad;21;19;MRW I m watching the new Star Wars teaser and I see Harrison Ford at the end of it;i.imgur.com +good;21;18;lt _ _ _ _ sign amendment to reddit constitution that makes r starwars a charmander themed subreddit;self.circlejerk +bad;21;24;We shouldn t say we are sorry when something happens to something we can t control but there should be another word for it;self.Showerthoughts +bad;21;5;Say hello to Otto 3;imgur.com +bad;21;19;Me and my gf did was sms ing using emojis now when she sent me this one stil giggling;i.imgur.com +bad;21;8;Just passing through and would love travel advice;self.denvermusic +bad;21;6;22 M4M I love big feet;self.dirtykikpals +bad;21;4;Buying BTC with PayPal;self.Bitcoin +bad;21;9;My Keybase proof reddit herrod keybase herrod WUwXRWQ_nWTtBTwjWTw zivmsbFs7L7OJLtJce9J_k8;self.KeybaseProofs +bad;21;3;You know it;i.imgur.com +bad;21;33;Found this assorted bag of nibs for 2 recently I m not a serious pen user so I d be willing to share a few with anyone in the US that is interested;imgur.com +bad;21;8;Editorial Who Will Be President of r zen;self.zen +bad;21;12;Release PrismBoard A translucent keyboard with random key popup colour BigBoss Free;cydia.saurik.com +bad;21;4;NG 33 Amelia Alphonics;self.huntersbell +bad;21;7;A boy and his dog Best friends;imgur.com +bad;21;8;BOKU NO HERO CHAPTER 39 RAW IS OUT;self.BokuNoHeroAcademia +good;21;2;Cassidy Banks;i.imgur.com +bad;21;11;Short Trailer For Upcoming Mortal Kombat X Review Check It Out;youtube.com +bad;21;20;Reddit why don t more users here speak up when people troll mock joke about deaths murders and other tragedies;self.AskReddit +bad;21;12;TSA s Investigation Into Groping Agents Ensured They Wouldn t Be Prosecuted;techdirt.com +bad;21;2;Literally this;gfycat.com +bad;21;6;Store m9 vanilla asiimovs and more;self.GlobalOffensiveTrade +good;21;4;where to buy rope;self.bodyweightfitness +good;21;10;MRW I eat a hotdog and the toppings fall out;gfycat.com +bad;21;3;a little help;self.drawing +bad;21;12;What soil should I use to plant my semi dwarf peach tree;self.gardening +bad;21;18;Oldie but a Goodie No Homo Cover of Jason Derulo s Riding Solo Preformed Acoustic by Nice Peter;youtube.com +bad;21;11;Anyone play fighting games Street Fighter IV Marvel vs Capcom etc;self.Lubbock +bad;21;7;What do you call a black preacher;self.Jokes +bad;21;39;Serious In your opinion what s more important in a relationship being so comfortable with them that you can truly be yourself OR caring so much what they think of you that you withhold thoughts actions to keep them;self.AskReddit +good;21;11;4th and 5 Should Texas play Texas A amp M again;longhornsportsradio.com +bad;21;8;Recruiting the entire immune system to attack cancer;newsoffice.mit.edu +bad;21;2;Well feck;imgur.com +bad;21;5;H BTC W DC Hooks;self.Dota2Trade +bad;21;2;2 Milfs;i.imgur.com +bad;21;8;Can anyone tell me what car Sam drives;self.OFWGKTA +bad;21;10;Just me husband and midwife in the delivery room hospital;self.BabyBumps +bad;21;33;My 26M girlfriend 26F of 2 months as she fell asleep said she d cheat on me when I leave the country for a month then tried to say she was kidding later;self.relationships +good;21;4;Timmelsjoch Experience Pass Museum;i.imgur.com +bad;21;9;Lawrence Sonntag drawing I love his smile so much;twitter.com +bad;21;7;Can I get to the North Rim;self.grandcanyon +bad;21;3;Issues with Attila;self.totalwar +bad;21;7;What is the best flavor of Gatorade;self.AskReddit +bad;21;3;Participation at Mozilla;air.mozilla.org +good;21;6;MaNiaC to the OpTic House Video;self.OpTicGaming +good;21;4;Finally paid off OSAP;self.PersonalFinanceCanada +bad;21;4;Retro pie Rom help;self.raspberry_pi +bad;21;5;And why is that exactly;imgur.com +bad;21;6;Time for a medical marijuana revolution;cnn.com +good;21;7;Murray wins AHL Goalie of the Year;penguins.nhl.com +bad;21;8;The EIU forecasts a US recession in 2019;country.eiu.com +bad;21;12;Help needed I need to visualize missing data in an area chart;self.visualization +bad;21;4;You re goddamn right;imgur.com +bad;21;4;Panda Cub needs rescuing;i.imgur.com +bad;21;6;119 Defiled Chalice L2 Boss KazeEnji;self.huntersbell +bad;21;8;Wife broke her phone buy refurbished vs lease;self.personalfinance +good;21;8;Thanks PunkCherri for my liquid eyeliner Looove it;self.Random_Acts_Of_Amazon +bad;21;7;I wish to join the Emerald Council;self.Emerald_Council +bad;21;10;First time watcher struggling with Early Series 4 VENT POST;self.skinsTV +bad;21;11;Penguins are upside whales but a lot smaller and kinda different;self.Showerthoughts +bad;21;8;Acompanhe a cota o do bitcoin pelo Twitter;self.oBitcoin +bad;21;10;GTA V Getting on a bike is difficult I guess;youtube.com +bad;21;12;Woj Nuggets begin coach search with several candidates on list per sources;sports.yahoo.com +bad;21;12;New Star Wars trailer posted an hour ago with 3 000 comments;i.imgflip.com +bad;21;15;Hey Tim you gonna read that book No I m gonna eat it classic Tim;self.justified +bad;21;8;Can I partially submerge my Phosban 150 reactor;self.ReefTank +bad;21;11;Hackers have begun targeting nuclear power plants cyber warfare expert warns;jpost.com +bad;21;5;Help me understand this recursion;self.learnprogramming +bad;21;13;Team SoloMean Girls The real story of how TSM recruited Santorin Critique welcome;youtube.com +bad;21;6;Potty Learning with PampersEasyUps amp Giveaway;4crazygirls.com +bad;21;7;How do you think the universe began;self.AskReddit +bad;21;9;34 M4A Bored at work again up for anything;self.DirtySnapchat +bad;21;5;A question about downloading games;self.xboxone +good;21;7;Adam Baldwin talks about GamerGate to BuzzPo;buzzpo.com +bad;21;23;The cards are fake but the drama is real in r magicTCG when someone posts pictures of some counterfeit Magic The Gathering cards;np.reddit.com +good;21;8;I found a reason to do stuff today;self.depression +good;21;8;How Teenage Mutant Ninja Turtles Should Have Ended;youtu.be +bad;21;5;what is the code part;self.CodeGeass +bad;21;15;If this post gets 15 upvotes I will make a post asking for 16 upvotes;silverdoctors.com +bad;21;8;Can I get a bit of an update;self.Guildwars2 +bad;21;10;ED and PE problems only began after noFap anyone else;self.NoFap +bad;21;6;Not all USB LAN adapters work;self.wiiu +bad;21;2;Cassidy Banks;i.imgur.com +bad;21;10;How will crime change if everyone uses self driving cars;self.AskReddit +bad;21;14;When I need a Crpytograph to determine what the text is I just got;i.imgur.com +bad;21;8;FS DS Nike Chairman Bao Dunks sz10 120;self.sneakermarket +bad;21;14;When farmers jerk off bulls for semen does the bull visualize banging a cow;self.shittyaskscience +bad;21;19;Fuck the youtube algorithm Let s get some variety in here where are you from I m from Austria;self.gamegrumps +bad;21;4;CM12S or CM12 nightlies;self.oneplus +bad;21;13;Is there a Physics equivalent of PatrickJMT or Bozeman Science for special relativity;self.PhysicsStudents +bad;21;10;One Company s New Minimum Wage 70 000 a Year;nytimes.com +bad;21;12;What is the best lesser of all evil internet provider in Seattle;self.Seattle +bad;21;4;AMA Request Leigh Whannell;self.IAmA +good;21;7;Is that so spinning wheel tool tip;self.hearthstone +bad;21;9;A Study in Red Michelle H album in comments;i.imgur.com +good;21;9;What s the mating call of people these days;self.AskReddit +bad;21;15;Angela Merkel gekackt obsz ne skulptur von Let 3 Flug 3 Rockband aus Rijeka Kroatien;lupiga.com +bad;21;8;How do you maintain control at high BPM;self.renoise +bad;21;19;The reason Warren G got beat up robbed on Regulators was because they thought that he was robbing them;self.Showerthoughts +good;21;4;I ve got hoes;imgur.com +bad;21;9;PS4 LFG or LF5M for NM VoG FLAWLESS RAIDER;self.Fireteams +bad;21;11;I guess now is a good time to plug r bunsgonewild;reddit.com +bad;21;7;H Huntsman Knife Fade W 85 Keys;self.GlobalOffensiveTrade +bad;21;3;Spaarboekje blijft populair;spaargids.be +bad;21;2;Firearms Day;self.Goruck +bad;21;6;19 F4A here we go again;self.dirtypenpals +bad;21;5;Where is the party tonight;self.StarWarsCelebration +good;21;2;Perfection 18;imgur.com +bad;21;14;TIL Walt Disney planned to open an Alpine Resort in the Sierra Nevada mountains;yesterland.com +good;21;9;Hey I got a bone to pick with you;i.imgur.com +good;21;4;Weapon Discussion 5 P250;self.GlobalOffensive +bad;21;12;Reddit what s your best I m not a ________ but story;self.AskReddit +good;21;5;F4M Let s fool around;self.dirtypenpals +bad;21;7;M4F Look ma it s an IncestFest;self.dirtypenpals +bad;21;8;Would like some help optimizing this small program;self.javahelp +bad;21;4;No more tongue ring;i.imgur.com +good;21;9;Can I have your mayo I need the energy;self.fatpeoplestories +bad;21;27;Colorado Alaska I m being asked to sign off on selling my deceased mother s house with her ex receiving half What do I need to know;self.legaladvice +good;21;22;RESULT of r Applewatch order survey Over 400 entries so far Ill keep it open too and update again if anything changes;imgur.com +bad;21;17;Ultraviolet survey of type 1A supernovae suggests dark energy may not be as strong as previously thought;sciencedaily.com +bad;21;4;Please rate my cock;imgur.com +good;21;12;Just won a dollar from a bag of cheetos in Puerto Rico;imgur.com +bad;21;4;MBV Does it Again;self.electronic_cigarette +bad;21;8;CHamoru word of the day 9 S ngan;self.CHamoru +bad;21;16;Sorry if this is the wrong place to ask but what kind of cat is this;imgur.com +bad;21;5;New to JavaScript need help;self.javascript +bad;21;16;Kavin Mittal Hike an Airtel company Net Neutrality OTTs are doing well because they re better;financialexpress.com +bad;21;13;General Drakkisath is still getting used to playing on his iPhone s touchscreen;self.hearthstone +good;21;13;Highly regarded German doctor M ller Wohlfahrt parts way with Bayern M nchen;sid.de +bad;21;9;Bob Belcher vs Sterling Archer in a mayoral race;self.whowouldwin +bad;21;17;Gay people are subhumans and should be treated with as much rights as a mentally ill person;self.norainbows +bad;21;7;Need help figuring out these mappings effects;m.imgur.com +good;21;3;Camo F lawless;imgur.com +bad;21;16;Name some champions that can either build damage or build tanky utility and still be effective;self.leagueoflegends +bad;21;11;David Harvey on Karl Marx Occupy Movement Class Struggle Democracy Now;youtube.com +good;21;11;Chile UFO Government confirm mysterious object is NOT made by man;mirror.co.uk +bad;21;4;Casual EDH with mic;self.Cockatrice +bad;21;8;Spoiler The second Star Wars teaser is out;gfycat.com +good;21;21;I like to dye my Disc Golf discs and thought y all would appreciate this Bridge Burners X post r discdyeing;imgur.com +bad;21;10;Article Factors Affecting the Occurrence of Faculty Doctoral Student Coauthorship;self.Scholar +bad;21;8;So how exactly does one become a bimbo;self.bimbofication +bad;21;2;me irl;imgur.com +good;21;7;Possible incentive to use the ORCA card;self.Seattle +bad;21;25;I was getting stegosaurus vibes from a ridge in Glacier National Park BC These mountains are my happy place OC 4608 X 3456 u campylobender;i.imgur.com +bad;21;4;90 days porn free;self.NoFap +good;21;2;Cassidy Banks;i.imgur.com +bad;21;4;KungFury Wallpaper Fan Made;self.kungfury +good;21;11;As Drought Grips California Networks Come Up Dry on Climate Science;fair.org +bad;21;2;Back issues;self.Showerthoughts +bad;21;4;Magicnite Malphite Urf Mode;youtu.be +bad;21;11;What happens to dietary fat calories in excess of my TDEE;self.keto +bad;21;18;Giant galaxies die from the inside out Star formation shuts down in the centers of elliptical galaxies first;sciencedaily.com +bad;21;4;University Lung Physiology Pneumothorax;self.HomeworkHelp +bad;21;17;Why is the history of Nazi Germany discussed as a more horrific even than the Soviet Union;self.AskReddit +bad;21;4;34 M4F Canada Bored;self.r4r +bad;21;9;Help My kitchen no longer provides for all prisoners;imgur.com +good;21;14;The Patriots will visit President Obama at The White House next Thursday April 23;twitter.com +bad;21;8;Discussion What is the current state of Destiny;self.DestinyTheGame +bad;21;4;Cheap gym in Harrisburg;self.Harrisburg +bad;21;16;How to pull a number from a list one at a time using a while loop;self.learnpython +bad;21;15;I don t know why but I think charmander hasn t yet jumped the shark;i.imgur.com +bad;21;17;If you could watch any movie again with one actor replaced with another what movie and why;self.AskReddit +bad;21;4;Pinnacle pro or MFLB;self.trees +bad;21;7;Borderlands 2 Ep 4 All the Headshots;self.LetsPlayVideos +bad;21;4;Religious Stuttering Army Carnies;self.Bandnames +bad;21;7;Cappadocian Valley Turkey OG 4191x1610 u Heidegger;i.imgur.com +bad;21;9;Salad Czar called up and to start on Saturday;twitter.com +bad;21;8;Has Obamacare Turned Voters Against Sharing the Wealth;self.autotldr +bad;21;12;I don t know what do with my life help me reddit;self.Advice +bad;21;12;Kamaal R Khan Reviews India vs Australia Semifinal Cricket World Cup 2015;youtube.com +bad;21;22;If running lean makes engines melt presumably because of heat why don t engines run lean to heat up instead of rich;self.Autos +good;21;15;Congress will fast track the Trans Pacific Free Trade Agreement a deal larger than NAFTA;nytimes.com +bad;21;7;What year did Jokerit wear these jerseys;imgur.com +bad;21;3;Ready for Ros;self.Cheese +bad;21;18;Interview with Shlohmo on running a label dealing with others Flying Lotus Burzum Yung Gud Tidal amp more;self.futurebeats +bad;21;6;Corn Masa substitution for People Chow;self.soylent +bad;21;9;Physical W 2010 Pokemon Center Suicune Plush H Paypal;self.Pokemonexchange +good;21;7;F4M Take Your Kid To Work Day;self.dirtypenpals +bad;21;3;Latex and strapon;lix.mx +bad;21;16;TIL Chris Tucker received a Worst New Star Razzie nomination for Ruby Rhod The Fifth Element;razzies.com +bad;21;8;62 126 MPs rent out property in London;landlord-mps.co.uk +bad;21;8;Did we ever make that subreddit about Homeruns;self.baseball +bad;21;10;Has there ever been an un prompted unqualified Christian apology;self.DebateReligion +bad;21;11;Kicking off campaign Shabbos goy Marco Rubio attacks Obama on Israel;theuglytruth.wordpress.com +good;21;5;All hail the dip dip;imgur.com +bad;21;13;Can I use one Mi band on two phones at the same time;self.miband +bad;21;24;Americans of Reddit If you were given the option to choose none of the above in a large election would you choose it Why;self.AskReddit +bad;21;8;Meet the Opposition to Texas High Speed Rail;citylab.com +good;21;52;Deal Reached on Fast Track Authority for Obama on TTP The trade promotion authority bill likely to be unveiled Thursday afternoon would give Congress the power to vote on the TTP once it is completed but would deny lawmakers the chance to amend what would be the largest trade deal since NAFTA;nytimes.com +bad;21;7;Do we need to massage the ITB;self.Fitness +bad;21;10;Asked for resume do I send a cover letter too;self.jobs +bad;21;11;Train Operators of Reddit have you ever hit anything What happened;self.AskReddit +good;21;16;Hitachi Makes Me DRIP in Sheer Red Thong Which Photo is your Favorite Video in Comments;imgur.com +bad;21;13;Propuestas para programa de la CAM para educacion desde el Circulo de Fuenlabrada;self.PlazaComunidadMadrid +good;21;5;New Mech Parts Released Hon;community.playhawken.com +bad;21;12;Tesla denies it will pay 25 per hour to new gigafactory workers;investorplace.com +bad;21;10;H space marine ba W khador watmachine Loc usa florida;self.Miniswap +bad;21;11;The optimism of the holiday maker knows know bounds Cornwall UK;imgur.com +bad;21;11;Made some TV themed tee shirts for my buddies bachelor party;imgur.com +bad;21;5;Democracy 3 ja Demokraatia Eestis;self.Eesti +bad;21;8;AD organization separate containers for Users and Computers;self.sysadmin +bad;21;7;So I m about getting a N3DS;self.3DS +bad;21;10;7 Sage and Sour I made these for you guys;imgur.com +bad;21;4;SKYW VE REL X;soundcloud.com +bad;21;2;Perfection 17;imgur.com +bad;21;9;TOMT MOVIE This is an animated Justice League movie;self.tipofmytongue +bad;21;6;A Term B Term Summer Classes;self.udub +bad;21;7;AMV MEP Br ak th Rul s;youtu.be +bad;21;7;Teaching is a profession not a calling;onlineopinion.com.au +bad;21;14;Discussion Park of the Week is here This week it will be Indiana Beach;self.rollercoasters +bad;21;4;Payday 2 steam share;self.paydaytheheist +bad;21;22;Gooey Lemon Bars with Blueberry Glaze Tangy sweet rich creamy and out of this world OC 670 x 1012 foodart u morganeisenberg;imgur.com +bad;21;6;How many players on a server;self.h1z1 +bad;21;9;NBA Ref takes a spill x post r nba;streamable.com +bad;21;11;Se muere de ganas de liarse con el vecino 08 48;videosdemadurasx.com +bad;21;17;These strange clouds look like the surface of a pond if you turn the image upside down;imgur.com +bad;21;7;Thomas Jack Booka Shake Tropical House 2014;youtube.com +bad;21;7;Streaming Attempting to beat my Shiv Record;twitch.tv +good;21;1;Surprise;gfycat.com +bad;21;3;Been a minute;imgur.com +bad;21;10;Reaper s Pass 3 17 Mileena Fatality Tasty Treat 820;self.kryptguide +bad;21;9;Cum clean me up after Sir s f un;imgur.com +bad;21;4;Holy fuck online sucks;self.GrandTheftAutoV_PC +bad;21;2;Going OFD;self.exjew +bad;21;11;RMT Good captaincy and fielding 11 for gw33 Any advice appreciated;imgur.com +bad;21;23;Cards have a couple of players change uniform numbers Deone Bucannon goes from 36 to 20 Frostee Rucker goes from 98 to 92;twitter.com +bad;21;6;Journey coming to PS4 at 60FPS;gamespot.com +bad;21;11;In Response to all of the While America is Sleeping Posts;self.thebutton +good;21;4;Beautiful Home Architecture 1920x1080;i.imgur.com +bad;21;2;M4F curvedik;self.dirtykik +bad;21;22;If you must show your grey flair to prove you haven t pressed the button influences you as much as a presser;self.thebutton +bad;21;10;PS4 Looking to join a group for prison heist final;self.HeistTeams +bad;21;8;Polycom VVX500 vs Yealink 46G vs Cisco 525G2;self.VOIP +bad;21;4;Question about getting shocked;self.AskElectronics +bad;21;19;Are you sure you want to side with the SJWs do you think these people are likely very libertarian;youtube.com +bad;21;8;Police Muslims threw Christians overboard during Med voyage;news.yahoo.com +bad;21;11;Is she 17F starting to ignore me 17M What to do;self.relationship_advice +bad;21;24;Trying to give some stuff away chair big tv and other misc stuff need to find someone to haul it away in north Austin;self.Austin +bad;21;4;Derp Cruisader sprite change;steamcommunity.com +bad;21;11;Little lump below ear is it a lymph node 19 F;self.AskDocs +bad;21;5;TIFU by being an asshole;self.tifu +bad;21;9;Fallout from County Commissioner scandals continue Bob Lundsten charged;ajc.com +bad;21;7;XB1 25 warlock LF Sherpa for VoG;self.Fireteams +bad;21;8;The Unofficial Unpopular Unique Steven Universe Opinions Thread;self.stevenuniverse +bad;21;13;Anita Sarkeesian made Time Magazine s list of the 100 most influential people;time.com +bad;21;13;With 1 male left worldwide northern white rhinos under guard day and night;cnn.com +good;21;3;Day 401 Kricketot;imgur.com +good;21;10;Brad Stevens named the Eastern Conference Coach of the Month;twitter.com +bad;21;6;Excerpts from the forthcoming Sleeparchive EP;soundcloud.com +bad;21;9;have you ever done lean what was it like;self.AskReddit +bad;21;5;Newby restoring mahogany slab table;self.woodworking +bad;21;2;Ring ID;self.Archaeology +bad;21;4;GTA V Steam Codes;self.GTAV +bad;21;8;EUW S Diamond Ranked 5s LF Mid Laner;self.TeamRedditTeams +bad;21;22;With Star Wars coming out on Xmas day which other movies have come out on Xmas and had a good opening day;self.movies +bad;21;10;Where should I go to get my Pentax SLRs repaired;self.analog +bad;21;7;I don t know what to write;self.thebutton +bad;21;18;Just kidding Bae I didn t mean it Here s some Oozing Wound to brighten your day m;youtube.com +bad;21;5;The Suit and the Briefcase;self.exjw +bad;21;5;What s the biggest file;self.WinDirStat +bad;21;6;Radio BrendoMan 163 Yet Another Trip;radiobrendo.com +good;21;18;Bonjour I m Son Of Kick and im so psyched to be part of this year EF AMA;self.ElectricForest +bad;21;8;100 CPU usage on a 4670k 4 4GHz;self.battlefield_4 +bad;21;6;Virtuix Omni Grand Theft Auto V;youtube.com +bad;21;15;LF East Sea Shellos FT Anything you want within reason I have a living dex;self.relaxedpokemontrades +bad;21;8;Intense magnetic field close to supermassive black hole;sciencedaily.com +good;21;18;After 5 years on reddit and never posting anything on my cake day this is how I feel;imgur.com +bad;21;6;Sumner on Bernanke s monetary reform;self.autotldr +bad;21;13;I made pies and pie crust in bottle caps out of polymer clay;imgur.com +bad;21;2;Trigonometric Identities;self.learnmath +bad;21;12;GoPro footage from the barge perspective of the SpaceX first stage landing;reddit.com +bad;21;4;MM Rankup system changed;self.GlobalOffensive +good;21;39;Alright haircarescience I have this chunk of super curly hair on my 2b head It s there a way too convince the rest of my hair to do the same thing or will I always have a funky patch;imgur.com +bad;21;12;Eh It s 9 30 toys r us is probably empty WHAAAAAAAAA;imgur.com +bad;21;14;What modern process do you think should be reverted to its more traditional method;self.AskReddit +bad;21;33;If you are born on a plane just before you are crossing the International Date Line and the plane continues over the Line you will literally live the day before you were born;self.Showerthoughts +bad;21;24;Did anyone see the two morons in Fairfield CT broadcast themselves inside a restaurant they broke into Last night about 12 13 hours ago;self.periscope +bad;21;9;SAO Progressive Manga Chapter 12 English Fan Translation Released;nekyou.net +bad;21;5;Wonder what flavor it is;imgur.com +bad;21;2;Kristen Bell;i.imgur.com +bad;21;2;me irl;i.imgur.com +bad;21;5;More Information About Battery Life;self.AppleWatch +bad;21;11;Geek Speak Any summer gloves that don t break the bank;youtube.com +bad;21;15;What is the HARDEST way to convince one million people to give you one dollar;self.AskReddit +bad;21;14;Are there any reputable pi sellers that have rad pi 2 s in stock;self.raspberry_pi +bad;21;4;EU 7 Beta Keys;self.HotSBetaKeys +bad;21;12;Pickup for the weekend Hopefully my last pickup Weekends start Thursday right;i.imgur.com +good;21;13;Bryan Alvarez the word I heard is that Daniel Bryan suffered a concussion;self.SquaredCircle +bad;21;12;Fun Fact FNAFB3 is going to be released on Hitler s birthday;self.FNaFb +bad;21;1;shiny;self.thebutton +bad;21;2;Memory Compatability;self.homelab +bad;21;6;Aspiring musician in need of assistance;self.Assistance +bad;21;3;Fastest metal keyboard;self.Metal +bad;21;2;META Wiki;self.CompetitiveMinecraft +bad;21;8;Is there any way to preform such actions;self.Steam +bad;21;29;Forecasting vs Explaining Many of macro s critics are begging the question they are assuming that the economy could be predictable if only we had a good enough theory;self.autotldr +bad;21;19;CMV Making an event to specifically showcase the women of a field does not help with gender equality issues;self.changemyview +bad;21;9;Reaper s Pass 3 18 Easy Fatality Cheat 590;self.kryptguide +bad;21;6;Snuff in spanish is called rap;self.MerylRearSolid +bad;21;17;are there any fighting games which feature armpit hair particularly on female characters x post r fighters;self.Kappa +good;21;11;Did Daisy Ridley remind any of you guys of Natalie Portman;self.StarWars +bad;21;10;Fifa president Sepp Blatter likened to Jesus amp Nelson Mandela;bbc.com +good;21;7;ITAP of a road in Northern Ireland;imgur.com +bad;21;41;Michigan Shop owner will deny openly gay customers Homosexuality is wrong period If you want to argue this fact with me then I will put your vehicle together with all bolts and no nuts and you can see how that works;reddit.com +bad;21;11;Myth Trivia Mark Twain O Henry and a toy called Slinky;commdiginews.com +bad;21;13;Bill ordering body cameras for South Carolina officers advances x post r southcarolina;reddit.com +bad;21;17;Is this the sort of hand I should be folding to take my game up a level;self.poker +bad;21;5;What is up with Zoo;self.hearthstone +bad;21;2;Beta access;self.WorldOfWarships +bad;21;13;grateful for this culmination of events that took me to this present moment;self.infp +bad;21;6;Did Totalbiscut make a new video;imgur.com +bad;21;4;my boarding school battlestation;imgur.com +bad;21;6;Man cannot live on bread alone;self.AntiJokes +bad;21;14;Nola tried to eat a bee She quickly realized it wasn t worth it;imgur.com +bad;21;5;u DisgruntledMilkMaid GCX Rep Profile;self.GCXRep +bad;21;10;Toronto Urban Roots Fest Lineup Revealed Monday 10AM on Indie88;torontourbanrootsfest.com +bad;21;3;Request Ninja Slayer;self.animeicons +bad;21;6;Undisclosed Podcast The State vs Adnan;undisclosed-podcast.com +good;21;3;Father son bonding;imgur.com +bad;21;8;Coffee beans with a ladybug as ripeness reference;imgur.com +bad;21;2;Stupid Question;self.wow +bad;21;11;First Biosimilar ever approved by the FDA will help MS patients;streetinsider.com +bad;21;10;Is it safe to search OSINT links without a proxy;self.Intelligence +bad;21;4;Overview for Dog Love;reddit.com +bad;21;9;One of your stuffed animals names as a kid;self.AskReddit +good;21;19;This new trailer is great but so far no one has mentioned how AMAZING the music in it is;self.StarWars +good;21;6;Every Facebook post from High school;livememe.com +bad;21;20;Found this thing growing in a train station carpark in Tilehurst UK Never seen anything like it is it special;fbcdn-sphotos-g-a.akamaihd.net +bad;21;7;Zayn Malik has a full beard now;self.Jokes +bad;21;9;Got some new pins from a mystery pack today;i.imgur.com +bad;21;13;Jonathan Torrens explains Frank Magazine and how they get away with trash journalism;globalnews.ca +bad;21;16;H FT Butterfly Urban Masked FT AK Vulcan MW AWP Boom W Knife Of Equal Value;self.csgolounge +bad;21;8;Problem with crashing whenever I enter the desert;self.GrandTheftAutoV_PC +bad;21;7;Mudhoney Between Me amp You Kid Rock;youtube.com +bad;21;16;Homophobic bigotry not only tolerated but upvoted in the Nolibs Crew inspired hate group r TopMindsOfReddit;archive.today +bad;21;11;What are some great books I have probably not heard about;self.AskReddit +bad;21;11;Learning Angular should I focus on v 1 or v 2;self.angularjs +bad;21;17;A brave woman while volunteering at a feminist forum is attacked by a 100 real drunken strawman;i.imgur.com +good;21;5;Chicago meetup was a success;imgur.com +bad;21;11;Is it possible to get rid of the copy paste hijacking;self.javascript +bad;21;6;ADC Main in the Tank Meta;self.summonerschool +bad;21;7;Trying to buy an O for 420;self.trees +bad;21;8;Static Gaming Overpoch Auto Refuel Missions Bike Deploy;self.DayZServers +bad;21;3;Been a minute;imgur.com +bad;21;8;is it worth coming back to the game;self.archeage +bad;21;7;DJ Furax Big Orgus jump orgue rave;youtube.com +bad;21;8;BertStory Bert and Ernie s Drug Running Misadventures;imgur.com +bad;21;6;I need help graphing compound interest;self.cheatatmathhomework +bad;21;8;Is there any way to search within files;self.chromeos +bad;21;9;Are they going to upload the full TFA panel;self.StarWars +bad;21;21;Relapsed many times Will try NoFap one last time for a week If it doesn t work will leave this group;self.NoFap +bad;21;13;are there any fighting games which feature armpit hair particularly on female characters;self.Fighters +bad;21;3;Gooze was awesome;i.imgur.com +good;21;49;Yesterday was my 18th birthday and was also the day I lost one of my best friends I can t believe this happened You were so happy and bright and were the most stubborn dog ever I will always remember you Boo You are in a better place now;imgur.com +bad;21;6;Facebook being needy with bogus notifications;i.imgur.com +bad;21;5;ZTE Open C model numbers;self.FireFoxOS +bad;21;7;What are dogs feeling when they howl;self.dogs +bad;21;7;ng 160 lower pthmeru 3rd boss tleev13;self.huntersbell +bad;21;2;RBAC question;self.exchangeserver +good;21;22;MRW My SO s crazy ex mean tweets about him then follows up with a PM to make sure he sees it;reactiongif.org +bad;21;22;Option B wins Bryan Jacob s estate to be invested immediately and fans shall have representation on the board by Clive Gowing;twitter.com +bad;21;5;Moto X won t charge;self.MotoX +bad;21;8;Anna Duggar had an affair with Mike Huckabee;crunchychristianmommy.com +bad;21;12;China bought Russian S 400 surface to air missile system from Russia;en.people.cn +bad;21;5;Ps4 LFG daily heroic MusicManReturns;self.Fireteams +good;21;12;Mitch Zeller comments on findings from the 2014 National Youth Tobacco Survey;youtube.com +bad;21;10;28 M4f Miami Ft Laud FL looking for a fwb;self.dirtyr4r +bad;21;4;Urashima Taro Guardian Gamereon;self.battlecats +bad;21;9;Are your political beliefs aligned with your Christian beliefs;self.TrueChristian +bad;21;11;Rato detenido El PP no sabe ni qui n es ese;imgur.com +bad;21;7;Back to the Kitchen A Good Wife;self.GamerVideos +bad;21;3;PSA Regarding Backups;self.sysadmin +bad;21;5;Looking for a chatroom website;self.leagueoflegends +good;21;6;Rampage by RedBull Battlegrounds player footage;youtube.com +good;21;20;St Louis Police open privately and asset forfeiture backed Real Time Crime Center similar to Oakland s Domain Awareness Center;fox2now.com +bad;21;5;How to cure vampirism lycanthropy;self.teslore +good;21;4;I did do this;self.HighschoolDxD +bad;21;16;Watch these homophobic parents turn the tables on a liberal gotcha reporter during Sex Ed protest;therebel.media +bad;21;2;RIP Audi;imgur.com +bad;21;31;ELI5 Why is it that my feet are permanently cold in winter then the moment it gets warm I want to stick them out from under my blankets all the time;self.explainlikeimfive +bad;21;7;High battery use problem Horrible SOT Advice;self.LGG3 +good;21;3;Fujiwara maid Touhou;i.imgur.com +bad;21;7;Has anyone here read the Matheny Manifesto;self.Cardinals +good;21;5;Should I update to Lollipop;self.GalaxyNote3 +bad;21;18;This 120 collapsible hammock turned out to be an amazing investment Shout out to my Pokemon blanket 5;imgur.com +good;21;6;I loved this game before but;self.storyofseasons +bad;21;3;Mirajane and Lisanna;i.imgur.com +bad;21;5;Classic Neckbearding on r atheism;imgur.com +bad;21;17;Possible spoilers Chloe Bennett just tweeted that tomorrow is the final day of filming for season 2;twitter.com +bad;21;14;Ghazelle beta white knights in thread condoning KIA for calling out betas white knights;self.ShitGhaziSays +good;21;12;Judge Rejects Motion to Remove Pot From List of Most Dangerous Drugs;ww2.kqed.org +good;21;7;Can you create a 6 word story;self.AskReddit +bad;21;3;Maximus Valelly Doctor;self.AsTheClockTurns +bad;21;10;Finally decided to go for it Magenta hair it is;imgur.com +bad;21;7;The wall of my shoe cracked today;imgur.com +bad;21;5;What legal drugs potentiate caffeine;self.askdrugs +bad;21;5;TSA checks a suspicious package;imgur.com +bad;21;11;My friend needed video in video overlay Blender to the rescue;imgur.com +good;21;9;NEW Update 01 078 Main Cockpit Button Panel hints;forums.keenswh.com +bad;21;7;Launching spacecraft after winning another victory type;self.civ5 +bad;21;7;You vs 100 worth of taco bell;self.whowouldwin +bad;21;5;padillion Do Without U draft;soundcloud.com +bad;21;2;Gift wallet;self.giftwallet +bad;21;16;Should I ask for the number first or ask her out for a meet up first;self.OkCupid +bad;21;12;Emma Watson is on TIME s list of 100 Most Influential People;time.com +good;21;12;A woman is repeatedly stabbed by an ex lover in broad daylight;vps42209.vps.ovh.ca +bad;21;8;Urban Outfitters vinyl sale up to 5 off;urbanoutfitters.com +bad;21;10;Sprint Going from Iphone 5 to 6 LTE NYC SPEEDS;self.Sprint +bad;21;11;Select Tough Love Support Only or none for default comment rules;self.confession +bad;21;10;Why do Americans tend to support Arsenal and Seattle Sounders;self.soccer +bad;21;10;What s the best free game you ve ever played;self.AskReddit +bad;21;3;Arclight Vayne Idea;self.leagueoflegends +good;21;18;We re home is said on the Falcon I m thinking they don t own it any more;i.imgur.com +bad;21;4;It s a Drag;self.flyfishing +bad;21;9;This is all I have Gotta make it last;i.imgur.com +bad;21;10;Learning to play support makes you a better everything else;self.summonerschool +bad;21;10;Detroit vs Everybody Anti Detroit Media Bias and Detroit Sports;blessyouboys.com +bad;21;8;Leo Horoscope Love Career Wellness April 17 2015;youtube.com +bad;21;11;JOINT CHIEFS Why We Don t Care That You re Resigning;duffelblog.com +bad;21;3;WANTED Cloth Couch;self.HoustonClassifieds +bad;21;10;Give the king the control to all items like gates;self.reignofkingsgame +bad;21;17;Very beautiful she ll be perfect as lobby art for the corporation s new international headquarters thornscribe;41.media.tumblr.com +good;21;10;When you get your Neitiznot helm for the first time;gfycat.com +bad;21;4;This isn t living;self.depression +bad;21;15;MRW I saw the new trailer today after being worried if the movie would suck;i.imgur.com +bad;21;5;Good straw cup for smoothies;self.beyondbaby +bad;21;17;Is it just me or does BRM feel super easy in comparison to when Naxx came out;self.hearthstone +bad;21;9;Addressing Mortgage Banker Lobbyists GOP Senator Mocks Elizabeth Warren;self.autotldr +bad;21;10;Tails el sistema operativo para ser an nimo en internet;victorhckinthefreeworld.wordpress.com +good;21;16;Close Up Monreal Talks about confidence adjusting to life in England and competing for his spot;player.arsenal.com +bad;21;14;Shane Painting cool flames on the carts will not make them go faster Management;self.Shaneisms +bad;21;4;Help Tevez or Aguero;self.FIFA +bad;21;20;F4M Pervy boss uses daughter while father looks on incest blackmail no limits will include and work with your fetishes;self.dirtypenpals +bad;21;19;Even Nintendo is doing cancelation if you didn t order within the first 30 seconds Is nothing sacred anymore;self.AmiiboCanada +bad;21;3;Consulta sobre almacenamiento;self.ArgEntos +bad;21;11;Gov Sarah Palin Debunking the Myths of a Convention Of States;conservatives4palin.com +bad;21;5;Update coming on April 23th;self.bloodborne +bad;21;12;After patching my Siberia Elite Headset it does not play any sound;self.steelseries +bad;21;2;Mouth Eyes;imgur.com +bad;21;7;GTA V PC Trying to download again;self.GTAV +bad;21;8;Fall of the designer part II Pixel pushers;elischiff.com +bad;21;6;Planning Better Bike Infrastructure with Wikimaps;greatergreaterwashington.org +good;21;4;They finally made up;m.imgur.com +bad;21;9;Unable to Determine Associated Log Source For IP Address;self.QRadar +bad;21;11;Saw all 4 of these beauties at dulles town center today;imgur.com +bad;21;7;Siri sounded pretty surprised to say this;imgur.com +bad;21;14;EPA Tells Kids to Avoid Baths and Asks them to Check Toilets for Leaks;breitbart.com +bad;21;9;B T Express Star Child Spirit Of The Night;youtube.com +bad;21;2;Order 819;self.FakeYourDrank +bad;21;6;The Unsolved Problem of Interactive Narratives;cinemaofchange.com +bad;21;8;Anyone tried this aluminum iPhone case Review please;amazon.com +bad;21;14;Just arrived in the U S from Australia this my first batch of purchases;imgur.com +bad;21;3;Overview for cajeck;reddit.com +bad;21;8;D Train Tryin To Get Over Pitchben Edit;soundcloud.com +bad;21;12;First time on a Qu 32 tomorrow anything I need to know;self.livesound +bad;21;9;Cum clean me up after Sir s f un;imgur.com +bad;21;11;U S military hostile to Christians under Obama morale retention devastated;washingtontimes.com +bad;21;6;How do you change your water;self.Aquariums +bad;21;24;H 15 keys W P2000 Ocean Foam FN MW can be other nice p2k skin WITH KATOWICE 2014 stickers Possible for other skins too;self.GlobalOffensiveTrade +bad;21;3;VCT pro question;self.SmogGB +bad;21;7;Soooooo 158 weapons and still no set;imgur.com +good;21;9;They re about to be turned into pasta sauce;i.imgur.com +bad;21;3;Kidney Stone pain;self.TotalReddit +bad;21;11;Anyone feel like the police are a little ridiculous in online;self.GrandTheftAutoV_PC +bad;21;8;misc just now while boosting for de raids;imgur.com +good;21;10;An idea about a different format of the Drag Race;self.rupaulsdragrace +bad;21;16;X post from askmen Ok ladies have you ever had a successful friends with benefits relationship;self.AskWomen +good;21;5;squatting has been a godsend;imgur.com +bad;21;13;Xi to visit Pakistan next week to cement old ties with infrastructure deals;scmp.com +bad;21;13;China moves to stop use of offshore entities to transfer ill gotten wealth;scmp.com +bad;21;9;18 3439 435 10 10 would buy r gifs;reddit.com +bad;21;8;Do wooden vivs hold heat better than glass;self.BeardedDragons +bad;21;3;Liquid gold 7;imgur.com +bad;21;6;Native Brazilian Portuguese Looking for Finnish;self.language_exchange +bad;21;9;En Cartas al Director en La Segunda hoy Homosexuales;opinion.lasegunda.com +bad;21;11;Stencil and Spin Dye from last night Bridge Burners from MBOTF;imgur.com +bad;21;6;Declining support for the death penalty;people-press.org +bad;21;6;Discussion 4k and 4GB of VRAM;self.buildapc +bad;21;5;Question about Terry Fitted Camp;self.supremeclothing +bad;21;8;Red Baron Exo should be a perm unlock;self.CodAW +good;21;8;Discussion Which Disney Dwarf are You PART 2;self.Random_Acts_Of_Amazon +bad;21;8;How many people here participate in this website;congress.gov +bad;21;16;Proiect unic n Rom nia demarat de Principele Nicolae ntr o noapte am avut un vis;digi24.ro +bad;21;10;Endless Flowers Kingdom of the Netherlands Photographed by John Kamstra;drscdn.500px.org +bad;21;11;Gov Sarah Palin Debunking the Myths of a Convention Of States;conservatives4palin.com +bad;21;19;Nova Scotia snow clearing budget overspent by 20M Halifax also blew budget by 10M as winter overstayed its welcome;cbc.ca +bad;21;14;What would be some fun or useful Spy app ideas for the apple watch;self.AppleWatch +bad;21;6;No effin way Cyborg makes 135;mmashare.com.2112112.net +bad;21;5;She s a little dumdum;flickr.com +bad;21;8;The moment you realize that you fucked up;i.imgur.com +bad;21;8;DAE Pronounce Text and Texted the same way;self.DoesAnybodyElse +bad;21;8;Trying to get rid of these GG249 Bars;self.SilkRoad +bad;21;7;H Dota2 items W Cs go Skins;self.GameTrade +bad;21;6;smiling in the sunshine feeling infinite;imgur.com +bad;21;10;DIPLOMACY Albania establishes the UFBS union of free Balkan states;self.worldpowers +bad;21;10;Leonard Williams visiting next Wednesday Hopefully he falls to us;hogshaven.com +bad;21;6;Industrial bans to tackle water plight;scmp.com +bad;21;11;Mainlander parents top Asian survey on overseas education for their children;scmp.com +bad;21;11;Deal Reached on Fast Track Authority for Obama on Trade Pact;nytimes.com +bad;21;5;25 M4F Mother Son Ap;self.dirtypenpals +bad;21;12;House Votes To Repeal Tax On Richest 0 2 Percent Of Americans;self.autotldr +bad;21;10;I did Kripps mage class chalange fatigue challange i think;self.hearthstone +bad;21;12;Before you ask for help in the megathread please try the following;self.GrandTheftAutoV_PC +good;21;6;AAR Poco bash was hot dropped;self.Bravenewbies +good;21;2;Pigeon tower;i.imgur.com +bad;21;2;Language Barriers;self.OkCupid +bad;21;12;W Brimstone Tyrant x3 H Ambriel Archangel x1 OR Spiritstone Sentry x1;self.SolForgeSharing +bad;21;17;Today s Warp Core upgrade will be delayed by a few hours from the Official FB Page;facebook.com +bad;21;34;march 18 2015 4th grader Barway Collins on the school bus His father has been charged with murder after his son s body was found in the Mississippi River Article w timeline in comments;youtube.com +bad;21;12;Looks like my ferret seed sprouted Happy almost Spring from Puddin Tater;i.imgur.com +bad;21;3;Remake supports Suggestion;self.heroesofthestorm +bad;21;10;This is PC Where are the animals in GTA Online;self.GTAV +bad;21;3;What the Twins;self.Terraria +bad;21;6;Portugal International Centre for Prison Studies;prisonstudies.org +good;21;14;I posted earlier you should ask me questions well here is me me delivering;self.CasualConversation +bad;21;5;Yes You Can Catch Insanity;nautil.us +bad;21;5;Did you ever doubt yourself;self.OccupationalTherapy +bad;21;18;What should my friend do with all these cool looking giant slugs that keep sneaking into her house;self.Advice +bad;21;14;What personal experience experiences have now made you dislike a particular group of people;self.AskReddit +bad;21;29;Since position 5 is not popular in 2k mmr I ve decided to play support as heavy as possible to raise my ranking Here is the result better pic;i.imgur.com +bad;21;12;Anyone wanna guess when Lu and Ciel will come out in America;self.elsword +bad;21;12;Join Alpha Eta Rho friday noon for human foosball at AS lawn;i.imgur.com +bad;21;11;The Richard Engel Kidnapping Fake MoA Scooped MSM By 28 Month;moonofalabama.org +bad;21;5;Bosse De Nage At Night;profoundlorerecords.bandcamp.com +bad;21;12;Winds delay Solar Impulse 2 round the world mission in western China;scmp.com +bad;21;11;Chinese premier lashes out at foot dragging officials over reform failures;scmp.com +bad;21;14;Insignia Go Case at Best Buy is only 3 99 and fits the N3DS;bestbuy.com +bad;21;18;Podcast interview with hiphop journalist Lily Mercer of Viper Magazine over on Seriousss ft Remy Banks Kali Uchis;soundcloud.com +bad;21;10;How Shanghai opened its doors to Jews fleeing Nazi persecution;scmp.com +bad;21;7;Elementary OS Freya belleza en la sencillez;lasombradelhelicoptero.com +bad;21;24;Among the thousands of fatal shootings at the hands of police since 2005 only 54 officers have been charged Most were cleared or acquitted;self.autotldr +bad;21;6;Mungo Jerry In The Summertime 1970;youtube.com +bad;21;10;Garden of Despair 8 9 Raiden Brutality Inside You 5650;self.kryptguide +good;21;22;My reaction to the new Star Wars teaser knowing that as amazing as it looks it could still end up being bad;youtube.com +bad;21;11;Kickin It Old School Ep1 How To Survive The First Night;youtube.com +bad;21;6;No Spoilers Game of Thrones Banners;self.gameofthrones +bad;21;4;BKLV and i smoke;soundcloud.com +bad;21;13;OC Time of Departure When Heading to Work by US State 1354x681 GIF;i.imgur.com +bad;21;23;If you were to recieve a statistic spreadsheet of activities you did during your life what would you want to see on there;self.AskReddit +bad;21;15;Don t use the word apartheid in r Israel or your comments will be deleted;np.reddit.com +bad;21;14;Is it only me but 75 off gods skins are 51gems instead of 50;self.Smite +good;21;11;Oceanhorn Monster of Uncharted Seas Warp NG in 1 59 1;twitch.tv +good;21;7;How do you settle in to play;self.3DS +bad;21;2;Hot schoolgirl;i.imgur.com +bad;21;3;Back in 1990;self.Cuckold +good;21;5;Is the bowcaster a gat;i.imgur.com +good;21;2;Challenge accepted;i.imgur.com +bad;21;2;me irl;twitter.com +bad;21;6;Release Pedal Panic Sky Dash Run;play.google.com +bad;21;10;Road to 2016 How Presidential Campaigns Became Two Year Marathons;nytimes.com +bad;21;19;Im still new to this game but im quite proud of this play I did this morning with Falstad;youtube.com +bad;21;7;Which desktop GPU compare to GTX 850M;self.buildapc +bad;21;9;What a rollercoaster of emotions vs Heroic General Drakkisath;self.hearthstone +bad;21;7;Buffalo storms primary school in China video;theguardian.com +bad;21;7;Punny relevant name You know any more;i.imgur.com +bad;21;7;Europe s shame over migrant boat people;theguardian.com +bad;21;8;WikiLeaks republishes all documents from Sony hacking scandal;theguardian.com +bad;21;4;TSA checks suspicious package;imgur.com +bad;21;10;Snild Dolkow Easy Mode Upbeat bitpop on a Nintendo DS;open.spotify.com +bad;21;6;OkCupid more effective than Day Game;self.seduction +good;21;11;alternatively who would you choose to narrate your worst enemies life;self.AskReddit +bad;21;5;Fix 3 Dollar Bill Proptosis;self.bindingofisaac +bad;21;9;FST Spring cleaning everything must go Furniture Ores Fossils;self.ACTrade +bad;21;15;See the Incredible Difference Between How Marco Rubio and Hillary Clinton Treat a TMZ Reporter;ijreview.com +bad;21;12;Ohio Man Who Traveled to Syria and Back Arrested on Terror Charges;foreignpolicy.com +bad;21;5;US officials reviewing gyrocopter incident;hosted.ap.org +bad;21;6;Verizon S6 and S6 Edge owners;forum.xda-developers.com +bad;21;6;Marcus Mariota in a Chargers jersey;self.PhotoshopRequest +bad;21;3;Divemaster internship locations;self.scuba +bad;21;8;Looking for LED tubes that glow when off;self.environment +bad;21;3;Japanese Puke Lesbians;i.imgur.com +bad;21;22;Hilary sucks Maybe I should vote for a shitty regressive republican that will give women a reason to join the feminist movement;np.reddit.com +bad;21;11;Lawyer finds surveillance software baked into hard drive supplied by police;self.autotldr +bad;21;10;Car owners know what it s like to forget this;imgur.com +bad;21;18;Can I survive on an unknown ocean planet Let s play of Subnautica a early access survival game;youtube.com +bad;21;1;Samsuki;i.gyazo.com +bad;21;5;Fate Reforged Clash Pack alters;self.PucaTrade +bad;21;3;Wendell Berry suggestions;self.suggestmeabook +bad;21;7;I m not sure what to do;self.depression +bad;21;12;Garden of Despair 8 7 Shinnok Brutality Have a Nice Day 5600;self.kryptguide +good;21;8;How do I get the Tiger Goliath skin;self.EvolveGame +good;21;5;One of my favourite comics;metzgercartoons.com +bad;21;6;Any Zoroastrian strategies starting at 769;self.CrusaderKings +bad;21;9;From the Coinbase Blog Sensible State Regulation North Carolina;blog.coinbase.com +bad;21;14;I never thought I would ask for this recommendation I want a weak woman;self.booksuggestions +bad;21;3;1957 proof set;self.Coins4Sale +bad;21;9;Write something that no one will understand except you;self.Occasionallyoccupied +bad;21;4;The blogmonth challenge blogoklahoma;blogoklahoma.com +bad;21;3;Music Festival Food;self.budgetfood +good;21;12;What piece of Reddit history should every new redditor be aware of;self.AskReddit +bad;21;6;Jurassic Park Maple Leaf Square Questions;self.torontoraptors +good;21;6;I failed to become a legend;self.thebutton +bad;21;23;Okay so we ve seen the the Star Destroyer crashed in the desert so more More More Where s that blooming poster goddammit;self.moviescirclejerk +bad;21;14;UPDATE from 11 02 2015 Had the kids no kids discussion with my girlfriend;self.childfree +bad;21;7;Looking for a certain cave dive video;self.diving +good;21;6;I CAN T FEEL MY SHOES;self.trees +bad;21;9;WTS Pilot VP Matte Black Body Near Perfect Condition;imgur.com +bad;21;6;Season 3 game play come join;self.diablo3 +bad;21;5;Seeking 4 Door Used Vehicle;self.columbiamo +good;21;3;GIVEAWAY Gauntlet STEAM;self.RandomActsOfGaming +bad;21;2;Need help;self.fakeid +bad;21;7;I just moved in my new appartment;i.imgur.com +bad;21;12;Hello reddit I m looking for a nonseason guild on EU servers;self.Diablo +bad;21;4;Signing Off 2X12 Discussion;self.BeingMaryJane +bad;21;5;LMDE 2 Betsy estabilidad duradera;lasombradelhelicoptero.com +bad;21;12;BBC Sport Fifa president Sepp Blatter likened to Jesus amp Nelson Mandela;bbc.co.uk +bad;21;6;What s your best Coachella story;self.Coachella +good;21;2;Jessica Simpson;i.imgur.com +bad;21;36;Italian police Muslim migrants threw Christians overboard Muslims who were among migrants trying to get from Libya to Italy in a boat this week threw 12 fellow passengers overboard killing them because the 12 were Christians;cnn.com +bad;21;5;MS RDS and Audio Video;self.sysadmin +bad;21;4;Daredevil world on fire;kleverart.deviantart.com +bad;21;7;An iceberg caused the Titanic to sink;self.Jokes +bad;21;11;Anyone been to Graham Auctions just found this article on it;cbc.ca +bad;21;11;ELI5 Why haven t the other Nullsec blocs steamrolled Provi yet;self.Eve +bad;21;11;16 fan scrolls designed to not be frustrating to play against;self.Scrolls +good;21;20;A Redditor wants to move to Venezuela to help build socialism I don t know whether to laugh or cry;np.reddit.com +bad;21;5;Why my cims hate trains;self.CitiesSkylines +bad;21;7;MFW watching the new Star Wars trailer;gifsound.com +bad;21;5;i can be a spy;self.Knightsofthebutton +bad;21;4;TVP Magazine Fundraising Campaign;tvpmagazine.com +bad;21;11;It is high time to put an end to shit streams;self.Twitch +bad;21;20;simple combinatorics 8 pairs of shoes 4 randomly selected find the probability that there will be exactly 1 complete pair;self.learnmath +good;21;3;MISC Servers down;self.ClashOfClans +good;21;29;Question Don t upvote Does anyone know where to find this car in GTA V PC Story mode Been looking for it all around Los Santos with no luck;orcz.com +bad;21;19;Equality for all not just for certain people Petition against gay marriage rights sent to Justice Minister Independent ie;independent.ie +good;21;8;Does anyone else think ESL is Literally Hitler;self.csgojerk +bad;21;15;Got this shiny after a fishchain of 11 I was just farming Deep Sea Teeth;imgur.com +bad;21;10;WP The Us army fights every single pre gunpowder soldier;self.WritingPrompts +bad;21;10;help Building a 60 with ALPS have a few questions;self.MechanicalKeyboards +good;21;9;Looks like Ten ion is getting a vinyl reissue;self.vinyl +bad;21;20;This is a little different to you re normal posts but you seem to be the best subreddit to ask;self.flightsim +bad;21;16;What secret do you know about someone that would ruin your friendship if you ever told;self.AskReddit +bad;21;4;NG 31 WET NURSE;self.huntersbell +bad;21;7;New interview tomorrow in Six Sense studio;facebook.com +bad;21;7;Is listening to the voice actually helpful;self.duolingo +good;21;12;Snapchat should have an option to send pictures with a NSFW tag;self.Showerthoughts +good;21;5;ESL Frankfurt places to stay;self.DotA2 +bad;21;12;DirecTV You get 100 and I get 100 Cheaper than Comcast too;refer.directv.com +bad;21;4;Wet pussy wet fingers;lix.mx +bad;21;3;Gantry truck play;self.CNC +bad;21;13;What is the worst dish or food product that comes from your country;self.AskReddit +bad;21;10;360 lfg nm ce post will be removed when full;self.Fireteams +bad;21;9;Is like append in scheme and is like cons;self.haskellquestions +bad;21;11;I need tips for giving meds to a crafty old boxer;self.Boxer +bad;21;10;Relive many live sets from Coachella 2015 Video on vidme;self.Coachella +bad;21;5;Thoughts on a small host;self.webhosting +bad;21;10;What is the weirdest coincidence that has happened to you;self.AskReddit +bad;21;9;PS4 LFG VOG HM lvl 30 hunter psn brandoman584213;self.Fireteams +bad;21;5;Soulbound Dungeon Team Theorycrafting Thread;self.crusadersquest +bad;21;3;4 HOTS Keys;self.HotSBetaKeys +bad;21;9;Maybe this doesn t impress the typical HN overachiever;news.ycombinator.com +bad;21;3;A 3rd strike;self.lonely +bad;21;9;Resident Evil 3 Nemesis Memories of Halloween Horror Nights;self.LetsPlayVideos +good;21;4;Chargers not shopping rivers;nfl.com +bad;21;9;ELI5 How is Linear Algebra important in Computer Science;self.explainlikeimfive +bad;21;33;Walter biscardi on Twitter I m going to make sure the specs for my new network include No RED Camera footage Such a joke of a display NABShow pic of display in comments;twitter.com +bad;21;2;Moving Boxes;self.boulder +bad;21;1;Friend;gfycat.com +bad;21;3;Watermelon happy batties;i.imgur.com +bad;21;10;Which player would you most like to sign this summer;self.Gunners +bad;21;7;What is something you re obsessed with;self.AskReddit +bad;21;8;Indians to get Visa on Arrival in Canada;timesofindia.indiatimes.com +bad;21;19;What Upcoming DC Movies Would You Want to Rename and or What Titles Would You Want DC to Use;self.DC_Cinematic +bad;21;11;360 Doing All in order and Loyalty challenges in about 1hr;self.HeistTeams +bad;21;19;Repost Academic Attitudes and Perceptions Regarding Wealth Distribution in the United States 5 10 Minutes US Residents All Ages;csunsbs.qualtrics.com +bad;21;3;Experienced surface designer;self.3DPV +bad;21;5;controls with colorimetric reporter plasmids;self.labrats +bad;21;8;Places to park for free on Park Street;self.bristol +bad;21;11;Which actor in present time would make the perfect 007 villain;self.JamesBond +bad;21;12;Everybody s Gone to the Rapture is Gorgeous Complex and Quietly Terrifying;gamespot.com +bad;21;11;Today I watched that anime everyone won t shut up about;self.notinteresting +bad;21;10;Garden of Despair 7 7 Kenshi Brutality Leg Up 7000;self.kryptguide +bad;21;13;On the east side of downtown Minneapolis a new wave of development begins;startribune.com +good;21;2;Fujiwara Touhou;i.imgur.com +bad;21;9;Formula Drift Long Beach Ryan Tuerck vs Fredric Aasbo;gfycat.com +bad;21;3;Women s shirts;self.asktransgender +good;21;6;1 month in 10 lbs down;self.loseit +bad;21;4;Request Ex Machina Script;self.Screenwriting +bad;21;11;Algu m sabe onde posso encontrar Cart es D Presente Continente;self.portugal +good;21;6;Vulcun Releases Statement on Exclusivity Rumors;twitter.com +bad;21;27;Question I saw the Anti depressants and high libidos thread and was wondering if there s anything you can do if changing meds is not an option;self.sex +bad;21;1;Friend;33.media.tumblr.com +bad;21;10;I guess I m a Shitlord for wearing a jacket;i.imgur.com +bad;21;5;WTB NAVY FLORAL CAMP HELP;self.supremeclothing +good;21;18;New skins concepts Not in my watch Anhur Make a wish Nox Treehouse Ares and Shifting pressure Hel;self.SmiteSkinConcepts +bad;21;12;Landscape mode possibly coming to Windows 10 on phones and small tablets;self.windowsphone +good;21;12;Discussion Has anyone seen a Blade of Crota since 1 1 2;self.DestinyTheGame +bad;21;7;She wanted to talk about our future;imgur.com +bad;21;9;Introducing Charlie and Tango my two little dude ettes;imgur.com +bad;21;8;Fan theory about Tony Sopranos bastard half brother;reddit.com +bad;21;7;Get drunk the night before an exam;self.shittyideas +bad;21;10;Near impossible to complete the first heist for anybody else;self.GTAV +bad;21;4;Swarm Newsletter is out;us8.campaign-archive1.com +bad;21;12;Aquarius Trailer David Duchovny Hunts Charles Manson in NBC s 60s Thriller;tvline.com +bad;21;7;Shahram Mokri Iranian film director and screenwriter;theotheriran.com +good;21;5;Sneak Peek AtV 40 Video;youtube.com +bad;21;9;Apparently I m an idiot for thinking this way;imgflip.com +bad;21;23;F4M Three s a crowd Giantess request fill Paperboy request fill Dirtier accent challenge I think I might be pretty Please fuck me;self.gonewildaudio +bad;21;6;Beading Math Fundamentals A Love Story;youtu.be +bad;21;11;PS4 SM 3 7 Mil Want to but Chancelor s Trident;self.wheelanddeal +bad;21;9;Why am I losing weight slower than my SO;self.loseit +bad;21;19;My keyboard at work Heaps of fun when someone has to enter their level 1 password on your pc;i.imgur.com +good;21;5;Porales red card appeal denied;twitter.com +bad;21;15;A lot of words sound funnier when you add ulation to the end of them;self.Showerthoughts +bad;21;9;Shopping in Canada is now slightly cheaper than USA;theguardian.com +bad;21;4;F4M Glory Hole Slut;self.dirtypenpals +bad;21;21;LPT Always stop to look behind you and scan the area where you were sitting standing for a period of time;self.LifeProTips +bad;21;13;Charles Koch s Cut and Paste Attack on Clean Energy in North Carolina;huffingtonpost.com +bad;21;5;A Flyer At My School;imgur.com +bad;21;3;Hairy girlfriends pussy;imgur.com +good;21;8;Hey I plowed the car for you guys;m.imgur.com +good;21;7;lt 1000 upgabens to fix op smg;self.csgojerk +bad;21;11;Request to recolor Borderlands Psycho with Deadpool palette for cosplay guide;imgur.com +bad;21;10;Anyone else think Troy Quan is unfunny on the show;self.opieandanthony +good;21;10;Woike Doc Rivers named Western Conference Coach of the Month;twitter.com +bad;21;12;My soil has been wet for half a year is it ruined;self.gardening +good;21;9;Suggestion Have community goals to unlock more jukebox music;self.DestinyTheGame +bad;21;10;Rumor Says GTA V DLC Will Come to Xbox First;gta5cheats.com +good;21;9;Brooklyn s Two Most Atrocious Slumlords Have Been Arrested;ny.curbed.com +bad;21;14;My GFs reaction when I surprised her with a 2 week holiday to Aruba;imgur.com +bad;21;14;Is Shakespeare worthwhile reading in terms of improving the comprehension and composing of literature;self.AskLiteraryStudies +bad;21;10;There s a little problem with the Maiden Astraea fight;self.demonssouls +bad;21;11;My lovely artist friend gave me this as a birthday present;imgur.com +bad;21;13;The 25 Million Fine Isn t The Real AT amp T FCC Story;techcrunch.com +bad;21;5;VMWare to Hyper V Conversion;self.sysadmin +bad;21;5;every pop song in 2015;youtube.com +bad;21;21;I have used variations of see ya later to people that I know I never will or want to see again;self.Showerthoughts +good;21;23;I ve been wanting to make this happen since GvG came out and the BRM Druid class challenge finally let me do it;self.hearthstone +bad;21;5;Logitech G303 Daedalus Apex Review;youtube.com +bad;21;1;Tax;self.SwagBucks +good;21;3;A Taxing Poem;self.Jokes +bad;21;2;Farewell Urf;youtube.com +bad;21;4;Cops Star Wars Edition;youtu.be +bad;21;23;While you enjoy the first round of the playoffs starting please take a minute to fill out my r hockey Anti Awards survey;docs.google.com +bad;21;3;Italy Raises Army;self.VictorianWorldPowers +bad;21;12;If you cry hard enough maybe the rain will agree with you;self.Showerthoughts +bad;21;7;This guys sounds exactly like Robin Williams;youtube.com +bad;21;2;Network Help;self.CompTIA +bad;21;7;Big haul coming what have I done;self.hookah +bad;21;8;First time coming across another Buell 1125 D;imgur.com +bad;21;3;Hellary campaign logo;imgur.com +good;21;8;Spoilers Theory on Kylo Ren and his helmet;i.imgur.com +bad;21;7;Royal Gigolos California Dreamin forest gump hippy;youtube.com +bad;21;5;Internal server error while traveling;self.TestPackPleaseIgnore +bad;21;9;Julian Assange speech prompts judges to boycott legal conference;theguardian.com +bad;21;13;Revenge Of The Record Labels How The Majors Renewed Their Grip On Music;forbes.com +bad;21;11;tvz not what you want to see at your front door;youtube.com +bad;21;10;Garden of Despair 5 9 Ferra Torr Brutality Twisted 6000;self.kryptguide +bad;21;22;lt Hey guys I posted that Safe a while back remember I just need another 5000 upvotes before the door will open;self.circlejerk +bad;21;10;Sam Smith Lay Me Down Flume Remix ILL RE ReRemix;soundcloud.com +bad;21;10;GTA Online Free Mode lobbies make my internet go terrible;self.GrandTheftAutoV +bad;21;16;If you are a christian muslim or jew you believe that the Universe is a simulation;self.Showerthoughts +bad;21;14;Mustang III V2 vs Carvin Belair 50W 2x12 Really not sure which to choose;self.Guitar +bad;21;6;AMA Request Sports agent no reward;self.IAmARequests +bad;21;34;Stupid question and I m not looking for a wonder pill but is there anything out there that can help me either speed up my metabolism and or increase fat burning at the gym;self.Fitness +bad;21;11;Liberada la versi n final de KDE Applications 15 04 0;elpinguinotolkiano.wordpress.com +bad;21;11;Gotta conscript them young Here is my daughter during basic training;youtu.be +bad;21;22;To those of you who moved away all on your lonesome care to share your experience and any advice you can give;self.gaybros +bad;21;13;Florida Brigade SSC A new supporter group for US Soccer Check it out;facebook.com +bad;21;11;Pussy Riot How a Russian Punk Movement Invaded US Pop Culture;shrinktank.com +bad;21;16;Hey there r NewHampshire Please help me become your Senator in Reddit s Model US Government;self.newhampshire +bad;21;15;H amp R Block pretty much nailed my wife s occupation on our tax return;i.imgur.com +bad;21;14;All the r Nottheonion news will will be TIL in 20 years from now;self.Showerthoughts +bad;21;6;Easy Trick To Block Players Quickly;self.leagueoflegends +bad;21;14;Wolf s BEEP as a notification sound Download link Virus Scan for paranoid people;self.paydaytheheist +good;21;22;Stan Smiths half a size too small can t exchange Any way of stretching them slightly or creating slightly more room Serious;self.malefashionadvice +bad;21;19;Whats my best option for starting a Roth IRA 25 years old with 1000 to start and 100 month;self.personalfinance +bad;21;7;Total Biscuit s Content Patch on MKX;youtube.com +bad;21;15;Serious How did you feel after you have recieved your bachelor masters degree Fulfilled Empty;self.AskReddit +good;21;6;This picture sums up the 80s;i.imgur.com +bad;21;12;Tech N9ne Tells The Stories Behind 5 Of His Biggest Mainstream Collaborations;siccness.net +bad;21;10;Doing some decommissioning today a remote employee sent me this;imgur.com +bad;21;2;Pretty lady;imgur.com +bad;21;4;Zooming into the Universe;youtube.com +good;21;9;Cum clean me up after Sir s f un;imgur.com +bad;21;13;Despite Greece s liberal application of this substance their debt refuses to subside;creativeinyourheart.com +good;21;8;Looks like Bergenheim is getting the start tonight;thehockeywriters.com +bad;21;19;GeneralQuestions I thought I saw a post a while back about someone posting many ebooks offered on the markets;self.DarkNetMarkets +bad;21;4;bootsnzero Flair Thread 3;self.mueflair +bad;21;26;r GreatRobots Brand new sub for our mechanical friends Machines that make the world a better place Basically robots that don t belong in r Shittyrobots;reddit.com +bad;21;9;If Willam did end up going on All Stars;self.rupaulsdragrace +bad;21;8;Looking for a breeder in the DC area;self.vizsla +bad;21;6;Why VHS will always beat DVD;youtu.be +bad;21;16;Got a fun opportunity to do some apparel CAD work for Coach here s the result;i.imgur.com +bad;21;8;Help me optimize Especially you fellow Hunting Horn;self.MonsterHunter +bad;21;13;Marilyn Kerton upset over top court s right to pray ruling New Brunswick;cbc.ca +good;21;10;Andrew Quarless says he s a top echelon Tight End;nfl.com +bad;21;19;H Street Fighter IV Steam Key L A Noire Steam gift Hitman Absolution HBL W CS TF2 Dota2 Keys;self.GameTrade +bad;21;3;I Pick Green;imgur.com +bad;21;6;Cycling from Monterey to San Fran;self.MontereyBay +bad;21;16;Question Why do I have Gjallarhorn s Grimoire card if I have never had a Gjallarhorn;self.DestinyTheGame +bad;21;15;Are there any supplements or natural treatments for severe body acne x post r Supplements;self.SkincareAddiction +bad;21;16;What s something that is obvious to you that probably isn t obvious to someone else;self.AskReddit +bad;21;8;She s old but plenty of life left;imgur.com +bad;21;9;Cog Burn 3D printed robot enters Darpa Robotics Competition;self.3Dprinting +bad;21;23;Should I have a cover letter with my resume if I m stopping by an office to apply for an entry level job;self.cscareerquestions +bad;21;4;On Lincoln s Assassination;neh.gov +bad;21;6;Question What happened to inferno mode;self.DestinyTheGame +bad;21;8;My boss thinks I crossed a red line;self.angry +bad;21;5;The best chrmndr tattoo spoof;i.imgur.com +good;21;1;Hottie;i.imgur.com +bad;21;10;What would it take to get Andre Drummond from Detroit;self.torontoraptors +bad;21;9;Currently it s April 16 2015 at 03 16PM;self.every15min +good;21;4;Surrounded by sweets Original;cdn.awwni.me +bad;21;12;H 3 Keys W one of the skins in the list below;self.GlobalOffensiveTrade +bad;21;9;Julian Assange speech prompts judges to boycott legal conference;theguardian.com +bad;21;9;Serious What is the sharpest tool in the shed;self.AskReddit +bad;21;16;Recieved my new Suit today I absolutely love it What exciting things happend to you today;self.CasualConversation +bad;21;46;LOUISIANA HCR2 has been filed in the Louisiana legislature and is referred to the House and Governmental Affairs Committee We have just gotten word that HCR2 is scheduled to be heard by the committee next Wednesday April 22nd at 9 30am in House Committee Room 2;conventionofstates.com +bad;21;12;Login works fine on Android but can t log in on desktop;self.hearthstone +bad;21;11;How to replace a flat clay roof tile thats nailed in;self.homeowners +bad;21;4;Uther and Tyrael Trait;self.heroesofthestorm +bad;21;11;Study 78 of Hispanics are struggling nancially Los Angeles Daily News;self.test +bad;21;13;H StatTrak P250 Splash FN with iBUYPOWER Katowice 2014 sticker W 10 keys;self.GlobalOffensiveTrade +good;21;8;Playing the sax worked for Bill Clinton right;imgur.com +bad;21;11;This Chart Showcases the Features and Downsides Channels on Sling TV;lifehacker.com +bad;21;8;21 M4F Rule 34 celebs and more inside;self.dirtypenpals +good;21;6;META An Idea for preventative measures;self.asmr +bad;21;10;LF A town to clear my void FT 20k bells;self.ACTrade +bad;21;7;Double PD Stand Strong in the Pocket;youtube.com +bad;21;16;So I watched Steamboat VS Savage for the first time lastnight and I have a question;self.SquaredCircle +bad;21;9;34 Many attempts that didn t work another attempt;self.NoFap +good;21;13;Start of my Pok mon sleve Garth s tattoo Max How Deal UK;i.imgur.com +bad;21;5;An Exclusive Interview With Trahearne;self.Guildwars2 +bad;21;10;Garden of Despair 5 8 Tilting World Fight Modifier 1200;self.kryptguide +bad;21;10;Madhog Plays The Longest Journey Part 3 Paint It Red;youtube.com +bad;21;14;What s the silliest card you can think of that ISN T from unhinged;self.magicTCG +good;21;15;MFW when I know I have to practice but I really don t want to;imgur.com +bad;21;7;Druid Cloak The March on the Talon;soundcloud.com +bad;21;5;Hillary Clinton Pro vs Con;jensorensen.com +bad;21;14;The Australian Federal Police are blacklisting Journalists reporting on Asylum Seekers and Detention Centres;rotundamedia.com.au +bad;21;11;Other than askreddit what subreddit should office workers be aware of;self.AskReddit +good;21;1;Hottie;i.imgur.com +bad;21;14;How is the shift to degree programs affecting employers that sponsor EMT P certification;self.ems +good;21;5;PucaTrade should provide this data;self.PucaTrade +bad;21;28;I get black marks under my eyes if I don t sleep enough then why don t I get black rings under my dick when I m horny;self.shittyaskscience +bad;21;9;Racist post on Craigslist Sellers beware of Indian people;i.imgur.com +bad;21;12;WikiLeaks divulga sistema de pesquisa dos emails e documentos da Sony Pictures;tugatech.com.pt +bad;21;12;Putin Did His Taxes Here s What He Owns 101 NBC News;youtube.com +bad;21;12;Top 5 plays amp teamfights Snake vs LGD LPL Spring split playoffs;youtu.be +bad;21;31;To all of the people trying to go down this year if you dont get the chance this time around there is at least one thing you can be happy about;self.antarctica +bad;21;8;How to get yourself killed on a bike;youtube.com +bad;21;11;EFF at 25 Remembering the Case that Established Code as Speech;eff.org +bad;21;10;How many marijuanas could Batman smoke before he turned gay;self.whowouldcirclejerk +bad;21;9;1st Zero G Espresso Machine Headed for Space Station;space.com +bad;21;2;Morning doodle;imgur.com +good;21;4;Star Wars Battlefront Wallpaper;starwars.ea.com +bad;21;4;GTA 5 FUNNY MOMENTS;youtube.com +good;21;3;Den danska avundsjukan;imgur.com +bad;21;7;Ended up signed up for 3 exchanges;self.secretsanta +bad;21;4;Knife sellers on Instagram;self.knifeclub +good;21;13;Book by Slain Charlie Hebdo Editor Argues Islam Is Not Exempt From Ridicule;nytimes.com +bad;21;7;USA H Xbox360 500GB controller W Paypal;self.GameSale +bad;21;9;Comics Gail Simone s original plans for Alysia Yeoh;gailsimone.tumblr.com +bad;21;2;me irl;i.imgur.com +bad;21;9;C mo agregar el Plugin Musical Spectrum a Deadbeef;deblinux.wordpress.com +good;21;24;I 26 F called out my brother 35 M for being an immature violent self absorbed fuck up for throwing a knife at me;self.relationships +bad;21;6;Mii Limit in todays Streetpass Update;self.StreetPassNetwork +bad;21;10;Alright GB What s your taste in Erotic Fiction like;self.askgaybros +bad;21;6;Write in candidates for AS elections;self.UCSantaBarbara +bad;21;18;Is it possible to get a 4K gaming build at 60fps vh ultra settings for 1300 or less;self.buildapcforme +bad;21;7;I feel like a crazy ex girlfriend;self.motorcitykitties +bad;21;11;4 6k Pot still has not been returned made several tickets;self.CSGOJackpot +bad;21;4;Kitty mounting her dildo;i.imgur.com +bad;21;5;OneDrive for Business and versioning;self.sysadmin +bad;21;3;Still waiting sigh;puu.sh +bad;21;7;Starting a sales career in filtering software;self.sales +bad;21;1;2016;blog.piapro.net +bad;21;12;US WI H rPi NAS Waccom pen phone W Paypal computer parts;self.hardwareswap +bad;21;6;The plane that can fly backwards;bbc.com +bad;21;15;How long I feel I ve been waiting to watch the new Star Wars movie;imgur.com +bad;21;11;StarWars D20 Post Ep III Pre Ep IV Session GAME OVER;self.starwarsd20 +bad;21;6;40 M4R Taboo Trade Chat Kik;self.dirtykikpals +bad;21;11;critique 25 M Would love some input from you guys gals;okcupid.com +bad;21;16;Hitachi Makes Me DRIP in Sheer Red Thong Which Photo is your Favorite Video in Comments;imgur.com +bad;21;4;y9536750 please add me;self.AppNana +bad;21;6;Vigorous fermentation with my ESB recipe;self.Homebrewing +bad;21;17;X post from r worldnews Drone delivering first asparagus of the season crashes and burns With video;reddit.com +good;21;10;r NoMoreSAT A subreddit that seeks to eliminate the SAT;reddit.com +bad;21;6;MFR Harvester not working on wheat;self.feedthebeast +bad;21;8;Why College Graduates are often the most unenlightened;self.GMGFan +bad;21;6;When you see it Mind Blown;i.imgur.com +bad;21;5;What s your real name;self.GMGFan +bad;21;3;Lunch break bowl;m.imgur.com +good;21;13;Hotels Clubs in SD that offer a membership to use their pool facilities;self.sandiego +bad;21;8;Another armed robbery at WMU Good job Broncos;self.kzoo +bad;21;3;super gluing plants;self.PlantedTank +bad;21;6;Who is she Great anal lolita;self.tipofmypenis +bad;21;7;ELI5 How do apps like Shazam work;self.explainlikeimfive +bad;21;3;Money ginsengstrip2001 76561198124614149;self.csgoscammers +bad;21;3;Money zmntw 76561198036708503;self.csgoscammers +bad;21;13;Celebrating the life not the death of the comrades A3 V 0 59;youtube.com +bad;21;5;Cognac Stafford Logan Wingtips YMMV;self.malefashionadvice +bad;21;13;nuclear bomb with Jesuit semen We continue to reach new heights of crazy;youtube.com +bad;21;7;EU Are there teams recruiting under 2k;self.compDota2 +bad;21;6;I dug a hole Part 2;i.imgur.com +bad;21;11;Garden of Despair 5 7 Cassie Cage Brutality Beat Down 5500;self.kryptguide +bad;21;8;DAE fold their crisp packets into little triangles;self.DoesAnybodyElse +bad;21;28;I don t know is appropriate bu Japan has a game show The contestants must finish singing a song Catch is they are getting a hj while singing;buzzfeed.com +bad;21;27;Ellie Goulding isn t really saying anything when she says Love me like you do since it s already being done if she says like you do;self.Showerthoughts +bad;21;12;Discussion gt C S G O L O U N G E;self.GlobalOffensiveTrade +bad;21;11;Anyone have any experience or use a Raw Dog Tactical holster;self.CCW +bad;21;13;How can I call a form handler with die in it multiple times;self.PHPhelp +bad;21;19;The city council of a rural Georgia town just voted to fly the Christian flag over the county courthouse;13wmaz.com +bad;21;6;Store Welcome to the Cyrex Factory;self.GlobalOffensiveTrade +bad;21;12;Ultimate Vault Hunter Upgrade Pack 1 Can t find it on Steam;self.Borderlands2 +bad;21;12;If you have oral and genital herpes do you get simultaneous outbreaks;self.Herpes +bad;21;9;Gruber says 3rd party apps suck on apple watch;self.apple +bad;21;4;I want a bike;self.bicycling +bad;21;2;Please help;self.InjusticeMobile +good;21;7;Update on alternative treatment for PPD PPA;self.breakingmom +bad;21;8;Calculating the fractal dimension of one dimensional data;self.math +bad;21;14;If I fold my pizza in half do I only eat half the calories;self.shittyaskscience +bad;21;10;Skilled Japanese craftsman makes an old book look like new;en.rocketnews24.com +bad;21;7;Wonderful view of Bruges Belgium from above;flickr.com +bad;21;10;I refuse to play face hunter to climb the ladder;self.hearthstone +bad;21;11;tvz not what you want to see at your front door;youtube.com +good;21;11;Self Radio FPS drop sucks Let s hope for a patch;puu.sh +bad;21;16;So what was with sportsnet bailing on the game to show the habs sens post game;self.canucks +bad;21;4;College Physics Projectile Motion;self.HomeworkHelp +bad;21;11;Happiness despite having to part again today 27 f 29 m;self.LongDistance +good;21;20;Steam Fractured Space Play Fractured Space until Monday April 20th at 10AM Pacific Time and keep the game for free;store.steampowered.com +bad;21;12;Where to ask questions about family issues regarding porn consumption of teenagers;self.AskReddit +bad;21;4;The Truth Rule 2;i.imgur.com +bad;21;5;CPU Trade Voting April 16th;self.RedditHockey +bad;21;7;Vintage Roland circuitry or MHI outsourced components;self.modular +bad;21;7;Good place to watch the Cards play;self.columbiamo +good;21;12;I guess the grand kids didn t know what they were missing;dropbox.com +bad;21;9;Peque os Ping inos C mo crear un LiveUSB;etccrond.es +good;21;7;Remember those AtL toys I was making;imgur.com +bad;21;19;r socialism recommends jobseeker to volunteer for the IWW In other words work without pay Isn t that exploitation;np.reddit.com +bad;21;8;MRW I find my old non presser account;i.imgur.com +bad;21;28;WWII was not fought until modern times with the old leaders Hitler for Germany Churchill for England etc What would be the same and what would be different;self.HistoryWhatIf +bad;21;6;The beginning of the toxic relationship;throughourlives.com +bad;21;7;Fo the Kai Shu Master 5 19;self.DotaConcepts +bad;21;9;FW fw FW WORKING OUT WITH ROBERT MONDAVI 1;imgur.com +good;21;9;Kate Upton I am ready to confess my sins;i.imgur.com +bad;21;15;When in an interview do you refer to your current employer as we or they;self.AskReddit +bad;21;12;3 Questions Amit Chakma scandal is he actually giving back the money;lfpress.com +bad;21;5;Reviving the Luke Cyborg rumor;self.StarWarsLeaks +bad;21;19;U S soldiers armed with an M1917 Browning machine gun and an M3 submachine gun Normandy France June 1944;i.imgur.com +bad;21;4;UK Scotland Focused Resources;self.Bushcraft +bad;21;5;It s all my fault;self.nosleep +bad;21;26;I miss Reggie Jackson Last 15 GM 19 7 PPG 10 9 AST 5 0 REB 47 4 FG 41 9 3FG Should have traded Dion;stats.nba.com +good;21;12;My mom found her with a broken leg and brought her home;imgur.com +good;21;49;Popcorn pops freely when a feminist comes to play Choice quotes Show me a feminist and I ll show you a man hating sexist segregationist TwoX has changed quite a bit since becoming a default sub no more bitching about how men are the cause of period shits etc;np.reddit.com +bad;21;4;Rubies Iris and Ascensions;self.ClickerHeroes +bad;21;18;Question What do you think of this listing for an Omega Speedmaster Pro Mark IV Watch Good deal;self.Watches +bad;21;31;Asking a lesbian why does she dress like a man if she hates men is like asking a man why doesn t he dress like a woman because he likes women;self.Showerthoughts +bad;21;11;Am I alone in agreeing with Adachi to a certain extent;self.Megaten +bad;21;33;Number 1 and 2 Mark 7 16 inch 50 caliber gun turrets are trained to starboard during a main battery firing exercise aboard the battleship USS Iowa BB 61 1985 2 821x1 855;i.imgur.com +bad;21;1;Beautiful;self.ShingekiNoKyojin +bad;21;8;17 F4Any bruh bruh bruh look at me;self.SkypePals +bad;21;8;UK Polling Report Latest MORI and Panelbase polls;ukpollingreport.co.uk +good;21;8;Some people handle the munchies better than others;m.imgur.com +bad;21;3;Amazing Dog Sketch;imgur.com +bad;21;5;Tree Trunks is So Adorable;youtube.com +bad;21;7;How s the recreational hockey in Ithaca;self.ithaca +bad;21;6;How universal are tablet dock connectors;self.tablets +bad;21;8;ID help Swollen calyx Hermie Pollen sac Nanners;self.microgrowery +bad;21;4;Cast and staff announced;zakitakubu.com +bad;21;3;Those Layers Though;imgur.com +bad;21;8;FREE MATTRESS amp BOX SPRING New Milford CT;self.FreeStuffNYC +bad;21;3;free item bronx;self.FreeStuffNYC +bad;21;12;Free men s haircut at upscale midtown men s salon Midtown East;self.FreeStuffNYC +bad;21;4;3 Gems Rerolling Rage;self.crusadersquest +bad;21;12;Free men s haircut at upscale midtown men s salon Midtown East;self.FreeStuffNYC +bad;21;9;Cabinet planters tools strollers 1711 8th Ave 17th Street;self.FreeStuffNYC +bad;21;11;Map Watch a decade of growth in LA s bike infrastructure;scpr.org +bad;21;10;White House No vote of confidence for embattled drug chief;news.yahoo.com +bad;21;5;Alien Saddu by Ashnaia Project;ashnaia.bandcamp.com +good;21;12;Video Proves Denver Cop to Have Lied About Pushing Man Down Stairs;photographyisnotacrime.com +bad;21;7;Is this recently played thing not updating;self.leagueoflegends +bad;21;2;Four fingers;i.imgur.com +good;21;4;Austin is playoff ready;imgur.com +good;21;28;I ve heard that allergies are supposed to be better as a vegan but mine have gotten much much worse since making the switch Any thoughts and advice;self.vegan +bad;21;8;Complete List of Phase 2 Changes r ElectricForest;reddit.com +bad;21;2;Please no;skysports.com +bad;21;5;Stay Proud and Purple Brothers;imgur.com +bad;21;12;M4f Looking for a quick and dirty chat with a cute girl;self.dirtypenpals +bad;21;5;r anal redd it 32u6y8;gfycat.com +bad;21;3;ELI5 how programming;self.explainlikeimfive +bad;21;4;10 Northerlion Isaac misconceptions;self.northernlion +bad;21;7;ADA 45p an attempt at jungle style;self.PlantedTank +bad;21;13;Is there a way I can rewatch the spurs clippers regular season games;self.NBASpurs +bad;21;6;Why VHS will always beat DVD;youtu.be +good;21;11;Indieheads Weekly Listening Party Week 12 Results The Powers That B;self.indieheads +bad;21;5;Check you bride s parentage;self.CrusaderKings +bad;21;25;RT ByTimReynolds Guards who averaged 21 5 points and shot 47 or better this season Steph Curry who will be MVP Dwyane Wade Kyrie Irving;twitter.com +bad;21;8;Kentucky s Industrial Hemp Program Begins Second Season;wmky.org +bad;21;9;Cheap Gaming PC To Run GTA V lt 500;self.buildapcforme +bad;21;8;Request Bruno Mars Locked Out of Heaven stems;self.SongStems +bad;21;32;RT IraHeatBeat Dragic now 1 of only 4 6 4 or shorter with 2 seasons of at least 500 FG Pct and at least 1 3 pointer per game Nash Hornacek Stockton;twitter.com +bad;21;14;My group got second at wgi this week in PIA Here s the vid;wgizone.com +bad;21;8;What should I do to make new friends;self.socialskills +good;21;7;I was told there would be Skittles;i.imgur.com +bad;21;38;Thousands flee after South Africa mobs attack immigrants More than 2 000 people fled to South African police stations Thursday after mobs with machetes attacked immigrants in Durban leaving at least five people dead an aid group said;cnn.com +bad;21;13;Video blocked in all countries due to false claim Can I dispute it;self.letsplay +good;21;9;Cum clean me up after Sir s f un;imgur.com +bad;21;6;PS4 LFG Crota NM quick run;self.Fireteams +good;21;8;Finally getting the Pok sleeve on the way;i.imgur.com +bad;21;8;MR WHAT Oh Cool It s Mr Jump;youtube.com +bad;21;11;Best ways of driving more customers to site within one year;self.BusinessIntelligence +bad;21;20;The Japanese players from the Detonation organization are some of the most unpleasant people to play with in Solo Q;self.leagueoflegends +bad;21;13;Raving George feat Oscar amp The Wolf You re Mine chill electro 2015;soundcloud.com +bad;21;3;DeadMan Mode idea;self.2007scape +bad;21;13;If you live in Hayes Valley you should have the Hayes Valley Pass;self.SFlist +bad;21;3;52000000XP in Defence;self.patr +bad;21;9;My copy of Who Killed Sgt Pepper arrived today;i.imgur.com +bad;21;5;xb1 lf4m crota nm fresh;self.Fireteams +bad;21;15;Went back to white for a little while thought I d share with you lovelies;imgur.com +bad;21;8;10 off at Southern Vapory Coupon Code reddit10;southernvapory.com +bad;21;2;Kyle Turris;self.Habs +bad;21;3;Issues Translation anyone;i.imgur.com +bad;21;2;nipple pierce;li.co.ve +bad;21;8;Rick Perry announces presidential campaign and new website;perry2015.com +bad;21;4;My Leggy Rex Plan;self.subaru +bad;21;8;H M9 Doppler FN Phase 1 W 170K;self.GlobalOffensiveTrade +bad;21;20;Also our good friends at Brace Yourself Games are launching their game Crypt of The Necrodancer on April the 23rd;youtube.com +bad;21;21;WWII U S soldiers armed with an M1917 Browning machine gun and an M3 submachine gun Normandy France June 1944 3300x2480;i.imgur.com +bad;21;23;Store Selling some guns you don t need for keys you don t have so you can impress people you don t like;self.GlobalOffensiveTrade +good;21;17;How do I practice graphic design What s the best way to discover and develop your style;self.graphic_design +bad;21;10;What happens when two people press at the same time;self.thebutton +good;21;9;Vectron WGF Veteran Speeder with mount flourish 1800 CC;youtube.com +bad;21;14;How I see all those people posting I don t know why but I;i.minus.com +bad;21;27;It s a slow news day so the BBC thought it d exploit a learning disabled couple who want to get married for some cheap benefits tabloidery;self.britishproblems +good;21;5;Found this bad boy earlier;i.imgur.com +bad;21;10;BFHL A request from someone who only played the beta;self.Battlefield +good;21;7;The Imperium welcomes everyone with open arms;i.imgur.com +good;21;11;How to get rid of black bars on your videos tutorial;self.RotMG +bad;21;10;Apr 16 19 45 UTC NA Ampersand 186 Vanilla FFA;self.UHCMatches +bad;21;0;;rosbalt.ru +bad;21;6;LF Zinogre or Tigrex freedom series;self.mhguildquests +bad;21;6;Crypt of the NecroDancer Launch Trailer;youtube.com +good;21;9;Rewatch Spice And Wolf II Episode 12 FINAL Spoilers;self.anime +bad;21;9;USA NY H PayPal W 2 GTX 980 s;self.hardwareswap +bad;21;6;Enzoknol is cool 1 1 1;self.enzoknol +bad;21;7;D THER Live RadiOzora 10 03 2015;youtube.com +bad;21;7;Is This Coachella Missed Connections Post Real;ratter.com +bad;21;10;Let s read Mumonkan Case 3 Gutei Raises a Finger;self.zen +bad;21;6;I made some Cherno Alpha pouches;40.media.tumblr.com +bad;21;12;19M with 20M Don t know how to address this issue NSFW;self.relationship_advice +bad;21;14;German Shepherd Activates Emergency Alert Bracelet To Save Choking Owner x post from herodog;dogjournal.tumblr.com +bad;21;6;Can I delete my iPhoto Library;self.mac +good;21;6;TBT Mark Martin done goof d;youtu.be +good;21;8;Fast Track to Lost Jobs and Lower Wages;billmoyers.com +bad;21;13;Serious Crowd Funding Could it be used to help pay down student loans;self.AskReddit +bad;21;14;You d Think a Star Destroyer Would be More Powerful Than a Death Star;self.Showerthoughts +bad;21;13;MRW my buddy and I walk into a bar after a tough test;gfycat.com +good;21;3;What Tips Mean;i.imgur.com +bad;21;3;Good save pal;self.breakingmom +bad;21;10;I feel bad about a specific situation How to improve;self.GlobalOffensive +bad;21;23;Can I filter out the background in a picture of an object using a picture of the same place but without the object;self.photoshop +bad;21;4;Amateur Dota tournament league;self.DotA2 +bad;21;32;At a crosswalk if one pedestrian hits the walk button on one side of the street and another hits the button on another side of the street does the signal change faster;self.NoStupidQuestions +bad;21;9;Allison Schulnik one of my all time favourite painters;i.imgur.com +bad;21;18;i said remind me to get beer at six I guess she knew what I was getting at;imgur.com +bad;21;12;Should I be concerened with a 2006 bmw 325i with 125k miles;self.cars +bad;21;6;I ve finally found this account;self.thebutton +bad;21;19;I ve just created a monster Lower Ailing Loran Root Chalice Depth 5 I decided to go all in;self.bloodborne +bad;21;6;Declining support for the death penalty;people-press.org +bad;21;5;A Milky Montage 3 12;youtube.com +bad;21;4;Round Five of IAMTSW;forums.thesecretworld.com +bad;21;8;i really want to get this game but;self.MortalKombat +bad;21;7;SELLING SIF Aubameyang and NIF Robben XBOX;self.BuyMyFUTPlayer +bad;21;3;Update 99 4kg;self.BTFC +bad;21;21;Applied for Government Job as a Veteran Never Was Contacted Administration Discovered To Have Discriminated Against Veterans in Hiring Practices OR;self.legaladvice +bad;21;5;From the movie I Frankenstein;gfycat.com +bad;21;3;Gun PlasmaGun final;self.TroveCreations +bad;21;6;Technically You Have to Accept That;imgur.com +bad;21;5;i am becuome top kek;self.smesh +bad;21;3;Swallowing your ambitions;soggycardboard.com +bad;21;18;Irish Don t forget to register to vote before May 22nd to vote yes during marriage equality referendum;yesequality.ie +bad;21;6;I guess it must be ok;memedad.com +bad;21;9;View Hot tgirl with a stunning body gets barebacke;restlessshemalesblog.tumblr.com +good;21;11;300 payment was for both Harper and Duffy makeup court hears;cbc.ca +bad;21;3;Akira English Dub;theanimeplace.net +bad;21;8;View TS Jessy Dubai is dominating Mikky Lynn;restlessshemalesblog.tumblr.com +bad;21;13;Looking for Rioters who are free on May 7th for a quick game;self.leagueoflegends +bad;21;11;Americans of Reddit how does emergency health care work for you;self.AskReddit +bad;21;10;View Ladyboy fucks a girl and a guy in 3some;restlessshemalesblog.tumblr.com +bad;21;19;Took a photo for an Irish couple while killing time on my lunch break They insisted on photographing me;imgur.com +bad;21;5;The Squire Announcing Project Zombie;self.Knightsofthebutton +bad;21;8;View Skinny ladyboy slut fucked in a motel;restlessshemalesblog.tumblr.com +bad;21;7;Anyone know how to fix offline play;self.GrandTheftAutoV_PC +bad;21;2;Best deal;self.MortalKombat +bad;21;7;View Bruna Butterfly n Beatrice Velmont anal;restlessshemalesblog.tumblr.com +bad;21;11;H GUT KNIFE URBAN MASKED BS W KEYS OFFERS BETTER KNIFE;self.GlobalOffensiveTrade +bad;21;6;How do you get Dojo gloves;self.Maplestory +bad;21;37;My reaction after my roommate ate two plates of french fries a BLT with 5 butter packets on it and two bags of microwave popcorn in one night This happens at least 4 5 times per week;i.imgur.com +bad;21;5;ESP Paris Roubaix 2015 Results;self.peloton +bad;21;6;WTS Techne Harrier Ref 375 1;self.Watchexchange +bad;21;13;Spent all my money on the pc this is my current set up;imgur.com +bad;21;3;GANZ Dino War;w.soundcloud.com +bad;21;21;WWII U S soldiers armed with an M1917 Browning machine gun and an M3 submachine gun Normandy France June 1944 3300x2480;i.imgur.com +bad;21;6;StarCitizen Around the Verse Episode 40;robertsspaceindustries.com +bad;21;9;I want to commission 311 to write a song;self.311 +bad;21;4;Duty free related question;self.Scotch +bad;21;8;Need help on deciding on a used gpu;self.buildapc +bad;21;2;Ore Crusher;self.SethBlingSuggestions +bad;21;6;Is everyone in these trees high;self.trees +bad;21;8;MSNBC Host Owes 70 000 in Delinquent Taxes;yahoo.com +good;21;4;The Original TowerFall Prototype;twitter.com +good;21;8;Police Muslims threw Christians overboard during Med voyage;news.yahoo.com +bad;21;9;Introducing an r C_S_T Book Club and link flair;self.C_S_T +bad;21;16;After all this time I still don t know whether or not to press the button;self.thebutton +bad;21;6;RSI Around the Verse Episode 40;robertsspaceindustries.com +bad;21;15;Tom Schweich told his wife I just need to be dead before firing fatal shot;kansascity.com +good;21;25;with zed AI still being in early alpha zeds simply should not know that there is another entry on the other side of a building;self.dayz +bad;21;9;Survey 2 Keeper Format Draft Schedule and of Leagues;self.FF_Dynasty +bad;21;12;H M9 CrimsonWeb FT 0 15 fv very clean playside W 180k;self.GlobalOffensiveTrade +bad;21;3;Heart of Memphis;vimeo.com +bad;21;1;Debate;self.CivCraftAytos +bad;21;12;Can t start my car because I can t push the button;self.thebutton +bad;21;19;Japan scrambles fighters at near unprecedented levels in response to foreign aircraft mainly Russian and Chinese approaching its airspace;bbc.com +bad;21;6;The Constitution We Don t Understand;thefederalist.com +bad;21;14;My story and photos of my friends 1975 Norton Commando and 1954 Cessna 195;rideandwander.com +bad;21;7;Not a bad time to follow instructions;img.pornocereza.com +bad;21;2;Emily Sears;img.pornocereza.com +bad;21;7;Shifting the focus to low self esteem;self.pornfree +bad;21;6;So I just purchased a titan;self.GrandTheftAutoV_PC +bad;21;1;W4R;self.atlantar4r +bad;21;10;Does anyone have a collection of all the map icons;self.GlobalOffensive +bad;21;11;I want tips I am new and am trying out photoshop;imgur.com +bad;21;8;Local Broadcasters Could Reap Billions in Airwaves Auction;self.autotldr +good;21;10;Cop Not caring about Safety x post from r BikeBoston;youtube.com +bad;21;15;TOMT VIDEO An Asian man cooking a large meal in the back of a restaurant;self.tipofmytongue +bad;21;12;Kim Dotcom could be deported from New Zealand for a speeding conviction;businessinsider.com +bad;21;13;Storm troopers from the new star wars trailer screen shotted on phone 1920x1080;imgur.com +bad;21;14;Can anyone explain to me why my next sign on date is Jan 2016;imgur.com +bad;21;4;Holding each otters hands;i.imgur.com +good;21;9;A ranking of the world s most powerful passports;washingtonpost.com +good;21;6;Book recommendations for a Spanish learner;self.learnspanish +bad;21;24;How long do you think that this took Idk exact size but that s probably around 3 feet of leads in front of it;imgur.com +bad;21;7;Tasse al 10 o CTA settimanali 100;self.BringYourOwnBiatch +bad;21;9;Frozen Graves 2 9 Erron Black Costume Outcast 1220;self.kryptguide +bad;21;9;Fender Champion 600 sounds like crap at maximum volume;self.Guitar +bad;21;8;Theory What if that Chrome Trooper is Finn;self.StarWars +bad;21;9;USA NC H ALiX 2D13 pfSense router W paypal;self.hardwareswap +bad;21;10;H Kara Night MW FT Fire Serpent W KEys asiimovs;self.GlobalOffensiveTrade +bad;21;11;My favorite Gurren Lagann GIF mashed up with various anime songs;self.anime +good;21;2;me irl;imgur.com +bad;21;12;Eric Holder s gun ban list of mental defectives is mostly veterans;washingtontimes.com +good;21;8;Obnoxious ham bullies old lady Short Bonus vent;self.fatpeoplestories +bad;21;17;So JJ Abrams was spotted using an Apple Watch today at the Star Wars Panel in Anaheim;i.imgur.com +bad;21;7;Paul F Tompkins King of Podcasts Splitsider;splitsider.com +good;21;11;Something I just saw rewatching the pilot that may explain Diana;self.madmen +bad;21;4;Pleaseeeeeee help with hair;self.malehairadvice +bad;21;7;Disappearing cars in single player PLEASE halp;self.GrandTheftAutoV +bad;21;16;What does this bag mean I bought it in Germany but can t find any results;imgur.com +bad;21;11;Jawbone adds American Express card to its fitness tracker s functions;arstechnica.com +bad;21;13;Megyn Kelly Grills DNC Chair on Abortion Position Can You Answer That Question;video.lauraingraham.com +bad;21;7;Hugo Awards A History Of Recommendation Lists;castaliahouse.com +bad;21;4;NSFW WELL DONE JAPAN;youtube.com +bad;21;9;MRW Nothing happens when the clock hits 0 00;i.imgur.com +bad;21;28;Reddit what s the weirdest fact that you know that can blow people s minds that hasn t been mentioned in the 12 million previous weirdest fact threads;self.circlejerk +bad;21;2;Morning flight;imgur.com +bad;21;4;Lawn mowing and fertilizing;self.amarillo +bad;21;15;If you have a school email ending in edu this may help for extra money;self.WorkOnline +good;21;4;Jacey s shaved pussy;i.imgur.com +bad;21;9;Parent died in the state of nevada no will;self.legaladvice +bad;21;3;The Future Christ;youtube.com +good;21;12;Eric Holder s gun ban list of mental defectives is mostly veterans;washingtontimes.com +good;21;6;One Week With Kevin Pillar GIF;fangraphs.com +bad;21;17;NA H Mario vs Donkey Kong Tipping Stars Wii U W Paper Mario N64 Wii Download Code;self.ClubNintendoTrade +bad;21;10;Looking for books about the American West and its Inhabitants;self.booksuggestions +bad;21;14;A lot of us at r Babybumps are concerned about something an OB did;self.AskDocs +bad;21;9;Can someone tell me what year this f250 is;self.Trucks +bad;21;15;MFWTK how to steal or scam a retail store out of a 970 or 980;self.myfriendwantstoknow +bad;21;23;2 questions regarding solar city vs taking out a loan and owning panels yourself and what happens when you buy out your panels;self.SolarCity +bad;21;17;Not sure if anyone cares but a complex in Jeff burst into flames maybe an hour ago;self.Louisville +bad;21;10;Billionaire s Paradise The World s Super Wealthy In 2015;investor-times.com +bad;21;21;I m doing a research project on ISIS and have been downloading videos from their official website to research and analyze;livememe.com +good;21;15;I finally watched Going Clear Now I know that there is definitely a cult scale;self.exmormon +bad;21;18;The more the merrier USSF creates Twitter account for US Open Cup coverage does this challenge TheCup us;thecup.us +bad;21;9;Facebook Doesn t Want You To Read This Article;thefederalist.com +good;21;12;If it s for him I ll do whatever it takes Lemia;imgur.com +bad;21;4;Mistyping occasionally as ISFJ;self.infj +good;21;6;wiwt it s been a minute;i.imgur.com +bad;21;8;Tim Vantol Hands Full of Dust 2 19;youtube.com +bad;21;15;Auction EE heroic amp Sumail heroic tripple kill tagged DAC grand finals Sniper and WR;self.Dota2Trade +bad;21;9;Web Devs of Reddit I need a little guidance;self.webdev +good;21;12;Don t mess with me I ll jump and bite you Lionagroo;imgur.com +bad;21;19;Two guys in my band run a pawn shop The drummer sent me this Must be a slow day;imgur.com +bad;21;4;Random One Piece facts;self.OnePiece +good;21;6;So close yet so far away;imgur.com +bad;21;11;How Do you use affinity coins in Xenoblade 3d Spoilers inside;self.3DS +good;21;6;Conflict Episode 6 Trapped Reflection COMPLETE;moreconflict.com +bad;21;2;Button Heaven;youtube.com +bad;21;6;xbox 360 lfg to run nightfall;self.Fireteams +bad;21;12;Video of some naked workout doing pushups without getting excited is hard;vid.me +good;21;2;Checky one;imgur.com +bad;21;17;Great advice from Helen Zaltzman Podcasting on the rise and why it s the starting that counts;bbc.co.uk +good;21;7;gfycat GIF BBW Selena Star s Jiggle;gfycat.com +bad;21;16;World Bank breaks its own rules as 3 4 million people are forced off their land;theguardian.com +bad;21;6;Conflict Episode 6 Trapped Reflection COMPLETE;moreconflict.com +bad;21;8;HIF waiting to get my final grades back;i.imgur.com +bad;21;8;Probably the best shot i ll ever hit;self.CodAW +bad;21;6;Conflict Episode 6 Trapped Reflection COMPLETE;moreconflict.com +bad;21;4;Trigger Arca Sad Bitch;youtube.com +bad;21;9;UMVC3 The FINAL 480p Halls Of HYPE Volume 31;youtube.com +bad;21;7;Release Elite 8 Afterhours Phone Dialer Theme;imgur.com +good;21;5;Iron Juggernaut and Highlord Omokk;youtube.com +bad;21;4;360 LF2M for Nightfall;self.Fireteams +bad;21;7;Net neutrality is now a video game;theverge.com +good;21;8;Assisting the ascension one piece at a time;m.imgur.com +bad;21;13;Here s a frame by frame look at the new Star Wars trailer;theverge.com +bad;21;10;Instagram institutes harsher rules to control harassment porn and nudity;theverge.com +bad;21;12;3 Questions Amit Chakma scandal is he actually giving back the money;lfpress.com +good;21;5;Go HARD or go HOME;38.media.tumblr.com +bad;21;8;Why did my cupcakes have a bitter aftertaste;self.Baking +bad;21;6;Fwd The STUDENT Becomes The TEACHER;i.imgur.com +bad;21;5;critique a developing short story;self.fantasywriters +bad;21;15;Free the mind bind the bodybe the trashy girl you were meant to be joysofservice;36.media.tumblr.com +bad;21;16;Any advice for a noobie soon to be a freshman at a big school next year;self.college +bad;21;6;Q What fade is this kara;self.GlobalOffensiveTrade +bad;21;6;Screenshot 03 13PM Apr 16 2015;imgur.com +bad;21;5;misc Titan bubbles under powered;self.DestinyTheGame +bad;21;8;What year did the forbidden shore come out;self.neopets +bad;21;13;My Reaction When I Can Drop the Last Homework Assignment of the Semester;i.giphy.com +good;21;8;An old photo of Trixie and Sharon Needles;imgur.com +bad;21;1;image;i.imgur.com +bad;21;8;Are there any catnip like substances for dogs;self.NoStupidQuestions +bad;21;11;Google s Works with Cardboard program promises awesome VR for everyone;theverge.com +bad;21;17;Cheltenham fan group Robins Trust approves 200k investment into the club securing a fan elected director position;twitter.com +bad;21;7;Email Marketing Basics Newsletters and Drip Campaigns;self.marketing +bad;21;2;Smart Car;youtube.com +bad;21;2;Canadian Intensifies;gph.is +bad;21;15;Tove Lo VS Haujobb Stay In The Habit mashup electropop EBM My self made mashup;soundcloud.com +good;21;3;Classic Rock fans;self.ElectricForest +bad;21;15;ELI5 Serious why do things commonly metals glow when hot for example a branding iron;self.explainlikeimfive +bad;21;20;Giving pleasure to me she is surrendered to me being bare to her i am surrendered to her byron lordbyron;40.media.tumblr.com +bad;21;5;When you keep messing up;youtube.com +bad;21;8;ARMA The only way to land a hummingbird;imgur.com +bad;21;10;Cyanogen partners with Microsoft to integrate Bing other MS services;self.autotldr +bad;21;6;Lilac french mani with spring flowers;imgur.com +good;21;13;Migrants killed in religious clash on Mediterranean boat Christians thrown overboard by Muslims;bbc.com +bad;21;9;Recruiting 6ix Required 5 Level 40 Farming Competitive Warring;self.ClashOfClansRecruit +bad;21;9;IFTTT s Do apps now available on Apple Watch;idownloadblog.com +bad;21;8;Wages deducted from final paycheck Is this legal;self.legaladvice +good;21;9;My Tight Pussy Before and After Getting F ucked;imgur.com +bad;21;7;Discussion How much is your LLSIF budget;self.SchoolIdolFestival +bad;21;20;If I had to choose one who should I spend 50 to get a pic with Piper or Scott Steiner;self.SquaredCircle +bad;21;10;Not a bad beard day 3 and a half months;i.imgur.com +bad;21;7;Working out on off rest days question;self.Fitness +bad;21;7;Which do you prefer Movies on Series;self.MadokaMagica +good;21;10;My penis is the thermometer to my minds dirty thoughts;self.Showerthoughts +bad;21;5;Russian Roulette Knife Cup Test;vps42209.vps.ovh.ca +bad;21;11;Enjoying Arcane Tower an iOS RL with competitive daily challenge seeds;appadvice.com +bad;21;8;WTB Thin Striped Pocket Tee S S 13;d17ol771963kd3.cloudfront.net +bad;21;6;UP Diliman undergraduates how are you;self.Philippines +bad;21;1;sanic;self.smesh +bad;21;16;My 23 M girlfriend 23 F of 1 year broke up with me yesterday currently lost;self.relationships +bad;21;14;Sir the thought of you touching me this way makes me ache bgs slinkygrlsnaughtierside;40.media.tumblr.com +good;21;7;Girls who watch I need some advice;self.AmericanHorrorStory +bad;21;9;How to get Contacts to sync with Google Account;self.AndroidQuestions +bad;21;6;Changing the music on xbox 360;self.oblivion +good;21;6;Depressed because I m not creative;self.depression +bad;21;19;Vegas odds for Blazers winning series vs Memphis 155 is slightly better than last years odds vs Houston 180;self.ripcity +good;21;2;Airplane flash;imgur.com +bad;21;10;I was watching tv but then dick happened M M;furaffinity.net +bad;21;21;GW2 EU PVE International Descendants of the ebon wolf DEW is a new guild looking for active people of all sorts;self.guildrecruitment +bad;21;16;Someone once said I should make a gallery of my basement here you go Packer bros;self.GreenBayPackers +good;21;5;The Powerpuff Girls predicted Kotaku;youtube.com +bad;21;19;My boyfriend s sister saw a guy doing spray paint art in LA and decided to try it out;imgur.com +bad;21;12;Looking for local artist for commission for Manga Cafe in Toronto Ontario;self.anime +bad;21;10;H Sentry 1100 Series Fire Safe Security Chest W Offers;self.barter +good;21;9;Nigger model from Ausfailia turned IS killed in Syria;msn.com +bad;21;0;;ipress.ua +good;21;26;Ever arrive on scene and wished you knew the stupidity that led to being dispatched I give you torch versus gas tank x post r WTF;youtu.be +good;21;11;What are some Google Chrome Extensions that are a must have;self.AskReddit +bad;21;15;Ukrainian journalist Oles Buzina a vocal critic of current Ukrainian govt was murdered in Kiev;sputniknews.com +bad;21;34;WP Scientists have successfully bio engineered the first fully sentient plant Upon sprouting the lifeform develops the remarkable capacity for speech though researchers are shocked to hear it s first words I am Groot;self.WritingPrompts +bad;21;5;Back in diamond lt 3;imgur.com +bad;21;6;META Bit of a sister sub;self.badmilitaryscience +good;21;13;Opiskelijat ja muut pienituloiset varautukaa pahimpaan Kela perii kaiken kerralla ja uhkaa ulosotolla;kioski.yle.fi +bad;21;7;Drunk fi high fi Why not both;i.imgur.com +bad;21;4;Such a handsome dude;i.imgur.com +bad;21;13;So Richard Sherman s Wiki picture lists him as a WR for us;imgur.com +bad;21;8;For consideration what do we think about VP;self.SandersForPresident +bad;21;6;After stumbling across SpidersGoneWild this morning;i.imgur.com +bad;21;16;I hope you haven t gotten bored while i was gone bound and ready to serve;40.media.tumblr.com +good;21;42;Pin me down and rip my clothing o f f Let s get nasty and naughty I want you to have me begging for it Make me moan make me scream make me cum PMs are welcome so don t be afraid;imgur.com +bad;21;6;Changes in Power Rankings from 2014;self.leagueoflegends +bad;21;15;Why is my female cat caring for another females litter and ignoring her own litter;self.cats +good;21;28;Dear Nparents No it s not the hurt or the pain or the past it s YOUR ACTIONS that have made us not want to be around you;self.raisedbynarcissists +bad;21;10;Can spectral components exist only at multiples of fundamntal frequency;self.DSP +good;21;14;Throwing a small Mortal Kombat X party What MKX themed food should I make;self.gaming +bad;21;24;My orange was partially frozen from the fridge so I sat on it like it was my egg for an hour to defrost it;self.ShowerOrange +bad;21;8;Discussion Connection issues post 1 1 2 update;self.DestinyTheGame +bad;21;2;Illegal Snakeheads;self.Aquariums +bad;21;14;US crossed all imaginable lines forcing Ukraine to do its bidding Russian Def Min;rt.com +good;21;8;The Greens Liquidating Hydro One is Bad Business;gpo.ca +bad;21;4;10 Great Party Boardgames;pastemagazine.com +bad;21;7;Battle Drill Ancient Armies Game Development BLOG;battledrill.blogspot.co.uk +bad;21;12;20 Minutes of Donkey Kong 64 on Wii U Virtual Console Gameplay;youtube.com +good;21;13;Doing You or Being You True Confidence and How to be Authentically Powerful;self.TheRedPill +bad;21;10;Let s Play Minecraft YouCraft ep 25 Twitch live Streaming;self.LetsPlayVideos +bad;21;16;How do I get a local HTML file to display a sprite sheet from my computer;self.webdevelopment +bad;21;5;Therapy Thursday 4 16 15;self.Tennesseetitans +bad;21;22;ELI5 I m 18 years old and have never filed my taxes Is this going to hurt me in the long run;self.explainlikeimfive +bad;21;4;Model minegishi fujiko minetodowith;40.media.tumblr.com +bad;21;4;Choice is mine Poem;self.india +good;21;9;Would you bleed for your team Playoffs Blood Drive;self.CalgaryFlames +bad;21;4;ps4 LF1M Crota normal;self.Fireteams +bad;21;9;Time has come for Mizzou to get its due;espn.go.com +bad;21;10;Eventually you ll have to make a 120 Max Cape;self.runescape +bad;21;7;Lord Janner Prosecution not in public interest;normanawards.com +bad;21;14;21 M4m bored horny verse guy looking for small cock tops to flirt with;self.dirtykikpals +bad;21;15;The little smile the happiness in her eyes she knows she s done well ctboston;38.media.tumblr.com +bad;21;8;Gas buildup in and substrate cause Risk toxic;imgur.com +bad;21;10;Mustard Herb Crusted Chicken Breasts low calorie low carb recipe;skinnytaste.com +bad;21;3;Alice s Phalluses;self.Bandnames +bad;21;14;Airtel is really fucking with our internet Lets unite and teach Airtel a lesson;self.india +bad;21;7;quick easy and delicious desserts to make;self.help +bad;21;3;Will it work;self.hackintosh +bad;21;11;Seeking Ambassadors for New Outdoor Adventure Community PM Me to apply;self.hiking +bad;21;4;GTA V Steam Key;self.GTAV +good;21;1;Dessert;imgur.com +bad;21;4;PS3 loot dupe request;self.Borderlands2 +bad;21;6;Looking for this frame any help;self.bmx +bad;21;9;Can you only play with people in your difficulty;self.diablo3 +bad;21;3;Who is this;self.tipofmypenis +bad;21;6;Free Coaching Content from the NSCAA;self.bootroom +bad;21;8;Anyone else excited about new Star Wars movie;self.CasualConversation +bad;21;10;Interning in West Ashley looking for a place to stay;self.Charleston +good;21;5;Gear question from a beginner;self.bluesguitarist +bad;21;18;ELI5 What happens when i crack my knuckles What makes the noise and what are it s consequences;self.explainlikeimfive +good;21;2;Violethand Pride;self.VioletHand +bad;21;7;Bot didn t recognize SOCAL Southern California;reddit.com +bad;21;8;Is there any way to straighten this photo;self.picrequests +bad;21;27;I don t know why but I made a shitty MS paint version of what reddit is doing to the digitized version of the shitty charmander tattoo;imgur.com +bad;21;4;Joshua Stoneman goes Zen;avoiceformen.com +bad;21;3;I see you;self.hearthstone +bad;21;21;Keep the slave bound and in pain it her place to endure anything her master wants her to 3 MIC kangurubicon;kangurubicon.tumblr.com +bad;21;16;As requested my O C tribute tattoo and myself and the one and only Mischa Barton;imgur.com +bad;21;9;Mushy_64 s 10th Giveaway Special Extravaganza Turbo Deluxe Edition;self.pokemontrades +bad;21;11;Professor handed these scratch cards for immediate feedback on our work;i.imgur.com +bad;21;4;I am so confused;self.electronic_cigarette +bad;21;16;Youth who are homeless or those who were homeless as youth What was your experience like;self.homeless +bad;21;0;;self.neet4r +bad;21;11;Suarez I always add nutmeg to Luiz before I bite him;self.soccercirclejerk +bad;21;7;Midnight Highway Photographed by Aaron J Groen;drscdn.500px.org +bad;21;9;Mario64 Chaos Edition on raspberry pi 2 model b;youtube.com +bad;21;4;Treatment of root mealies;self.succulents +bad;21;9;Check out some Jolly Co operation In Dark Souls;youtu.be +bad;21;8;Frozen Graves 2 10 Danger Fight Modifier 1260;self.kryptguide +good;21;38;Economics professor accidentally turns on the projector during our quiz displaying The Button across the wall And so led our class discussion when the quiz was over I guess he was too lazy to bring the screen down;imgur.com +bad;21;8;French roofer climbs a cathedral in Strasbourg France;youtu.be +bad;21;4;Update on the search;self.foundnotlost +bad;21;4;LF Guild in Broa;self.Maplestory +bad;21;14;Florida man masturbated in Walmart bathroom and flung bodily fluids on unsuspecting florida woman;huffingtonpost.com +bad;21;6;Feel So Good Antoine Chambe Tropical;youtube.com +good;21;8;In the Shade we are amongst a Hero;twitter.com +bad;21;12;Question Can someone with just an iPad join a PC roll20 session;self.Roll20 +bad;21;11;Mellow Mood feat Forelock amp Hempress Sativa Inna Jamaica pt 2;youtube.com +bad;21;7;CAN H GTA V PS3 W Paypal;self.GameSale +bad;21;6;Release Elite 8 Afterhours LockGlyph Theme;imgur.com +bad;21;13;Please tell me I m not THAT lady some ranting bonus baby brain;self.BabyBumps +bad;21;3;Living the dream;imgur.com +bad;21;15;If you could describe your life with 4 5 words what would those words be;self.AskReddit +bad;21;19;I am trying to sell a group of uniforms of varying sizes and am having trouble listing them appropriately;self.Ebay +bad;21;24;Naughty sluts love to give sexy sloppy deep throat throat blowjobs can you keep up with this naughty slut dirty girl 5 MIC bondagedesires;bondagedesires.tumblr.com +bad;21;7;Need to figure out this expiration date;self.Fitness +bad;21;9;Report Finds Largest Ever EU Deployment EULEX a Failure;euobserver.com +bad;21;10;MRW im watching my nephew tank my kdr in battlefield;i.imgur.com +bad;21;7;X1 Lf4 to help with Crota nm;self.Fireteams +bad;21;4;Will DLC s continue;self.mariokart +bad;21;14;A picture of my Nonna Minolta maxxum 300si Tamron AF 28 80 Fujifilm 400;i.imgur.com +good;21;2;Car flash;imgur.com +good;21;14;Deadspin Let s Appreciate All The Incredible Shit Russell Westbrook Did fantastic highlight collection;deadspin.com +bad;21;14;Is it rude to take my car to a different auto mechanic after diagnosis;self.MechanicAdvice +bad;21;38;US sponsored Democracy in Ukraine Kherson region Armed masked Right sector Nazis try to get into the People s Council to disrupt it At 3 20 one of them even tries to shoot someone but has a misfire;youtube.com +bad;21;6;Site to get approximated DPS levels;self.wow +bad;21;18;From r NFL Flip the Results for each NCG since 2000 What does the CFB landscape look like;self.CFB +bad;21;7;Sharks eat sashimi every meal every day;self.Showerthoughts +bad;21;8;Terrible desync issue after getting a new router;self.dayz +bad;21;4;Starting an investment account;self.investing +bad;21;5;Master Greenfingers or Greater Sharpshooter;self.runescape +bad;21;7;Not getting any notification on stock app;self.miband +bad;21;6;Observation about tower endings possible spoilers;self.MortalKombat +bad;21;8;Ps4 lfg nightfall or CE nm psn Dukey_bear;self.Fireteams +good;21;10;Any way to watch playoff games if you missed them;self.hockey +good;21;9;Well then lets put another shrimp on the barbie;imgur.com +good;21;15;Excerpt Okay this is seriously disturbing Aliens VS Predator The Deadliest Species by Chris Claremont;i.imgur.com +bad;21;7;Drug store gel liner that wont transfer;self.MakeupAddiction +bad;21;9;Miracle Of Sound Gr inne Mhaol Queen Of Pirates;youtube.com +bad;21;5;Halo Spartan Strike on Steam;store.steampowered.com +bad;21;11;DUTCH The dutch turn working at home in to a right;nrc.nl +bad;21;7;Jerry Bruckheimer Sets Panoramic Movie With Barco;variety.com +bad;21;5;Sums up reddit pretty well;imgur.com +bad;21;5;The Best Gigs Out There;self.Trucking +bad;21;18;So we ve discussed what would be the best LI for Cullen but what would be the worst;self.CullenMancers +bad;21;12;Not all Nintendo music is good Yoshi s New Island Title Screen;youtube.com +good;21;4;APNEA by agnes cecile;agnes-cecile.deviantart.com +bad;21;13;REQUEST Quick project Amateur banner for a charity streaming event needs cleaning up;self.freedesign +bad;21;16;Serious Who should be the next president on a US dollar bill or coin and why;self.AskReddit +bad;21;9;XB1 VOG HM fresh LF1 message Morsxy for invite;self.Fireteams +bad;21;26;Do we have to worry about Webrtc leaks when downloading torrents Click the link while connected to your vpn and it will show your public IP;diafygi.github.io +bad;21;61;The thing you don t get to see in these messages and i think she wasn t even aware of it is that i was prepared to message her literally every hour i planned to send a message every single hour even if i had to set an alarm and wake myself up each hour to do it 6 MIC ramblingsofacockslut;ramblingsofacockslut.tumblr.com +bad;21;7;23 m4m need to blow this load;self.DirtySnapchat +bad;21;4;A strippers next job;self.Showerthoughts +bad;21;9;Frozen Graves 1 10 Ermac Fatality Head Out 1200;self.kryptguide +bad;21;17;Free I V iv VI 1564 Backing Track in 5 keys and 3 tempos with fretboard diagrams;youtu.be +bad;21;36;TIL Shitty Charmander was in an acting class and the teacher asked him to be a pikachu but instead he stopped to help a motorcyclist with a flat tire who turned out to be Ancient Mew;self.circlejerk +bad;21;23;Spoiler So will the new Dragonball movie will be release in a lot of theaters for a few days just like BoG did;self.dbz +good;21;12;Bunny butts My new girl laid out for the first time yesterday;imgur.com +bad;21;20;NP If Dada becomes the coach of the Indian cricket team he will make the players practise this first D;i.imgur.com +bad;21;14;What s the worst thing you ve done after all of your play throughs;self.masseffect +bad;21;6;XB1 crota death singer cp nm;self.Fireteams +bad;21;10;Surf From Above on Oahu s North Shore in 4K;youtube.com +bad;21;14;Rare footage of Ajaan Lee a Thai Forest master giving a guided mediation 1957;youtube.com +bad;21;15;Describe Archer for someone s who s never seen it in 20 words or less;self.ArcherFX +bad;21;19;Messenger bags that fit two books a legal pad a laptop a change of clothes and a water bottle;self.malefashionadvice +bad;21;23;It s been 60 70 degrees everyday for a week here in New England Why have these heaps of snow still not melted;i.imgur.com +bad;21;6;An open letter to the mods;self.circlejerk +good;21;13;The Cult of Work You Never Meant to Join Why Overworking Is Counterproductive;medium.com +bad;21;13;Ideal internship with very low pay or non ideal internship with good pay;self.jobs +bad;21;6;How to block a throw attempt;self.MortalKombat +bad;21;11;FFFC and Tommy Chong s solution for pot s banking problem;self.pennystocks +bad;21;17;New Early Adopted album coming soon In the meantime check out all his past releases for free;earlyadopted.bandcamp.comj +good;21;10;Roll20 Presents Live GM Q amp A w Adam Koebel;twitch.tv +good;21;23;the liberal position which right now in the US is largely based on objective evidence and the ideals of a free classless society;i.imgur.com +good;21;3;LE BRAVERY JUICE;imgur.com +good;21;5;Entropy Season 2 Intro HYPE;youtube.com +bad;21;25;Czech proclaims new sovereign state between Serbia and Croatia on 7 sq kms of no man s land which was not claimed by either nation;inserbia.info +bad;21;5;18 hrs of button monitoring;imgur.com +bad;21;9;Bird built a nest on top of a mailbox;imgur.com +bad;21;5;Girls run away from me;self.seduction +good;21;7;Console gamers can t match these graphics;imgur.com +bad;21;15;A sunset silhouettes the battleship USS Iowa BB 61 at anchor 1986 3 050x1 998;i.imgur.com +bad;21;10;Tom and Jerry Cartoon Full Movie x post r videos;youtube.com +bad;21;2;Breathing glass;gfycat.com +bad;21;12;I do both depending on what i m told hehe byron lordbyron;41.media.tumblr.com +bad;21;13;LOST small white cream dog pics in description Please HELP north hollywood Craigslist;losangeles.craigslist.org +good;21;13;New Star Wars Battlefront Trailer will debut tomorrow at 10 30 AM PT;starwars.ea.com +bad;21;6;What s wrong with my jade;self.succulents +bad;21;7;The Computer Chronicles Hard Disk Storage 1985;youtube.com +bad;21;6;Mod Post Rule Reminder amp Clarification;self.IncestPorn +bad;21;7;LF MMF Scenes that are more natural;self.HentaiSource +bad;21;10;Bearz Repeating Alphabet Soup A comprehensive guide to Magic abbreviations;blogs.magicjudges.org +bad;21;5;Game window scroll bars help;self.runescape +good;21;4;Not MR just infuriating;deadspin.com +bad;21;8;Visiting the area next week questions about bars;self.Bend +bad;21;9;Sidd s FT Dreams beast charms and cool stuff;self.slashdiablo +bad;21;15;He s the strangest looking dog I ve ever seen but he s absolutely adorable;imgur.com +bad;21;8;18 F Earth Just looking to talk c;self.Needafriend +bad;21;12;Just visited my local tobacconist and picked up some Holiday Season 2013;self.PipeTobacco +good;21;12;Brian Stow to throw out first pitch at San Jose Giants game;mercurynews.com +bad;21;13;How do I know if i m depressed And can I fix it;self.depression +bad;21;7;Advice for those considering joining the military;youtube.com +bad;21;19;Can anyone please help me diagnose crashes and resprings when I activate the switcher Logs amp tweak lists inside;self.jailbreak +good;21;7;Google Announces Works with Google Cardboard Certification;googledevelopers.blogspot.com +bad;21;5;Looking for Sunday Coachella Tickets;self.Coachella +bad;21;40;Advice Divorcing wife of 15 years both of us have herpes Do we have a responsibility to each other to be more discerning in who we date to minimize how many people find out the OTHER one has herpes too;self.sex +bad;21;14;Really need advice with hamster that bites on cage until I take him out;self.hamsters +good;21;7;What made you cool in elementary school;self.AskReddit +bad;21;5;Coanda Simsport Youtube Channel Trailer;youtube.com +bad;21;4;Man vs Wind Fail;youtube.com +bad;21;5;Build Help Building First PC;self.buildapc +bad;21;6;Looking for West Coast MKX players;self.MortalKombat +bad;21;11;I don t know if I m still tripping or not;self.LSD +bad;21;11;Fat Shark TELEPORTER V3 Video Glasses with PilotHD V2 Worth it;self.Multicopter +bad;21;6;Welcome to the Bearded Gaming Vigilantes;self.BGV +bad;21;14;I am colorblind but proud to be green at least I think I am;self.Emerald_Council +bad;21;6;2x Weekend 2 Tickets For Sale;self.Coachella +bad;21;8;Build Help The best IPS monitor for gaming;self.buildapc +bad;21;8;H AWPsiimov ft x2 Deagle Blaze W keys;self.GlobalOffensiveTrade +bad;21;5;Tuna s attention is diverted;imgur.com +bad;21;13;Racoon climbs 58 storeys to visit crane operator then calmly climbs back down;news.nationalpost.com +bad;21;4;How to recover save;self.PiratedGTA +bad;21;1;Mmyep;self.stephenreddit +good;21;6;Spider won t let you pass;youtube.com +bad;21;7;Advice on my aggressive female Lab Mix;self.dogs +bad;21;6;Get your patio ready for summer;windowsforyourhome.com +bad;21;36;US television network NBC News has altered its account of the 2012 kidnapping of its top foreign correspondent saying the masked men who snatched him and his team in Syria were Sunni militants not Assad forces;france24.com +bad;21;11;NA Support main ADC secondary LF duo or Ranked 5s team;self.TeamRedditTeams +bad;21;3;This is nibbler;imgur.com +good;21;4;God s Perfect Plan;youtu.be +bad;21;21;I officially would like to ask if the NDZHL would want recordings of the games to be aired on the CPBN;self.NDZHL +good;21;10;Standard 1st Place Mono Red Aggro TCGPLAYER 5K Tournament Report;self.spikes +bad;21;3;Join the club;imgur.com +bad;21;5;Lazy Wife what to do;self.Advice +bad;21;5;Nelly Furtado Promiscuous the one;youtube.com +bad;21;3;General hints thread;self.prisonarchitect +bad;21;1;art;imgur.com +bad;21;22;Question about world feel and layout in this game Does the world feel like a series of levels or an actual world;self.DarkSouls2 +bad;21;17;You and 999 other random redditors are stranded on a deserted tropical island what do you do;self.AskReddit +bad;21;7;Give in and let it consume you;gph.is +bad;21;9;Two Hungarian Universities Switch To EuroOffice To Promote ODF;itsfoss.com +bad;21;8;Reddit what is your favorite colour any why;self.AskReddit +good;21;2;Wrist Microfracture;self.OttawaSenators +bad;21;7;HOW TO MAKE YOUR HAIR GROW FASTER;imgur.com +bad;21;12;What are some funny Facebook pages to like and tweeters to follow;self.AskReddit +bad;21;2;Breathing glass;fat.gfycat.com +bad;21;15;Racist a hole still doesn t understand that being a racist a hole has consequences;nj.com +bad;21;5;INQUIERY VALUELUCID 3x300mic MAYA BLOTTERS;self.DarkNetMarkets +good;21;14;If you had a chance to go back would you marry your spouse again;self.AskReddit +bad;21;7;What should TTK do with the sever;strawpoll.me +bad;21;21;How can Avast be free even for business If neither home or business users are paying how do they stay afloat;self.sysadmin +bad;21;9;Monk PvP Need advice on which spec to play;self.wow +good;21;14;N Y U Labor Rules Failed to Protect 10 000 Workers in Abu Dhabi;nytimes.com +bad;21;11;My favorite Jocktober Jim is on fire throughout the whole thing;m.youtube.com +good;21;8;2015 NA LCS Spring Finals The Final Battle;youtube.com +bad;21;22;First catch of the year a Bobbit Worm on a diamond jig Hope it s not gonna be one of THOSE seasons;imgur.com +bad;21;24;Is the flow going strong enough Any ideas for what to do with it a little less than 1 year of growth so far;imgur.com +bad;21;11;Need help finding a motor to make a two door box;self.arduino +bad;21;8;Intro Deactivate Lurk Mode Enable Gift Fairy Mode;self.RAofLittleness +bad;21;20;It s game day It s also 60 on Long Island amp I m sweating bullets DGAF LETS GO RANGERS;i.imgur.com +good;21;13;TBT The first COT race and the reason why everyone respects Jeff Burton;youtube.com +bad;21;13;Post Capitalism Rise of the Collaborative Commons The Revolution will not be Centralized;reddit.com +bad;21;5;Propositions for making Katarina good;self.summonerswar +bad;21;5;French roofer climbs a cathedral;youtu.be +bad;21;10;ELI5 Why is the United States allies with Saudi Arabia;self.explainlikeimfive +bad;21;11;Why does everyone make a big deal about sexualized female champions;self.leagueoflegends +bad;21;14;Online Password Generator tool that uses a random seed from your microphone audio input;realpasswordgenerator.com +bad;21;12;BP dropped green energy projects worth billions to focus on fossil fuels;theguardian.com +bad;21;8;How in the hell do I switch weapons;self.GrandTheftAutoV_PC +good;21;6;Continuous lighting photo booth room setup;self.photography +bad;21;21;If Anakin the Emperor Obi Wan and Padme where gender swapped how do you think the prequels would have played out;self.AskReddit +bad;21;10;I didn t know Jaden Smith owned a DayZ Server;steamcommunity.com +bad;21;10;Pool party Bard with a Slip N Slide portal please;self.leagueoflegends +bad;21;13;Une ado organise une f te sa m re en fait une orgie;20min.ch +bad;21;4;Storage containers and doors;self.h1z1 +bad;21;2;UL Upshaw;self.MaddenUltimateTeam +bad;21;14;Driver s Front Power Window Regulator amp Motor Jeep Cherokee 84 96 4 Door;2ndlifejeeps.com +bad;21;10;Speed limits forbidden zones and unexpected excitement 24h Quali 1;gt-report.com +bad;21;12;Just got a job as a Pedicab driver anyone have any tips;self.bicycling +bad;21;13;Certifications for Tulsa Reserve Deputy who accidentally shot and killed suspect were falsified;self.autotldr +good;21;16;Ontario to sell off 60 per cent of Hydro One funnelling 4 billion into transit infrastructure;news.nationalpost.com +bad;21;13;H 30 keys W BS Awp Asii baby And M4A1 S CyREKTz FN;self.GlobalOffensiveTrade +bad;21;4;37 M4F Cheating Wife;self.dirtypenpals +bad;21;10;Is the Papa John s Philly Cheesesteak pizza worth trying;self.food +bad;21;8;Who has an Early Bronco Post some pics;imgur.com +bad;21;3;Sensuous Saran Rap;self.Bandnames +bad;21;10;I think it s just time to go home now;imgur.com +good;21;2;me irl;i.imgur.com +bad;21;4;Jiggaly amazon de go;amazon.de +bad;21;14;California Governor Cut water use by 35 or else fines of 10 000 day;latimes.com +bad;21;11;It has been months No ban Think the mods are retarded;self.banme +bad;21;9;Love me like I m not made of stone;self.UnsentLetters +bad;21;25;I have one full week with practically nothing to do and I want to use that time to get my health on the right track;self.Fitness +bad;21;4;NIKE MUSIC SHOE VIDEO;youtube.com +good;21;19;Star Wars Battlefront to release November 17th Taken from source code of official SWBF page x post r ps4;i.imgur.com +bad;21;2;Drip drip;4yimgs.com +bad;21;28;Hey guys what do you hate about r nfl 800 comments later Hey guys DAE think r nfl is the best place on the internet for football discussion;self.nflcirclejerk +bad;21;13;H Stattrak Ak47 Case Hardened CH WW blue top W keys maxbets knife;self.GlobalOffensiveTrade +bad;21;9;Do you need a desk Getting rid of mine;self.foxvalleywi +bad;21;3;Decline by degrees;thehindu.com +bad;21;12;Help with stopping Directx from installing each time I run the game;self.GlobalOffensive +bad;21;16;Installed the lowering kit on my Scx10 with g transition s Pretty happy with the result;imgur.com +bad;21;13;UND students plan resolution for no confidence vote for President Kelley other administrators;grandforksherald.com +bad;21;2;Satan calls;self.leagueoflegends +bad;21;6;Garmin eTrex Legend Cx Hiking GPS;self.hiking +good;21;8;They Break Game living up to the name;self.Planetside +good;21;43;I ve not been able to afford to use Ronaldo since FIFA 12 I just came back to FIFA 15 after taking a little break with 3 5mil Couldn t really believe that I was able to build this team with those coins;imgur.com +bad;21;8;Tastey Juices One Day Sale Friday 4 17;self.electronic_cigarette +good;21;29;3648x2736 I took this shot of the Sun breaking through the Clouds over the Snow covered Mountains The Road to Milford Sound from Queenstown New Zealand May 2009 OC;i.imgur.com +bad;21;11;TIL that Nigeria has more English speakers than the United Kingdom;en.wikipedia.org +bad;21;13;How did you guys become Browns fans First Memory Fav All Time Game;self.Browns +good;21;8;These things are eating the wood at work;imgur.com +bad;21;1;KK;self.runescape +bad;21;7;Post Capitalism Rise of the Collaborative Commons;reddit.com +bad;21;4;KAITO V3 3106 HNBKEmpathy;youtube.com +bad;21;9;I m never going to taco bell ever again;self.tacobell +bad;21;9;Anything fun to do in the rain this weekend;self.Birmingham +bad;21;0;;47news.jp +bad;21;20;Just in time for an Al Williamson inspired Yoda by Alistair Borthwick Art in Motion Tattoo in North Arlington NJ;imgur.com +bad;21;9;All the way or it doesn t count elmironrojo;33.media.tumblr.com +good;21;15;How fucked would you be if the police decided to raid your house right now;self.AskReddit +bad;21;23;What if those fighting for 15 minimum wage can t get jobs under the new system Surely managers will expect higher quality employees;self.Showerthoughts +bad;21;13;The Hyenas Are The True Heroes In The Lion King A Nerdy Analysis;whatculture.com +bad;21;9;Restore your faith in humanity in 4 minutes flat;youtube.com +good;21;3;The worst arguments;self.vegan +bad;21;12;US IN H Paypal W Cheap 2x4gb RAM and modular power supply;self.hardwareswap +good;21;6;Wood pendants Hand carved by me;imgur.com +bad;21;7;help how do i downgrade from cm12s;self.oneplus +bad;21;4;So lets talk Glues;self.Gunpla +bad;21;9;I think I want to go to law school;self.law +bad;21;9;Why does only one of them get the comma;i.imgur.com +bad;21;6;Wood pendants Hand carved by me;imgur.com +bad;21;7;For sale 6 kindle Paperwhite 75 shipped;self.kindle +good;21;21;This is the type of stuff that keeps me coming back to reddit time and time again after almost 5 years;i.imgur.com +bad;21;6;EU MG1 looking for decent players;self.RecruitCS +bad;21;11;About to spend four days alone looking for a pep talk;self.stopdrinking +bad;21;8;Throwback when I was sakuraspeed V8 futo edit;imgur.com +good;21;25;So I ve been cleaning my room meanwhile I left my PSTV on cause I was going to play P4G before I decided to clean;self.vita +bad;21;12;18 M4F Just a guy looking for a girl of any age;self.DirtySnapchat +bad;21;10;Orient question Are there any physical retailers that carry Orient;self.Watches +bad;21;13;Another week another dev blog Zee Voxel Engine Marching Cubes and View Distance;blog.provenlands.com +bad;21;6;Undergrad looking at grad school options;self.microbiology +bad;21;39;Italian police Migrants threw Christians overboard Muslims who were among migrants trying to get from Libya to Italy in a boat this week threw 12 fellow passengers overboard killing them because the 12 were Christians Italian police said Thursday;cnn.com +bad;21;8;Come on guys it s not that hard;imgur.com +bad;21;9;The downside about playing the day after it rains;imgur.com +bad;21;5;Relation between LoC and CC;self.personalfinance +bad;21;12;Weekend 1 people what was your will call experience like this year;self.Coachella +good;21;42;GOP Presidential candidate Ted Cruz is sending a letter to tens of thousand of pastors asking them sand with God and pray during the two hour time frame on April 28 when the Supreme Court hears a landmark same sex marriage case;blogs.cbn.com +good;21;33;Economics is the new Catholicism a dominant ideology seemingly inescapable but an entirely self contained self reflecting system of abstract thought that in future centuries people will find both bewildering and ridiculous 26;reddit.com +bad;21;17;Downtown Flanagan s Wake An improvised show with audience interaction Every FRI SAT 8pm through April 26th;clevescene.com +good;21;18;Release date for upcoming BattleFront in official sites code November 17th 2015 Also in game screenshot and WebM;self.Games +bad;21;10;misc Let xur sell juke box sounds for strange coins;self.DestinyTheGame +bad;21;9;Technological Disruption Post Capitalism Rise of the Collaborative Commons;reddit.com +bad;21;10;Xb1 lfg Crota normal lvl 30 gt th3 left shark;self.Fireteams +good;21;10;A visit from one of the curvygirls playing at work;imgur.com +bad;21;7;WikiLeaks Publishes Thousands of Hacked Sony Documents;variety.com +bad;21;5;DEATH DEATH EVERYWHERE BloodyTrapland 2;youtube.com +bad;21;6;I m wiggin out man Dexedrine;self.ADHD +bad;21;24;When there are projects on reddit I like seeing the before pictures first because seeing the final pictures first doesn t build the suspense;self.Showerthoughts +good;21;7;25 F Just approved for a salpingectomy;self.childfree +bad;21;9;Is it possible to have 2 different graphics cards;self.nvidia +bad;21;4;Terraria Noobs is back;self.Terraria +bad;21;7;Goal Make 230m GP for 99 Herblore;self.iKuiper +bad;21;12;20 Um How do I get a med card seattle 10 comments;reddit.com +bad;21;13;Barbra Streisand fails to realize that 6 6 million jobs have gone missing;nationalreview.com +bad;21;9;Asians of reddit what s it like being Asian;self.AskReddit +bad;21;8;Am I in shit acc club now c;puu.sh +bad;21;8;New technology to study art s old masters;redorbit.com +bad;21;5;Vegan amp glutenfree Falafel Curry;elephantasticvegan.com +bad;21;3;Dodgy Dodger badge;self.smashbros +good;21;10;20F Primal kitten looking for Daddy Dom OR male sub;self.BDSMpersonals +bad;21;9;Need an opinion on an upgrade I m contemplating;self.pcmasterrace +bad;21;12;Baby Wookie 2 Year Old s Chewbacca Noises Celebrate New EPVII Trailer;youtube.com +bad;21;10;help New to CSS help with shortening a basic style;self.csshelp +bad;21;7;Should I drop Chishek Pick up Grilli;self.fantasybaseball +bad;21;5;I heard you last night;self.UnsentLetters +bad;21;12;ACLU Study Federal Agencies Fail to Protect Whistleblower Communications Terrorist Tip Line;self.autotldr +bad;21;10;Any waxpens under 30 that will get here before 420;self.Waxpen +bad;21;1;Castle;self.ZombieSurvivalTactics +good;21;17;I f my ass gets any bigger pics with these panties won t be very mild anymore;i.imgur.com +bad;21;49;r socialism explains restaurants in a socialist society Since growth is pointless a restaurant would just serve as many people as they can and turn the rest away for the night so there s no need to hire employees or anything Maybe that s why socialists are always starving;np.reddit.com +bad;21;10;Best ways to make money in Online Other then heists;self.GrandTheftAutoV +bad;21;7;S NA Plat5 LF Mid Jungle Top;self.TeamRedditTeams +bad;21;46;Your daily update on the state of Ukrainian democracy Kherson Armed masked Right sector Nazis try to get into the People s Council to disrupt it At 3 20 one of them even tries to shoot someone but has a misfire Glory to Free Democratic Ukraine;youtube.com +bad;21;9;I am going to stay up all night tonight;self.notinteresting +bad;21;12;Sarah wage gap Silverman s dating history Some familiar faces in there;dating.famousfix.com +bad;21;10;Polish offensive tackle gives Vikings a big presence American Football;msn.com +good;21;17;trying to take a pic of her nursing but she smiles whenever she sees the camera lol;imgur.com +bad;21;7;Custom TF2 Hit Sound Going Quantum Raw;youtube.com +bad;21;19;What is the funniest gif of an animal doing something it should not be doing you have ever seen;self.AskReddit +bad;21;7;Former resident looking at returning Some questions;self.Boise +bad;21;14;John Wall has no problem with Paul Pierce questioning his desire to be great;washingtonpost.com +bad;21;10;Ooooohhhhh i d love to suck those fantastic tits sensualhumiliation;36.media.tumblr.com +good;21;5;I almost liked him _;self.AnimalCrossing +bad;21;5;Am I a bad person;imgur.com +bad;21;5;Dawn glimpses Ceres North Pole;jpl.nasa.gov +bad;21;13;What is an example of a photograph that uses three elements of design;self.AskReddit +bad;21;5;My waffle burned this morning;i.imgur.com +bad;21;11;Discovered lost grave of pre Raphaelite beauty who modelled for Rossetti;theguardian.com +bad;21;50;M y boss wife just walked in as i was talking this pic she pulled up her dress and asked me if i liked her wett pussy hope shes on reddit right now playing with her clit pm Me boss lady i will be your boy toy for the night;imgur.com +bad;21;5;Solum Chris Ironman Progress 7;youtube.com +bad;21;13;Michigan high school students toured Florida colleges ended up as targets of racism;dailykos.com +bad;21;11;Request Built to Spill Kicked it in the Sun acoustic solo;self.Tabs +bad;21;3;dog groomer etiquette;self.dogs +bad;21;7;Punctuation and quotation marks with multiple sentences;self.grammar +bad;21;3;overview for crappycharmander;reddit.com +bad;21;6;is anybody here using dimm drive;self.GrandTheftAutoV_PC +bad;21;23;If you could bring one real person to fight the Mountain from Game of Thrones without weapons who would you bring with you;self.AskReddit +bad;21;9;Incredibly hot lesbian beauties share a strapon 24 54;awesomeporntube.com +bad;21;10;21 M4F Seattle Looking For Company on my 21st birthday;self.r4r +bad;21;2;ICEv LFF;self.kohi +bad;21;9;Only male northern white rhino under 24 hour guard;self.autotldr +bad;21;9;Tilda Swinton Wrote a Poem for Amy Schumer Vulture;vulture.com +bad;21;7;March and April Birchboxes info in comments;imgur.com +bad;21;18;If you could invite over anybody for dinner who would it be and what would you cook them;self.AskReddit +bad;21;2;Before After;imgur.com +bad;21;10;Absolutely done with Lollipop and Sony s performance in general;self.SonyXperia +bad;21;30;The San Pedro River in Arizona is the last major free flowing undammed river in the American Southwest and hosts two thirds of the avian diversity in the United States;en.wikipedia.org +bad;21;6;GTA V steam purchase touch china;self.GrandTheftAutoV_PC +bad;21;8;Dev Post on Forums Upcoming Crafting Harvesting Changes;forums.station.sony.com +bad;21;16;Many of you are progressives amp moderates here What role do you play in opposing fundamentalism;self.islam +bad;21;5;Help with printer pam PLEASE;self.fakeid +bad;21;36;A book on Islamophobia written by late Charlie Hebdo editor Charb completed two days before he was killed in an attack on the weekly s Paris offices on January 7 is to be published on Thursday;france24.com +good;21;7;Hogwarts Houses After the Second Wizarding War;the-imgurian.tumblr.com +bad;21;8;Just some shit I want to get out;self.trees +bad;21;11;The Journey to Work Time of Departure by US State OC;i.imgur.com +good;21;14;This Mystery Date s hobbies include Avenging Frisbee and avoiding the phrase flame on;imgur.com +bad;21;8;Frozen Graves 1 8 Shinnok Concept Art 1320;self.kryptguide +bad;21;16;Reddit What are the first steps to getting a job on an Oil Rig Entry Level;self.AskReddit +bad;21;10;Community Fundraiser and Raffle Event for Outdoor Recreation Coming Up;self.Ashland +bad;21;19;Detailed Analysis of the Yu Yu Hakusho Anime as a Coming of Age Story the comments are also insightful;primitivescrewheads.net +bad;21;9;Apple Watch Band magnet tripping sleep mode in Macbooks;self.apple +bad;21;8;You press a button to press the button;self.thebutton +bad;21;3;Depression and ritalin;self.depression +bad;21;8;Boom Days Silo City Saturday April 18 2015;boomdays2015.com +bad;21;6;Microsoft now Google s regulatory scold;business-standard.com +bad;21;10;India Canada uranium supply deal to boost nuclear power generation;business-standard.com +bad;21;8;Investment growth weak in India S amp P;business-standard.com +bad;21;7;Govt to divest 15 stake in MMTC;business-standard.com +good;21;13;a side french tip lol hard to see my blues matched to well;i.imgur.com +bad;21;14;Environment ministry finalises draft notification diluting tribal veto powers tribal ministry calls it illegal;business-standard.com +good;21;10;Netflix Defenders To Appear In Avengers Infinity War Part Two;bleedingcool.com +bad;21;7;Need a little help from fellow psychonauts;self.Psychonaut +bad;21;10;Stone Temple Pilots Dead amp Bloated Denver April 15 2015;youtu.be +bad;21;2;Dance Soccer;egscomics.com +bad;21;6;Housing contract for 2015 2016 available;self.PennStateHousing +good;21;11;This guy was parked across from my apartment complex last night;i.imgur.com +bad;21;20;Seeking advice as things get more serious between me 25 M and the woman 45 F I ve been dating;self.relationships +bad;21;10;I m having a tough time letting these insults roll;self.breakingmom +bad;21;5;Hit and Run advice please;self.legal +bad;21;21;What sayings have you heard that make no sense to you but others look at you like you should know them;self.AskReddit +bad;21;9;Is there any way to stop this from happening;self.ffxiv +bad;21;8;trying to avoid taking a peak at porn;self.NoFap +bad;21;4;Maud Pie by as177sd;as177sd.deviantart.com +bad;21;3;We re Home;gfycat.com +bad;21;4;Iran or Star Wars;mcsweeneys.net +bad;21;6;Attack on Titties Yandere Simulator 3;self.LetsPlayVideos +bad;21;1;Dancing;li.co.ve +bad;21;18;Elsa Frozen vs Ice Queen Adventure Time vs Killer Frost Injustice Gau 3 way fight to the death;self.whowouldwin +bad;21;8;Everything you need to know about yours truly;self.ladychronica +bad;21;3;Puppy amp Toddler;youtube.com +bad;21;11;Ramadi could fall as ISIS militants lay siege Iraqi official warns;cnn.com +bad;21;7;debt scheduled to fall off 3 15;self.CRedit +bad;21;8;I have found it the elusive 99 match;imgur.com +good;21;11;Billings Bridge restaurant worker s arm caught in industrial meat grinder;cbc.ca +bad;21;8;Has Obamacare Turned Voters Against Sharing the Wealth;nytimes.com +bad;21;6;3 5 Level Light Facet FT;i.imgur.com +bad;21;7;When the new Star Wars trailer drops;i.imgur.com +bad;21;5;Vad g r svenskar lyckliga;self.Svenska +bad;21;3;Dyeing a ruck;self.Goruck +good;21;8;Professor stops assault in progress on UHD campus;khou.com +good;21;3;Jiggly AMAZON DE;amazon.de +bad;21;18;What does it mean intuitively for two functions to be orthogonal Can you paint me a picture visually;self.cheatatmathhomework +bad;21;4;Vegan Bounty Mounds v;elephantasticvegan.com +good;21;6;Indeed the cutest selfie ever taken;imgur.com +bad;21;7;Back to the Kitchen A Good Wife;self.LetsPlayVideos +good;21;19;For those interested in a story of Mandalorian intrigue during The Clone Wars Rise of Mandalore Ch 4 available;self.StarWarsEU +bad;21;11;Ramadi could fall as ISIS militants lay siege Iraqi official warns;cnn.com +good;21;12;Footage of everyone rushing to comment on the new Star Wars trailer;i.imgur.com +bad;21;6;Best website to pirate music singles;self.Piracy +bad;21;6;Some days Reddit feels so repetitive;i.imgur.com +bad;21;12;What are the best resources for an experienced developer to learn Drupal;self.drupal +bad;21;10;Post Capitalism Rise of the Collaborative Commons Universal Basic Income;medium.com +bad;21;3;Meanwhile in Canada;youtu.be +bad;21;4;A Nice Finish Inside;imgur.com +bad;21;8;ONE A Small Glimpse At Star Wars Battlefront;ign.com +good;21;5;Lucan Soulrune Novice Requip Mage;self.FairyTailRP +bad;21;16;Our FJ Cruiser took us down Baja Mexico and this is Sunrise on Bahia de Los;lastgreatroadtrip.com +bad;21;5;PC Become a Legend Trailer;ign.com +good;21;9;NASA probe to crash into Mercury in two weeks;news.discovery.com +bad;21;9;FRESH VANCOUVER iiisosceles formerly MATO shapes without names EP;iiiso.bandcamp.com +bad;21;11;Something a friend of mine popped off with 1920 x 1200;i.imgur.com +bad;21;18;I keep trying to write other but my phone changes it to Oties I really need anOties phone;self.Showerthoughts +good;21;24;If you see a girl in a seashell bra and hold one of the seashells up to your ear you can hear her scream;self.oneliners +bad;21;40;Me 26M and a co worker 30M I need his help at times to do my job but his own stress i think makes him incredibly irritable He treats me like crap because I don t think he respects me;self.relationships +bad;21;21;An instant in time from two angles Brooks Robinson leaps for joy after sweeping the Dodgers in the 1966 World Series;i.imgur.com +bad;21;17;FS Time to use that tax refund Deadstock RAGING BULL 5 PACK size 9 5 1100 OBO;imgur.com +bad;21;10;Eye of the beholder How colour vision made us human;self.Techfeed +good;21;7;MRW I heard Chewie we re home;i.giphy.com +bad;21;9;What s the hush hush aspect of your life;self.AskReddit +bad;21;9;Frozen Graves 1 8 Quan Chi costume Tournament 1260;self.kryptguide +bad;21;9;H Karambit fade 70 29 1 W 255 keys;self.GlobalOffensiveTrade +bad;21;7;I killed 4 boss monsters in Daemonheim;self.Zaqofys +bad;21;7;XB1 Selling coins 18 mil in total;self.FIFACoins +bad;21;21;I have actually told guys this before man up be the man you think the women you would want wants yesiamhisgoddess;41.media.tumblr.com +bad;21;6;I have a question about regression;self.AskStatistics +good;21;10;Netflix Defenders To Appear In Avengers Infinity War Part Two;bleedingcool.com +bad;21;9;How do I get to the GTA Rockstar editor;self.GrandTheftAutoV_PC +bad;21;7;Facon sexe Tribal King rap blanc ridicule;youtube.com +bad;21;8;Changing IP the you run Bing Pong on;self.bingpong +bad;21;7;What are your DD s critting for;self.Diablo3Barbarians +bad;21;10;What completely normal thing is your pet completely terrified of;self.AskReddit +bad;21;4;PS3 PS4 Gameplay Trailer;ign.com +good;21;13;Meta Who would you like to see brought on for an AMA here;self.Android +bad;21;8;Any recommendations for northern NJ union county ish;self.Hookers +bad;21;1;Question;self.2007scape +bad;21;7;One of my ram sticks crapped out;self.pcmasterrace +bad;21;11;Ramadi could fall as ISIS militants lay siege Iraqi official warns;cnn.com +bad;21;10;Dallas Mavericks Chandler Parsons optimistic about playing in Game 1;espn.go.com +good;21;7;UberX and UberXL Launch in NOLA today;blog.uber.com +bad;21;2;Hello prison;imgur.com +bad;21;8;Blackrock mountain week 3 Blackrock Spire Boss Guides;youtube.com +bad;21;7;Paragliding in Lauterbrunnen Switzerland 5184 3456 OC;i.imgur.com +bad;21;5;Ps4 gatekeeper cp hm lf5m;self.Fireteams +bad;21;12;FunniCuzItsTru What Will They Do Ben amp Jerry s Beer or Phish;funnicuzitstru.com +bad;21;21;He defs didn t get hung up on Cheryl s birthday He didn t even need those clowns Albert and Bernard;i.imgur.com +bad;21;0;;natalie.mu +bad;21;3;Disabled Vehicle Grants;self.disability +bad;21;8;H Kara Fake 90 10 W 460 keys;self.GlobalOffensiveTrade +bad;21;4;Seba amp Paradox Delusions;youtube.com +bad;21;8;Klovner i Kamp Scandinavian 8 10 HC recruiting;self.wowguilds +good;21;15;Col Chris Hadfield The Canadian Astronaut just posted this I knew he was a Grey;i.imgur.com +bad;21;5;ELI5 R sta inte upp;self.sweden +bad;21;18;If you sat on the toilet and ate a constant rate would you be able to poop forever;self.NoStupidQuestions +bad;21;20;I know you guys are sick of student loan advice posts but I m pretty lost here Any advice appreciated;self.personalfinance +bad;21;12;Israel moves to cover up its alliance with al Qaeda in Syria;veteranstoday.com +good;21;20;What did you think of the PVP Live Developer Q amp A with Brian Holinka and Lore that just ended;self.wow +bad;21;4;World s Fastest Dishwasher;youtube.com +bad;21;11;I m proud to present the first teaser for my fangame;self.fivenightsatfangames +bad;21;9;Cheers to the guy playing acoustic across the street;self.Guitar +good;21;23;Reddit what s the one thing you thought you could do that you ve never done before tried it and fucked it up;self.AskReddit +bad;21;13;This is becoming a serious problem This is literally consuming me Help Please;imgur.com +bad;21;15;Songs made from looping samples from older tracks is like reclaimed antique material for music;self.Showerthoughts +bad;21;3;Ever Ready 200L;self.wicked_edge +bad;21;7;Whats the weirdest stereotype you ever heard;self.AskReddit +bad;21;9;Belgian vapers where do you get your cheap eJuice;self.ecr_eu +bad;21;9;Recent events for Phladdin I found an Armadyl helmet;self.thebritishelites +bad;21;10;Trying to get to Plat Best way to Improve Practice;self.allthingszerg +bad;21;11;Lawsuit Transgender Man fired because he refused to wear a dress;self.autotldr +bad;21;27;I m not that good of a player but when I do blind pick and say fill and get support I carry the heck outta the game;self.leagueoflegends +good;21;18;My mom is out of town I ask her could you pick me up a Donkey Kong amiibo;self.amiibo +bad;21;12;How can I achieve this type of effect Tadanori Yokoo album cover;self.photoshop +bad;21;3;Best feeling ever;imgur.com +bad;21;7;You re suppose to be a man;self.offmychest +bad;21;9;H CSGO Tradeable Gift all regions W 4 Keys;self.GlobalOffensiveTrade +bad;21;3;15 04 2015;youtube.com +bad;21;12;I love wearing my matching Dodge belt standing next to my car;i.imgur.com +bad;21;10;Second Time for SocialJusticeZombie4 This time Racism on r socialism;reddit.com +bad;21;21;RT IraHeatBeat Hassan Whiteside finished 6th in NBA official Player Efficiency Rating PER behind only Anthony Davis Westbrook Curry Durant Harden;twitter.com +good;21;7;Glock 19 with a light appendix carry;self.CCW +bad;21;2;Ben Purr;gifsound.com +bad;21;6;League of legends Stick Figure Spotlight;self.leagueoflegends +bad;21;7;I don t know what s worse;self.BabyBumps +bad;21;6;Late Hint 1 from u bearded_delishus;self.beeritforward +bad;21;20;Can somebody explain factions What is the purpose of them in MKX and why are invasion and war tower locked;self.MortalKombat +bad;21;9;Recent events for Phladdin I killed 3 Kree arras;self.thebritishelites +bad;21;10;This week Nintendo released stage sharing on super smash bros;self.halo +bad;21;11;Ready to enjoy my crop little one her gift his honor;41.media.tumblr.com +bad;21;6;This is one of those games;self.MortalKombat +bad;21;25;Since button pushers are told how Game of Thrones ends could one or more of you share what you ve been told with non pushers;self.thebutton +good;21;5;What s for dinner f;imgur.com +bad;21;5;Seafood Safari New TV Show;self.Seafood +bad;21;9;Frozen Graves 1 9 Reptile Brutality Bo Dash 5040;self.kryptguide +bad;21;2;me irl;i.imgur.com +bad;21;4;WTB Vietnam 6 Panel;supremenewyork.com +bad;21;26;Serbian Interior Minister has said that Hashim Tha i Kosovo s Foreign Minister will be detained if he attends conference organized by an NGO in Belgrade;b92.net +good;21;4;When do you sleep;self.CasualConversation +good;21;4;Soaking up some rays;imgur.com +bad;21;4;save games on mac;self.planetaryannihilation +bad;21;8;Outlook with gmail and untitled attachment xxxx htm;self.techsupport +bad;21;3;Tessa amp Darin;imgur.com +good;21;14;In the new trailer there s an echo background voice alongside Luke s words;self.StarWars +bad;21;6;Difficulty of 5 Week Summer Courses;self.rit +bad;21;4;Spoilers Final Boss Brutalities;youtube.com +good;21;11;Describe your conference foes using characters from the Star Wars universe;self.CFB +bad;21;9;Been drawing wasted youth part 1 characters Need criticism;self.DeviantArt +bad;21;2;Combining systems;self.wiiu +bad;21;7;Recent events for Phladdin 24000000XP in Ranged;self.thebritishelites +bad;21;9;Recent events for Phladdin I killed 4 Kree arras;self.thebritishelites +bad;21;3;Hilo de redencion;self.pokemontrades +bad;21;17;I found a disagreeable message on the back of a twenty So i took some editing liberties;imgur.com +bad;21;4;Hard treasure trail completed;self.IrishEIK +bad;21;13;AVERAGING MORE VISITORS THAN THE REDGUARD SO FAR I FUCKING LOVE YOU GUYS;self.RedLights +good;21;17;TIL that Freddie Mercury of Queen s ancestry is Parsi an Indian minority with roots in Persia;en.wikipedia.org +good;21;8;Ujiri Not enough money to respond to Pierce;youtube.com +bad;21;21;If you have 200k in coins xbox one just with trading what s a reasonable amount of time to double it;self.FIFA +good;21;5;All up in yo face;twitter.com +bad;21;3;My lemon Stoney;i.imgur.com +bad;21;8;NEW MAP update Military situation in Idlib Governorate;twitter.com +good;21;1;nostalgic;i.imgur.com +bad;21;7;WikiLeaks Publishes Thousands of Hacked Sony Documents;variety.com +bad;21;5;From the movie I Frankenstein;3.bp.blogspot.com +bad;21;12;Which team has the easiest road to the championship round by round;self.nba +bad;21;4;panorama off my roof;imgur.com +bad;21;7;Chris Pratt on Parks and Rec Ending;youtu.be +bad;21;3;Cat harness UK;self.Pets +bad;21;7;Sindragosa Best turn 9 drop so far;hearthcards.net +bad;21;7;H BTA StatTrak AK Redline W Keys;self.GlobalOffensiveTrade +bad;21;19;The comments section on a reddit post is really just a competition in who can be the most witty;self.Showerthoughts +bad;21;14;What exactly do you consider bad tactics and theory in regards to promoting socialism;self.socialism +bad;21;10;Epic Draven Pentakill You will shit your pants 100 guaranteed;youtube.com +bad;21;19;Bundesweiter Aktionstag zum Tag zur Abschaffung der Tierversuche am Samstag 18 4 mit Aktionen in vielen deutschen St dten;tag-zur-abschaffung-der-tierversuche.de +good;21;3;Just resting Blop;i.imgur.com +bad;21;14;Where can I read The Single Way to Victory along the General s Footsteps;self.Pyongang +bad;21;5;EU 28 Abductor in wait;youtu.be +bad;21;22;Landlord didn t return deposit from last August Claims I owe him late rent fees and is willing to call it even;self.legaladvice +bad;21;5;22 M4F The stepdaughter RP;self.dirtypenpals +bad;21;10;Beautiful colors and detailed designs in this hand blown glass;i.imgur.com +bad;21;8;The sources of the world s major rivers;imgur.com +bad;21;7;For my cake day I present Liam;imgur.com +bad;21;12;What is the most foolish thing you say to your cat dog;self.AskReddit +bad;21;25;10 years ago I tried to make the most offensive folk music possible and called it blaspholk Still chasing that dragon The Trinity Demo 2005;youtube.com +good;21;13;I salute all of you on your posts about the shitty pokemon tattoo;imgur.com +bad;21;5;Yes You Can Catch Insanity;nautil.us +bad;21;8;Frozen Graves 0 11 Skip Fight Cheat 1600;self.kryptguide +bad;21;11;Why We dont see more MMORPG Games only alot Turn Based;self.AndroidGaming +bad;21;11;H BS AWP Asiimpv W 13k each or 25 for 2;self.GlobalOffensiveTrade +bad;21;6;Question Cayman FATCA Portal Multiple FIs;self.FATCA +bad;21;7;Global GamerChicks is recruiting active lv40 players;self.SummonersWarGuilds +bad;21;15;TOMT Song Rock Song That Follows a Boy Frim Childhood To Adulthood About Sexual Abuse;self.tipofmytongue +bad;21;5;local legend gets a documentary;charmcitywire.com +bad;21;12;What did the homecoming queen have to do to win those flowers;facebook.com +bad;21;7;How long does the closed beta last;self.pathofexile +bad;21;16;Anything less would be tepid half measures and i want the real deal 4 MIC abigailgrey;abigailgrey.tumblr.com +bad;21;10;Any way to turn off the mic in ranked matches;self.MortalKombat +bad;21;14;Looking for a place to stay hang in Tempe the night of April 20th;self.ASU +bad;21;6;Where do you look for freelancers;self.Entrepreneur +bad;21;9;Academic Brief survey about purchasing a common good All;kuclas.qualtrics.com +bad;21;11;Google Analytics undefined is not a function for avg session duration;imgur.com +bad;21;5;More one piece perler Zoro;imgur.com +bad;21;14;What is a clue that suggests a person is not suited for their job;self.AskReddit +bad;21;10;H Fire Serpent FT amp Cyrex MW W 55k 16k;self.GlobalOffensiveTrade +good;21;12;Chiefs release tight end Sean McGrath who wants to return to NFL;kansascity.com +bad;21;15;Angela Merkel shitting obscene sculpture by Let 3 Flight 3 rock band from Rijeka Croatia;lupiga.com +bad;21;7;What s the answer to number 9;akinator.me +bad;21;7;Can t find work that I enjoy;self.depression +bad;21;14;Can I system transfer from the new 3ds XL to the older 3ds xl;self.gaming +bad;21;21;META Just because we may have a reset it doesn t mean that everyone should act like morons because of it;self.GlobalPowers +good;21;6;And everyone was scared of Ebola;imgur.com +bad;21;4;Help Identifying this Palm;i.imgur.com +bad;21;5;x1 lf3 Crota nm fresh;self.Fireteams +bad;21;2;Sailor moon;self.sailormoon +bad;21;2;mechanic question;self.Bitcoin +bad;21;3;Colossus or Deadpool;self.ContestOfChampions +bad;21;3;overview for peixotoo;reddit.com +bad;21;13;TIFU by Trying to Woo a girl on the way home from Coachella;self.tifu +good;21;10;Pope Francis Gender theory is the problem not the solution;ncronline.org +good;21;7;r NASCAR Post Race Quiz Texas Spring;qzzr.com +good;21;22;UPDATE Is my boyfriend s 30 M behavior toward me 22 F normal or is this a huge red flag Slightly NSFW;self.relationships +bad;21;9;Thoughts on us having a citizenship area at spawn;self.InfiniteLabs +bad;21;11;Audio Musician For Hire I m willing to work for free;self.gameDevClassifieds +bad;21;7;Xbox One VoG HM Atheon CP LF2M;self.Fireteams +good;21;3;Swallowing your ambitions;soggycardboard.com +good;21;14;You Me and the Universe Portugal Photographed by Pedro Quintela 2048 x 1365 OS;drscdn.500px.org +bad;21;13;Willie McGinest Raymond Clayborn and Leon Gray finalists for Patriots hall of fame;patriots.com +bad;21;6;Help My baby is getting sick;self.pcmasterrace +bad;21;9;Indiana parents question blacks only 3rd grade field trips;self.autotldr +bad;21;21;What would happen if two cars of similar size driving on the highway bump perfectly into each other while changing lanes;self.AskReddit +bad;21;17;MRW I m asked how many times I m going to watch the new Star Wars teaser;gfycat.com +bad;21;5;RIP Charged bolt not good;self.diablo2 +bad;21;6;MegaCraft Westeroscraft The Twins and Riverrun;youtube.com +good;21;6;MegaCraft Westeroscraft The Twins and Riverrun;youtube.com +bad;21;2;Rathian Plate;self.monsterhunterclan +bad;21;9;22 F4R Anywhere How do you deal with loneliness;self.r4r +bad;21;5;My two need friendship bracelets;imgur.com +bad;21;9;Kanye West s first cover feature on The FADER;thefader.com +bad;21;7;Mac has slowed down tremendously Maybe hardware;self.mac +good;21;7;Star Wars The Force Awakens teaser 2;m.youtube.com +good;21;5;DISC Nijiiro Days Chapter 17;bato.to +bad;21;12;What is your most memorable turned his her your life around memory;self.AskReddit +bad;21;21;Java Program Runs but i was told there was something wrong with my logic can anyone help me find the problem;self.learnprogramming +bad;21;6;I will never go camping again;self.nosleep +good;21;12;Darcy and O Driscoll took product placement to another level in 2004;youtube.com +good;21;33;Hey Maury Do you ever feel like you are about to get punched by the crazy hoes whenever you prove the father of their child isn t who they think it is 37;np.reddit.com +bad;21;9;Non Smith Scab Pads on Scab Gaskets Fresh Meat;self.rollerderby +bad;21;9;Frozen Graves 2 10 Mileena Brutality Early Lunch 4980;self.kryptguide +bad;21;21;You can only press the button once Once you do time will resume normally and the timer will begin to countdown;imgur.com +bad;21;5;A question about spartan strike;self.halo +good;21;7;HIRING InfoSec Systems Adminisrtator Boston Maryland Virtual;self.sysadminjobs +bad;21;14;Made this at BMW with a remote laser machine that usually welds BMWs together;imgur.com +good;21;9;VVashed vp 80 s thrash band releases nevv song;self.metaljerk +bad;21;16;Hydra E Shisha giveaway on Instagam Enter for a chance to win a FREE electronic hookah;instagram.com +bad;21;23;Going stargazing in the mountains this weekend with some city friends Looking at this spot but would welcome suggestions from anyone more knowledgeable;google.ca +bad;21;17;Fang Jiong mouth only foot ten foot mouth piece corpse Wang Wang Jiong feet before Kan all;self.ShitfECEsSay +bad;21;17;Question For those who use flash drive and YUMI to install OS and do other bootable stuff;self.software +bad;21;12;H Whole Dota 2 Invent Many Good items W CSGO keys knife;self.GlobalOffensiveTrade +bad;21;9;i ve had dire in my past 12 games;self.DotA2 +bad;21;9;MSI Afterburner crash game when you Alt Tab out;self.GrandTheftAutoV_PC +bad;21;12;I made a Riven guide for people who want to learn Riven;self.leagueoflegends +bad;21;5;19 m4a need moar friends;self.snapchat +good;21;5;What are your favourite soundtracks;self.CasualConversation +bad;21;12;lt Catharsis gt goes 7 9 with Aileron and Hydroflux 8 15;i.imgur.com +bad;21;12;In Depth Thoughts on Deadman Mode and Possible Shortcomings of the System;self.2007scape +bad;21;19;GENNYB S S W A G Some Weird Ass Games Episode 9 Jazzpunk Part 2 BAD SUSHI VOMIT TIME;youtube.com +bad;21;5;Declining support for death penalty;people-press.org +bad;21;17;21 m haven t had a girlfriend in a long time is it because of my looks;self.amiugly +bad;21;6;My booty just swallows these panties;i.imgur.com +good;21;1;Spywares;self.talesfromtechsupport +bad;21;6;Did anyone s order date update;self.AppleWatch +bad;21;12;Who do you think is the best ADC S of these people;self.leagueoflegends +bad;21;13;Diskussion Schr cks rechter Arm ist viel muskol ser als sein linker Arm;self.rocketbeans +bad;21;7;Glass slippers Cinderella was totally a stripper;self.Showerthoughts +bad;21;7;You ll know the truth one day;self.atheism +bad;21;7;Record cell outputs in a different worksheet;self.excel +bad;21;3;Yoga pants day;4yimgs.com +bad;21;4;And Tinder delivers again;imgur.com +bad;21;8;WikiLeaks Releases an Archive of Hacked Sony Emails;thenextweb.com +good;21;15;brag Yesterday I received the following gifts My BrMo package amp a pregnant feral cat;self.breakingmom +bad;21;19;DEV Free Online management software for fees and kitties of Teams Ideal for treasurer of groups or sports teams;teamtreasurer.eu +bad;21;5;I found an Armadyl buckler;self.AbdelAlog +bad;21;3;68000000XP in Constitution;self.AbdelAlog +bad;21;14;Sharon Friedman Frankfurt 2015 Natural movement with sword and without All is the same;youtube.com +bad;21;8;I m not a 3d artist per se;gfycat.com +bad;21;9;Has anyone here seen SWANS live How was it;self.Music +good;21;15;Forked River Brewing Company Here s why you can t buy beer at our store;forkedriverbrewing.com +bad;21;8;PS4 The Pacific Standard Finale and future heists;self.HeistTeams +bad;21;14;If the remaining queens had to switch styles what would be your dream pairs;self.rupaulsdragrace +bad;21;17;I don t know why but I made that guys shitty charmander tattoo into my watch face;imgur.com +bad;21;8;Place of Skulls The Fall Doom 2002 US;youtube.com +bad;21;5;Is 9gag down for you;self.9gag +good;21;6;F rsvarsberedningens betyg icke godk nt;svd.se +bad;21;3;DIY canister filters;self.PlantedTank +bad;21;9;Vocal expert infers what the Neanderthal voice sounded like;youtube.com +bad;21;10;My friends mom caught a ride home with a stranger;self.ca_twitter +bad;21;6;Crack eggs easily using your genitals;self.shittycookingadvice +bad;21;16;18th century dildo found by archeologists in in an ancient latrine in Gda sk Poland NSFW;i.imgur.com +bad;21;3;Naut 2 0;self.naut +bad;21;3;gta 5 ERR_GFX_D3D_INIT;self.PiratedGTA +bad;21;5;Reliable Vendor for Group Buy;self.fakeid +bad;21;5;Any news on the SDK;self.steelseries +bad;21;5;Silky Solids and Pirate Findings;redditgifts.com +bad;21;1;Uaaahhh;i.imgur.com +bad;21;25;Serious Women of Reddit how does sexism translate into the internet ANY place of the internet gaming social media etc even our very own Reddit;self.AskReddit +good;21;13;I don know why but this is on the board in math class;imgur.com +bad;21;24;I just would like to take a second to thank all the people like this guy Not even mad that he hit my car;i.imgur.com +bad;21;3;Tippa T Loco;youtube.com +bad;21;5;sif benzema false9 thsnks guys;self.FIFA +bad;21;21;It s 9 00 PM here it s getting dark and I m waiting at a bus stop for my guy;self.trees +bad;21;2;Comp 101;self.OutreachHPG +bad;21;14;Kam Woo Sung in Talks to Star Alongside Lee Young Ae in New Drama;soompi.com +bad;21;6;WP My Name s Not Schmitty;self.WritingPrompts +bad;21;5;FIRED UP FOR THE CUP;imgur.com +bad;21;7;De At Ch Only Interstellar Digital UltraViolet;imgur.com +bad;21;4;add me plz m2444020;self.AppNana +bad;21;4;Xb1 NF LF2 Fresh;self.Fireteams +bad;21;6;Suggestions for an offroad GPS app;self.geocaching +bad;21;5;Rule 2 in a nutshell;i.imgur.com +bad;21;3;Home routine request;self.Fitness +bad;21;4;Zoro in perler beads;imgur.com +bad;21;3;ps4 daily run;self.Fireteams +bad;21;15;Sign up for DirecTV You get 100 and I get 100 Cheaper than Comcast too;refer.directv.com +bad;21;18;Mods can we make a weekly noob question thread Or start pointing newbies to the Monday mega thread;self.Filmmakers +bad;21;2;o o;i.imgur.com +bad;21;13;There s a red pixel that s apparently part of r adviceanimals CSS;i.imgur.com +bad;21;4;The temptation is real;imgur.com +bad;21;3;DKCR JonTron Barrel;youtube.com +bad;21;12;Wake N Break No 74 A Slinky Funk Groove In 4 4;youtube.com +bad;21;12;Is it possible to get Navigation on the 2014 Chevy Cruze LT;self.Chevy +bad;21;43;US Lap Dance 2014 A na ve fianc e becomes a stripper to support her father s hospital bills cast includes James Remar Lynn Whitfield Stacey Dash Carmen Electra and Lisa Raye who played a stripper 20 years ago in The Players Club;self.NetflixBestOf +good;21;9;Interview with David Kim by O Gaming regarding LotV;youtube.com +bad;21;24;45 M4F Denver Great conversationalist who loves everything oral interested in a fwb situation with a confident relaxed woman Cross post from r dirtyr4r;self.colorador4r +bad;21;11;Returned only part of the prize will return if everything else;self.csgolounge +bad;21;26;Friend on FB is challenging people to figure out what this is It s associated with audio production or transmission but that s all I know;imgur.com +bad;21;3;Haiku Spider Yelling;youtube.com +good;21;17;Goodbye my old friend Retiring my Quad Core Oil Cooled PC in favor of a newer model;imgur.com +bad;21;10;Fear and Loathing Against Neoreaction from Fellows on the Right;moreright.net +bad;21;6;Ever had your gobbler eaten out;self.thebutton +bad;21;15;I think I have a duck in my butt and a frog in my throat;self.Showerthoughts +good;21;44;Sarah Silverman Admits She Made Up a Wage Gap Story Sarah Silverman admitted that a story she told about wage discrimination was a lie and then said people who might consider her lie a reason to question the movement she was supporting were maniacs;nationalreview.com +good;21;12;New look at Leto s transformation into the Joker from his snapchat;comicbook.com +bad;21;7;anyone have an opinion on this stuff;self.SpaceBuckets +bad;21;7;Nutritional diet advice for heart health needed;self.nutrition +good;21;6;I need some MLB Tv help;self.baseball +bad;21;7;Update 144 5lbs 45 day update pictures;self.BTFC +bad;21;9;15 Amazing Kids Toys to Make with PVC Pipes;kidsactivitiesblog.com +bad;21;8;Black Sails actors put through rigorous training Keto;muscleandfitness.com +bad;21;4;Every Thief s dream;imgur.com +bad;21;3;Overview for collective_cognition;reddit.com +bad;21;3;Combining Powders Seeds;self.Vitamix +bad;21;8;Netrunner LCG Covenant Store Championship 2015 Game 3;youtube.com +bad;21;9;Predicted time for Wave 5 cancelled orders Nintendo UK;self.amiibo +bad;21;6;Just found this subreddit My Intro;self.nycgaymers +bad;21;2;Vacation strategies;self.PointsPlus +bad;21;3;New to Dogecoin;self.dogecoinbeg +bad;21;7;Hockey Rules at the Playoff Game Seriously;i.imgur.com +bad;21;8;Congressional Chairmen Strike Deal on Pacific Trade Accord;nytimes.com +good;21;8;Is anyone else worried about drafting another wing;self.timberwolves +bad;21;10;What are the most useful and iteresting websites in game;self.GrandTheftAutoV +bad;21;13;You saw my Beginner Guitar post This is the same but for Clarinet;self.sanantonio +bad;21;17;Bryan Storm apocalyptically unfunny djent fan whines about how people disagreeing with him are destroying the scene;youtube.com +bad;21;3;Worried about Pritchard;allaboutspurs.com +bad;21;14;Please help me restore and colour in an old newspaper for a birthday present;self.picrequests +bad;21;3;Red Fox Setup;imgur.com +good;21;13;The 2015 Downhill Disco Recap by Wheelbase has arrived Enjoy the groovy skating;wheelbasemag.com +bad;21;3;low vs ultra;imgur.com +bad;21;6;Help change the world with education;youcaring.com +good;21;45;Dzhokhar Tsarnaev s Family Break Their Silence say This was all fabricated by the American special services as well as They Have Tried Numerous Times to Contact him to Encourage him to fire Judy Clarke but Haven t Once Been able to Speak with him;time.com +bad;21;4;Tasks to induce creativity;self.Neuropsychology +bad;21;3;REQUEST Customizable stories;self.Erotica +bad;21;9;Al Qaeda captures major airport oil terminal in Yemen;cbsnews.com +bad;21;17;TIL there was a Party in the UK that supported repelling immigrants with longbows and burning oil;en.wikipedia.org +good;21;7;I ve started a new hobby RetrogamingLEGO;instagram.com +bad;21;25;It s the morning of your wedding What thoughtful gift would you love to receive from your soon to be husband before the reception begins;self.AskWomen +bad;21;10;REQUEST Best quest non fantasy genre movies of all time;self.MovieSuggestions +bad;21;3;First Order UK;self.ModafinilCat +good;21;3;Good evening officer;imgur.com +bad;21;5;Configurable product attribute sort order;self.Magento +bad;21;24;Indirectly related to Financial Careers but how can I go about learning and training how to speak professionally competently and clearly in business scenarios;self.FinancialCareers +bad;21;60;H Keys also selling an M9 CH FT with 69 blue but who the hell cares about that W Katowice Stickered weapons and A Famas Styx FN and offers on my M9 CH keys and max bets preferred BUYING MY OLD KNIFE BACK 10 keys to who ever finds me the owner s who doesn t love 10 free keys;self.GlobalOffensiveTrade +bad;21;6;David Hasselhoff True Survivor synthwave 2015;youtube.com +bad;21;2;Judo Gifs;self.judo +bad;21;11;Let s Play Grim Fandango Remastered Ep 5 Falling For Rubacava;self.LetsPlayVideos +bad;21;12;Hey guys I wrote a song about Sips Clowntown xpost r sips;youtu.be +bad;21;21;How do I find the cell s in an excel file that contain the data linked from a separate excel file;self.excel +bad;21;3;Dumb question probably;self.mspimommas +bad;21;10;Ebola Researchers Take New Look at Risk of Sexual Transmission;nytimes.com +bad;21;9;Generic Version of Copaxone Multiple Sclerosis Drug Is Approved;nytimes.com +good;21;15;Devils allowing the Penguins to practice at the Prudential Center between games 1 amp 2;twitter.com +bad;21;5;Should I contact my polygrapher;self.ProtectAndServe +bad;21;14;Opinions Will the XBox One Day One Edition ever be worth its original price;self.gamecollecting +bad;21;4;Am I Shadow banned;self.amishadowbanned +bad;21;0;;kriminalnn.ru +bad;21;14;All born on the same day 2 different strains guess which is most Sativa;imgur.com +bad;21;2;Beach bone;18sexmedia.tumblr.com +bad;21;26;Question for art history paper Does the word for fig leaf leaves sound similar to the word for vagina or any word referring to female genitals;self.italianlearning +good;21;5;Will heroes ever die down;self.yugioh +bad;21;5;Am I just being impatient;self.uberdrivers +bad;21;9;Reasons why Ukip will underperform in the upcoming election;theoccidentalobserver.net +good;21;24;I am looking for an ECE 161c tutor I will pay really well Want someone to go over his slides and homework with me;self.UCSD +bad;21;10;Share My town of cherry blossoms DA 7800 4361 7636;self.DreamCrossing +good;21;10;House sitting for my friend this week Meet Harry Poos;imgur.com +bad;21;8;This toaster oven has a Pop Tarts setting;imgur.com +bad;21;2;Ass oiling;i.imgur.com +good;21;6;Max starring in the ashram chronicles;imgur.com +bad;21;14;Mod Help What mods should I run for the best looking most photorealistic skyrim;self.skyrimmods +good;21;4;Alright Cleveland its time;youtube.com +good;21;8;Nike s new slogan is really fucking ableist;i.imgur.com +bad;21;6;Thanks I thought it was funny;imgur.com +bad;21;11;This grass grew right trough some compacted leaves leftover from winter;imgur.com +bad;21;8;Snapped this at work during a routine inspection;imgur.com +bad;21;9;Cantorus Plays Hearthstone Blackrock Mountain Part 6 DIE INSECT;youtu.be +bad;21;19;My wife s car has a button that lights up when you turn the AC off xpost r mildlyinfuriating;i.imgur.com +bad;21;12;Build Help Will the FX 8320 50 70 run GTAV 1080 60;self.buildapc +bad;21;10;WILL GIFT EAS ITEMS IN EXG FOR SOME UT COINS;self.fut +bad;21;8;TRP is just playing catch up I feel;self.asktrp +bad;21;36;Forgive me for this If I wanted to put together a song for a goofy company event with very little effort The music should be really cliche Is purchasing a template for Logic a good idea;self.WeAreTheMusicMakers +bad;21;5;Request Help needed with formula;self.BabyExchange +bad;21;8;tericusumano Honey Bee Canyon in Oro Valley AZ;lospaziobianco.tumblr.com +bad;21;30;Here is a fishing show my Tech teacher had started Appreciate the support if you could at least view it and leave a comment letting me know what you think;seafoodsafari.tv +bad;21;6;18 M4F Virtual Friend or Girlfriend;self.dirtypenpals +good;21;3;Some Ladybug stuff;i.imgur.com +bad;21;13;High seas pirate reflavoring Evil Cabals A new DM in need of help;self.DnDBehindTheScreen +bad;21;10;Electronic The Glitch Mob We Can Make The World Stop;youtube.com +good;21;27;UPDATE Thank you for all the advice r AskMen What do you do when your interested in a girl and another guy non friend is as well;self.AskMen +bad;21;14;Trying DM Scottys tile method Need advice on which looks better A or B;imgur.com +bad;21;6;MH4U Seeking Allies to Help me;self.monsterhunterclan +bad;21;9;My Nmom crashed her car a few years ago;self.raisedbynarcissists +good;21;4;32 F4M Canada Bored;self.r4r +good;21;5;Make your OWN solar system;stefanom.org +bad;21;12;How many current players in the NBA are future Hall of Famers;self.nba +good;21;10;If humans had a mating dance what would it be;self.AskReddit +bad;21;11;Interesting article posted by a certain energy drink company about WEC;redbull.com +bad;21;11;1000 HS 30 gilds on Samurai what should I do next;self.ClickerHeroes +good;21;3;My sexy gf;imgur.com +bad;21;3;The 1v1 Situation;youtube.com +bad;21;14;Honestly blizzard fix your client Ripping on HC to a crash is getting old;self.Diablo +good;21;12;proof of concept I had an idea for compact multi shot system;youtu.be +bad;21;8;Looking for guest writers on new baseball site;self.fantasybaseball +bad;21;17;Something a little different you are presented with these three time span options Which do you choose;self.choosethemoment +bad;21;2;Evan Peters;imgur.com +bad;21;29;If God truly cared he would have given men the ability to travel back in time 60 seconds after we say something we immediately regret saying to our SO;self.Showerthoughts +bad;21;5;the senioritis is too real;livememe.com +bad;21;24;Emps GM is MIA Anonymous Player For all I know he s hanging by his neck in his fucking closet Here is a reenactment;i.imgur.com +bad;21;6;Help me with the false 9;self.FIFA +bad;21;6;ArcheAge Gameplay First Look Omer Plays;youtube.com +good;21;28;I used my extremely mediocre Photoshop skills to remind you all that this battle goes beyond hockey Let s all crack a Minnesota brew tonight for good luck;imgur.com +bad;21;42;Is it a bad idea if ask my connection for some tree even though he s been convicted He seems ecstatic to sell again but idk if that now since he s been convicted that he s probably being monitored right now;self.trees +bad;21;4;College Engineering General Topic;self.HomeworkHelp +bad;21;27;Why are electronic musicians always so emo on Twitter and Facebook They re either dishing out unsolicited motivational advice or wallowing in self doubt It s exhausting;self.edmproduction +good;21;5;MOTM Watch Thread Europa League;self.FIFA +bad;21;6;Build Ready Ammo box LAN box;self.buildapc +bad;21;1;testing;self.test +bad;21;3;Recommendations probably 28DD;self.ABraThatFits +bad;21;13;I m bored at work what song have you been binge listening to;self.AskMen +bad;21;8;New design makes treadmill more like running outdoors;eurekalert.org +good;21;7;First Star Wars Battlefront in Game Screenshot;i.imgur.com +good;21;15;candidate for costume party have to be careful not to bend down too far though;imgur.com +bad;21;9;NA S Top Support LF Ranked 5 s Team;self.TeamRedditTeams +bad;21;9;Success Kid Parents of internet star appeal for help;itv.com +bad;21;5;XB1 L4G VoG HM Fresh;self.Fireteams +bad;21;11;Cities Skylines New Vexia 05 High Density Traffic and Residential Areas;youtube.com +bad;21;8;Celebrating Dual Stick Control Schemes in Game Design;gamasutra.com +bad;21;8;Mae r Saith Seren yn angen eich help;self.cymru +bad;21;8;H ST FT M4A1 S Cyrex W 34K;self.GlobalOffensiveTrade +bad;21;47;The mods at r medicine shadow deleted my meta research post about legitimate issues with vaccines claiming it was based on a personal agenda Meanwhile their frontpage has a doctor trying to raise political support for SB 277 to make vaccinations mandatory for school children in California;self.California +bad;21;15;Angela Merkel shitting obscene sculpture by Let 3 Flight 3 rock band from Rijeka Croatia;lupiga.com +bad;21;9;26 M4F I just want you to be nice;self.dirtypenpals +bad;21;6;Mono black stuff that is good;self.CompetitiveEDH +good;21;15;Compa eros vamos a por ellos el PPr gimen est acabado Larga vida a PODEMOS;self.podemos +bad;21;28;Waiting for result after final interview round and was also suggested to be considered for another position Then I saw the position listing posted today Sign of rejection;self.jobs +good;21;15;Susana no miente no lleva imputados en las listas lleva sentenciados para Presidentes de mesa;self.podemos +bad;21;7;How to do sub zeros second fatality;self.MortalKombat +bad;21;10;Haven t been paid this month What can I do;self.Advice +bad;21;8;H Steam Wallet 59 99 W Paypal 55;self.giftcardexchange +bad;21;27;Kobe then defended Lance Stevenson on Twitter So what if he can t hit 3s he s this generations Tim Duncan Lance Stevenson responded on Twitter Thazmydoo;self.nbacirclejerk +bad;21;2;Hwah not;youtube.com +good;21;19;U S soldier taking a German officer prisoner Armed with an M1918 Browning Automatic Rifle Illy France September 1944;i.imgur.com +bad;21;6;ASAP Rocky threatening random british guy;youtube.com +bad;21;2;Panorama Gif;self.workflow +bad;21;5;Zayyaf and Will Quest Snakes;soundcloud.com +bad;21;16;7x5 5 for Freedom If feedback is good maybe i ll post more to my tumblr;imgur.com +bad;21;3;I am 26;self.thebutton +bad;21;9;Rape accused army jawan commits suicide in Karbi Anglong;newkerala.com +bad;21;10;Opie s Jim Florentine impression is worse than his Chip;youtube.com +bad;21;5;GTA5 Using Oculus Rift DK2;youtube.com +bad;21;9;It feels like memories bubbling up through the music;youtube.com +bad;21;16;Radical proposal to let the states introduce income taxes will be considered says Kelly O Dwyer;brisbanetimes.com.au +bad;21;3;Future Uncertain pic;imgur.com +bad;21;1;Help;self.jetta +bad;21;4;047 ping pong bitpop;youtu.be +bad;21;7;Error could not find suitable video mode;self.assettocorsa +bad;21;5;Lake of Tears server population;self.TeraOnline +bad;21;5;As cute as a tomato;i.imgur.com +bad;21;32;All of the attention the Xanax charmander is receiving is probably making it easier for the guy to accept that it will be on his body for the rest of his life;self.Showerthoughts +good;21;0;;grani.ru +bad;21;7;Convergence Why Are Most Heroes In Gotham;youtube.com +bad;21;14;Drummer With Ion Set in need of help setting up a double bass pedal;self.Rockband +bad;21;3;Euphoria is rising;self.JakeBurnett +bad;21;3;Pirate hunter Zoro;imgur.com +bad;21;8;Baja Blast back with a partner in crime;imgur.com +bad;21;10;Path of the Demonic Rager A spell casting barbarian path;docs.google.com +bad;21;5;Patient suffering from Graves disease;imgur.com +bad;21;5;New Law Enforcement PR Campaign;imgur.com +bad;21;4;Rosalina up air nerf;self.smashbros +bad;21;37;Would anyone be interested in a subreddit for tradedangerous users It s a tool that I sometimes struggle with and I think it could be nice to have a platform for people to help each other out;self.EliteTraders +bad;21;11;HentaiPorn4u com Pic Pic of the day for April 16 2015;hentaiporn4usblog.tumblr.com +bad;21;4;Flair Profile u Creamed;self.sgsflair +bad;21;8;Is this supposed to happen New to sub;imgur.com +bad;21;8;6 Months of Skincare Fails and Holy Grails;eyesonrhi.com +bad;21;12;H FN Bayonet Fade 95 w 0 008 FV W 135k Offers;self.GlobalOffensiveTrade +good;21;5;Something something AMD graphics card;walyou.com +good;21;5;1 net carb Chia Pudding;self.keto +bad;21;8;Watching Canadian Big Brother to pass time and;self.bbuk +good;21;4;Sick of the agression;self.fatpeoplehate +bad;21;11;Warlock just dealt 29 dmg with 3 mana how on earth;self.hearthstone +bad;21;12;How can you get people to ration water Information incentives and guilt;reddit.com +bad;21;10;Star Destroyer Star Wars The Force Awakens Teaser Trailer 2;i.imgur.com +bad;21;4;GTA V PC Heist;youtube.com +bad;21;10;x post from r mma Rickson Gracie vs Painful Reflexologist;youtube.com +bad;21;6;I found a crystal triskelion fragment;self.hsiW +bad;21;9;So the Gravity Falls short scene from a movie;dailymotion.com +bad;21;3;Overview for Keegan8693;reddit.com +good;21;24;Mom throws sex and drug party for 16 year old Daughter Naked twister bathroom sex and mom pleasuring all holes in front of everyone;self.NewsOfTheStupid +bad;21;14;Real Madrid s se or o through the eyes of a Real Sociedad supporter;ibtimes.co.uk +bad;21;6;Data driven job scheduling in Hadoop;blog.cask.co +bad;21;10;How to party up to join a job with friends;self.GrandTheftAutoV +bad;21;9;The original Crystal Pepsi commercial from Super Bowl XVII;youtu.be +bad;21;7;Build Help What monitor do i choose;self.buildapc +bad;21;7;David Hasselhoff True Survivor Retrostation 1 10;youtube.com +bad;21;8;Drone para controlar manifesta es apresentado no Rio;blogs.estadao.com.br +bad;21;18;Revan Is that you in The Force Awakens Who else thinks they took some design cues from SWOTR;twitter.com +bad;21;14;In Finland s open prisons inmates have the keys x post from r finland;pri.org +bad;21;6;Episode 1 Prison Architect Season 4;youtube.com +bad;21;15;Please stop going to TA s office hours and asking them to do your assignment;self.gmu +bad;21;23;Australian Journalists reporting on Asylum Seekers and or Detention Centres are added to blacklists by the Aus Federal Police and Department of Defence;rotundamedia.com.au +good;21;5;Cappadocian Valley Turkey OG 4191x1610;i.imgur.com +bad;21;9;Giveaway Frozen Synapse Prime gift Mexico SA region locked;self.SteamGameSwap +bad;21;9;Dotcom speeding offense could lead to deportation in weeks;torrentfreak.com +bad;21;7;Reddit s inconsistent use of commas separators;imgur.com +good;21;6;New Ships From The Force Awakens;imgur.com +bad;21;3;Non lethal rounds;self.h1z1 +bad;21;8;Did Spotify s radio algorithm get doper today;self.spotify +good;21;8;Game Grumps Animated Mega Compilation Part 2 Reuploaded;youtube.com +good;21;11;Looks like Makeout Videotape s Ying Yang is getting a reissue;instagram.com +good;21;6;Champion Discussion of the Day Leona;self.summonerschool +bad;21;11;Tate s Hell State Forest OC 3264 x 2448 u lmp515k;i.imgur.com +bad;21;4;LF L Kali friends;self.PuzzleAndDragons +bad;21;2;Favorite Gif;self.CasualConversation +good;21;5;Malthael D3 Reaper of souls;facebook.com +bad;21;13;It s been a while since I posted will you f orgive me;i.imgur.com +bad;21;10;If you could change your nationality which would you choose;self.AskReddit +bad;21;21;WWII U S soldier taking a German officer prisoner Armed with an M1918 Browning Automatic Rifle Illy France September 1944 2761x2221;i.imgur.com +bad;21;3;Please add j9561228;self.AppNana +bad;21;2;Another grush;self.slashdiablo +bad;21;17;A compilation of all the wedgie videos I ever put on youtube lt Lots of nudity gt;youtube.com +bad;21;11;iPhone 4 running iOS 5 becomes unresponsive after entering safe mode;self.jailbreak +bad;21;6;How does draws work in MM;self.GlobalOffensive +good;21;7;On the Time 100 most influential list;imgur.com +bad;21;1;931517;self.kahootcrashing +bad;21;7;Week79 Random Day free for all comments;self.Protestantism +bad;21;8;Speedruns GR 35 cycling zdps vs zuni build;self.Diablo3witchdoctors +bad;21;10;Are there any patch notes about the game play balance;self.ssb4 +bad;21;9;Japan Festival 4 18 amp 4 19 Herman Park;self.houston +bad;21;3;self Pokemon Baddies;i.imgur.com +bad;21;6;Android phone disconnects despite full WiFi;self.hearthstone +bad;21;18;If this fucking MannerCookie guy and all this fucking other exploiters not get Banned S3 is allready Dead;self.Diablo +bad;21;3;Acthar and BF;self.breastfeeding +bad;21;4;100 83 4 17;urasunday.com +bad;21;10;Not totally sure what to do with my fence jumper;self.Dogtraining +bad;21;12;23yr 177cm 75kg 13 bf More or less complexity for further development;self.Fitness +bad;21;8;How to join a KotH in a room;self.MortalKombat +good;21;26;Hats and apparently there was a list to get into the store today literal roll call in NYC Weird Anybody know what s up with that;imgur.com +bad;21;10;Please assess and help me assemble my Something Wonderful schedule;self.aves +bad;21;9;The dogma of work originates with the free masons;self.conspiro +good;21;8;New Kylo Ren s starfighter from second teaser;i.imgur.com +bad;21;24;Just packed up my PS3 controllers and all my games and am about to head to Gamestop and exchange them to buy a PS4;imgur.com +bad;21;4;Your favorite Spotify playlists;self.electronicmusic +good;21;8;Madman Bolt Thresh hipster way to play support;youtube.com +bad;21;14;Judge Napolitano Rand Paul Broadening His Base Every Bit as Libertarian as His Father;self.conspiro +bad;21;7;It s Now Easier to Get Headgear;self.smashbros +bad;21;13;Will the content software available for download be limited according to each device;self.GearVR +bad;21;12;How can you get people to ration water Information incentives and guilt;ocregister.com +bad;21;13;Has anybody had a long healthy relationship from a rebound relationship F 26;self.relationship_advice +bad;21;11;Ricardo Quaresma vs Bayern Munich Individual Highlights UCL 15 4 15;youtube.com +bad;21;2;feeling positive;self.stopdrinking +bad;21;24;Among the thousands of fatal shootings at the hands of police since 2005 only 54 officers have been charged Most were cleared or acquitted;self.conspiro +bad;21;4;Happy Coachella Wkend 2;imgur.com +bad;21;6;What s your worst travel experience;self.AskReddit +good;21;8;Non US Sunscreens that don t cause breakouts;self.SkincareAddiction +bad;21;12;House Votes To Repeal Tax On Richest 0 2 Percent Of Americans;self.conspiro +bad;21;8;My cover of Elastic Heart by Sia POP;youtube.com +bad;21;9;Shit My car alarm won t stop going off;self.MechanicAdvice +good;21;7;21 F4M PA Friends and maybe more;self.dirtyr4r +bad;21;16;I was once kissed by Detox at a club back when Season 5 was still airing;self.rupaulsdragrace +bad;21;9;Reddit how did you ask your SO to prom;self.AskReddit +bad;21;12;NA H 3DS MewTwo DLC W 200 coin or gold reward game;self.ClubNintendoTrade +bad;21;10;hey guys i wrote a song about the clowntown burner;youtu.be +bad;21;18;Found these little guys while hiking had an argument on whether they were spiders or not Are they;imgur.com +bad;21;14;Daryl Bradford Smith With CII South Africa 4 8 2015 Explaining the Zionist NWO;self.conspiro +bad;21;25;I have just found out that Birmingham has their own superhero The Statesman and now I am disappointed that each town doesn t have one;self.britishproblems +bad;21;10;Wrapped the faux wood trim in my 2003 Acura MDX;imgur.com +bad;21;5;StarWars Fantasy Becomes Reality Tomorrow;starwars.ea.com +bad;21;2;Titration confusion;self.AskScienceDiscussion +good;21;5;Awesome long infographic on Everest;washingtonpost.com +bad;21;17;Come check out my Flygon EX deck build and play testing also 4 to give away D;twitch.tv +bad;21;8;Matia Bazar Elettrochoc Italian Avant Electro Pop 1983;youtube.com +bad;21;11;Our schoolchildren are treated worse than prisoners x post r wtf;self.conspiro +good;21;9;Great Jobs to Learn Skills Relevant to Actuarial Work;self.actuary +good;21;25;This is an old one but it s been a while since I posted Since the weather is warm again here s my sweaty abs;imgur.com +bad;21;15;People who train very seriously 4 times a week What do you do for jobs;self.bjj +bad;21;26;apology for poor english when were you when mr garlic dies i was at home eating fast socs when ooer ring garlic is die n o;deadgarlic.files.wordpress.com +good;21;11;Superior Court judge rules Suge Knight will stand trial for murder;oregonlive.com +bad;21;6;only sadists can become reddit admins;imgur.com +bad;21;10;War on cancer is a scam I need resources Thanks;self.conspiro +bad;21;15;Angela Merkel shitting obscene sculpture by Let 3 Flight 3 rock band from Rijeka Croatia;lupiga.com +good;21;4;Midday Music Thread 96;self.MLPLounge +bad;21;6;Did practice really start at 330;self.serialdiscussion +good;21;16;What books have you read that when you finished you were like wtf my life changed;self.booksuggestions +bad;21;10;ELI5 Why are glass jars tapered in at the top;self.explainlikeimfive +good;21;17;Google Trends Interest in the NDP and Wildrose seems to be up PC s not so much;google.ca +bad;21;8;Clinton Scooby Doo Van Parked In Handicap Spot;youtube.com +bad;21;12;Farewell Hyrule King The Legend of Zelda The Wind Waker Orchestral Remix;youtube.com +good;21;22;Eisenhower George Marshall did they have a fall out during the 52 election What was their relationship like once Dwight became president;self.AskHistorians +good;21;14;In an office of 35 people only 3 of which including myself are women;livememe.com +bad;21;7;FM15 Tactics Real Madrid 4 3 3;youtube.com +bad;21;8;George W Bush s African dance r whitepeoplegifs;i.imgur.com +bad;21;3;Lim dul deck;self.EDH +bad;21;23;When asked about why they didn t make the playoffs this year Russell Westbrook said We didn t have Tim Duncan nuff said;self.nbacirclejerk +bad;21;12;The 9 11 Truth Movement The Top Conspiracy Theory a Decade Later;self.conspiro +bad;21;3;best state residency;self.newtothenavy +bad;21;9;Strange Rear Door Locking Problem Peugeot 206 06 plate;self.Cartalk +bad;21;7;Question What are your opinions on Kosovo;self.socialism +bad;21;5;Robyn Call Your Girlfriend Pop;youtube.com +bad;21;6;Who is this with Renna Ryann;self.tipofmypenis +bad;21;11;Deal Reached on Fast Track Authority for Obama on Trade Pact;self.conspiro +bad;21;12;Lord Janner was the DPP right What can the complainants do next;barristerblogger.com +bad;21;14;Game was not working since yesterday after the update until I got an idea;self.crusadersquest +bad;21;4;Air Cooling optimizations upgrades;self.overclocking +good;21;10;What s the most fun you can have with 15k;self.AskReddit +bad;21;7;Valve finally updates the Steam android app;imgur.com +bad;21;5;Megatron by koch43 on DeviantArt;koch43.deviantart.com +bad;21;9;Santa Clara GA Floor Will there be actual seats;self.gratefuldead +bad;21;5;Clan Paragon open to all;self.civcrafter +bad;21;5;PC Karambit Ultraviolet Factory New;self.GlobalOffensiveTrade +bad;21;6;When you bush to new toothtunes;youtube.com +bad;21;4;Failed my first test;self.actuary +bad;21;6;Action Zone Game Modes in Development;self.theaftermath +bad;21;24;A doctor at a psychiatric hospital wanted to know which patients were safe to leave the center so he put them through this test;self.Jokes +bad;21;9;EUW S Gold LF Jungle ADC Support Ranked 5v5;self.TeamRedditTeams +bad;21;9;DIPLOMACY Egypt recognizes Ogaden as a part of Somaliland;self.worldpowers +bad;21;8;Confused about ESOP plan for very small company;self.personalfinance +good;21;4;New Force Awakens Trailer;youtube.com +bad;21;19;I just get the achievement for completing 100 online matches WHY HAVE NONE OF THEM BEEN WITHOUT LAG xbone;self.MortalKombat +bad;21;3;Grey or Gray;self.thebutton +bad;21;7;Showing Some Love For the MKX Rookies;self.MortalKombat +bad;21;8;I m on the verge of giving up;self.stopsmoking +bad;21;7;Where can i watch the entire series;self.gravityfalls +bad;21;6;I m so sick of this;self.SuicideWatch +bad;21;6;It s Okay to Be Different;youtube.com +bad;21;16;Table IAmA Maury Povich here I d be surprised if ANYBODY asks me a question AMA;self.tabled +bad;21;31;Millions upon millions of people don t need to see a trailer for Star Wars The Force Awakens No one needs to be convinced to watch a new Star Wars movie;self.Showerthoughts +bad;21;6;nexus feat Miku New Song EDM;nicovideo.jp +good;21;6;Pretty Cool javascript Zelda 2 alike;pomedia.co.uk +bad;21;4;85ms and from eu;self.kohi +bad;21;11;Which movies deserve a sequel but will probably never get one;self.AskReddit +bad;21;11;16 04 2015 Kriens Luzern siegt in Schaffhausen Neue Luzerner Zeitung;luzernerzeitung.ch +bad;21;7;H 19 keys W 7 AK Redlines;self.GlobalOffensiveTrade +bad;21;22;Giving away a free 20 Blizzard card to a random person in chat tonight on the Nexus Owls 1 30 AM EST;self.heroesofthestorm +bad;21;16;TIL Maynard James Keenen turned down an appointment to the US military academy at West Point;en.wikipedia.org +bad;21;7;UD Club Golf Spring Swing Golf Scramble;self.Delaware +bad;21;10;Cheated on and left now he wants half the house;self.legaladvice +bad;21;2;Dressing Room;i.imgur.com +bad;21;8;Atlantis V2 now available at Ace Vaper Canada;acevaper.ca +bad;21;7;Buckcherry Crazy Bitch 3 23 nsfw lyrics;youtube.com +good;21;5;Hitting a pigeon at 70mph;imgur.com +bad;21;6;Do Messages have a GASPRICE value;self.ethereum +bad;21;2;So surreal;imgur.com +good;21;6;Internet Box Re listen Ep 108;self.Internet_Box +bad;21;19;Bonner Linktipps am Donnerstag ber Datensicherung im Konjunktiv Petersberg im Fr hling Remise im Garten und Schleimmonster Bundesstadt com;bundesstadt.com +bad;21;11;I took photos during weekend 1 of Coachella have a looksie;facebook.com +bad;21;6;What did you play during recess;self.AskReddit +bad;21;12;5 needed for super casual 10 team NL only H2H categories league;self.fantasybaseball +bad;21;9;La maquina expendedora me trabo las galletitas y lrpm;self.Argentinacirclejerk +bad;21;8;ITS FINALLY FUNCTIONAL MY LONG RANGE INTERPLANETARY STAGE;imgur.com +good;21;5;Why would anyone smoke this;i.imgur.com +bad;21;4;Tokyo Ghoul RE predictions;self.TokyoGhoul +good;21;5;CollegeHumor If CrossFitters Took Yoga;youtu.be +bad;21;9;Your Favorite Weapon Iodine release Test Press for sale;self.brandnew +bad;21;11;Any Canadian vendors have a blue sigelie 150 or Omni edition;self.Canadian_ecigarette +bad;21;18;Fun Tigers moments over the past few years Good way to spend 20 minutes with a smile on;youtube.com +bad;21;10;Look at the babies steps Super cute isn t it;youtube.com +bad;21;2;code m269106;self.AppNana +bad;21;10;Lets Play Dishonored Episode 4 iron Man on Very hard;youtube.com +good;21;8;Contest Taco the town Get it Get it;self.Random_Acts_Of_Amazon +bad;21;6;Va Questions questions that need answering;self.legaladvice +bad;21;21;A teacher redditor receives a punny illustrated apology not from one of his students u exit65 replicates and finishes the drawing;reddit.com +bad;21;4;Congorock Babylon 4B Remix;soundcloud.com +bad;21;12;Harrison Ford and Chewbacca in Star Wars Episode VII The Force Awakens;i.imgur.com +bad;21;22;What are some technical analysis strategies used by traders that allow the trader to produce a short term summary for the stock;self.stocks +bad;21;6;19F4F I want a good friend;self.exxxchange +good;21;15;Chrome update today killed BF plugin see here for fix X post from r Battlefield_4;self.Battlefield_4_CTE +bad;21;8;The Iron Throne stopped by my office yesterday;imgur.com +good;21;13;ASAP Rocky Bout to start a fight in London Video description is hilarious;youtube.com +bad;21;7;Looking for a job with Corrections Canada;self.socialwork +bad;21;14;22 M4F looking for girls who want to talk and see where it goes;self.DirtySnapchat +bad;21;11;Fashioning a better Ebola suit with sewing machines and chocolate syrup;pbs.org +bad;21;8;S05E01 Some thoughts on The Wars to Come;whatelseisonblog.com +bad;21;26;Please fill out this survey I am doing research on fast food purchasing habits Targeted at Millennials but everyone is welcome to participate Answers are confidential;surveymonkey.com +bad;21;10;Franklin shipwreck divers offer live video tour of HMS Erebus;cbc.ca +bad;21;4;It was like Christmas;i.imgur.com +bad;21;11;Final 3 Prediction Thread Update 32 Sets Still In the Running;reddit.com +bad;21;7;Hillary Clinton Praises Progressive Champion Elizabeth Warren;reddit.com +bad;21;7;Bell Labs shows off 10 Gigabit DSL;reddit.com +bad;21;8;Weird ass music video What does it mean;youtube.com +bad;21;18;Frustration overload as we try to become a succesful delivery boy Saxon Plays Retro City Rampage Episode 3;self.LetsPlayVideos +bad;21;8;the new jurassic park movie looks really good;41.media.tumblr.com +bad;21;6;This will light up your day;youtube.com +good;21;10;What is something that you do differently from everyone else;self.AskReddit +bad;21;3;Almost The Weekend;imgur.com +bad;21;6;Cops Harass Assault Kids in Park;youtu.be +bad;21;11;Why are Serbians so open to teenage girls dating older men;self.serbia +good;21;11;Finally all back together and fired up Let s ride wait;imgur.com +bad;21;14;Flag of the Republic of Canada used during the Upper Canada Rebellion of 1837;upload.wikimedia.org +bad;21;3;Favorite opening credits;self.survivor +bad;21;6;That feeling when you re up;imgur.com +bad;21;3;Good Hearthstone Podcasts;self.hearthstone +bad;21;4;Star Wars Battlefront teaser;gfycat.com +good;21;6;No I cannot deal with today;imgur.com +bad;21;3;My Smoothie Recipe;self.gainit +good;21;19;How do I allow a remote friend w o Lightroom to easily add captions tags to my LR images;self.photography +bad;21;5;New dome So slimey 3;imgur.com +bad;21;6;OTGW by ah bao on DeviantArt;ah-bao.deviantart.com +bad;21;6;When you finally get your flair;reactiongif.org +bad;21;4;G r mot styckning;di.se +bad;21;10;How do I set up a lan game on Warsow;self.pcmasterrace +bad;21;25;Does anyone know of a 2bdrm house that will be up for rent by the fall that wont cost me an arm and a leg;self.kzoo +bad;21;5;Summer Sublease at University Trails;collegestudentapartments.com +bad;21;24;A Fiscal Program for Rand Paul He Wants to Balance the Budget Here s How He Should Do It x post from r economics;economonitor.com +good;21;6;Does his wig supply never end;i.imgur.com +bad;21;8;Failing Michael s yoga mission over and over;self.GrandTheftAutoV_PC +bad;21;24;Yesterday brazilian workers took the street against a project of law that will open the gates of outsourcing all the activities in the workplaces;imgur.com +bad;21;19;Now that The Button is getting so much press I m excited my account was created before 4 1;self.thebutton +bad;21;15;r CTbeer is giving away a pair of tickets to the Thread City Hop Fest;self.ctbeer +bad;21;10;Can anyone post savefile Dropbox not working due to traffic;self.PiratedGTA +good;21;5;Tahu and PoF Combi MOC;imgur.com +bad;21;10;Greece would struggle to find creditors outside Europe says Schaeuble;bbc.com +bad;21;8;Suggestion My one wish going forward regarding exotics;self.DestinyTheGame +bad;21;2;The Japanese;self.taiwan +bad;21;11;Foreign correspondent Richard Engel will be Stanford s 2015 Commencement speaker;news.stanford.edu +bad;21;7;He rides to class on his chariot;imgur.com +bad;21;5;WTS WTT 9999 FS dickbutts;self.Coins4Sale +bad;21;15;Graphical full move set comparison for Mewtwo in Super Smash Bros Melee and Wii U;eventhubs.com +good;21;13;Movie TV Rumour Netflix Defenders To Appear In Avengers Infinity War Part Two;bleedingcool.com +bad;21;13;Rodrigo Rato detingut per presumpte frau emblanquiment i al ament de b ns;vilaweb.cat +bad;21;11;Ed Sheeran ft Tori Kelly John Mayer Don t Pop Mashup;youtube.com +bad;21;2;Pets Fans;40.media.tumblr.com +bad;21;9;Can someone help me identify this spider South Fla;i.imgur.com +bad;21;32;I didn t grow up watching Star Wars but am trying to get into it because my wife is so excited about the next film This has been my day so far;imgur.com +bad;21;25;USA H Mass Effect Trilogy Borderlands 2 Jak and Daxter Collection more PS3 Fallout New Vegas Standard X360 l W Version Swaps Offers X360 WiiU;self.gameswap +bad;21;9;Who is your closest relative in the old country;self.Genealogy +bad;21;5;Serge Ibaka needs to improve;self.Thunder +good;21;7;Nerd Completes Red Faction Guerrilla Part 15;youtube.com +bad;21;4;Bright Green Hama Beads;self.beadsprites +bad;21;15;You are only allowed 1 single use of the word fuck in PG 13 movies;nextmovie.com +bad;21;8;Group Hug RP No KOS Arena Active Admins;self.ReignOfKingsServers +bad;21;23;TIL Jackie Robinson was an active Rockefeller Republican and the first black columnist for a major non black newspaper The New York Post;reason.com +bad;21;4;Holy Crap WEIRD Projection;self.AstralProjection +good;21;20;This literally just happened I m only starting to recover but the experience will haunt me for years to come;self.fatpeoplehate +bad;21;9;This guy installed a bottle opener on his truck;imgur.com +bad;21;11;Walt Sicknin SP 12 Gauge Dil Maddy Remix Hip Hop 2014;soundcloud.com +bad;21;5;Target Launch Event in NY;i.imgur.com +bad;21;10;Bandwidth is So Cheap Why Do I Need WAN Optimization;sangfor.net +bad;21;5;It all started with one;self.amiibo +bad;21;18;Let supports trade support starting items runic spelltheifs ancient coin for free or at least a small cost;self.leagueoflegends +bad;21;1;Bangs;i.imgur.com +bad;21;8;Matchmaking is good now Make it superb please;us.battle.net +bad;21;2;230 06;self.bitcoin_price +bad;21;7;Reading A Book in A Foreign Language;self.linguistics +bad;21;13;URGENT Lady posts pictures of trashed lake house rented by SAE of miami;self.Frat +good;21;1;Gunner;imgur.com +bad;21;12;If Voting s Not The Answer What Is Russell Brand The Trews;youtube.com +bad;21;17;First time here D Morning wood Had too much fun last night to cum more though c;imgur.com +bad;21;9;Old Settler s Music Festival 3 Day Pass 80;austin.craigslist.org +good;21;1;Sharp;i.imgur.com +bad;21;8;Pictures That Perfectly Define Types Queues In India;dailyfeed.co.in +bad;21;3;Feeling warm Via;36.media.tumblr.com +bad;21;12;TOMT Song Game What Game do I know Kid Rock Bawitdaba from;self.tipofmytongue +bad;21;8;NA P2 Supp ADC LF Ranked 5s Team;self.TeamRedditTeams +bad;21;22;Michigan business owner refuses to serve gay people because you can t put a car together with all bolts and no nuts;salon.com +bad;21;7;New Vancouver Police Chief is Adam Palmer;self.vancouver +bad;21;13;8 Things You Should Never Eat If You re Trying To Lose Fat;hiit-blog.dailyhiit.com +bad;21;3;derpy lion mouse;i.imgur.com +bad;21;16;Krass aus dem Lateinischen von crassus dick grob Da h tte Eddy nicht zahlen m ssen;self.rocketbeans +bad;21;17;Anyone know of a good way to paste a long list of data in every other row;self.excel +good;21;12;Ice fishing walleye from this past season Can t wait for opener;imgur.com +good;21;15;MFW my boyfriend burns out mid workout and I m still going till the end;imgur.com +good;21;10;Did the tulip festival get wiped out by this storm;self.SaltLakeCity +bad;21;3;Olight S10R Disassembly;imgur.com +bad;21;10;NYS Used Car Dealer refuses to fulfill terms of agreement;self.legaladvice +bad;21;8;Pandora s Tower with Jormungandr April 12th 2015;youtube.com +bad;21;8;18 Medical card best price seattle 0 comments;reddit.com +bad;21;9;Why VR Demos Are Usually Trade Show Exclusive Opinion;self.virtualreality +good;21;7;Aatrox at the top of summoners rift;self.leagueoflegends +good;21;18;Giant galaxies die from the inside out Star formation shuts down in the centers of elliptical galaxies first;sciencedaily.com +bad;21;23;Just making sure I m not missing out on a trade secret aside from Safeway there aren t any grocery stores downtown correct;self.askportland +bad;21;8;PS4 anyone want to grind some ROC strikes;self.Fireteams +bad;21;2;Debate Thread;self.unitedkingdom +bad;21;19;Question Are you thankful we are out of the Europa League so we can focus on getting Top 4;self.LiverpoolFC +good;21;9;Suddenly There was Snoring Heard From the Other Room;imgur.com +bad;21;9;Blonde amateur babe anal creampie on casting 10 24;awesomeporntube.com +bad;21;4;PC this kara fade;self.GlobalOffensiveTrade +bad;21;12;If Voting s Not The Answer What Is Russell Brand The Trews;youtube.com +bad;21;2;Damn it;self.thebutton +bad;21;14;Scientists of Reddit what is your job and what are you currently working on;self.AskReddit +bad;21;50;Which of these patterns should we as the LGBT community in Israel adopt in relation to the gay and lesbian people who were murdered in the Holocaust And how We have no personal relation to homosexuals who were sent to camps and almost none of us personally knows these survivors;awiderbridge.org +bad;21;5;I would love some help;self.Mommit +good;21;11;Ho appena litigato con un parente per un rapporto lavorativo AMA;self.italy +bad;21;13;Non pressers are like millenials they all get a participation trophy by gazeebo88;reddit.com +bad;21;44;Chris Christie jump starts campaign in New Hampshire Dogged by six months of scandals anemic polling numbers and his home state s fiscal problems the New Jersey governor is barreling into New Hampshire this week unfazed that his 2016 obituary has already been written;politico.com +bad;21;16;Amplifier Mongrel s Anthem What s the most positive affirming prog song you ve ever heard;youtube.com +bad;21;5;Elephant enjoys his birthday cake;youtube.com +bad;21;6;IKEA introduces new wireless charging furniture;ikea.com +bad;21;6;2500 Visa Gift Card Wedding Present;self.churning +bad;21;11;Help Android Device Manager not working x posted in r androidhelp;self.LGG3 +bad;21;7;ELI5 Why do people hate brown people;self.explainlikeimfive +bad;21;14;Can we take a moment to talk about the dedication of the older actors;self.StarWars +bad;21;4;Ed Rush amp optical;self.ElectricForest +bad;21;3;PS3 LF2M Nightfall;self.Fireteams +good;21;4;GO BOLTS DESTROY DETROIT;i.imgur.com +bad;21;12;Vechs Cities Skylines New Vexia 05 High Density Traffic and Residential Areas;youtube.com +bad;21;19;I uh I was going to leave a snarky comment I ll just leave this here TW Star Wars;i.imgur.com +bad;21;3;Anthony Davis Art;i.imgur.com +bad;21;20;Our wedding site 2015 redesign showcases some of our films over the last 2 seasons mainly shot in Western Canada;airau.ca +bad;21;3;Amazing Dog Sketch;imgur.com +good;21;8;Oh no the annual changing of the password;i.imgur.com +bad;21;9;LF Agnis Freya VT Bells you tell me amount;self.AdoptMyVillager +good;21;12;Gray Elekk Neutral with an interesting draw mechanic Good with Gang up;hearthcards.net +bad;21;9;XVIII wieczny sztuczny penis z Gda ska archeologiczn sensacj;historia.newsweek.pl +bad;21;3;Lemon Tree Daydream;self.justpoetry +good;21;5;Badbro and the Xanax blowup;self.badpeoplestories +good;21;48;This whole post is gold Looking at a naked woman for her physical attributes doesn t make you think of her as being nothing more an sex object When I order a pizza I don t think the pizza boy is just a pizza delivery machine Checkmate feminists;np.reddit.com +bad;21;10;DC Area s Biggest Restaurant Crawl gt in Silver Spring;tastetheworld.fentonvillage.org +bad;21;1;yo;self.trollabot +bad;21;18;21M Planning a trip through Europe need some advice and passport questions Dublin Paris Spain Croatia Brussels London;self.solotravel +good;21;13;Big Giant Circles The Glory Days Spotify Link this is an amazing track;play.spotify.com +good;21;3;She is taken;41.media.tumblr.com +bad;21;4;HELP Pro version disappearing;self.kustom +bad;21;23;Constantly having to sign in again to my account on Chrome yellow triangle in profile switcher am I doing something wrong What gives;self.chrome +bad;21;7;Solid mash stuck mash Advice explanation please;self.Homebrewing +good;21;22;US Military Increasingly Hostile to Christians Groups Say Translation We can t oppress others as freely as we have in the past;newsmax.com +bad;21;1;picsonly;imgur.com +bad;21;4;Got a new locker;imgur.com +good;21;4;Owner Q amp A;self.Nationals +bad;21;8;Thank you u foulacyy for the phone cards;self.Assistance +good;21;21;Editorial The New Stateman s account of Sad Puppies isn t even pretending to hide its anti GG narrative pushing anymore;archive.today +bad;21;6;Suggestion Thanks Bungie you ruined crucible;self.DestinyTheGame +good;21;10;Hotfix 4 16 15 Ability Visual Effects and Mac Freezing;forums.elderscrollsonline.com +bad;21;6;Orphan Black Season 3 Extended Look;youtube.com +good;21;9;Senate kills bill to make Bible official Tennessee book;tennessean.com +bad;21;23;Andre Ayew discusses his past with Marseille and his plans for the future His future seems likely to be in the Premier League;skysports.com +bad;21;4;Bottom layers no beuno;self.curlyhair +good;21;20;Folks who have the Network who wants to watch and live discuss the Raw is War after Wrestlemania 14 tonight;self.SquaredCircle +bad;21;13;mewithoutYou announce tour album name and release date Pale Horses out June 16th;mewithoutyou.com +bad;21;26;My first attempt at a YouTube series about my climb out of silver part educational mostly comedy this is the The Silver Tier Survival Guide trailer;youtube.com +bad;21;8;9 Things Emotionally Intelligent People Won t Do;forbes.com +bad;21;10;A feeling one might experience in JP s GTA apartment;translate.google.com +bad;21;4;21 M4F Celebrity RP;self.dirtypenpals +bad;21;9;H AK Vulcan FT W 20 Bucks Via Paypal;self.GlobalOffensiveTrade +bad;21;8;H Butterfly Knife Fade FN W 115 keys;self.GlobalOffensiveTrade +bad;21;8;How Teenage Mutant Ninja Turtles Should Have Ended;youtube.com +bad;21;8;Epidemic 58 Eric s Phone Call mistressmoxie EDITION;5x9.org +bad;21;17;What is the last text message that you sent that could be taken horribly out of context;self.AskReddit +bad;21;13;Strong winds tore the roof of a two storey building in Chita Russia;dailymotion.com +bad;21;3;Yoga Pants day;4yimgs.com +good;21;10;This has saved me so such money over the years;imgur.com +bad;21;22;Link is not funny but I can see so many jokes not even if you were the last guy in the world;cnn.com +bad;21;7;Best site to find a nanny gig;self.Nannies +bad;21;1;Hwah;vine.co +bad;21;11;Museum welcomes a new exhibition by local artists Who is Oakland;oaklandnorth.net +bad;21;3;Ready for baja;imgur.com +bad;21;6;3 New Records Comedy Indie Punk;imgur.com +bad;21;9;Sea Lion Pup Wanders to High School Gets Detained;nbcnewyork.com +good;21;19;Do any of you guys feel like you re falling behind If so how do you deal with it;self.AskMen +bad;21;11;What now extinct early internet service or site do you miss;self.AskReddit +bad;21;6;My pick ups of the day;i.imgur.com +bad;21;3;BroSplit vs PPL;self.Fitness +bad;21;5;26 F4R Bored at work;self.Kikpals +good;21;7;BBC 1 TV debate live discussion thread;self.unitedkingdom +bad;21;3;arma3 players needed;self.subdreddit +bad;21;9;Comment sorting started defaulting to new instead of best;self.help +bad;21;21;Want to pick up a fun new hobby GameT1me is hosting a FREE introduction to Magic The Gathering every Thursday night;facebook.com +good;21;15;Pussy don t cost anything doe 52 You ve obviously never had a girlfriend 81;reddit.com +bad;21;12;Help I think someone got into my reddit account and deleted it;self.help +bad;21;10;Shawn Mendes Performing on GMA in Times Square on Friday;orsvp.com +bad;21;11;HIRING InDesign Expert Draft post please do not apply until finalized;self.forhire +bad;21;5;Charli XCX Maxim May 2015;imgur.com +bad;21;7;Help with personal statement for midwifery post;self.Midwives +bad;21;4;Anime fans in Berlin;self.berlin +bad;21;9;Scvhost virus Using 80 cpu Returns after being deleted;self.computerviruses +bad;21;8;Need help forging Resume Gold Retail Warehouse focused;drive.google.com +bad;21;10;People who already pressed the button and still comment here;self.thebutton +good;21;13;Tempo Free Soccer Cross and Through ball chance conversion in MLS and abroad;mlssoccer.com +bad;21;20;TIL Shrek the world s wooliest sheep was taken to an iceberg off the shore of NZ to be shorn;3news.co.nz +bad;21;15;So anyone know if that s it for leaks for the rest of the Celebration;self.StarWarsLeaks +bad;21;11;If I pay for amateur porn they re no longer amateurs;self.Showerthoughts +good;21;9;Ike waiting for my nephew to drop a chip;imgur.com +good;21;13;Danny Salazar called up from AAA to start Saturday April 18th vs MIN;twitter.com +good;21;4;Kitty mounting her dildo;i.imgur.com +good;21;6;NYDFS Expects Final BitLicense Very Soon;coindesk.com +good;21;29;Just finished a game of Mill Rogue VS Priest with a total of 12 Thaddius hitting the field over the course of the whole game I love Gang up;self.hearthstone +bad;21;34;TIL that Megan Fox listens to Britney Spears when flying to overcome her fear of flying I know for a fact it is not my destiny to die listening to a Britney Spears album;archive.news.softpedia.com +good;21;4;Will Buy Rally Towel;self.stlouisblues +bad;21;12;Signs of Slowdown in Oil Production Send the Price Up for Now;nytimes.com +bad;21;11;Online Price of Huawei Honor 7 in India and Full Specs;india.shop-forum.net +bad;21;5;Ready for tonight s trip;imgur.com +bad;21;2;Stage Fatality;self.MortalKombat +bad;21;10;H pudge Mix Set full mode W Dota2 keys Bettable;self.Dota2Trade +bad;21;2;Google Maps;self.blackberry +good;21;9;Burn it Down Trio Musician s Guild of Tyria;self.Guildwars2 +bad;21;7;When I wanna feel better about myself;imgur.com +bad;21;6;Has anyone legitimately done every trick;self.TrueSkate +bad;21;7;Progressive Technical Symphonic Black Metal Singularity Monolith;youtu.be +bad;21;12;E cigarettes are erasing anti smoking gains LA Times article on CDC;latimes.com +bad;21;11;Secret Documents US Turned Blind Eye to Israeli Nuclear Weapons Program;sputniknews.com +bad;21;11;Ukraine to Pay Veterans 42 Million for 70th Victory Day Anniversary;sputniknews.com +bad;21;4;Melisandre birthing a shadow;i.imgur.com +bad;21;10;If we wanted to could we crack the earth apart;self.AskScienceDiscussion +bad;21;26;Vid otron induit ses clients d passer leur forfait en laissant le syst me de notification de consommation tomber en panne et d cline toute responsabilit;self.montreal +bad;21;17;Event driven Data or How I Learned to Stop Living in the Present and Travel Through Time;airpair.com +bad;21;9;Any one see any available MA jobs this week;self.newtothenavy +good;21;7;Should SETI Beam the Internet into Space;youtube.com +bad;21;4;Need help with anxiety;self.childfree +bad;21;12;What are some interesting position battles on your team for next season;self.nfl +good;21;4;my most favourite VSTs;i.imgur.com +bad;21;10;Amazon s Survival Horror Game Lost Within Launches on iOS;toucharcade.com +bad;21;7;gfycat GIF BBW Selena Star s Jiggle;gfycat.com +good;21;4;Haircut for board picture;self.USMC +bad;21;12;Broke and awaiting tax return 1 57 in the bank Western NY;self.RandomActsOfPizza +bad;21;6;ps4 Lf1m HM VOG templar cp;self.Fireteams +bad;21;6;David Blaine Street Magic YouTube Edition;youtube.com +good;21;17;Serious What non English words do you know that have very deep or hard to translate meanings;self.AskReddit +bad;21;16;Last year I got to see Sir Elton up close One of the best days ever;imgur.com +bad;21;5;Pearl made a new friend;i.imgur.com +bad;21;8;Games with features similar to dawngate community effort;self.dawngate +bad;21;7;Morning blowjob from a dark haired cutie;imgur.com +bad;21;8;A Distant Relative High on a Rock 1930s;imgur.com +bad;21;4;Here we go again;self.stopdrinking +good;21;7;Holinka says more abilities will be pruned;self.wow +bad;21;4;That root system though;imgur.com +bad;21;11;Yoda Is It Thou Figure In 14th Century Manuscript Looks Familiar;npr.org +bad;21;4;Scientists Probe Puppy Love;npr.org +bad;21;26;One of the best rants about the state of international relations as it pertains to religion that I ve heard in awhile Worth the 6 minutes;dotsub.com +bad;21;14;Kosovo s foreign minister to be arrested if he visits Belgrade Serbian Interior Ministry;tass.ru +bad;21;3;Cross Realm Question;self.wow +bad;21;20;To those who ordered the UNDFTD x Bape x Adidas collab are you guys also having trouble with your order;self.Sneakers +bad;21;34;I m going to be honest i have no funny caption for this clusterfuck of images that is done to react to an event that might or might not be negative to an user;imgur.com +bad;21;12;DPR leader says many Ukrainian troops killed 300 wounded nearby Donetsk airport;tass.ru +bad;21;18;Question Watches similar to the Orient Bambino that aren t Hamilton or Tissot in the 400 650 range;self.Watches +bad;21;13;Iran nuclear deal can be secured by UN Security Council resolution Russian diplomat;tass.ru +bad;21;2;Oceansize Meredith;youtube.com +bad;21;5;First star wars battlefront screenshot;abload.de +bad;21;28;No Spoilers God damn it I KNOW the romance is stupid unrealistic and such a typical young teenagers taste But I can t stop reading I love it;self.The100Books +bad;21;5;I can never play again;i.imgur.com +bad;21;8;I m fat and I jogged karma please;reddit.com +bad;21;9;No DirectX 10 or 11 adapter or runtime found;self.GrandTheftAutoV_PC +bad;21;3;Recipes of Belize;chaacreek.com +bad;21;6;Cycling 74 Presents Max 7 Hang;cycling74.com +bad;21;4;PS4 Crota Normal LF4M;self.Fireteams +bad;21;4;24M seeking summer housing;self.denverlist +bad;21;4;March of the 55ers;i.imgur.com +good;21;8;Bklyn slumlord brothers busted for trashing apts officials;nydn.us +bad;21;9;ps4 lfg vog nm fresh 31 lock Psn shibzhead76;self.Fireteams +bad;21;9;EVO 15 S Gaming Laptop Contest 3 Days Left;gleam.io +bad;21;4;Official decree of shenanigans;self.thebutton +bad;21;6;LAXX The Invisible Invaders KAPSYZ Remix;soundcloud.com +bad;21;11;Fat Yoga NYC The Best Plus Size Studios In New York;ibtimes.com +bad;21;6;Grandmaster offering coaching for any race;self.starcraft +bad;21;9;Connect Rich Dating Sites 2015 Complete Review and Rating;topmillionairedatingsites.com +bad;21;7;f or give me for my sins;li.co.ve +bad;21;12;Signs of Slowdown in Oil Production Send the Price Up for Now;nytimes.com +bad;21;8;XB1 Buying XB1 Coins Safe Fast Payments ELITE;self.MCSXbox +bad;21;9;39 female Washington USA looking for a few penpals;self.penpals +bad;21;5;Backlinked by a porn forum;self.SEO +bad;21;5;Lcd tv for PC gaming;self.pcmasterrace +bad;21;5;ember s relation to handlebars;self.emberjs +good;21;14;Casual How well travelled are you Current or former US residents of any age;docs.google.com +bad;21;4;You can t escape;self.creepypasta +bad;21;16;If the country you live in was a person what kind of person would the be;self.AskReddit +bad;21;2;Turning Blue;i.imgur.com +bad;21;17;Star Wars The Force Awakens Trailer Gives Fans Their First Look At Han Solo And Chewbacca VIDEO;ibtimes.com +bad;21;8;I want to go on an exploration adventure;self.EliteDangerous +bad;21;5;Best drugs for roller coasters;self.Drugs +good;21;2;Brah problems;i.imgur.com +bad;21;5;My Experience With Adirondack Vapor;self.electronic_cigarette +bad;21;3;Captain Falcon hyes;scontent-ord.xx.fbcdn.net +bad;21;5;Pillars of Eternity Epic Review;self.projecteternity +bad;21;9;Official Bisu joins SKT returns to SC2 for LoTV;team-aaa.com +good;21;7;I ve finally nailed her high note;vine.co +bad;21;2;Aged Saison;self.beer +bad;21;9;Can someone post the exact lyrics to Perfect Disguise;self.ModestMouse +good;21;20;The Party Political Broadcast by CISTA Cannabis Is Safer Than Alcohol running in East Lderry W Tyrone and N Down;order-order.com +bad;21;6;I can watch this all day;self.thebutton +bad;21;7;Are we doing the flashback episodes discussion;self.IASIP +bad;21;15;148 457 16 Grandpa Lou doesn t mess around x post r 90sCartoons r funny;reddit.com +bad;21;4;Phecda amp Parish playing;i.imgur.com +bad;21;24;Employers If you had to hire from a pool of people who only listed their single best characteristic what would you be looking for;self.AskReddit +bad;21;26;RT IraHeatBeat The Heat s 20 total rebounds in their Dec 5 loss in Milwaukee were the fewest in a game by a team this season;twitter.com +bad;21;3;CyanogenMod 12 1;self.LGG3 +bad;21;13;Star Wars Episode VII art shows off villian Kylo Ren s menacing mask;theverge.com +bad;21;27;RT IraHeatBeat Mario Chalmers eight steals vs Knicks was NBA season single game high with Whiteside s 12 blocks vs Bulls also the NBA single game high;twitter.com +good;21;5;Simple Questions April 16 2015;self.femalefashionadvice +good;21;13;The manliest of all manly hair brushes OC x post from r justmanlythings;imgur.com +good;21;5;Do your thing Gooners ssnhqSanchez;twitter.com +bad;21;16;Conor McGregor claims he would kill Floyd Mayweather in 30 seconds if the pair ever fought;skysports.com +bad;21;11;New Star Wars The Force Awakens Teaser Chewie We re Home;slashfilm.com +bad;21;9;Almost done Weekly B S T April 17 2015;self.irrational_abbztract +bad;21;6;Teen bates for bf of webcam;dirtysexyteens.info +bad;21;15;BF4 RHIB Boat Humping Green Crayon Of Death amp Stolen Quad Multi Kill BF4 FUN;youtu.be +bad;21;7;Weekly B S T April 17 2015;self.AustralianMFA +good;21;6;TB should get a mediocre PC;self.Cynicalbrit +bad;21;12;Bloodborne Video How could this happen to me X post from Bloodborne;youtube.com +bad;21;8;Reactive Single Page Applications with Dynamic Dataflow Paper;simonjf.com +bad;21;9;uhm zoro looks significantly different from fishman island arc;self.OnePiece +bad;21;18;Venezuela acusa a Felipe Gonzlez de haber dirigido grupos paramilitares para asesinar a los que polticamente le contrariaban;elmundo.es +bad;21;15;Please help I think I gave personal information to a fraudulent person over the phone;self.legaladvice +good;21;7;Bartolo Colon Isn t Fat The Onion;self.baseballcirclejerk +bad;21;9;r Briggs Weekly Random Discussion Thread April 17 2015;self.Briggs +good;21;25;U S Coast Guard Sends Out Security Bulletin Urging Vigilance In The Coming Days While Recapping Previous Terror Attacks That Have Occurred In Late April;imgur.com +bad;21;14;RHIB Boat Humping Green Crayon Of Death amp Stolen Quad Multi Kill BF4 FUN;youtu.be +bad;21;3;Just a few;imgur.com +bad;21;29;Flight Attendants Gate Agents of Reddit do you feel like you have become sales people having to charge for little things snacks bags plus seating and pushing Mileage programs;self.AskReddit +bad;21;3;Return exchange diapers;self.beyondthebump +bad;21;8;How Toronto can break down Washington s D;raptorsrepublic.com +bad;21;4;Mac Client Patching issue;self.elderscrollsonline +bad;21;9;App downloads not working on 5 0 2 G2;self.AndroidQuestions +good;21;9;Pokemon Snap Dangling Fruit PART 4 Grumpcade Ft ProJared;youtube.com +bad;21;10;ITAP of Urquhart Castle on the shore of Loch Ness;i.imgur.com +bad;21;21;This is my first day taking concerta XL to people that take this how were the first few days of it;self.ADHD +bad;21;13;Can you recommend an add on greasemonkey script to turn pages background dark;self.firefox +bad;21;4;Fantasy Book Corey Graves;self.SquaredCircle +good;21;5;No type of rolling ability;imgur.com +bad;21;7;The Fixx One Thing Leads To Another;youtube.com +bad;21;11;New Star Wars The Force Awakens Teaser Chewie We re Home;slashfilm.com +bad;21;8;Star Wars The Force Awakens teaser trailer 2;kottke.org +bad;21;5;Non pressers are like millenials;self.thebutton +bad;21;6;PS4 32 titan LF HM Atheon;self.Fireteams +bad;21;27;30 Breweries for 30 Baseball Teams American League Edition We tried to select each Major League Baseball team s hometown craft brewery or as close as possible;apintofhoppiness.com +bad;21;8;Denton Corker Marshall Debuts Australian Pavilion in Venice;digitalramen.com +bad;21;5;Is my deficit too big;self.Fitness +bad;21;8;XB1 LF4M CE HM fresh run GT AmberKun;self.Fireteams +good;21;13;What is it about Latin America that led to it having travelling revolutionaries;self.AskHistorians +bad;21;14;Gf s shy student doesn t realize how funny he actually is lt 3;youtube.com +bad;21;8;couple of stamping manis using bps plate qa97;manicuredandmarvelous.com +bad;21;9;What s your biggest fear about your job career;self.AskReddit +bad;21;7;What did your winning team look like;self.fantasyfootball +bad;21;15;90s Did you hear McDonalds just bought the naming rights to that new hockey stadium;self.Jokes +bad;21;5;35 M4f Daddy is Here;self.dirtykikpals +good;21;16;Rodrigo Rato former IFM Chief and Deputy PM of Spain arrested at his home in Madrid;politica.elpais.com +bad;21;2;Vote Blukip;blukip.org +good;21;9;67 YouTube Channels of Disc Golf what s missing;i.imgur.com +bad;21;21;You know you ve seen the show too many times when this song by Andy gets randomly stuck in your head;youtube.com +bad;21;23;Help Hi r Poetry For someone looking to read poetry analysis on a few poets in description what websites offer the best analysis;self.Poetry +bad;21;15;Question Blade Of Crota no longer spawns in usual areas after patch 1 1 2;self.DestinyTheGame +good;21;24;You re playing Deadman You just killed a high ranking player and you need somewhere to lay low for 20 minutes Hop on in;i.imgur.com +bad;21;12;Where can I get GTA V for cheap from site like nuuvem;self.GTAV +bad;21;4;Are you a Brian;self.Brian +bad;21;2;No stars;youtu.be +bad;21;11;Do you think we ll get Darvenshel Shera and Narza 7;self.bravefrontier +bad;21;5;Steam Sale in a nutshell;youtube.com +bad;21;9;Kiehl s 2015 Earth Day Project in Santa Monica;i.imgur.com +bad;21;11;H Karambit Blue Steel WW W Keys PayPal Downgrade 90k quicksell;self.GlobalOffensiveTrade +bad;21;4;What does WHOOSH mean;self.OutOfTheLoop +bad;21;6;can i get some negative karma;self.karma +good;21;23;Ubisoft Store Spring Sale Daily Deals include Unity and FC4 40 off Stick of Truth 66 off Up to 85 off various titles;shop.ubi.com +bad;21;2;Jean Segura;self.fantasybaseball +bad;21;11;Mewtwo s Custom Moves now accessed in the Wii U version;self.smashbros +good;21;6;Best Friends Play Bloodborne Part 14;superbestfriendsplay.com +bad;21;8;Arunachal to ask Centre to review AFSPA extension;wap.business-standard.com +bad;21;7;What Is This A Computer for Ants;hackaday.com +bad;21;12;Does anyone have ANY idea how to unlock Dark Emperor Liu Kang;self.MortalKombat +bad;21;21;PS4 Gorgon CP giveaway to ONE person must allow me to cycle my characters through to get checkpoint post PSN below;self.Fireteams +bad;21;18;Serious People of Reddit Do you have a life time ban If so what where why and how;self.AskReddit +bad;21;9;A Philadelphia food blog for you to check out;foodjunkets.com +bad;21;14;Living Story Season 2 Complete for 20 less right now right here in game;self.Guildwars2 +bad;21;15;It s hard to tell whether the gray X or the red X means unsubscribe;i.imgur.com +bad;21;19;Buckingham Palace guard slips and falls in front of hundreds of tourists and almost stabs himself in the face;youtube.com +bad;21;3;Non Combat Playthrough;self.projecteternity +bad;21;4;PC Karambit Fade FN;self.GlobalOffensiveTrade +bad;21;14;RHIB Boat Humping Green Crayon Of Death amp Stolen Quad Multi Kill BF4 FUN;youtu.be +bad;21;9;Who s using the MKX ps4 fight pad controller;self.MortalKombat +bad;21;9;Request Azer s skin without the slider ending circles;self.OsuSkins +good;21;15;Video Wild Attack at 711 on Cecil B Moore anyone know the story behind this;phillymag.com +bad;21;9;Who needs fear when graced with such might tech;self.Planetside +good;21;5;Abandoned Ranger Station OC 3067x2300;farm4.staticflickr.com +bad;21;16;Just say NO rthstar Can they not just be themselves and quit pretending Makes me sad;leadinglds.com +bad;21;7;How do you deal with Master leaving;self.SubSanctuary +bad;21;16;H M9 Crimson Web MW W AWP Dragon Lore MW or anything in the price range;self.GlobalOffensiveTrade +good;21;10;We do post outrageous amount of shit on this sub;imgur.com +bad;21;9;I ve been thinking about aliens and racism today;self.CasualConversation +good;21;10;The best friend I could ve asked for growing up;i.imgur.com +good;21;7;No custom option in PS4 server browser;self.Battlefield_4_CTE +bad;21;7;Is Scotlands Gender Reassignment Protocol any good;self.asktransgender +good;21;10;What do you call Macaulay Culkin s second Italian mortgage;self.Jokes +bad;21;4;Subliminal messaging from RES;i.imgur.com +good;21;7;DISC Zhan Long Chapter 164 Thunderbolt Finger;gravitytranslations.com +good;21;8;Do you guys know what these awards are;imgur.com +bad;21;17;My mom showed me my old baby blanket never knew she was a bad ass cross stitcher;i.imgur.com +bad;21;6;GTA V PC Ammu Nation Bug;youtube.com +good;21;8;Raccoon climbs Toronto crane poops on machine deck;globalnews.ca +bad;21;9;Dzhokhar Tsarnaev Family of Boston Marathon Bomber Breaks Silence;time.com +bad;21;9;So motivated so many benefits were felt still relapsed;self.NoFap +good;21;7;Around the Verse Episode 40 35 31;youtube.com +bad;21;7;Who are the best junglers right now;self.leagueoflegends +bad;21;9;Crowd Funding Could I use it for student loans;self.Advice +bad;21;5;Herald Art blog Part 1;arcgames.com +bad;21;9;Jason Tate says knowgodsjustwork Instagram profile is 100 fake;self.brandnew +bad;21;22;What if the cuts bruises and pains we feel but can t remember getting are cause by ourselves in different dimensions timelines;self.Showerthoughts +good;21;10;InTense Tingles Thursday Rubber Gloves HQ fastASMR close up sounds;youtube.com +bad;21;9;Currently it s April 16 2015 at 03 01PM;self.every15min +bad;21;3;Immo or Slimes;self.CastleClash +bad;21;3;19f second submit;imgur.com +bad;21;7;Year Old Puppy Aggressive In Back Yard;self.Dogtraining +bad;21;9;What strumming plucking technique is used in this song;self.Bass +bad;21;6;H Mirage PIN W Skins Keys;self.Pins4Skins +bad;21;4;FaceTime audio ducking Fix;self.mac +bad;21;7;Best way to prepare for ranked matches;self.summonerschool +bad;21;2;Homo Sapiens;colta.ru +bad;21;34;Q amp A Questions and Answers The Lord intended that men and women be different and fulfill specific roles When a young woman dresses femininely she helps to keep those roles clarified and defined;lds.org +good;21;4;Carl Cox and Friends;self.ElectricForest +bad;21;19;In order to play 2 player co op games on the same PS4 do I need 2 PSN accounts;self.PS4 +good;21;9;View from the vehicle I drive in the Army;imgur.com +bad;21;35;I ve tried twisted parallel triple twisted etc but I keep coming back to this dual coils 13 wraps of 26g kanthal at 0 6 ohms Using a magma clone on a Cloupor Mini 30W;imgur.com +good;21;7;Shower time after a nice run f;imgur.com +bad;21;23;Those of you who are or have worked night shift MSS or similar what sort of morale quality of life benefits are there;self.AskNetsec +good;21;12;I should read the rules anyways I can empathize with the fish;imgur.com +bad;21;13;Kevyn Aucoin The Sensual Skin Enhancer What to mix it with for application;self.MakeupAddiction +bad;21;28;Passenger stands up for muslim family being abused on train Dunno if I should be posting this here but I m both proud and disgraced in my countrywomen;9news.com.au +bad;21;8;S05E01 Undaunted Tyrion continues to chase the dragon;i.imgur.com +bad;21;4;PS4 VoG Hard Fresh;self.Fireteams +bad;21;5;18F rate don t hate;m.imgur.com +bad;21;10;Standard Naya Heroic List from SCG States seems very intriguing;self.spikes +bad;21;14;Jel zna netko kako se ovo udo zove i gdje to ima za nabavit;self.croatia +bad;21;9;AutoModerator Guys I need your support on this thread;redd.it +bad;21;10;Add an MVP for regular games that gives bonus IP;self.leagueoflegends +bad;21;8;Chugging for Charity May 2nd www charitychug org;self.indianapolis +bad;21;6;Sample pack ejuice 0nic under 20;self.Vaping +bad;21;2;Seriously sexy;i.imgur.com +bad;21;4;Hiring Compliance Conversion Specialist;self.denverjobs +bad;21;7;Email to country clubs asking if hiring;self.jobs +bad;21;10;What is a Pleb I see it in streams alot;self.leagueoflegends +bad;21;8;Bundle Stars Shadow of Mordor Bundle 29 9;bundlestars.com +good;21;11;META Brand frequencies in best of wristchecks Dec 14 Mar 15;imgur.com +bad;21;2;Online jobs;self.GTAV +bad;21;10;Why Do We Find Things Disgusting BrainCraft Q amp A;youtube.com +bad;21;1;WTF;translate.google.com +bad;21;4;Maxim May 2015 album;imgur.com +bad;21;10;Weekly Jirga Thread Influential amp Famous Pakistanis 17 April 2015;self.pakistan +good;21;11;Build My last post was a mosque here s the inside;imgur.com +bad;21;6;bulldog with auto vacuum cleaner WTT;gfycat.com +bad;21;2;me irl;i.imgur.com +bad;21;7;Guided By Voices I am A Tree;youtu.be +bad;21;9;NA S Ranked 5 s Gold 3 LF Mid;self.TeamRedditTeams +bad;21;24;Testing against production is hard Docker can help but it doesn t give you everything Check out this new approach to cloning prod apps;blog.delphix.com +bad;21;8;Nice idea for a sub Question about WinISD;self.DesignAnEnclosure +bad;21;12;Should I take Gold Reserve Extract with white red or green vein;self.kratom +bad;21;5;Declining support for death penalty;people-press.org +bad;21;8;Slightly off topic Dark Souls in a Webcomic;self.darksouls +bad;21;6;What is the F2P pking world;self.2007scape +bad;21;7;Fixed Girl takes dead dog on subway;imgur.com +bad;21;7;What s your favorite Elder Scroll Era;self.skyrim +bad;21;7;JSano Episode 1 Prison Architect Season 4;youtube.com +good;21;1;VEHK;imgur.com +bad;21;1;849087;self.kahootcrashing +good;21;6;TIL the uk scene is shit;self.csgojerk +bad;21;9;HELP Display Recorder keeps my phone in safe mode;self.jailbreak +bad;21;6;Official r Bostonceltics playoff predictions thread;self.bostonceltics +bad;21;7;early access to lirk is sex right;self.DatGuyLirik +bad;21;11;Build Ready Gaming Computer for my little brother s b day;self.buildapc +bad;21;16;This 3DS has a second career as a masked Lucha wrestler to support meals for orphanages;imgur.com +bad;21;4;KISS With Essential Complexity;javacodegeeks.com +good;21;4;Mini PC HTPC Options;self.cordcutters +bad;21;14;Forgot to include returns and refunds from my business sales in my tax return;self.tax +bad;21;6;What happened on September 2nd 1970;self.oneplus +bad;21;4;Push Harder Finished MxF;i.imgur.com +bad;21;18;Anybody know where the best rowing canoeing spots are I m looking to get into it for exercise;self.NewOrleans +good;21;3;Crestwood Mall Redevelopment;self.StLouis +good;21;3;First post here;vidble.com +bad;21;10;Pitt News Editorial about SJP s Holocaust Remembrance Day Event;pittnews.com +bad;21;4;Deep Dish Hawaiian Pizza;youtube.com +bad;21;3;DayZ Hs gameplay;youtube.com +bad;21;10;SW Battlefront thumbnail video glimpse 1 49 seconds into video;youtu.be +bad;21;9;Italian Police Muslim migrants threw Christians overboard killing them;cnn.com +bad;21;10;Was anyone else disappointed with the execution of Janos Slynt;self.piratesofthrones +bad;21;2;Grosse chaleur;40.media.tumblr.com +bad;21;4;Big blue jug of;i.imgur.com +bad;21;6;How to handle physical damage Visions;self.Xenoblade_Chronicles +bad;21;10;GenerikB Jazzpunk Part 2 BAD SUSHI VOMIT TIME Gameplay Walkthrough;youtube.com +bad;21;20;How do I pay my estimated tax Having some doubts on whether the form or direct payment should go first;self.tax +bad;21;11;How to chose between versions of the same card GTX 970;self.buildapc +bad;21;14;Quick Question How much does everyone pay for an ounce where they are from;self.trees +good;21;2;Britt McHenry;self.barstoolsports +good;21;10;Made the Google Chrome icon with my Rubik s Cube;imgur.com +bad;21;8;Can t possibly get any wetter than this;thumbzilla.com +bad;21;9;26 f USA Seeking non romantic snail mail buddy;self.penpals +bad;21;13;Anyone else with and AMD card have this problem when playing GTA V;self.pcgaming +bad;21;4;H Paypal W Rust;self.softwareswap +bad;21;8;TIFU by participating in a discussion about plagiarism;self.tifu +good;21;11;GTA 5 PC Playthrough Angry Hulk Dude E03 Docm77 1080p 60fps;youtube.com +bad;21;3;Luke s Echo;self.StarWarsLeaks +bad;21;2;GD question;self.BabyBumps +bad;21;4;Best prepaid 4G card;self.berlin +good;21;6;Do you have a Reddit persona;self.CasualConversation +bad;21;9;How to retrieve stored MAC addresses from wifi router;self.techsupport +bad;21;6;My new favorite comedy anime Senyuu;self.anime +good;21;1;Orders;self.HFY +bad;21;3;No expiration date;self.bodybuilding +bad;21;3;Stagedive gone wrong;vimeo.com +bad;21;10;30 M4F Hot hung attached guy looking for naughty playmate;self.dirtypenpals +bad;21;6;Thank You to all 300 Heros;self.NeverwinterXbox +bad;21;11;Microtransactions detected Game Money for real Money seriously who buys this;picload.org +good;21;12;Anyone have a collection of essays stories pdfs of why people leave;self.exmormon +bad;21;8;You guys gonna catch the new Star Wars;self.milliondollarextreme +bad;21;8;Gonna see a Doc about getting off benzos;self.cripplingalcoholism +good;21;12;Without exceding 100 which monthly subscriptions like Netflix should everyone subscribe to;self.AskReddit +bad;21;13;50 50 Vintage Polish Posters of Hollywood Movies Spider performing oral sex NSFW;true5050.com +bad;21;8;What is Mr Krabs really feeding his customers;imgur.com +bad;21;33;At what stage of the transaction with a prostitute does it become illegal Just the intent to pay for sex Once you ve paid but before sex Or once everything is complete Florida;self.legaladvice +bad;21;20;Faur 9 Pr ludes op 103 Performed by Germaine Thyssens Valentin The elegance of her interpretations is worth the discovery;youtube.com +bad;21;16;Selling US 20 I ve been playing in these all morning They are ready to ship;imgur.com +bad;21;6;Turn 3 win against General Drakkishath;self.hearthstone +bad;21;4;Question Thunderlord s Perks;self.DestinyTheGame +bad;21;11;How do you possibly estimate the calories from an Indian Buffet;self.loseit +bad;21;3;Trade TEX DEN;self.RedditMadden +bad;21;11;Has anyone ever purchased one of these What was your experience;imgur.com +bad;21;7;PS4 LFG NF and WH lvl 30;self.Fireteams +bad;21;17;If every human was to suddenly realize religion was a farce would it help or hinder humanity;self.AskReddit +bad;21;9;Discussion Do you have a regime for testing Xposed;self.xposed +bad;21;7;A beautiful cover of At The Bottom;youtu.be +bad;21;20;Broodmother as a jungler It s been done I know but let s re evaluate the queen of the Mirkwood;self.DotA2 +bad;21;10;LOOKING 4k 1 3 role interested in joining USE team;self.compDota2 +bad;21;16;Selling US 20 I ve been playing in these all morning They are ready to ship;imgur.com +bad;21;11;Top NASA official defends asteroid mission and Earth research to Congress;theguardian.com +bad;21;6;Blackout Mini H FPV Gravel Pit;youtube.com +good;21;12;Su cia fecha 4 pris es e prova a quest o social;cartacapital.com.br +bad;21;4;David Hasselhoff True Survivor;youtube.com +bad;21;12;DocM GTA 5 PC Playthrough Angry Hulk Dude E03 Docm77 1080p 60fps;youtube.com +bad;21;6;XB1 LF4 Crotas End HM Fresh;self.Fireteams +bad;21;2;Ohhh Shhhii;gfycat.com +bad;21;12;Reddit what is the best Bar name that you can think of;self.AskReddit +bad;21;4;Media Introducing the Slidestep;self.DestinyTheGame +bad;21;8;Star Wars Battlefront possibly to be streamed today;self.xboxone +bad;21;11;They shouldn t have let Harrison Ford pilot a Star Destroyer;i.imgur.com +bad;21;9;The Strange remains the same for 15 April 2015;doubtfulnews.com +bad;21;10;Oh what a shiny Tengu Oh what a shiny pod;zkillboard.com +bad;21;16;What s the wittiest one liner that you learned from an adult as a child teen;self.AskReddit +good;21;9;The unemployment problem is really getting out of hand;imgur.com +bad;21;2;34 M4A;self.NSFWskype +bad;21;8;r conservative talks privilege Does black privilege exist;np.reddit.com +bad;21;30;RT PBPjasonlieser Whiteside led Heat in rebounding in 36 of his 48 games Impressive given that he didn t play a ton at first amp was injured at least twice;twitter.com +bad;21;14;r StarWars Han and Chewie then and now by u LOTRcrr 23 mins old;reddit.com +bad;21;1;Paypal;self.opskins +bad;21;12;001 SS Satori first proper song I ve made in years Electronic;ss-14.bandcamp.com +bad;21;4;TVP Magazine Fundraising Campaign;tvpmagazine.com +good;21;50;No era una broma el PP ofreci un pacto a Podemos en Andaluc a El PP legitima definitivamente a Podemos El Partido Popular se ha convertido en la primera formaci n pol tica en ofrecer un pacto parlamentario a Podemos en toda Espa a Jueves 16 de Abril de 2015;self.podemos +bad;21;10;Florida Man saved Miami police officer How could I not;miamiherald.com +bad;21;7;Seeing people press 32s makes me happy;self.thebutton +bad;21;9;Top 10 Troublemaker Cards Pony Palace Top 10 List;reddit.com +bad;21;3;Wake up Donnie;imgur.com +bad;21;7;Weight gain after stopping birth control Help;self.TwoXChromosomes +bad;21;3;Question Voltage Effect;self.Vaping +bad;21;7;Guitar Dad Teaches you Guitar 555 0182;self.stevenuniverse +bad;21;11;Can someone explain an intuitive idea behind complex and apparent power;self.ECE +bad;21;5;Forever wanting to be wild;imgur.com +bad;21;4;Help with recovering files;self.techsupport +bad;21;3;Math 4B 6A;self.UCSantaBarbara +bad;21;14;Why wouldn t Sakurai put in possible characters that majority of players want in;self.smashbros +bad;21;7;A Small Glimpse At Star Wars Battlefront;ign.com +bad;21;8;Mianite Season 2 Stream Discussion April 16 2015;self.TheRealmOfMianite +bad;21;9;Top 10 Troublemaker Cards Pony Palace Top 10 List;youtu.be +bad;21;15;Question Does anyone know if how to set up a remote control to a PC;self.buildapc +good;21;6;Arianny Celeste has high quality boobs;i.imgur.com +bad;21;13;lifestyle for when you want your fish tank to match your minimalist house;smile.amazon.com +bad;21;24;SGA Switch sub classes back and forth if you need to quickly deplete super energy to re gen heath with orbs in Crota HM;self.DestinyTheGame +bad;21;10;New update from the Norwegian team 100 complete sort of;self.duolingo +bad;21;5;Day 374 Happy but Grumpy;self.stopdrinking +good;21;3;Studying so far;i.imgur.com +bad;21;2;24M AIU;self.amiugly +bad;21;8;Double Barrell Hotdog courtesy of a bun defect;imgur.com +bad;21;6;Plain Jane Automobile Close My Eyes;youtube.com +bad;21;8;I saw my karma and thought of freedom;imgur.com +bad;21;5;Question about AR form technique;self.guns +bad;21;4;To Be Free Again;merunga.com +bad;21;8;H M4 Howl FT Best Float W 119k;self.GlobalOffensiveTrade +bad;21;9;DROP EVERYTHING AND WATCH THE NEW STAR WARS TRAILER;youtube.com +bad;21;9;How many text post can I make per day;self.help +bad;21;2;Hidden Chems;self.SS13 +bad;21;8;Evaluate My Parts List Before I Purchase Please;self.buildapc +bad;21;2;DLC timeline;self.DragonAgeCoOp +bad;21;28;Why do so many Americans feel they have some sort of authority to declare that something s authentic when they have no idea what they re talking about;self.AskReddit +bad;21;36;TIL that in 1894 in Chicago men gambled on fights between a tarantula and a centipede It takes place as a rule in a circular box about two feet in diameter such a box as cheese;npr.org +bad;21;10;Check out these panties that I m selling 40 base;imgur.com +bad;21;13;Problem I found in Assault aswell as some late rant about a change;self.Smite +bad;21;2;Playgroup Websites;self.Parenting +good;21;6;Making of the Herald Part 1;arcgames.com +bad;21;6;new meme sad man upvote ples;imgur.com +bad;21;3;Fucking naps man;self.breakingmom +bad;21;8;23M4F Instruct Me On How To Get Off;self.dirtypenpals +bad;21;2;scheduling test;self.BegbertBiggs +bad;21;9;I will make slingshot and shoo the brids away;self.Jokes +bad;21;2;Secretary Oral;nuvid.com +bad;21;4;FREE Steam Fractured Space;self.FREE +bad;21;9;The new third kit is on sale abroad rumours;imgur.com +bad;21;12;To the dude in the Type 9 around Macarthur station last night;self.EliteDangerous +bad;21;6;LIVE INTENSE PVP METROPOLIS REGION ONGOING;i.imgur.com +bad;21;3;X1 LF2M nightfall;self.Fireteams +bad;21;7;23 M4F NYC For Mutual Fun Tonight;self.RandomActsOfBlowJob +bad;21;22;Single 2008R2 Domain Controller guest on ESXi 5 5 gt guest on Hyper V 2012 Starwind Converter Can it be done safely;self.sysadmin +bad;21;5;You guys like bad pokemon;livememe.com +bad;21;7;2015 AUDI RS3 HOW IT S MADE;youtube.com +bad;21;4;Charles Garrett has passed;garrett.com +bad;21;16;AutoModerator All Hands on Jane Live at Stroodel Canadian Girl Band does 1974 German Talk show;redd.it +bad;21;7;19 M4F long term person to snap;self.DirtySnapchat +bad;21;8;Looking for the funny side of Dark Souls;self.darksouls +bad;21;17;Table IAmA We are the creators artist designer coders of the video game I am Bread AMA;self.tabled +bad;21;9;20 M4F Looking for someone as dirty as me;self.DirtySnapchat +good;21;11;Anime Club Watch 29 JoJo s Bizarre Adventure 22 26 spoilers;self.anime +good;21;12;Anime Club Voting for Anime Club Monthly Movie 19 comment to vote;self.anime +good;21;19;Anime Club Voting for Watch 30 completed Ghost in the Shell Stand Alone Complex to be discussed April 23rd;self.anime +good;21;15;The prayer I say to John Dehlin whenever I make a new post on here;self.exmormon +bad;21;9;My first scene in unreal C amp C welcome;i.imgur.com +bad;21;5;Flips on flips on flips;imgur.com +bad;21;4;Bill and the Dog;self.Jokes +bad;21;28;In the kids movie Happy Feet Mumble and his female crush stumble around a bit and fall into various sexual positions How did I not notice this before;youtube.com +good;21;8;Kagney Linn Karter Perfect Fucking Stranger 51 47;awesomeporntube.com +good;21;22;Does the regular season series matter in the playoffs I made a chart to find out using last years playoffs Round 1;i.imgur.com +bad;21;3;Caption my friends;self.exxxchange +bad;21;5;Crystal Castles Frail Electronic 2015;youtube.com +bad;21;7;Another reason I don t play PvP;self.DarkSouls2 +bad;20;2;Sophie Turner;i.imgur.com +bad;20;5;If one of us dies;self.TopGear +good;20;23;I was getting stegosaurus vibes from a ridge in Glacier National Park BC These mountains are my happy place OC 4608 X 3456;i.imgur.com +bad;20;5;New jeans same ol MILF;i.imgur.com +bad;20;15;LF Mush Hanger And Mush T V FT Bells and 5 hybrids of your choice;self.ACTrade +good;20;18;In retrospect was Anthony Davis buzzer beater three pointer against OKC the biggest shot of the regular season;self.nba +bad;20;9;Swagtrap in Garry s Mod reposted from r FNaFb;imgur.com +bad;20;4;Cute Teen Anal Cumshot;nuvid.com +bad;20;5;A J Crew The Word;soundcloud.com +bad;20;4;Dmt and drug testing;self.DMT +bad;20;16;RT PBPjasonlieser Heat set a franchise record for lineups 31 and starters used 20 this year;twitter.com +bad;20;6;Search for Sleepycabin on Google Maps;self.Sleepycabin +bad;20;7;Looking for help choosing an internet provider;self.StPetersburgFL +good;20;4;Pregnancy Achievement Unlocked Socks;self.BabyBumps +bad;20;9;Does anyone think Gwen is up to no good;self.thefollowing +bad;20;8;ELI5 Do bottling plants make their own bottles;self.explainlikeimfive +bad;20;3;Am I shadowbanned;self.ShadowBan +bad;20;11;The most popular thing on Reddit right now The Shitty Charmander;i.imgur.com +bad;20;4;Meleena 46 xray combo;self.MortalKombat +bad;20;10;Recent events for darkvision I found a crystal triskelion fragment;self.clan_name_goes_here +bad;20;54;Can someone turn the N into an F of the same font and make it 12 stars instead of 8 6 on each side It s for a FFB league gonna laser etch it on a name plate I tried once on here before but just noticed the top point got chopped off Thanks;imgur.com +bad;20;4;Holy mother of G;fap.to +bad;20;29;Never tried a Total War game before Giving away 1 copy of Rome Total War to whomever can give me the best reason why they should be the recipient;self.patientgamers +bad;20;19;Who would you be if you had never gone to school Would you still be who you are today;uneducate.me +bad;20;10;I drew an even shittier Charmander in about 15 seconds;imgur.com +bad;20;5;This will never get old;i.imgur.com +bad;20;5;Help with my study guide;self.javahelp +good;20;10;It all starts tonight Lead us to the promised land;imgur.com +bad;20;0;;youtu.be +good;20;17;Some experimental work I have been doing in the darkroom kodak tri x 400 pentax super program;flickr.com +good;20;15;PSA Watch out for these people who want to buy your skins off the market;self.GlobalOffensiveTrade +bad;20;17;SGA To the Guardians who do not have a healing weapon gear while being in Crota HM;self.DestinyTheGame +bad;20;10;Anyone else disappointed with HBO Now on the Apple TV;self.apple +bad;20;10;I present to you shitty charmander and a shitty safe;imgur.com +good;20;5;The Fast and the Potter;i.imgur.com +bad;20;7;HJC helmet owners got some bluetooth questions;self.motorcycles +bad;20;19;RT PBPjasonlieser NBA s top Q4 scorers Westbrook 7 09 LeBron 7 06 Wade 6 92 Carmelo 6 51;twitter.com +bad;20;22;RT PBPjasonlieser Heat go into next yr with a 246 game home sellout streak includes playoffs that began before LeBron s arrival;twitter.com +bad;20;8;H M9 Bayonet Doppler P2 W Keys Offers;self.GlobalOffensiveTrade +bad;20;11;EXO Cultwo Show Part 2 ENG SUBS Part 1 Previously Linked;dailymotion.com +bad;20;8;Por que e a quem Paulo Freire incomoda;pragmatismopolitico.com.br +bad;20;11;Behind Outlander on Starz True Hearts in the Highlands NYTimes com;mobile.nytimes.com +bad;20;2;Getting Giddy;self.OkCupid +bad;20;12;Recruiting Chaos Cartel 15HQ Strong Active Friendly 10 Mem TF Great Rewards;self.boombeachrecruit +bad;20;9;Help with activities related to the Airman s manual;self.AirForce +bad;20;6;GabeN why must you taunt me;i.imgur.com +bad;20;5;charging slow with lollipop update;self.LGG3 +bad;20;6;Question about characters in Director mode;self.GrandTheftAutoV_PC +bad;20;2;me irl;i.imgur.com +bad;20;2;Dog Pepe;imgur.com +bad;20;8;Wasted my click and became a dirty Purple;self.thebutton +bad;20;3;NAKED skin foundation;self.MakeupAddiction +bad;20;13;What is sowing oats and why do some men despise it so much;self.AskMen +bad;20;5;What should I focus on;self.summonerswar +bad;20;11;Extremely disappointed with the recording options in game Non director mode;self.GrandTheftAutoV_PC +bad;20;15;Blog of a woman who is herpes and her positive experiences on living and dating;ellacydawson.wordpress.com +bad;20;5;Coanda Simsport Youtube Channel Trailer;youtube.com +bad;20;10;SoccerDie is out on iOS Can you beat the game;itunes.apple.com +bad;20;9;xbox one LF3M CE HM Crota CP Gt kennethkaniff5;self.Fireteams +bad;20;5;Casing the Jewel Store crash;self.PiratedGTA +bad;20;3;Boxer Extra Deck;self.yugioh +bad;20;10;FS Air Jordan 4 Columbia sz 12 VNDS 190 shipped;self.sneakermarket +bad;20;4;JFS Bloodborne Pixel Album;pixelartus.com +good;20;10;Max must be one of the clumsiest people ever spoilers;self.lifeisstrange +bad;20;25;Kiper projects an ideal draft based on his valuations team fit Bills would draft QB Bryce Petty in 2nd and G Ali Marpet in 3rd;espn.co.uk +bad;20;9;RV DIY How to Make Your Own Campfire Starters;roadtreking.com +good;20;10;15 calories per serving Quick vinegar pickles Great side dish;self.ketorecipes +bad;20;12;Come check us out GameT1me Community Game amp Lan Center Clemmons NC;imgur.com +bad;20;5;How to LeeSin my way;self.leagueoflegends +bad;20;15;Established Bitcoin Media Platform Bitcoinist net Receives Significant VC Investment And Announces Inside Bitcoins Partnership;bitcoinprbuzz.com +bad;20;9;Anyone else getting alot of micro stutter small freezes;self.GrandTheftAutoV_PC +bad;20;5;2015 NBA Playoffs Championship Odds;self.sportsbook +bad;20;17;What drugs do you guys do when weed s not getting you where you need to be;self.trees +bad;20;25;IsItBullshit Men who are able to grow a full beard are more likely to go bald than men who are unable to grow a beard;self.IsItBullshit +bad;20;7;Athena from Bow by Lovers Without Borders;loverswithoutborders.bandcamp.com +bad;20;5;Today s Work in Progress;jwsblades.com +bad;20;2;All done;img.pornocereza.com +bad;20;4;So freaking hot blonde;4yimgs.com +bad;20;7;Express owner Richard Desmond gives UKIP 1m;bbc.co.uk +bad;20;7;What band has the most distinctive sound;self.AskReddit +bad;20;5;Middlesex Co Area Cat Surrender;self.newjersey +good;20;23;For those not familiar with TKD here s a fight between 2 of the top guys that are in Silva s weight class;youtube.com +bad;20;16;Someone must ve said the word hype the day before the Star Wars trailer came out;self.Showerthoughts +bad;20;6;Periodismo en los pa ses hispanohablantes;self.Spanish +bad;20;17;Build Help Tasked with building another PC for my company Asking for guidance on GPU por favor;self.buildapc +bad;20;14;Found an old medal in a house what can reddit tell me about this;imgur.com +bad;20;4;1980 650C 4into2 exhaust;self.HondaCB +bad;20;5;LCS Elo Rankings Finals edition;goldper10.com +bad;20;12;Los Angeles school district ditches its iPad curriculum demands refund from Apple;latimes.com +bad;20;4;Canvas shoes with jeans;self.malefashionadvice +bad;20;5;Decent picture of my dog;imgur.com +bad;20;4;Chewie we re home;imgur.com +bad;20;10;Why do you think being fit is seen as attractive;self.AskReddit +bad;20;10;How do I find stations controlled by a specific faction;self.EliteDangerous +bad;20;8;Barbarian Assualt Attack Role Quick guide Part 2;youtube.com +bad;20;5;HWYA New to TH8 attacks;imgur.com +bad;20;7;Orange will come at 3 15pm est;self.thebutton +bad;20;9;A guy with a huge cock enters a bar;self.Jokes +bad;20;4;27 M4F Fantasy Gangbang;self.dirtypenpals +bad;20;12;Hibs call for an urgent review of the governance of Scottish football;hibernianfc.co.uk +bad;20;13;What do you to care for yor feet when out on the trail;self.backpacking +good;20;13;M 17 5 10 About a year apart not much but getting there;i.imgur.com +bad;20;1;Shadows;i.imgur.com +bad;20;4;Todays Parade Never Again;self.washingtondc +bad;20;7;Ive been Playing in these all morning;imgur.com +bad;20;6;Giveaway MAG 7 Heaven Guard MW;self.randomactsofcsgo +bad;20;24;If you could save all of your possessions from a fire by giving up one treasured possession what would you give up and why;self.AskReddit +good;20;19;For some reason I feel weird rude when I use the tu form even when talking to my peers;self.Spanish +bad;20;10;Do Heavensward preorders work for Steam editions of the game;self.ffxiv +bad;20;20;Store ST Fire Serpent FT M9 Bayonet Slaughter FN Knight BTA Howl FT ST Cyrex FN Fire Serpent MW more;self.GlobalOffensiveTrade +bad;20;11;Finally decided to share my setup Sorry for phone quality pictures;imgur.com +bad;20;26;TOMT Video A semi popular funny Vine video where someone says Nothing much just chilling after someone asks if he wants to go to Chili s;self.tipofmytongue +bad;20;4;Sugababes Push The Button;youtu.be +bad;20;3;Where did I;self.Psychic +good;20;5;Who was your favorite rival;self.twitchplayspokemon +bad;20;51;REQ I m a Buffalo Wild Wings server in Memphis TN US who needs 220 for new tires all around I ve had blow outs and have no other way to get to work than my own car I will pay back 300 320 by 5 16 Paypal is most appreciated;self.borrow +bad;20;23;The Education Department says it will fine Heald College 30 million alleging the Corinthian Colleges subsidiary engaged in egregious misconduct and misled students;news.yahoo.com +bad;20;27;RT PBPjasonlieser Haslem led Heat in charges taken 16 because he eats charges for breakfast Next Chalmers 10 Walker 7 G Dragic 7 Deng 5 Hamilton 4;twitter.com +bad;20;25;RT IraHeatBeat Dwyane Wade finished season 11th in NBA in scoring at 21 5 points per game third in East behind only LeBron and Kyrie;twitter.com +good;20;5;Check out Finn s Helmet;i.imgur.com +bad;20;5;Two girls in the shower;i.imgur.com +bad;20;20;RT IraHeatBeat Heat finished 27th in league in scoring and 30th dead last in both assists and rebounds per game;twitter.com +good;20;13;Is that a Dragon Ball in last night s episode of The Arrow;imgur.com +bad;20;15;GO FOLK YOURSELF A two day folk punk show at Mutiny Cafe in Denver CO;self.FolkPunk +bad;20;10;20 M4A Fit guy in for a night of fun;self.DirtySnapchat +good;20;13;My girlfriend is the type of girl that is easy to persuade 455;np.reddit.com +bad;20;3;Vape shop raided;self.electronic_cigarette +bad;20;4;Worried about Console Population;self.elderscrollsonline +bad;20;19;The 10 Best Movies About Dictators A must watch if you love political intrigue as much as i do;self.MovieSuggestions +bad;20;12;28 M4F amsterdam long weekend ahead I want to make someone happy;self.RandomActsOfMuffDive +good;20;7;Ive been Playing in these all morning;imgur.com +bad;20;7;360 Looking for Gorgan CP on HM;self.Fireteams +bad;20;13;She was not accustomed to taste the joys of solitude except in company;self.books +bad;20;15;I can t believe I m saying this but I finally beat Dark Souls WOO;self.darksouls +bad;20;4;The anti click brigade;itsmyinfo.org +bad;20;9;ROBLOX s community can be noticed on this subreddit;self.ApocalypseRising +bad;20;3;Suggestion Reset accounts;self.2007scape +bad;20;16;H Badass M9 Bayonet Ultraviolet BTA MW Clean ring hole handle butthole W Keys or Offers;self.GlobalOffensiveTrade +bad;20;9;Gmod DeathRun Family Guy Map Funny Moments amp More;youtu.be +bad;20;8;H ST Huntsman Urban WW W Keys knives;self.GlobalOffensiveTrade +bad;20;5;Wanna Buy Some Dank Memes;i.imgur.com +bad;20;5;Tips on fixing creased plastic;imgur.com +bad;20;8;SGA Level up Eris Morn for more bounties;self.DestinyTheGame +bad;20;20;Each team gets to swap a starter with their playoff opponent What do the teams look like and who wins;self.nba +bad;20;6;Request Open in Google Docs Sheets;self.workflow +bad;20;9;PC Looking for someone to do Online achievements with;self.gtaonlinecrews +bad;20;13;Heaven Theme from Heroes of Might and Magic 5 DEMO with English Lyrics;soundcloud.com +bad;20;12;It seems Hillary Clinton has already flip flopped on 2 major issues;businessinsider.com +bad;20;44;My best friend of 22 years passed away today he lived a long and happy 22 years for a cat RIP Platypus T Rex I made an album of my favorite pictures of him I hope you all can enjoy his ugly smooshed face;imgur.com +bad;20;6;Young Running Bigger folk roots 2014;youtube.com +bad;20;7;Why are people so over sensitive today;self.AskReddit +bad;20;8;You have been kicked breaking point help please;i.reddit.com +bad;20;14;I 20 M love my girlfriend 19 F but I m a curious guy;self.relationship_advice +good;20;11;What does r Guitar think of Ed Sheeran as a guitarist;self.Guitar +bad;20;6;Help with choosing 1st EDC knife;self.knives +bad;20;8;Ill fated successors to Alex Trebek on Jeopardy;self.ScenesFromAHat +bad;20;6;Anyone into urban exploration haikyo Tokyo;reddit.com +bad;20;17;30 Day Millionaire Review System Is It Scam Or Legit How does 30 Day Millionaire Software work;self.moblereview +bad;20;4;26m4a need a plaything;self.NSFWskype +bad;20;21;what are they going to do with the long range scope when we can t use it on the moisin anymore;self.dayz +bad;20;8;Help needed with 7 Day Weather Forecast workflow;self.workflow +bad;20;5;Selling universal cartographics data question;self.EliteDangerous +bad;20;10;Star Wars The Force Awakens Official Teaser 2 1 59;youtube.com +bad;20;9;How my 2 cats fight each other human version;self.funny +bad;20;12;What determines how much you get as a reward for a mission;self.GTAV +good;20;6;Brick s UHC Highlights E41 Pandemonium;youtube.com +bad;20;19;1 2 3 1 12 If you multiplied the numbers from 1 to would you get something equally bizarre;self.askmath +bad;20;17;RT PBPjasonlieser Bosh played 44 games and led Heat in scoring 19x rebounding 23x amp assists 3x;twitter.com +bad;20;7;Legs are strong and arms are weak;self.Stronglifts5x5 +good;20;4;AKM polymer recoil spring;i.imgur.com +bad;20;51;In the last few years there have actually been few directors that have actually completed as a lot in such a short time span as David Fincher In a concern of regarding fifteen years Fincher has actually increased with the ranks to turned into one of one of the most looked;plurk.com +bad;20;4;Hard treasure trail completed;self.vC225 +bad;20;5;League of legends Big Brothers;self.leagueoflegends +bad;20;3;Works for me;i.imgur.com +bad;20;2;r BasicIncome;self.Subredditads +bad;20;10;NA H Bundle leftovers Steam games W Mewtwo 3DS code;self.ClubNintendoTrade +bad;20;9;Things to do this weekend in the Hudson Valley;goodhomeshudsonvalley.com +bad;20;4;Fixing A Rubber Toy;self.DIY +bad;20;10;funny companion bucket moment in half life 2 team deathmatch;youtube.com +bad;20;5;Anyone heard from TheLemonadeStand recently;self.BlackBank +bad;20;4;FREE STEAM Space hack;self.FREE +bad;20;15;Can I have my GTA O character on two PC s at the same time;self.gtaonline +bad;20;6;Need advice from end game users;self.summonerswar +bad;20;25;USA H 3DS GC Games CIB Sealed Amiibo SSB Wave 1 3 and LBW 3DS XL Price lowered W Paypal and eShop Club Nintendo Games;self.GameSale +bad;20;18;When in modern history has there been universal scientific consensus on something that turned out to be wrong;self.AskReddit +bad;20;17;I think me and alot of players would like to say Welcome back alliance and Na Vi;self.DotA2 +bad;20;8;Portland Bar that would put on Formula 1;self.Maine +good;20;8;Which players fell off the map this season;self.nba +bad;20;3;37 M4F Dating;self.r4rmontreal +bad;20;19;NEED A SPONSER Looking for someone to donate matching skins for our team Any donations will be greatly appreciated;steamcommunity.com +bad;20;4;Lotus in mod colors;imgur.com +bad;20;30;ELI5 Why does my Nalgene get mildew with the cap closed if I leave it in my car for 3 days but a cheap plastic disposable water bottle does not;self.explainlikeimfive +good;20;18;That s what used to happen when you take Jungler s Blue when there was no ward limit;self.leagueoflegends +bad;20;50;Comics Comics wherefore art thou Thursday Comics Is something I probably WOULD say if I put more than a pubic hair worth of thought into these things But no All my brainpower goes towards these amazing and unforgettable titles I know my priorities Lucky you eh Here s a comic;i.imgur.com +bad;20;5;Check my Luffy phone case;self.OnePiece +bad;20;7;WDYWT I brought the heat to prom;imgur.com +bad;20;23;World pride a stretch of desert the size of England in West Australia is one of the worlds most biologically diverse ecological zones;rotundamedia.com.au +good;20;5;Everyone s opinions on Brett;self.giantbomb +good;20;32;HIFW I start to rake in the downvotes after trying to bring some rational perspective and understanding to a thread being over generalizing towards women as a whole in the dating scene;i.imgur.com +bad;20;1;Devil2;i.imgur.com +bad;20;4;Seeking nuc installation suggestions;self.Beekeeping +bad;20;11;Christian mechanic says he won t service gays amp lesbians cars;queerty.com +good;20;22;So I have no other makeup on and look terrible but holy crap you guys OCC s Black Metal Dahlia is amazing;imgur.com +bad;20;10;How difficult is it to find research opportunities at UCLA;self.ucla +bad;20;3;Internet wines com;self.bourbon +bad;20;6;Huge audio issue with rpi 2;self.raspberry_pi +bad;20;10;Community Fundraiser and Raffle Event for Outdoor Recreation Coming Up;self.PacificNorthwest +bad;20;21;Think you had a bad day Happened to a co worker while trying to jump a fence Story in comments NSFW;imgur.com +good;20;3;Night Driving Difficulties;self.Trucking +good;20;11;Amplitude Free Weekend on Steam Play great games Unlock free content;g2g.amplitude-studios.com +bad;20;11;Google Chrome Extends Windows XP Support Until End of the Year;omgchrome.com +bad;20;15;Surprisingly Spurs Clips playoff tix are about 40 more expensive in SA than at Staples;blog.tiqiq.com +bad;20;9;37 M4F Older Married M Looking for Young Toy;self.dirtypenpals +bad;20;3;I see you;i.imgur.com +bad;20;13;Top 10 Films for Web Designers and Developers or web people in general;trulycode.com +bad;20;9;Staffy Vizsla mix becoming increasingly aggressive towards other dogs;self.pitbulls +bad;20;11;How do you see CS in the next 10 20 years;self.GlobalOffensive +bad;20;8;Soon to be chemistry stundent looking for advice;self.chemistry +bad;20;2;M4F Chill;self.eroticpenpals +bad;20;13;What graphics settings can be turned down with unnoticeable impact on the visuals;self.GrandTheftAutoV +bad;20;15;It it safe to take benzodiazepines like a little etiz before anasthetic for a cavity;self.Drugs +bad;20;7;Computer beeps after installing new graphics card;self.techsupport +good;20;9;When you realize your best isn t good enough;gfycat.com +bad;20;2;Woot 95prayer;i.imgur.com +bad;20;3;Baaaaaaaan meeeeeee biiiiiiitch;self.banme +bad;20;3;Windows stuttering Help;self.pcmasterrace +bad;20;8;H QUICK SELL VULCAN CYREX KARAMBIT W KEYS;self.GlobalOffensiveTrade +good;20;9;Red Hot Nickel Ball Vs Jawbreaker GIF on Imgur;i.imgur.com +bad;20;3;xb1 LF2M Nightfall;self.Fireteams +good;20;5;Twi And Sunny by Rainicornmagic;rainicornmagic.deviantart.com +bad;20;15;I m not sure why but I think I think this perfectly summarizes Reddit today;imgur.com +bad;20;8;My Melbourne Metro Tunnel Dream St Kilda Junction;i.imgur.com +bad;20;13;If a person narrated your life in your head who would you choose;self.AskReddit +bad;20;14;15 Companies That Paid Zero Income Tax Last Year Despite 23 Billion In Profits;fastcoexist.com +bad;20;8;What do you guys think of my legs;imgur.com +bad;20;4;PFA Award Nominees Announced;lastwordonsports.com +bad;20;7;Cat Fight Funny Hardline video with kittens;youtu.be +bad;20;2;Too little;imgur.com +bad;20;13;The world s first 3D printed battery powered rocket engine destined for space;cnet.com +bad;20;5;CPA Exam Candidate on Resume;self.Accounting +bad;20;31;Anxiety after drug use A reminder to please not overuse drugs if you don t feel alright and with peace in your mind about everything that s going on for you;self.Drugs +good;20;7;Using a RADIUS server with Duo Security;self.sysadmin +bad;20;8;Request A port of this Apple Watch face;store.storeimages.cdn-apple.com +bad;20;13;Top 10 Films for Web Designers and Developers or web people in general;trulycode.com +bad;20;16;Nerds of Reddit what insignificant detail about your fandom sets you off more than it should;self.AskReddit +bad;20;7;Check out the design inside this zucchini;imgur.com +good;20;3;In the Kitchen;i.imgur.com +bad;20;10;Need moto 360 for one purpose can it do it;self.moto360 +bad;20;19;Can someone explain me Aisha s role in the first muslim civil wars and the following shia sunni split;self.exmuslim +bad;20;6;What market do you trade in;self.algotrading +bad;20;14;INA Special Forces fighting Daesh terrorists from a rooftop in Baiji 4 13 2015;liveleak.com +bad;20;10;Support Only I m Disgusted By My Family s History;self.confession +good;20;10;My Star Wars hype vs My Age of Ultron Hype;self.whowouldwin +bad;20;3;Regular Fries Eclipse;youtube.com +good;20;12;Hugh amp Chuey my stoner comic I thought r trees might enjoy;imgur.com +bad;20;8;xb1 lfg nightfall Lvl 31 Titan Gt Rhodo145;self.Fireteams +bad;20;5;A communication error has occurred;self.smashbros +bad;20;6;Hone Abilities or Create New Ones;self.FFRecordKeeper +bad;20;12;View Here Hot Big ass brazillian tranny doing it Bareback Free Video;restlessshemalesblog.tumblr.com +bad;20;9;Castle Sweet Castle Review MLP FIM The Second Opinion;reddit.com +bad;20;11;View Here Fine Ass Tgirl Stroking Her Big Dick Free Video;restlessshemalesblog.tumblr.com +bad;20;2;Peter Chiarelli;letsgoleafs.com +bad;20;15;18 M India here Never written a snail mail letter and won t start now;self.penpals +bad;20;14;Hydr E Shisha a brand new premium electronic hookah company based out of NYC;hydraeshisha.com +bad;20;5;Dinosaur Jr Feel The Pain;youtu.be +good;20;6;Blunt words Government can t ignore;nzherald.co.nz +bad;20;6;NEWS World Cup Knock Out Stage;self.worldpowers +bad;20;8;Poland gt HRE gt Prussia in 1 11;self.eu4 +good;20;5;Any Manchester fans in here;self.cigars +good;20;4;Found in a creek;i.imgur.com +good;20;3;why no Invis;self.kohi +bad;20;8;SRD calmly discusses women in film and misogyny;np.reddit.com +bad;20;11;My new dog at f1 2 on film hard to focus;flickr.com +bad;20;8;What if confessing my feelings ruins our friendship;self.offmychest +bad;20;6;PS4 31 Titan LFG CE HM;self.Fireteams +bad;20;25;Can any Toyota or Nissan salespersons help me out What are my chances for approval with Toyota or Nissan under their college graduate financing programs;self.askcarsales +bad;20;9;What the heck is this Hakuna Matata looking grub;imgur.com +bad;20;9;recycle your old computer free hard drive data destruction;self.FreeStuffNYC +bad;20;4;Writing Style Chapter Length;self.scifiwriting +bad;20;7;Roomba accessories filteers and invisible walls brooklyn;self.FreeStuffNYC +bad;20;11;Reddit What is your wallpaper and why is it your wallpaper;self.AskReddit +bad;20;5;Free School office supplies flushing;self.FreeStuffNYC +bad;20;9;kivik ikea sofa for free screws are missing Gramercy;self.FreeStuffNYC +bad;20;9;Free Comedy Club Tickets Gotham Comedy Club Tuesday Chelsea;self.FreeStuffNYC +bad;20;6;Three accounts in a spam ring;self.spam +bad;20;7;What s your dream business to own;self.AskReddit +bad;20;7;Watch Now Adina Jewel gets DPP EbonyVideo4u;ebony.xvideoclip.net +bad;20;10;A lovely picture of my best friend and her dog;imgur.com +bad;20;14;Mildly Trending r financialindependence financial independence early retirement 207 subscribers today 236 trend score;redditmetrics.com +good;20;13;My son 6 5 285lb DE s never stood a chance all year;i.imgur.com +bad;20;14;Fruitvale neighbors is it possible to go on a nice run in our neighborhood;self.oakland +bad;20;2;W underboob;i.imgur.com +bad;20;8;SEEKING Bassnectar tickets for Friday 5 29 2015;self.denverlist +bad;20;1;MARIJUANA;self.DenverCirclejerk +bad;20;3;LCN is broken;self.GTAV +bad;20;16;STAR WARS EPISODE VII THE FORCE AWAKENS Official Trailer 2 2015 Epic Space Opera Movie HD;youtube.com +bad;20;4;Mother s Day Brunch;self.cincinnati +bad;20;4;Oddly specific parking sign;imgur.com +bad;20;9;Texas Teens In Trouble For Racist Raps About Lynching;hiphopwired.com +bad;20;10;r lightnovels Which is better Short chapters or Long ones;self.LightNovels +good;20;1;Cat;i.imgur.com +bad;20;21;For as long as Philadelphia had the 4 major sports leagues represented this is the first year none made the postseason;self.philadelphia +bad;20;11;I don t like the lollipop dialer on my moto g;self.MotoG +bad;20;13;The moment it sunk in that my first child would be a daughter;imgur.com +bad;20;11;Shiny Sewaddle in my Black 2 after 3 054 REs 3;youtube.com +good;20;14;Why are there so many people in this sub constantly CONSTANTLY bashing this game;self.EvolveGame +bad;20;19;Arsenal set to complete SENSATIONAL 40m deal for Colombian striker Jackson Martinez after star admits he wants to leave;metro.co.uk +bad;20;7;Any good spots in Sydney Gosford Australia;self.Urbex +bad;20;8;PS4 32 titan looking to run crota asap;self.Fireteams +good;20;2;Thanks Riddler;self.fakeid +bad;20;4;Rapper Redman talks Weed;complex.com +bad;20;2;ZRC Transactions;self.ziftrCOIN +bad;20;5;Dawn Glimpses Ceres North Pole;jpl.nasa.gov +bad;20;6;Awakenings It seems appropriate for today;tako-salad.com +bad;20;23;Just found out that we need to move out Should we ask for a raise Can t find apartment because of dog breed;self.Advice +bad;20;5;How to finish shop furniture;self.woodworking +bad;20;5;Norman can t let go;self.lifeofnorman +bad;20;6;Unblock US Netflix free DNS ALL;tvunblock.com +bad;20;6;Holding my cock at bay p;imgur.com +bad;20;9;Musica digital supera meios f sicos pela primeira vez;tugatech.com.pt +bad;20;4;przywiezione na ko ach;ale-wiocha.com +bad;20;10;Steinhauser Hillary Clinton coming to New Hampshire Monday and Tuesday;nh1.com +bad;20;21;I currently have the Galaxy S6 Edge HTC One M9 Moto X 2014 Droid Turbo Iphone 6 and 6 Plus AMA;self.AMA +bad;20;9;This Japanese Robot Feeds You Tomatoes While You Run;gizmodo.com +bad;20;12;TOI Palakkad division adjudged runner up for overall efficiency in Southern Railway;da.feedsportal.com +bad;20;9;TOI Attack on Malayalam professor Man arrested in Coimbatore;da.feedsportal.com +bad;20;16;Best Free Apps of the Day on Apr 16 Quest Proun Jelly Lab Reloaded amp More;appsaga.com +bad;20;5;Cheerleader Alexis in the classroom;redtube.com +bad;20;5;Chronologically speaking spoiler for MGS4;self.metalgearsolid +bad;20;2;LF Dragonair;self.PokemonForAll +bad;20;6;20 M4R Super Horny Help Me;self.dirtykikpals +bad;20;8;H BTA FT Fire Elemental W 3 Keys;self.GlobalOffensiveTrade +bad;20;2;Comparison Lemma;self.cheatatmathhomework +bad;20;20;If you were to create a Tumblr blog just for your ideas characters and whatnot which system would you choose;self.rpg +bad;20;18;I feel like Daredevil really builds on a foundation set by Arrow S1 x post with r Arrow;reddit.com +bad;20;5;My ingame sound isnt working;self.h1z1 +bad;20;7;If you can write to NTFS volumes;self.applehelp +bad;20;11;Immigration Anarchy Feds Issue 541 000 Social Security Numbers To Illegals;vdare.com +bad;20;2;me irl;i.imgur.com +bad;20;2;ikincibir com;ikincibir.com +bad;20;21;Raina and her kitten played while I was cleaning saddles you know what that had to lead to xpost r funny;imgur.com +bad;20;5;Bike cuts out while riding;self.motorcycles +good;20;1;Thoughts;self.DetroitRedWings +bad;20;12;Walking through fgcu dorms and I see this never seen such composition;imgur.com +bad;20;7;Toasting marshmallows with a friendly monster 800x450;lh4.googleusercontent.com +bad;20;5;Happy end of tax season;imgur.com +bad;20;12;Just watched AVP for the first time in probably 10 years SPOILERS;self.LV426 +bad;20;8;A Lucina Main Needs Advice Lucina or Marth;self.smashbros +bad;20;8;Is broadband in Japan fast enough for Netflix;self.japanlife +bad;20;34;Upgraded to 8 3 using more than 1 exchange account on my phone only 1 will work Also battery runs down much faster on 6 than before update Is this happening to anyone else;self.iOS8 +good;20;9;Castle Sweet Castle Review MLP FIM The Second Opinion;youtube.com +bad;20;6;Rather lose my arm than move;i.imgur.com +bad;20;4;19f4m Texting amp Incest;self.dirtypenpals +bad;20;10;Guude 7 Mindcrackers To Die Life on the Farm E2;youtube.com +bad;20;5;WIP Creator Viktor simple upgrade;self.ChromaRequest +bad;20;9;The lead actor in the new Star Wars movie;i.imgur.com +bad;20;5;DO IT BOXMAN FREE MEEEEEEEEE;i.imgur.com +bad;20;13;580 95 49 Star Wars The Force Awakens Teaser Trailer 2 r videos;reddit.com +bad;20;2;Withdrawal Question;self.benzodiazepines +good;20;13;TIL Robin Williams hasn t made a decent movie in about 8 months;self.circlejerk +bad;20;7;Lorne Michaels by Jack Nicholson TIME 100;time.com +bad;20;3;Overview for StizzedK;reddit.com +bad;20;6;Future Stoa Ltd Space age choralvapor;futurestoaltd.bandcamp.com +bad;20;8;Story of my Life A Dog s World;youtube.com +bad;20;3;Radio music help;self.GrandTheftAutoV +good;20;11;I noticed something rather familiar in the new Star Wars trailer;i.imgur.com +bad;20;17;What do you do when you come to the conclusion that you would be better off dead;self.Advice +bad;20;9;SGA how to run left side on ir yut;self.DestinyTheGame +bad;20;9;Stone Temple Pilots Dead amp Bloated Rock Grunge 2015;youtu.be +good;20;11;Checkpoint Jackasses Tail Biting Herd reclaims lost bridge to Power amp;youtube.com +bad;20;5;Is this a good school;self.TheNewSchool +bad;20;6;H ST KARAMBIT DOPPLER W 500K;self.csgolounge +good;20;5;B f wants your comments;imgur.com +bad;20;4;3 Hour Reception Help;self.weddingplanning +bad;20;10;Does anyone know why villagers won t breed for me;self.Minecraft +bad;20;8;These things are just getting in the way;i.imgur.com +good;20;4;A perfect 500 000;imgur.com +good;20;10;A friend of mine laser cut these coasters for me;i.imgur.com +bad;20;11;Driver s Front Window Control Switch Wiring Jeep Cherokee 84 96;2ndlifejeeps.com +bad;20;5;Living Life to the Fullest;youtube.com +good;20;4;FFXIV Fan Kit Updated;self.ffxiv +bad;20;8;26 M4M anyone else love watching guys piss;self.dirtykikpals +good;20;15;Have you guys seen this Sofia Vergara s ex is suing her over cryopreserved embryos;celebrity.yahoo.com +bad;20;3;renter s insurance;self.Buffalo +bad;20;4;overview for dropproxy com;self.SEO_Killer +bad;20;6;Where does the good players play;self.GlobalOffensive +good;20;18;Giving away all of my unclaimed Humble Bundle keys from over the years 17 different things to offer;self.pcmasterrace +bad;20;2;No privacy;imgur.com +good;20;4;Finishing in her mouth;xhamster.com +bad;20;7;Advice on traveling to Palma de Mallorca;self.spain +good;20;11;Comunicado de 15MpaRato Rato es solo el primero caer n todos;15mparato.wordpress.com +bad;20;7;18 M4F Let Me Worship Your Breasts;self.dirtypenpals +bad;20;31;Unconfirmed Found on Spanish Until Dawn Facebook page It said Be ready to play the demo at Barcelona FICOMA 2015 Either next demo scene or just a photo to put with;imgur.com +bad;20;19;Why are you and Smiff juggling people s balls at the weekend with Tom Why wasn t I invited;youtu.be +bad;20;10;My first CC to actually go do something with pax;self.flying +bad;20;7;reaction to the new star wars trailer;imgur.com +bad;20;23;Damn Slims Vapemail was good to me today Ordered 2 30ml got those and 3 10ml samples Big ups to Slims E Juice;imgur.com +bad;20;5;April 16 2015 Throwback Thursday;self.rapbattles +bad;20;7;I made Swagtrap in Garry s mod;imgur.com +bad;20;13;I m a bored college student living in the deep south Ask away;self.AMA +bad;20;13;ELI5 What is happening physiologically when the wind gets knocked out of you;self.explainlikeimfive +bad;20;10;Why field of view sliders are essential for PC games;syfygames.com +bad;20;2;Reddit today;livememe.com +bad;20;6;2014 CDC National Youth Tobacco Survey;cdc.gov +bad;20;15;MLB 15 The Show Who needs to look at the target before throwing the ball;youtube.com +bad;20;16;The behavior of RNG seeding in C may surprise you std seed_seq isn t your friend;pcg-random.org +bad;20;5;Varsity Athlete and Frosh Leader;self.queensuniversity +bad;20;5;THANKS u TheMrWhipple for Talisman;self.RandomKindness +bad;20;5;GTA V PC NOT LOADING;self.GrandTheftAutoV_PC +bad;20;14;How do you tell the difference between an African Elephant and an Asian Elephant;self.Jokes +bad;20;8;Honkies of r Vancouver This is for You;vancouver.craigslist.ca +bad;20;5;Meta Weekly Discussion r imagecomics;self.ImageComics +bad;20;5;Ps4 lf1 or 2 nf;self.Fireteams +bad;20;6;Give these hybrid animals some names;topstuff.urdublog.com +good;20;6;Just a quiet evening in bed;i.imgur.com +bad;20;16;Estrat gia do Governo mant m cortes de sal rios at 2018 E sobretaxa at 2019;expresso.sapo.pt +good;20;15;Thought you might like to see me in stockings and heels Hope you enjoy it;i.imgur.com +bad;20;5;overview for blog marcomonteiro net;self.SEO_Killer +bad;20;5;In case anyone is wondering;self.GameStop +good;20;8;CM12 1 is going to be built tonight;cyanogenmod.org +bad;20;18;We are the Secular Student Alliance and it is Ask an Atheist Day Ask Us Anything cross post;self.TrueAtheism +good;20;12;Why lawmakers are increasingly losing faith in America s top drug cop;washingtonpost.com +bad;20;12;LibreOffice s new version will be 5 0 instead of 4 5;phoronix.com +bad;20;14;Looking for a place to stay hang in Tempe the night of April 20th;self.arizona +bad;20;9;Question Why do people use LKali more than DKali;self.PuzzleAndDragons +bad;20;10;Kiosk vendors in malls are the bane of my existence;self.introvert +bad;20;3;Did he ryzed;self.ryze +bad;20;13;H ST m9 Crimson web MW quicksale W keys dlore assimov fts etc;self.GlobalOffensiveTrade +good;20;6;Just a quiet evening in bed;i.imgur.com +bad;20;8;Getting access to a deceased sibling s account;self.hacking +bad;20;6;Is Takeda a Japanese or Chinese;self.MortalKombat +bad;20;11;Can you help a lazy guy automate some of his work;self.vba +bad;20;4;Finding Source of Inheritance;self.Genealogy +bad;20;4;Looking for a Notary;self.SeaList +bad;20;10;USA MD H MSI Z97 PC Mate ATX W Paypal;self.hardwareswap +good;20;8;When too lazy to build box use carboard;imgur.com +bad;20;16;TIFU by mixing time date and causing most expensive Fuck up of my 20 year life;self.tifu +good;20;4;They look so happy;imgur.com +bad;20;4;Nerdy Alexis fucks teacher;pornhub.com +bad;20;4;Does anybody use Task;self.SwagBucks +bad;20;6;Valid for 1 one GOAT donger;i.imgur.com +good;20;16;Can the folks who did the Pier do this next from the new Star Wars trailer;i.imgur.com +good;20;17;As a delivery driver I m always worried something like this would happen and it finally did;i.imgur.com +bad;20;39;UPDATE Me 20 M is interested in 18 F however there is another guy who is also interested in her I have had no dating experience and would like some advice NEW Advice on hanging out as just friends;self.relationships +bad;20;14;I d like to hear from Sideshow Mel on the new Star Wars trailer;i.imgur.com +bad;20;14;In 1995 they should ve given Shane Douglas college professor gimmick to Charles Wright;self.SquaredCircle +bad;20;5;Fixing the tp bottle refill;self.DotA2 +good;20;11;Westside 4th Annual Blondes vs Brunettes Flag Football Game for Charity;bvbcle.org +good;20;17;My guess on where Ben Burtt will put the Wilhelm Scream in the new movie TFA Spoiler;i.gyazo.com +bad;20;11;As Ebola Retreats Obama Urges Vigilance and Preparation in West Africa;nytimes.com +good;20;8;I am an Ammosexual and proud of it;self.weekendgunnit +bad;20;6;Cooking classes in the NWA area;self.fayetteville +bad;20;16;MRW the lady sitting next to me won t turn down the music in her head;i.imgur.com +bad;20;15;Ataques deixam 6 mortos e um ferido em Parelheiros pol cia investiga se houve chacina;g1.globo.com +bad;20;9;Outfit inspiration Family disneybounds x post from r disney;imgur.com +bad;20;3;Overview for mjnmjnmjn;reddit.com +bad;20;7;Release date put back to 21st May;carmageddon.com +bad;20;31;Google Play Store advertises George R R Martin s A Game of Thrones 4 Book Bundle for 99 When Google realizes mistake they simply just remove the product from peoples devices;self.google +bad;20;9;Looking for advice on buying a max 40 mouse;self.MouseReview +bad;20;10;DIPLOMACY UCID Wadani founds the African Islamic Socialists Council AISC;self.worldpowers +bad;20;7;SGA Block all special ammo in rumble;self.DestinyTheGame +bad;20;23;Tech If I have a micro USB cable can I plug my wireless xbox 1 controller into my computer and have it work;self.xboxone +bad;20;6;Lyft or Uber for downtown tonight;self.toledo +bad;20;3;I choose SHARTMANDER;imgur.com +good;20;7;Simple eyes feat My newfound MLBB CCW;imgur.com +bad;20;20;TOMT book 80 s or 90 s book about being trapped in a virtual reality game red and black cover;self.tipofmytongue +good;20;9;Oklahoma bill on Uber deletes protection for gay riders;news.yahoo.com +bad;20;7;Summer Set Music amp Camping Festival 2015;self.Lollapalooza +good;20;22;I spliced the opening pan from the new Star Wars trailer together into a dual monitor wallpaper Calling it Destroyer Down 3840x1080;i.imgur.com +bad;20;20;DISCUSS Idea for draft order The team who has been out of the playoffs the longest gets the first pick;self.nba +good;20;1;Welp;i.imgur.com +bad;20;9;A modern cinderella music video would love some feedback;youtube.com +bad;20;12;Build Help I have 1100 to spend Thoughts on my parts list;self.buildapc +bad;20;8;Remove the stars from the Pillars of Creation;self.picrequests +bad;20;9;u Brasse joins Trion as Director of Community Relations;twitter.com +bad;20;6;Volunteer Day at Garden Sweet Farm;facebook.com +bad;20;2;Installation problems;self.fivenightsatfreddys +bad;20;7;Demo lock demonic serv or demo bolt;self.wow +good;20;3;Interesting photo placement;imgur.com +bad;20;22;Dear Valentines Day thank you for spurring enough cash flow to allow floral shops to stay open the rest of the year;self.Showerthoughts +bad;20;9;Why is everyone downvoting the CLASSY habs fans today;self.hockeycirclejerk +good;20;7;Month old Ashley inverse vertical labret piercing;imgur.com +bad;20;9;TAICHI PANDA HACK AND CHEATS TOOL RESOURCES GENERATOR UTILITY;self.maxgiron +bad;20;17;Anyone else noticed UPS Fedex integration with USPS Subsidized shipping method to legitimize a failing monopolized service;self.Anarcho_Capitalism +bad;20;9;Cotuit man killed one seriously injured in van rollover;wickedlocal.com +bad;20;9;Academic Senior Thesis Survey on Paying Collegiate Athletes Everyone;self.SampleSize +good;20;3;Ally Stone 2;i.imgur.com +bad;20;11;Free Pz Kpfw S35 739 f Giveaway on Alienware New players;na.alienwarearena.com +good;20;5;Smite main menu ridiculiously laggy;self.Smite +bad;20;11;President Clinton Marblehead state Rep discuss banning the global ivory trade;wickedlocal.com +bad;20;9;Dismembered remains of man belong to Brockton High graduate;wickedlocal.com +bad;20;4;The Cosplays read below;self.leagueoflegends +bad;20;8;Medway First timer vet set to run Marathon;wickedlocal.com +good;20;14;I just pushed the button and I m still gray Is the button broken;self.thebutton +bad;20;4;Crookshanks as Sirius cat;self.harrypotter +bad;20;4;Practical spice rack suggestions;self.InteriorDesign +bad;20;4;Changing Assignment Preference Form;self.peacecorps +bad;20;12;They ve planted shills at my university We see right through it;imgur.com +good;20;3;Ally Stone 2;i.imgur.com +good;20;12;whats the best way to pvp and how exactly does it work;self.darksouls +bad;20;29;Serious Photographers of reddit my mum is looking to buy a DSLR Camera with a price range of up to 400 00 what is the best value for money;self.AskReddit +bad;20;8;XboxOne lf5m VoG NM Atheon CP gt Str8Frisco;self.Fireteams +good;20;12;The Straight Line Technique for Hooded Eyes actually excited to try this;youtu.be +bad;20;2;me irl;i.imgur.com +bad;20;4;Who is Andrew Panton;self.roosterteeth +bad;20;26;Tell m e what you think of my cock allways just wanted to pull it out but iam kinda shy what would you say to me;imgur.com +good;20;3;Ally Stone 2;i.imgur.com +good;20;9;PSA Change your actual password for Rockstar Social Club;self.SteamGameSwap +good;20;11;X1 32 Titan Looking for lost connection His name is Crota;self.Fireteams +good;20;2;Lyndsy Fonseca;i.imgur.com +bad;20;2;Horrifying Dreams;self.Buddhism +bad;20;18;Beach Blowjob Choose the 20 SECOND time span you would want to take the guy s place for;self.choosethemoment +bad;20;14;Do you use the bathroom with the door open in front of your SO;self.AskWomen +bad;20;15;u Lambawamba deleted REQUEST from r random_acts_of_pizza on 2015 04 16 up 0 01 days;self.gcdeletes_instant +bad;20;12;Can you all help me figure out the anime in this 3x3;i.4cdn.org +good;20;4;I just came f;imgur.com +good;20;18;We are the Secular Student Alliance and it is Ask an Atheist Day Ask Us Anything cross post;reddit.com +good;20;11;When Going Through Old Design Documents We Came Across This Gem;assets-cdn.soe.com +bad;20;23;CMV Unless you tell me its a secret or indicate it is verbal non verbal I am happy to share stories with others;self.changemyview +good;20;20;I love smoking and watching my iguana eat it s like stepping in a time machine to watch dinosaurs eat;imgur.com +bad;20;3;PAX by Ploom;self.trees +good;20;6;Coming to Denver for 4 20;self.trees +bad;20;8;Big Dreams The Jose Altuve Story air times;self.Astros +bad;20;2;Savoy help;self.eu4 +bad;20;11;So what happened to Frank and his water powered peter pumper;self.TACSdiscussion +bad;20;7;Muslim migrants threw Christians overboard police say;cnn.com +good;20;5;First Star Wars Battlefront screenshot;i.imgur.com +bad;20;18;K V H W 1998 04 21 at The Powerhouse jam psych rock jazz video stream 100 44;youtube.com +bad;20;13;Request A tweak to add a QuickCall feature to the lockscreen without unlocking;imgur.com +bad;20;5;Rise of Mandalore Chapter 4;fanfiction.net +bad;20;7;Build Help Gaming 1000 Scan co uk;self.buildapc +bad;20;15;F ck Wagner with Chilly Gonzales JonSnowDies NEO MAGAZIN ROYALE mit Jan B hmermann ZDFneo;youtube.com +good;20;9;Grandpa told me to shave and I said no;imgur.com +bad;20;11;Check out this funky seedling and a crazy monster cropped clone;self.microgrowery +bad;20;9;SIMCITY BUILDIT HACK AND CHEATS TOOL RESOURCES GENERATOR UTILITY;self.maxgiron +bad;20;6;Piel Canela Espinita by Enrique Chia;youtube.com +good;20;13;What is something that is immediately awful after someone else has used it;self.AskReddit +bad;20;6;Ios8 Multitasking too fast causes crash;self.apple +good;20;9;St Charles deputy shot while directing traffic at school;heraldguide.com +bad;20;8;New RC 2C FISH x post r drugnerds;journal.frontiersin.org +bad;20;9;The Nemesis Machine From Metropolis to Megalopolis to Ecumenopolis;vimeo.com +good;20;20;With the second teaser released I m curious for the people who were more aware during Episode I s release;self.StarWars +good;20;12;The Oatmeal sums up amiibo life only to us it does matter;scontent-lga.xx.fbcdn.net +bad;20;11;1200x800 Vader s Mask from the new Star Wars VII Trailer;imgur.com +bad;20;5;Mankind Divided PC Physical Release;self.Deusex +bad;20;7;Thoughts about the new mellow mushroom location;self.Louisville +good;20;6;6 hours SOT on Nexus 4;self.Android +bad;20;6;Saw this guy on the road;imgur.com +bad;20;6;Jokes been bugging me for years;self.comedy +bad;20;1;disassociation;self.exjw +good;20;11;Retro Synth Album amp Poster Draws Inspiration From John Carpenter Films;rediscoverthe80s.com +good;20;8;Home stretch for the Ancient History Magazine kickstarter;kickstarter.com +bad;20;5;Guru Quasar Just some Vibes;soundcloud.com +bad;20;7;Get Fractured Space for FREE on Steam;gamebundlenews.com +bad;20;15;Condoms as catfish bait Contents of a blue catfish stomach x post from r WTF;self.Fishing +good;20;11;How a Dutch shopkeeper responds to the new legislation in Indiana;imgur.com +bad;20;8;France stands by choice of gay Vatican envoy;news.yahoo.com +bad;20;1;Repairs;self.Outlier +bad;20;4;Ebola in Easton PA;imgur.com +bad;20;5;I ve got a boner;self.offmychest +bad;20;9;IamA Target Cashier and Guest Services Team Member AMA;self.IAmA +good;20;2;No shit;i.imgur.com +bad;20;12;Monster Raving Loony Party to lose votes to UKIP says Alan Hope;bbc.co.uk +good;20;2;Pale tits;i.imgur.com +bad;20;12;Expansion With the building of a grand fleet more wood is needed;self.SuperFantasyPowers +bad;20;9;Excalibur Warframe vs Mario Super Mario series Jump competition;self.whowouldwin +good;20;17;Ordered pizza and asked the place to draw me a happy dinosaur they delivered Introducing Belladonnasaurus Rex;imgur.com +good;20;7;Blonde Guy masturbating his cock 8 56;awesomeporntube.com +bad;20;23;TIL one of the most biodiverse ecological zones in the world is a stretch of desert in West Australia the size of England;rotundamedia.com.au +good;20;25;My parents collect pinball machines Took some pictures when I was home for easter Grew up playing these There are a couple more not pictured;imgur.com +bad;20;6;Third Act STARgazers Pop Rock 2014;youtube.com +bad;20;3;Rey Skywalker discussion;self.StarWarsLeaks +bad;20;5;Lord What Should I Do;iwrite4him.com +bad;20;5;uprons to the left gooby2;self.Braveryjerk +bad;20;10;Disability access question for cast member or other disabled visitors;self.Disneyland +bad;20;8;British person confused by W 4 Help appreciated;self.tax +good;20;6;Some Tips for Advanced Video Editing;self.GrandTheftAutoV_PC +bad;20;9;Lola by The Kinks Digital 8000 x 6000 px;wonderwig.deviantart.com +bad;20;19;Well here we go then Anyone hear any rumors info about new Broadwell 15 rMBPs being released at WWDC;self.WWDC2015 +bad;20;1;Question;self.PuzzleAndDragons +good;20;2;Pale tits;i.imgur.com +good;20;9;Devon wants to know what a booty call is;youtube.com +bad;20;9;NINJA HEROES HACK AND CHEATS TOOL RESOURCES GENERATOR UTILITY;self.maxgiron +bad;20;1;Croissant;vine.co +bad;20;18;My Eastern Mediterranean Map The farthest extent of the world as known to the people of the empire;imgur.com +bad;20;13;Looking for a nice 3 day backpacking loop in the White Mountains Recommendations;self.CampingandHiking +good;20;13;Deal Reached on Fast Track Authority for Obama on Trade Pact NYTimes com;nytimes.com +bad;20;1;Lineup;li.co.ve +good;20;6;Home on NE Broadway in 1929;i.imgur.com +bad;20;11;Coalition warplanes help stem ISIS ISIL advance in Ramadi official says;cnn.com +bad;20;10;Brasileiros que tocam no exterior discutem desabafo de Ed Motta;g1.globo.com +bad;20;4;Path of Exile furries;self.furry +bad;20;10;Mutamassik Rhythms Rattle on Deaf Pawns Arabic Broken World beats;youtube.com +bad;20;2;Sexy Lips;i.imgur.com +bad;20;14;H Kara Fade 70 30 W 270k I guess that qualifies as a quicksell;self.GlobalOffensiveTrade +bad;20;2;Bad Radio;self.theticket +good;20;18;Was cleaning a pony saddle while my Great Dane an her kitten played One thing led to another;imgur.com +good;20;9;Quick unfortunate update Using the wireless egg in public;self.SexToys +bad;20;7;20 in VTPSX Should I reduce this;self.personalfinance +bad;20;13;Since the bible is out what should be Tennessee s official state book;self.AskReddit +bad;20;5;Fangraphs Pittsburgh s Contact Problem;fangraphs.com +bad;20;7;What was the last thing you said;self.AskReddit +bad;20;14;Did my first kind of Remix Flip and would love some feedback lt 3;soundcloud.com +bad;20;22;Story I made a blog to hold myself accountable and reflect every day as I start on my journey to Champion State;self.GetMotivated +bad;20;4;I killed 4 Araxxi;self.soya +good;20;18;When my ex boyfriend breaks up with me and I find a way better partner 1 month later;i.giphy.com +bad;20;4;of Explorers for Multiplayer;self.starrealms +bad;20;10;Mustached_Tom Reacts to Star Wars The Force Awakens Teaser 2;youtube.com +bad;20;3;Request Hanging Link;self.guro +good;20;8;Serious Have you ever been scammed What happened;self.AskReddit +bad;20;11;Zombie Apocalypse kicks off what are your realistic plans and hopes;self.AskUK +bad;20;14;I don t always post pictures but when I do its of my bike;imgur.com +bad;20;7;Nationalism and Art History in Southeast Asia;youtube.com +bad;20;6;360 31 Titan LFG Normal Crota;self.Fireteams +bad;20;10;Selling Third Eye Blind Dashboard Confessional ticket HoB June 5th;self.orlando +bad;20;8;How I imagine all these new Yellows feel;fc07.deviantart.net +bad;20;3;Dorchester Collection Bitcoin;bitcoin-gr.org +bad;20;5;The New BO Combo Pack;self.blackops3 +bad;20;10;What s your favourite go to bad ass walk song;self.AskReddit +bad;20;17;Does anybody else have Kallmann syndrome delayed absent puberty and wish to talk to a fellow patient;self.TellReddit +bad;20;13;Phone keeps rebooting shutting off and Google Support recommended a factory reset thoughts;self.Nexus5 +bad;20;12;M 17 6 6 In the midst of weight loss need opinions;self.amiugly +good;20;15;I did 10 dead hang wide grip pullups at once today Yay new personal record;self.bodyweightfitness +good;20;12;Waiting for the debate to start I accidentally ended up watching EastEnders;self.britishproblems +good;20;6;some german cheesecake and coffee OC;imgur.com +bad;20;14;ELI5 what does It s lonely at the top mean Where did it originate;self.explainlikeimfive +bad;20;14;ELI5 Can they still use the oil from an oil spill in the water;self.explainlikeimfive +bad;20;7;Event Centralization of weapon and armor forging;self.SuperFantasyPowers +good;20;8;Community Today is the 5th birthday of CLG;self.CLG +good;20;7;Screenshot from the game and WebM clip;self.battlefront +bad;20;11;If you had to be one time were you or not;self.AskReddit +bad;20;11;MARVEL CONTEST OF CHAMPIONS HACK AND CHEATS TOOL RESOURCES GENERATOR UTILITY;self.maxgiron +good;20;9;Just preordered my Grasshopper All aboard the hype train;self.GrassHopperVape +good;20;5;Tax rate on Stock Options;self.PersonalFinanceCanada +bad;20;8;Gonna be playing with my new toy tonight;imgur.com +good;20;17;Rage Against the Machine Bulls on Parade Evil Empire was released on this day 19 years ago;youtube.com +bad;20;16;Have you or someone you know ever shit your pants If so what is the story;self.AskReddit +bad;20;2;Bitcoin Wednesday;bitcoin-gr.org +bad;20;6;The Beauty of Battlefield 4 Cinematic;youtube.com +bad;20;8;Could you describe your life with five words;self.AskReddit diff --git a/spring-security-oauth/src/main/webapp/WEB-INF/jsp/submissionForm.jsp b/spring-security-oauth/src/main/webapp/WEB-INF/jsp/submissionForm.jsp index 19695279b1..3e08ac0b93 100755 --- a/spring-security-oauth/src/main/webapp/WEB-INF/jsp/submissionForm.jsp +++ b/spring-security-oauth/src/main/webapp/WEB-INF/jsp/submissionForm.jsp @@ -76,9 +76,35 @@ border-color: #ddd; captcha

- + +
+ + + + + +
\ No newline at end of file diff --git a/spring-security-oauth/src/test/java/org/baeldung/classifier/RedditClassifierTest.java b/spring-security-oauth/src/test/java/org/baeldung/classifier/RedditClassifierTest.java new file mode 100644 index 0000000000..03683ef078 --- /dev/null +++ b/spring-security-oauth/src/test/java/org/baeldung/classifier/RedditClassifierTest.java @@ -0,0 +1,28 @@ +package org.baeldung.classifier; + +import static org.junit.Assert.assertTrue; + +import java.io.IOException; + +import org.baeldung.reddit.classifier.RedditClassifier; +import org.baeldung.reddit.classifier.RedditDataCollector; +import org.junit.Before; +import org.junit.Test; + +public class RedditClassifierTest { + + private RedditClassifier classifier; + + @Before + public void init() throws IOException { + classifier = new RedditClassifier(); + classifier.trainClassifier(RedditDataCollector.TRAINING_FILE); + } + + @Test + public void testClassifier() throws IOException { + final double result = classifier.evaluateClassifier(); + System.out.println("Accuracy = " + result); + assertTrue(result > 0.8); + } +}