horsefield 0.4.64 → 0.4.65

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5202566470d2206afc582ce8543261763a9c3f0c
4
- data.tar.gz: 2a9f6554cfa9926c11573c6dde74a903c80d9e32
3
+ metadata.gz: 080e717136819399f7dfcdcf7365ef0f75b30ec5
4
+ data.tar.gz: 05891cdf6035afa8128b9c2dc15388ad1fe71ad8
5
5
  SHA512:
6
- metadata.gz: 8695b3f5f93d82ba875b596ba7b90c2ec9de5ec817ede80af458faf8e4e02037b06fc0e86e3c360d15c04157ac06d63755c49cdba2d6e1d4ed3c2617f7b95b2c
7
- data.tar.gz: 2e3b4cc2155abb4c74847d8248086c90c3c23ce1867730c0d9598f79ddd915ce68ca3e4b5321e15b2518a848cd287f27b18fd255a06d4abcd1a86d066e4b6e24
6
+ metadata.gz: 08e9ffb70f35b0c367552a371c21fbf9dd7e98f2faa9009ad4c8cecb5da8de9d7192bd6d6e2e1baf061fde45c2072dee88c867d1d030816545f086aa7e0bf8e3
7
+ data.tar.gz: 7415f5c9c0c8677f20f04eca02e2d115b025afe69f69199ebf1efcb3958ed8f66844c72e0133ce6532ad33235c388a60ef32b3f6f9b9da7ca1157804c949e422
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Horsefield
2
2
 
3
- It's a scraper
3
+ It's for scraping.
4
4
 
5
5
  ## Installation
6
6
 
@@ -20,7 +20,32 @@ Or install it yourself as:
20
20
 
21
21
  ## Usage
22
22
 
23
- Scrape!
23
+ Define a scraper:
24
+ ```ruby
25
+ class RedditScraper
26
+ include Horsefield::Scraper
27
+
28
+ many :posts, '#siteTable .thing' do
29
+ one :title, 'a.title'
30
+ many :links, './/a[contains(@href, "reddit.com")]/@href'
31
+ end
32
+
33
+ many :trending, '.trending-subreddits-content > ul > li a'
34
+ end
35
+ ```
36
+ and use it with a URL or an HTML string:
37
+ ```ruby
38
+ RedditScraper.new('http://www.reddit.com').scrape
39
+ ```
40
+ Enjoy:
41
+ ```ruby
42
+ {:posts=>
43
+ [{:title=>"Chris Pratt, homeless, living in this van, holding the script to his first acting job",
44
+ :links=>["http://www.reddit.com/user/Ripsaw99", "http://www.reddit.com/r/pics/", "http://www.reddit.com/r/pics/comments/2v16z9/chris_pratt_homeless_living_in_this_van_holding/"]},
45
+ {:title=>"Cannot believe I got him to sit and stay for this.",
46
+ :links=>["http://www.reddit.com/user/Hurevolution4lx", "http://www.reddit.com/r/aww/", "http://www.reddit.com/r/aww/comments/2v0tuh/cannot_believe_i_got_him_to_sit_and_stay_for_this/"]}
47
+ ...
48
+ ```
24
49
 
25
50
  ## Contributing
26
51
 
@@ -8,4 +8,8 @@ module Horsefield
8
8
  class Nokogiri::XML::Element
9
9
  include Diggable
10
10
  end
11
+
12
+ class Nokogiri::XML::Attr
13
+ include Diggable
14
+ end
11
15
  end
@@ -1,3 +1,3 @@
1
1
  module Horsefield
2
- VERSION = "0.4.64"
2
+ VERSION = "0.4.65"
3
3
  end
@@ -1,77 +1,28 @@
1
1
  require 'test_helper'
2
2
  require 'pry'
3
3
 
4
- class RecipeScraper
4
+ class RedditScraper
5
5
  include Horsefield::Scraper
6
6
 
7
- helper :convert_time do |str|
8
- str.upcase
9
- end
10
-
11
- scope '.hide_from_screen' do
12
- one :title, 'h1'
13
- one :description, 'h2'
14
- end
15
-
16
- many :nutritional_value, 'article.recipe_nutrition ul li' do
17
- one(:type) { at('span').text }
18
- one(:value) { at('span.value').text }
19
- end
20
-
21
- one :total_time, '//div[contains(@style, "time.gif")]' do
22
- convert_time(text.strip)
23
- end
24
-
25
- postprocess do |doc|
26
- doc[:nutritional_value] = doc[:nutritional_value].uniq.compact
27
- doc
28
- end
29
- end
30
-
31
- class RecipeScraperWithOptionalField
32
- include Horsefield::Scraper
33
-
34
- scope '.hide_from_screen' do
35
- one :title, 'h1'
36
- one :description, 'h2'
37
- one? :missing, '.missing'
7
+ many :posts, '#siteTable .thing' do
8
+ one :title, 'a.title'
9
+ one :tagline, 'p.tagline' do
10
+ one :submitted, './time/@datetime'
11
+ one :subreddit, 'a.subreddit'
12
+ end
13
+ many :links, './/a[contains(@href, "reddit.com")]/@href'
38
14
  end
39
- end
40
-
41
- class RecipeScraperWithRequiredField
42
- include Horsefield::Scraper
43
15
 
44
- scope '.hide_from_screen' do
45
- one :title, 'h1'
46
- one :description, 'h2'
47
- one! :important, '.important'
48
- end
16
+ many :trending, '.trending-subreddits-content > ul > li a'
49
17
  end
50
18
 
51
19
  class TestScraper < Minitest::Test
52
20
  def setup
53
- @html = File.read(File.expand_path('../../recipe_source.html', __FILE__)).force_encoding('UTF-8')
54
- end
55
-
56
- def test_that_it_scrapes
57
- recipe = RecipeScraper.new(@html).scrape
58
- assert_equal 'Traditional Welsh cawl', recipe[:title]
21
+ @html = File.read(File.expand_path('../../reddit_source.html', __FILE__)).force_encoding('UTF-8')
59
22
  end
60
23
 
61
- def test_that_it_ignores_optional_fields
62
- recipe = RecipeScraperWithOptionalField.new(@html).scrape
63
- refute_includes recipe.keys, :missing
64
- end
65
-
66
- def test_that_it_raises_with_missing_required_field
67
- assert_raises(Horsefield::MissingSelectorError) { RecipeScraperWithRequiredField.new(@html).scrape }
68
- end
69
-
70
- def test_standalone_scraper
71
- recipe = Horsefield::Scraper.scrape(@html) do
72
- one :title, '.hide_from_screen h1'
73
- end
74
-
75
- assert_equal 'Traditional Welsh cawl', recipe[:title]
24
+ def test_scraper
25
+ reddit = RedditScraper.new(@html).scrape
26
+ p reddit
76
27
  end
77
28
  end
@@ -0,0 +1,3 @@
1
+ <!doctype html><html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><title>reddit: the front page of the internet</title><meta name="keywords" content=" reddit, reddit.com, vote, comment, submit " /><meta name="description" content="reddit: the front page of the internet" /><meta name="referrer" content="always"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><meta name="viewport" content="width=1024"><link rel='icon' href="//www.redditstatic.com/icon.png" sizes="256x256" type="image/png" /><link rel='shortcut icon' href="//www.redditstatic.com/favicon.ico" type="image/x-icon" /><link rel='apple-touch-icon-precomposed' href="//www.redditstatic.com/icon-touch.png" /><link rel="alternate" type="application/rss+xml" title="RSS" href="http://www.reddit.com/.rss" /><link rel="stylesheet" type="text/css" href="//www.redditstatic.com/reddit.CVW-_Mo3mPU.css" media="all"><link rel="stylesheet" type="text/css" href="//www.redditstatic.com/markdown.arGiOnaRyGY.css" media="all"><!--[if gte IE 8]><!--><link rel="stylesheet" href="http://b.thumbs.redditmedia.com/ba_fm376ctS_mGlZGabqddmkhth3jqnccUyhKW7iGBo.css" title="applied_subreddit_stylesheet" type="text/css"><!--<![endif]--><!--[if gte IE 9]><!--><script type="text/javascript" src="//www.redditstatic.com/reddit-init.en.qIioPUFUrx8.js"></script><!--<![endif]--><!--[if lt IE 9]><script type="text/javascript" src="//www.redditstatic.com/reddit-init-legacy.en.jBYHBcaN2tM.js"></script><![endif]--><script type="text/javascript" id="config">r.setup({"ajax_domain": "www.reddit.com", "server_time": 1423269806.0, "post_site": "", "clicktracker_url": "//pixel.redditmedia.com/click", "logged": false, "stats_domain": "https://stats.redditmedia.com", "cur_domain": "reddit.com", "comment_embed_scripts": ["//www.redditstatic.com/comment-embed.js"], "https_forced": false, "user_id": false, "eventtracker_url": "//pixel.redditmedia.com/pixel/of_delight.png", "is_fake": true, "renderstyle": "html", "over_18": true, "vote_hash": "vAimASINoQMu8MSXH1kr6zEdBEFJMhr6uhg9WO058TN4q64AKZhIZp1IfmdYJX65/Rhb+WEowfZYBIEaD91xRmmdLwf+6zUScyotJ7akjCKzaRYRhNc5tEy2SRbRH5nNaG370G2n9BpQ69TDTfZ8+zC1/soPEBfJcLMpWdJzJnqLDu3FuLQeKEM=", "adtracker_url": "//pixel.redditmedia.com/pixel/of_doom.png", "uitracker_url": "//pixel.redditmedia.com/pixel/of_discovery.png", "modhash": false, "store_visits": false, "new_window": false, "send_logs": true, "gold": false, "pageInfo": {"actionName": "hot.GET_listing", "verification": "adfad553bf3b6c42e703170c536073e9c1f952f0"}, "https_endpoint": "https://www.reddit.com", "static_root": "//www.redditstatic.com", "extension": null, "status_msg": {"fetching": "fetching title...", "loading": "loading...", "submitting": "submitting..."}, "stats_sample_rate": "1", "debug": false, "has_subscribed": false})</script><script type="text/javascript">reddit.cur_site = "t5_6";</script><style type="text/css">/* Custom css: use this block to insert special translation-dependent css in the page header */</style><script type="text/javascript">(function() { var url = '//pixel.redditmedia.com/pixel/of_destiny.png?v=WAzLJC95TDM5AT7xXpbRfq4wuJX9X0EPP2e78aX7eAREg3P1NZ7VQRkonPTwyhY1qevetBMLPHk%3D'; var cachebuster = Math.round(Math.random() * 2147483647); var cachebusted_url = url + "&r=" + cachebuster; var img = new Image(); img.src = cachebusted_url; })();</script><script type="text/javascript">var user_type = 'guest'; var _gaq = _gaq || []; _gaq.push( ['_require', 'inpage_linkid', '//www.google-analytics.com/plugins/ga/inpage_linkid.js'], ['_setAccount', 'UA-12131688-1'], ['_setDomainName', 'reddit.com'], ['_setCustomVar', 1, 'site', ' reddit.com', 3], ['_setCustomVar', 2, 'srpath', ' reddit.com-GET_listing', 3], ['_setCustomVar', 3, 'usertype', user_type, 2], ['_setCustomVar', 4, 'uitype', 'web', 3], ['_setSampleRate', '50'], ['_trackPageview'] ); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();</script></head><body class="listing-page hot-page front-page" ><div id="header" role="banner"><a tabindex="1" href="#content" id="jumpToContent">jump to content</a><div id="sr-header-area"><div class="width-clip"><div class="dropdown srdrop" onclick="open_menu(this)" onmouseover="hover_open_menu(this)"><span class="selected title">my subreddits</span></div><div class="drop-choices srdrop"><a href="http://www.reddit.com/r/Allsvenskan/" class="choice" >Allsvenskan</a><a href="http://www.reddit.com/r/announcements/" class="choice" >announcements</a><a href="http://www.reddit.com/r/Art/" class="choice" >Art</a><a href="http://www.reddit.com/r/AskReddit/" class="choice" >AskReddit</a><a href="http://www.reddit.com/r/askscience/" class="choice" >askscience</a><a href="http://www.reddit.com/r/aww/" class="choice" >aww</a><a href="http://www.reddit.com/r/blog/" class="choice" >blog</a><a href="http://www.reddit.com/r/books/" class="choice" >books</a><a href="http://www.reddit.com/r/creepy/" class="choice" >creepy</a><a href="http://www.reddit.com/r/dataisbeautiful/" class="choice" >dataisbeautiful</a><a href="http://www.reddit.com/r/DIY/" class="choice" >DIY</a><a href="http://www.reddit.com/r/Documentaries/" class="choice" >Documentaries</a><a href="http://www.reddit.com/r/EarthPorn/" class="choice" >EarthPorn</a><a href="http://www.reddit.com/r/europe/" class="choice" >europe</a><a href="http://www.reddit.com/r/explainlikeimfive/" class="choice" >explainlikeimfive</a><a href="http://www.reddit.com/r/Fitness/" class="choice" >Fitness</a><a href="http://www.reddit.com/r/food/" class="choice" >food</a><a href="http://www.reddit.com/r/funny/" class="choice" >funny</a><a href="http://www.reddit.com/r/Futurology/" class="choice" >Futurology</a><a href="http://www.reddit.com/r/gadgets/" class="choice" >gadgets</a><a href="http://www.reddit.com/r/gaming/" class="choice" >gaming</a><a href="http://www.reddit.com/r/GetMotivated/" class="choice" >GetMotivated</a><a href="http://www.reddit.com/r/gifs/" class="choice" >gifs</a><a href="http://www.reddit.com/r/history/" class="choice" >history</a><a href="http://www.reddit.com/r/IAmA/" class="choice" >IAmA</a><a href="http://www.reddit.com/r/InternetIsBeautiful/" class="choice" >InternetIsBeautiful</a><a href="http://www.reddit.com/r/intresseklubben/" class="choice" >intresseklubben</a><a href="http://www.reddit.com/r/Jokes/" class="choice" >Jokes</a><a href="http://www.reddit.com/r/LifeProTips/" class="choice" >LifeProTips</a><a href="http://www.reddit.com/r/listentothis/" class="choice" >listentothis</a><a href="http://www.reddit.com/r/mildlyinteresting/" class="choice" >mildlyinteresting</a><a href="http://www.reddit.com/r/movies/" class="choice" >movies</a><a href="http://www.reddit.com/r/Music/" class="choice" >Music</a><a href="http://www.reddit.com/r/news/" class="choice" >news</a><a href="http://www.reddit.com/r/nosleep/" class="choice" >nosleep</a><a href="http://www.reddit.com/r/nottheonion/" class="choice" >nottheonion</a><a href="http://www.reddit.com/r/OldSchoolCool/" class="choice" >OldSchoolCool</a><a href="http://www.reddit.com/r/personalfinance/" class="choice" >personalfinance</a><a href="http://www.reddit.com/r/philosophy/" class="choice" >philosophy</a><a href="http://www.reddit.com/r/photoshopbattles/" class="choice" >photoshopbattles</a><a href="http://www.reddit.com/r/pics/" class="choice" >pics</a><a href="http://www.reddit.com/r/science/" class="choice" >science</a><a href="http://www.reddit.com/r/Showerthoughts/" class="choice" >Showerthoughts</a><a href="http://www.reddit.com/r/space/" class="choice" >space</a><a href="http://www.reddit.com/r/spop/" class="choice" >spop</a><a href="http://www.reddit.com/r/sports/" class="choice" >sports</a><a href="http://www.reddit.com/r/svenskpolitik/" class="choice" >svenskpolitik</a><a href="http://www.reddit.com/r/SWARJE/" class="choice" >SWARJE</a><a href="http://www.reddit.com/r/sweden/" class="choice" >sweden</a><a href="http://www.reddit.com/r/swedishproblems/" class="choice" >swedishproblems</a><a href="http://www.reddit.com/r/television/" class="choice" >television</a><a href="http://www.reddit.com/r/tifu/" class="choice" >tifu</a><a href="http://www.reddit.com/r/todayilearned/" class="choice" >todayilearned</a><a href="http://www.reddit.com/r/TwoXChromosomes/" class="choice" >TwoXChromosomes</a><a href="http://www.reddit.com/r/UpliftingNews/" class="choice" >UpliftingNews</a><a href="http://www.reddit.com/r/videos/" class="choice" >videos</a><a href="http://www.reddit.com/r/worldnews/" class="choice" >worldnews</a><a href="http://www.reddit.com/r/WritingPrompts/" class="choice" >WritingPrompts</a><a href="http://www.reddit.com/subreddits/" class="bottom-option choice" >edit subscriptions</a></div><div class="sr-list"><ul class="flat-list sr-bar hover" ><li class='selected'><a href="http://www.reddit.com/" class="choice" >front</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/all" class="choice" >all</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/random/" class="random choice" >random</a></li></ul><span class="separator">&nbsp;|&nbsp;</span><ul class="flat-list sr-bar hover" id='sr-bar'><li ><a href="http://www.reddit.com/r/creepy/" class="choice" >creepy</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/gadgets/" class="choice" >gadgets</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/svenskpolitik/" class="choice" >svenskpolitik</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/nosleep/" class="choice" >nosleep</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/gifs/" class="choice" >gifs</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/sports/" class="choice" >sports</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/sweden/" class="choice" >sweden</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/Futurology/" class="choice" >Futurology</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/europe/" class="choice" >europe</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/science/" class="choice" >science</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/OldSchoolCool/" class="choice" >OldSchoolCool</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/InternetIsBeautiful/" class="choice" >InternetIsBeautiful</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/pics/" class="choice" >pics</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/listentothis/" class="choice" >listentothis</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/videos/" class="choice" >videos</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/todayilearned/" class="choice" >todayilearned</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/explainlikeimfive/" class="choice" >explainlikeimfive</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/swedishproblems/" class="choice" >swedishproblems</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/movies/" class="choice" >movies</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/intresseklubben/" class="choice" >intresseklubben</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/news/" class="choice" >news</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/EarthPorn/" class="choice" >EarthPorn</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/history/" class="choice" >history</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/worldnews/" class="choice" >worldnews</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/tifu/" class="choice" >tifu</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/spop/" class="choice" >spop</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/funny/" class="choice" >funny</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/aww/" class="choice" >aww</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/askscience/" class="choice" >askscience</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/photoshopbattles/" class="choice" >photoshopbattles</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/space/" class="choice" >space</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/Allsvenskan/" class="choice" >Allsvenskan</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/gaming/" class="choice" >gaming</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/Jokes/" class="choice" >Jokes</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/Fitness/" class="choice" >Fitness</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/nottheonion/" class="choice" >nottheonion</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/TwoXChromosomes/" class="choice" >TwoXChromosomes</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/dataisbeautiful/" class="choice" >dataisbeautiful</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/LifeProTips/" class="choice" >LifeProTips</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/food/" class="choice" >food</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/books/" class="choice" >books</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/SWARJE/" class="choice" >SWARJE</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/AskReddit/" class="choice" >AskReddit</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/personalfinance/" class="choice" >personalfinance</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/Documentaries/" class="choice" >Documentaries</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/WritingPrompts/" class="choice" >WritingPrompts</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/mildlyinteresting/" class="choice" >mildlyinteresting</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/philosophy/" class="choice" >philosophy</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/UpliftingNews/" class="choice" >UpliftingNews</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/television/" class="choice" >television</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/Showerthoughts/" class="choice" >Showerthoughts</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/IAmA/" class="choice" >IAmA</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/Music/" class="choice" >Music</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/Art/" class="choice" >Art</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/GetMotivated/" class="choice" >GetMotivated</a></li><li ><span class="separator">-</span><a href="http://www.reddit.com/r/DIY/" class="choice" >DIY</a></li></ul></div><a href="http://www.reddit.com/subreddits/" id="sr-more-link" >more &raquo;</a></div></div><div id="header-bottom-left"><a href="/" id="header-img" class="default-header" title="">reddit.com</a>&nbsp;<ul class="tabmenu " ><li class='selected'><a href="http://www.reddit.com/" class="choice" >hot</a></li><li ><a href="http://www.reddit.com/new/" class="choice" >new</a></li><li ><a href="http://www.reddit.com/rising/" class="choice" >rising</a></li><li ><a href="http://www.reddit.com/controversial/" class="choice" >controversial</a></li><li ><a href="http://www.reddit.com/top/" class="choice" >top</a></li><li ><a href="http://www.reddit.com/gilded/" class="choice" >gilded</a></li><li ><a href="http://www.reddit.com/wiki/" class="choice" >wiki</a></li><li ><a href="http://www.reddit.com/ads/" class="choice" >promoted</a></li></ul></div><div id="header-bottom-right"><span class="user">want to join?&#32;<a href="https://www.reddit.com/login" class="login-required" >sign in or create an account</a>&#32;in seconds</span><span class="separator">|</span><ul class="flat-list hover" ><li ><a href="javascript:void(0)" class="pref-lang choice" onclick="return showlang();" >English</a></li></ul></div></div><div class="side"><div class='spacer'><form action="http://www.reddit.com/search" id="search" role="search"><input type="text" name="q" placeholder="search" tabindex="20"><input type="submit" value="" tabindex="22"><div id="searchexpando" class="infobar"><div id="moresearchinfo"><p>use the following search parameters to narrow your results:</p><dl><dt>subreddit:<i>subreddit</i></dt><dd>find submissions in &quot;subreddit&quot;</dd><dt>author:<i>username</i></dt><dd>find submissions by &quot;username&quot;</dd><dt>site:<i>example.com</i></dt><dd>find submissions from &quot;example.com&quot;</dd><dt>url:<i>text</i></dt><dd>search for &quot;text&quot; in url</dd><dt>selftext:<i>text</i></dt><dd>search for &quot;text&quot; in self post contents</dd><dt>self:yes (or self:no)</dt><dd>include (or exclude) self posts</dd><dt>nsfw:yes (or nsfw:no)</dt><dd>include (or exclude) results marked as NSFW</dd></dl><p>e.g.&#32;<code>subreddit:aww site:imgur.com dog</code></p><p><a href="http://www.reddit.com/wiki/search">see the search faq for details.</a></p></div><p><a href="http://www.reddit.com/wiki/search" id="search_showmore">advanced search: by author, subreddit...</a></p></div></form></div><div class='spacer'><form method="post" action="https://www.reddit.com/post/login" id="login_login-main" class="login-form login-form-side"><input type="hidden" name="op" value="login-main" /><input name="user" placeholder="username" type="text" maxlength="20" tabindex="1"/><input name="passwd" placeholder="password" type="password" tabindex="1"/><div class="status"></div><div id="remember-me"><input type="checkbox" name="rem" id="rem-login-main" tabindex="1" /><label for="rem-login-main">remember me</label><a class="recover-password" href="/password">reset password</a></div><div class="submit"><span class="throbber"></span><button class="btn" type="submit" tabindex="1">login</button></div><div class="clear"></div></form></div><div class='spacer'><div class="sponsorshipbox"></div></div><div class='spacer'><div class="sidebox submit submit-link"><div class="morelink"><a href="http://www.reddit.com/submit" class="login-required" target="_top" >Submit a new link</a><div class="nub"></div></div></div></div><div class='spacer'><div class="sidebox submit submit-text"><div class="morelink"><a href="http://www.reddit.com/submit?selftext=true" class="login-required" target="_top" >Submit a new text post</a><div class="nub"></div></div></div></div><div class='spacer'><iframe id="ad_main" frameborder="0" scrolling="no" name="ad_main" src="http://static.adzerk.net/reddit/ads.html?sr=-reddit.com,loggedout&amp;bust2#http://www.reddit.com"></iframe><script type="text/javascript">$(function() { var ad = $("#ad_main"); if(!ad.length || ad.height() == 0 || ad.width() == 0 || ad.offset().left == 0) { $(".footer").append("<img alt='' src='//pixel.redditmedia.com/pixel/of_defenestration.png?hash=adblock0e31bc319d5b5882b0cddf147f4ce1da5ac9c731&id=adblock&random=" + Math.random()*10000000000000000 + "'/>"); $(window).trigger('adBlockEnabled', true) } else { $(window).trigger('adBlockEnabled', false) } });</script></div><div class='spacer'><div class="goldvertisement"><div class="inner"><h2 >daily reddit gold goal</h2><div class="progress"><p>73%</p><div class="bar"><span style="width: 73%"></span></div></div><a href="/gold?goldtype=code&amp;source=progressbar" target="_blank">help support reddit</a><div class="gold-bubble hover-bubble help-bubble anchor-top-centered"><p><span class="gold-branding">reddit gold</span>&#32;gives you extra features and helps keep our servers running. We believe the more reddit can be user-supported, the freer we will be to make reddit the best it can be.</p><p class="buy-gold">Buy gold for yourself to gain access to&#32;<a href="/gold/about" target="_blank">extra features</a>&#32;and&#32;<a href="/r/goldbenefits" target="_blank">special benefits</a>. A month of gold pays for &#32;<b>231.26 minutes</b>&#32;of reddit server time!</p><p class="give-gold">Give gold to thank exemplary people and encourage them to post more.</p><p class="aside">This daily goal updates every 10 minutes and is reset at midnight&#32;<a target="_blank" href="http://en.wikipedia.org/wiki/Pacific_Time_Zone">Pacific Time</a>&#32; (7 hours, 16 minutes from now).</p><div class="history"><p >Yesterday's reddit gold goal</p><div class="progress"><p>95%</p><div class="bar"><span style="width: 95%"></span></div></div></div></div></div></div></div></div><a name="content"></a><div class="content" role="main"><div class="infobar welcome"><h1>reddit's stories are created by its users</h1><div class="button-row"><h2>join the community, vote, and change the world.</h2><a href="/about">learn more &rsaquo;</a></div></div><div class="locationbar"><div class="md"><p>using the default subreddits for your location (SE)</p>
2
+ </div>
3
+ <span class="options">(<a class="use-global" href="javascript:void(0)">use global defaults</a>&#32;|&#32;<a class="dismiss" href="javascript:void(0)">dismiss this message</a>)</span></div><script type="text/javascript">$(".use-global").click( function () { $.request("use_global_defaults"); } ); $(".dismiss").click( function () { $.request("hide_locationbar"); } );</script><div class='spacer'><div id="siteTable_organic" class="organic-listing loading show-placeholder" ><div class=" thing id-t3_2v1hpx linkflair linkflair-category linkflair-meta odd&#32; link " style='display:none' onclick="click_thing(this)" data-fullname="t3_2v1hpx" ><p class="parent"></p><span class="rank"></span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score likes">&bull;</div><div class="score unvoted">&bull;</div><div class="score dislikes">&bull;</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://imgur.com/Uzs7mFb" ><img src="//b.thumbs.redditmedia.com/12H9M1FboCEnsXyy_V36yt-YlZqtlvZNB1KwomYMMIo.jpg" width='70' height='52' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://imgur.com/Uzs7mFb" tabindex="1" >Så här roligt har vi det på Sweddits spelkvällar</a><span class="linkflairlabel" title="Meta/Reddit">Meta/Reddit</span>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Sat Feb 7 00:02:47 2015 UTC" datetime="2015-02-07T00:02:47+00:00" class="live-timestamp">40 minutes ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/SmokinBear" class="author may-blank id-t2_6vtd5" >SmokinBear</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/sweden/" class="subreddit hover may-blank" >/r/sweden</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/sweden/comments/2v1hpx/så_här_roligt_har_vi_det_på_sweddits_spelkvällar/" class="comments may-blank" >2 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v1ks2 even&#32; link " style='display:none' onclick="click_thing(this)" data-fullname="t3_2v1ks2" ><p class="parent"></p><span class="rank"></span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score likes">&bull;</div><div class="score unvoted">&bull;</div><div class="score dislikes">&bull;</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://imgur.com/ipKxetk" ><img src="//a.thumbs.redditmedia.com/F1wz8_mGq4II8tBL2c6K5VaqPgLlM20GFezE_oehvm4.jpg" width='70' height='13' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://imgur.com/ipKxetk" tabindex="1" >Female games take note</a>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Sat Feb 7 00:30:26 2015 UTC" datetime="2015-02-07T00:30:26+00:00" class="live-timestamp">12 minutes ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/MattheJ1" class="author may-blank id-t2_aqp8n" >MattheJ1</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/funny/" class="subreddit hover may-blank" >/r/funny</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/funny/comments/2v1ks2/female_games_take_note/" class="comments empty may-blank" >comment</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v1kw6 odd&#32; link " style='display:none' onclick="click_thing(this)" data-fullname="t3_2v1kw6" ><p class="parent"></p><span class="rank"></span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score likes">&bull;</div><div class="score unvoted">&bull;</div><div class="score dislikes">&bull;</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://www.ebaumsworld.com/video/watch/84452430/" rel="nofollow" ><img src="//a.thumbs.redditmedia.com/2Q_vt-UijaZp8U4SIrmNC-kehJdcUvaROi5HIRjBSJ4.jpg" width='70' height='36' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://www.ebaumsworld.com/video/watch/84452430/" tabindex="1" rel="nofollow" >Kid Forgets How to Slide</a>&#32;<span class="domain">(<a href="/domain/ebaumsworld.com/">ebaumsworld.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Sat Feb 7 00:31:24 2015 UTC" datetime="2015-02-07T00:31:24+00:00" class="live-timestamp">12 minutes ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/DK359" class="author may-blank id-t2_fy0gi" >DK359</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/funny/" class="subreddit hover may-blank" >/r/funny</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/funny/comments/2v1kw6/kid_forgets_how_to_slide/" class="comments empty may-blank" >comment</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v1kri even&#32; link " style='display:none' onclick="click_thing(this)" data-fullname="t3_2v1kri" ><p class="parent"></p><span class="rank"></span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score likes">&bull;</div><div class="score unvoted">&bull;</div><div class="score dislikes">&bull;</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://i.imgur.com/EBFYwAa.jpg" rel="nofollow" ><img src="//b.thumbs.redditmedia.com/zku5ssd3mcIoDCaneI2XYKmR0hOp8T27VYdv2kKDPTw.jpg" width='70' height='70' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://i.imgur.com/EBFYwAa.jpg" tabindex="1" rel="nofollow" >My friend is an English teacher in Korea and today he had to grade an 8 year old's work.</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Sat Feb 7 00:30:16 2015 UTC" datetime="2015-02-07T00:30:16+00:00" class="live-timestamp">13 minutes ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/sooah0207" class="author may-blank id-t2_752oi" >sooah0207</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/funny/" class="subreddit hover may-blank" >/r/funny</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/funny/comments/2v1kri/my_friend_is_an_english_teacher_in_korea_and/" class="comments may-blank" >1 comment</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v1epv odd&#32; link " style='display:none' onclick="click_thing(this)" data-fullname="t3_2v1epv" ><p class="parent"></p><span class="rank"></span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score likes">&bull;</div><div class="score unvoted">&bull;</div><div class="score dislikes">&bull;</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://tv.aftonbladet.se/webbtv/nyheter/morgon/article65761.ab" rel="nofollow" ><img src="//b.thumbs.redditmedia.com/SnJZeyIY0kbNVhO9C4eyZ_S0YqE96F0JcygLZxW0TbY.jpg" width='70' height='39' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://tv.aftonbladet.se/webbtv/nyheter/morgon/article65761.ab" tabindex="1" rel="nofollow" >Fångens fräcka rymning.</a>&#32;<span class="domain">(<a href="/domain/tv.aftonbladet.se/">tv.aftonbladet.se</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 23:36:18 2015 UTC" datetime="2015-02-06T23:36:18+00:00" class="live-timestamp">1 hour ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/IHerre" class="author may-blank id-t2_f0m57" >IHerre</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/sweden/" class="subreddit hover may-blank" >/r/sweden</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/sweden/comments/2v1epv/fångens_fräcka_rymning/" class="comments empty may-blank" >comment</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v1kxc even&#32; link self" style='display:none' onclick="click_thing(this)" data-fullname="t3_2v1kxc" ><p class="parent"></p><span class="rank"></span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score likes">&bull;</div><div class="score unvoted">&bull;</div><div class="score dislikes">&bull;</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><div class="entry unvoted"><p class="title"><a class="title may-blank " href="/r/AskReddit/comments/2v1kxc/inventorsentrepreneurs_of_reddit_what_product_did/" tabindex="1" rel="nofollow" >Inventors/entrepreneurs of reddit, what product did you invent/create, how was it published/licensed/distributed, and how much money did it make?</a>&#32;<span class="domain">(<a href="/r/AskReddit/">self.AskReddit</a>)</span></p><div class="expando-button collapsed selftext" onclick="expando_child(this)"></div><p class="tagline">submitted&#32;<time title="Sat Feb 7 00:31:46 2015 UTC" datetime="2015-02-07T00:31:46+00:00" class="live-timestamp">11 minutes ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/SMASHBRUHBRUH" class="author may-blank id-t2_ik1w5" >SMASHBRUHBRUH</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/AskReddit/" class="subreddit hover may-blank" >/r/AskReddit</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/AskReddit/comments/2v1kxc/inventorsentrepreneurs_of_reddit_what_product_did/" class="comments empty may-blank" >comment</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v1kcx odd&#32; link self" style='display:none' onclick="click_thing(this)" data-fullname="t3_2v1kcx" ><p class="parent"></p><span class="rank"></span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score likes">&bull;</div><div class="score unvoted">&bull;</div><div class="score dislikes">&bull;</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><div class="entry unvoted"><p class="title"><a class="title may-blank " href="/r/philosophy/comments/2v1kcx/if_your_sick_of_religiosity_and_are_looking_for/" tabindex="1" rel="nofollow" >If your sick of religiosity and are looking for day to day spirituality</a>&#32;<span class="domain">(<a href="/r/philosophy/">self.philosophy</a>)</span></p><div class="expando-button collapsed selftext" onclick="expando_child(this)"></div><p class="tagline">submitted&#32;<time title="Sat Feb 7 00:26:46 2015 UTC" datetime="2015-02-07T00:26:46+00:00" class="live-timestamp">16 minutes ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/timothyvelner" class="author may-blank id-t2_l6zka" >timothyvelner</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/philosophy/" class="subreddit hover may-blank" >/r/philosophy</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/philosophy/comments/2v1kcx/if_your_sick_of_religiosity_and_are_looking_for/" class="comments empty may-blank" >comment</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v1krs even&#32; link " style='display:none' onclick="click_thing(this)" data-fullname="t3_2v1krs" ><p class="parent"></p><span class="rank"></span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score likes">&bull;</div><div class="score unvoted">&bull;</div><div class="score dislikes">&bull;</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://vimeo.com/15266520" rel="nofollow" ><img src="//a.thumbs.redditmedia.com/xN4DGYAiADpXvu0Q38JkWSex1YroT-HgMM4gv5V4fz8.jpg" width='70' height='39' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://vimeo.com/15266520" tabindex="1" rel="nofollow" >Waste = Food (2010) - An inspiring documentary on the Cradle to Cradle design concept and its potential good for the future of the environment...amazing stuff (49.24)</a>&#32;<span class="domain">(<a href="/domain/vimeo.com/">vimeo.com</a>)</span></p><div class="expando-button collapsed video" onclick="expando_child(this)"></div><p class="tagline">submitted&#32;<time title="Sat Feb 7 00:30:21 2015 UTC" datetime="2015-02-07T00:30:21+00:00" class="live-timestamp">13 minutes ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/buckshotlafunk" class="author may-blank id-t2_875wh" >buckshotlafunk</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/Documentaries/" class="subreddit hover may-blank" >/r/Documentaries</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/Documentaries/comments/2v1krs/waste_food_2010_an_inspiring_documentary_on_the/" class="comments empty may-blank" >comment</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div><script type="text/javascript">var cache = expando_cache(); cache["t3_2v1krs_cache"] = " &lt;iframe src=&quot;//www.redditmedia.com/mediaembed/2v1krs&quot; id=&quot;media-embed-2v1krs-ijs&quot; class=&quot;media-embed&quot; width=&quot;330&quot; height=&quot;250&quot; border=&quot;0&quot; frameBorder=&quot;0&quot; scrolling=&quot;no&quot; allowfullscreen&gt;&lt;/iframe&gt; ";</script></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v1krj linkflair linkflair-flairwp odd&#32; link self" style='display:none' onclick="click_thing(this)" data-fullname="t3_2v1krj" ><p class="parent"></p><span class="rank"></span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score likes">&bull;</div><div class="score unvoted">&bull;</div><div class="score dislikes">&bull;</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><div class="entry unvoted"><p class="title"><a class="title may-blank " href="/r/WritingPrompts/comments/2v1krj/wp_people_are_able_to_cast_magic_again_but_heres/" tabindex="1" rel="nofollow" >[Wp] People are able to cast magic again. But here's the catch - they have to be in a compromising body position.</a><span class="linkflairlabel" title="Writing Prompt">Writing Prompt</span>&#32;<span class="domain">(<a href="/r/WritingPrompts/">self.WritingPrompts</a>)</span></p><p class="tagline">submitted&#32;<time title="Sat Feb 7 00:30:17 2015 UTC" datetime="2015-02-07T00:30:17+00:00" class="live-timestamp">13 minutes ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/Graxter" class="author may-blank id-t2_j2u1w" >Graxter</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/WritingPrompts/" class="subreddit hover may-blank" >/r/WritingPrompts</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/WritingPrompts/comments/2v1krj/wp_people_are_able_to_cast_magic_again_but_heres/" class="comments empty may-blank" >comment</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v1ksr even&#32; link " style='display:none' onclick="click_thing(this)" data-fullname="t3_2v1ksr" ><p class="parent"></p><span class="rank"></span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score likes">&bull;</div><div class="score unvoted">&bull;</div><div class="score dislikes">&bull;</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://i.imgur.com/WAttdPG.jpg" ><img src="//b.thumbs.redditmedia.com/-gUUF1uJ1VOpVRGk7ZB7uOqnFQstmICsgvuRgTSN1yE.jpg" width='70' height='52' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://i.imgur.com/WAttdPG.jpg" tabindex="1" >I just finished making these for my boyfriend for Valentine's Day. Think he'll like em'?</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Sat Feb 7 00:30:35 2015 UTC" datetime="2015-02-07T00:30:35+00:00" class="live-timestamp">12 minutes ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/HumbleKratos" class="author may-blank id-t2_e8v46" >HumbleKratos</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/pics/" class="subreddit hover may-blank" >/r/pics</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/pics/comments/2v1ksr/i_just_finished_making_these_for_my_boyfriend_for/" class="comments may-blank" >2 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class="thing interestbar" style="display:none"><div class="sr-interest-bar"><div class="bubble"><p class="caption">it looks like you haven't &#32;<span class="subscribe">subscribed</span>&#32; to any subreddits yet. want some ideas?</p><p class="error-caption"></p><div class="query-box"><input class="query" placeholder="what are you interested in?"><div class="throbber"></div></div><ul class="results"><li>try these:</li><li><a href="/r/random" class="random" target="_blank"><span class="name">serendipity</span></a></li></ul></div></div></div><div class="nextprev"><div class="throbber"></div><button class="arrow prev">prev</button><button class="arrow next">next</button></div><div class="help help-hoverable">what's this?<div id="spotlight-help" class="hover-bubble help-bubble anchor-top"><div class="help-section help-promoted"><p>This sponsored link is an advertisement generated with our&#32;<a href="http://www.reddit.com/wiki/selfserve" >self-serve advertisement tool</a>.</p><p>Use of this tool is open to all members of reddit.com, and for as little as $5.00 you can advertise in this area.&#32;<a href="http://www.reddit.com/advertising" >Get started &rsaquo;</a></p></div><div class="help-section help-organic"><p>This area shows new and upcoming links. Vote on links here to help them become popular, and click the forwards and backwards buttons to view more.</p></div><div class="help-section help-interestbar"><p>Enter a keyword or topic to discover new subreddits around your interests. Be specific!</p><p>You can access this tool at any time on the&#32;<a href="http://www.reddit.com/subreddits/" >/subreddits/</a>&#32;page.</p></div></div></div></div><script>r.spotlight.setup( ["t3_2v1hpx", "t3_2v1ks2", "t3_2v1kw6", "t3_2v1kri", "t3_2v1epv", "t3_2v1kxc", "t3_2v1kcx", "t3_2v1krs", "t3_2v1krj", "t3_2v1ksr"], 0.5, true, "mildlyinteresting+TwoXChromosomes+videos+todayilearned+gadgets+books+Music+DIY+EarthPorn+InternetIsBeautiful+funny+OldSchoolCool+space+Showerthoughts+IAmA+sweden+Documentaries+sports+aww+nottheonion+explainlikeimfive+europe+gaming+photoshopbattles+food+askscience+Futurology+philosophy+UpliftingNews+movies+Jokes+LifeProTips+Fitness+news+worldnews+gifs+television+WritingPrompts+Art+ reddit.com+science+dataisbeautiful+personalfinance+creepy+pics+nosleep+AskReddit+listentothis+GetMotivated+history" )</script></div><div class='spacer'><div class="trending-subreddits"><div class="rank-spacer"></div><div class="midcol-spacer"></div><div class="trending-subreddits-content"><strong>trending subreddits</strong><ul><li><a href="/r/funhaus" target="_blank">/r/funhaus</a></li><li><a href="/r/unexpectedjihad" target="_blank">/r/unexpectedjihad</a></li><li><a href="/r/70sdesign" target="_blank">/r/70sdesign</a></li><li><a href="/r/cade" target="_blank">/r/cade</a></li><li><a href="/r/AdorableDragons" target="_blank">/r/AdorableDragons</a></li></ul><a href="/r/trendingsubreddits/comments/2uyun5/trending_subreddits_for_20150206_rfunhaus/" class="comments may-blank">45 comments</a></div></div></div><div class='spacer'><style>body >.content .link .rank, .rank-spacer { width: 2.2ex } body >.content .link .midcol, .midcol-spacer { width: 5.1ex }</style><div id="siteTable" class="sitetable linklisting"><div class=" thing id-t3_2v16z9 odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2v16z9" ><p class="parent"></p><span class="rank">1</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">4738</div><div class="score unvoted">4739</div><div class="score likes">4740</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://i.imgur.com/qxlCWDT.jpg" ><img src="//a.thumbs.redditmedia.com/iIX54AFPRj4VSVkA4FvDRnkX_J5DuF3hRVWk03qpom8.jpg" width='70' height='69' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://i.imgur.com/qxlCWDT.jpg" tabindex="1" >Chris Pratt, homeless, living in this van, holding the script to his first acting job</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 22:31:05 2015 UTC" datetime="2015-02-06T22:31:05+00:00" class="live-timestamp">2 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/Ripsaw99" class="author may-blank id-t2_i9wme" >Ripsaw99</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/pics/" class="subreddit hover may-blank" >/r/pics</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/pics/comments/2v16z9/chris_pratt_homeless_living_in_this_van_holding/" class="comments may-blank" >481 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v0tuh even&#32; link " onclick="click_thing(this)" data-fullname="t3_2v0tuh" ><p class="parent"></p><span class="rank">2</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">3612</div><div class="score unvoted">3613</div><div class="score likes">3614</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://i.imgur.com/F6j3DDI.jpg" ><img src="//b.thumbs.redditmedia.com/ot_XvmZiEbfYI-06znnu4QyElXNb6ShnfOV7CAN82OE.jpg" width='70' height='46' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://i.imgur.com/F6j3DDI.jpg" tabindex="1" >Cannot believe I got him to sit and stay for this.</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 20:46:12 2015 UTC" datetime="2015-02-06T20:46:12+00:00" class="live-timestamp">3 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/Hurevolution4lx" class="author may-blank id-t2_d344k" >Hurevolution4lx</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/aww/" class="subreddit hover may-blank" >/r/aww</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/aww/comments/2v0tuh/cannot_believe_i_got_him_to_sit_and_stay_for_this/" class="comments may-blank" >91 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v0gz8 linkflair linkflair-spoiler odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2v0gz8" ><p class="parent"></p><span class="rank">3</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">4495</div><div class="score unvoted">4496</div><div class="score likes">4497</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://deadline.com/2015/02/battlebots-revival-reality-series-abc-summer-1201367663/" ><img src="//a.thumbs.redditmedia.com/2piCeYlrFjPci_n_QC3uKPO2cqjRj9gel1MgzyccYG4.jpg" width='70' height='47' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://deadline.com/2015/02/battlebots-revival-reality-series-abc-summer-1201367663/" tabindex="1" >BATTLEBOTS coming back to air on ABC for the summer</a><span class="linkflairlabel" title="/r/all">/r/all</span>&#32;<span class="domain">(<a href="/domain/deadline.com/">deadline.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 19:07:55 2015 UTC" datetime="2015-02-06T19:07:55+00:00" class="live-timestamp">5 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/Reasonable-redditor" class="author may-blank id-t2_8fzfe" >Reasonable-redditor</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/television/" class="subreddit hover may-blank" >/r/television</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/television/comments/2v0gz8/battlebots_coming_back_to_air_on_abc_for_the/" class="comments may-blank" >807 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v0j7l even&#32; link " onclick="click_thing(this)" data-fullname="t3_2v0j7l" ><p class="parent"></p><span class="rank">4</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">4308</div><div class="score unvoted">4309</div><div class="score likes">4310</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://imgur.com/l76GwLz" ><img src="//a.thumbs.redditmedia.com/JbfOxHlzvlPzJrKeCf8qWyAxwNfxSZf1hTf2vJ94N_4.jpg" width='70' height='61' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://imgur.com/l76GwLz" tabindex="1" >Trying to study when.. internet happens</a>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 19:24:37 2015 UTC" datetime="2015-02-06T11:24:37-08:00" class="live-timestamp">5 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/Sloppymo" class="author may-blank id-t2_izkir" >Sloppymo</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/funny/" class="subreddit hover may-blank" >/r/funny</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/funny/comments/2v0j7l/trying_to_study_when_internet_happens/" class="comments may-blank" >235 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v0a8b linkflair linkflair-media odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2v0a8b" ><p class="parent"></p><span class="rank">5</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">4836</div><div class="score unvoted">4837</div><div class="score likes">4838</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://imgur.com/a/IXk6M" ><img src="//b.thumbs.redditmedia.com/WrSfpRKTD7-mHcjAH5FnCOO4BQnpZvXvSbCKVGo8DVQ.jpg" width='70' height='70' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://imgur.com/a/IXk6M" tabindex="1" >Chris Pratt Holds Up Superbowl Bet, Visits Cancer Charity as Starlord</a><span class="linkflairlabel" title="Media">Media</span>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><div class="expando-button collapsed video" onclick="expando_child(this)"></div><p class="tagline">submitted&#32;<time title="Fri Feb 6 18:16:12 2015 UTC" datetime="2015-02-06T18:16:12+00:00" class="live-timestamp">6 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/Rubix89" class="author may-blank id-t2_5tooh" >Rubix89</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/movies/" class="subreddit hover may-blank" >/r/movies</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/movies/comments/2v0a8b/chris_pratt_holds_up_superbowl_bet_visits_cancer/" class="comments may-blank" >1142 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div><script type="text/javascript">var cache = expando_cache(); cache["t3_2v0a8b_cache"] = " &lt;iframe src=&quot;//www.redditmedia.com/mediaembed/2v0a8b&quot; id=&quot;media-embed-2v0a8b-f4d&quot; class=&quot;media-embed&quot; width=&quot;560&quot; height=&quot;560&quot; border=&quot;0&quot; frameBorder=&quot;0&quot; scrolling=&quot;no&quot; allowfullscreen&gt;&lt;/iframe&gt; ";</script></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v094d even&#32; link " onclick="click_thing(this)" data-fullname="t3_2v094d" ><p class="parent"></p><span class="rank">6</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">4391</div><div class="score unvoted">4392</div><div class="score likes">4393</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://i.imgur.com/SrzArQy.jpg" ><img src="//a.thumbs.redditmedia.com/4U3UNlmIQrq9fyIYsASykvlqmBIeT0gNtBDlr7B4Gq4.jpg" width='70' height='49' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://i.imgur.com/SrzArQy.jpg" tabindex="1" >Gets me every time</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 18:07:34 2015 UTC" datetime="2015-02-06T10:07:34-08:00" class="live-timestamp">6 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/scrappysrt4" class="author may-blank id-t2_c7km7" >scrappysrt4</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/gaming/" class="subreddit hover may-blank" >/r/gaming</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/gaming/comments/2v094d/gets_me_every_time/" class="comments may-blank" >585 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v0ng0 odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2v0ng0" ><p class="parent"></p><span class="rank">7</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">2969</div><div class="score unvoted">2970</div><div class="score likes">2971</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://i.imgur.com/gzKz1sg.gif" ><img src="//b.thumbs.redditmedia.com/Jpo1p-QBAtV3z1HrUFQdHF96LpOYdEYHqeAHBfmK6xA.jpg" width='70' height='70' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://i.imgur.com/gzKz1sg.gif" tabindex="1" >......................................................hey</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 19:56:49 2015 UTC" datetime="2015-02-06T11:56:49-08:00" class="live-timestamp">4 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/GallowBoob" class="author may-blank id-t2_iqsg6" >GallowBoob</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/gifs/" class="subreddit hover may-blank" >/r/gifs</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/gifs/comments/2v0ng0/hey/" class="comments may-blank" >62 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v0lr2 even&#32; link " onclick="click_thing(this)" data-fullname="t3_2v0lr2" ><p class="parent"></p><span class="rank">8</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">2896</div><div class="score unvoted">2897</div><div class="score likes">2898</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://imgur.com/a/veFjC" ><img src="//b.thumbs.redditmedia.com/vPRmmor86ecBCcC9BziJgA3bT4KiIx5WJBkiC_oKjpI.jpg" width='70' height='70' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://imgur.com/a/veFjC" tabindex="1" >Do you wanna build a WTF?</a>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><div class="expando-button collapsed video" onclick="expando_child(this)"></div><p class="tagline">submitted&#32;<time title="Fri Feb 6 19:43:35 2015 UTC" datetime="2015-02-06T19:43:35+00:00" class="live-timestamp">4 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/ErrahM" class="author may-blank id-t2_9rzxc" >ErrahM</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/creepy/" class="subreddit hover may-blank" >/r/creepy</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/creepy/comments/2v0lr2/do_you_wanna_build_a_wtf/" class="comments may-blank" >118 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div><script type="text/javascript">var cache = expando_cache(); cache["t3_2v0lr2_cache"] = " &lt;iframe src=&quot;//www.redditmedia.com/mediaembed/2v0lr2&quot; id=&quot;media-embed-2v0lr2-9g8&quot; class=&quot;media-embed&quot; width=&quot;560&quot; height=&quot;560&quot; border=&quot;0&quot; frameBorder=&quot;0&quot; scrolling=&quot;no&quot; allowfullscreen&gt;&lt;/iframe&gt; ";</script></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v0juy linkflair linkflair-hide linkflair-img9 linkflair-metalworking odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2v0juy" ><p class="parent"></p><span class="rank">9</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">2910</div><div class="score unvoted">2911</div><div class="score likes">2912</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://imgur.com/a/n18GA" tabindex="1" >Three years ago I found a broken Apple G5 on the side of the road. I just finished turning it into a Hackintosh. Here's my build!</a><span class="linkflairlabel" title="metalworking">metalworking</span>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><div class="expando-button collapsed video" onclick="expando_child(this)"></div><p class="tagline">submitted&#32;<time title="Fri Feb 6 19:29:37 2015 UTC" datetime="2015-02-06T19:29:37+00:00" class="live-timestamp">5 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/GrandpaSquarepants" class="author may-blank id-t2_809fa" >GrandpaSquarepants</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/DIY/" class="subreddit hover may-blank" >/r/DIY</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/DIY/comments/2v0juy/three_years_ago_i_found_a_broken_apple_g5_on_the/" class="comments may-blank" >490 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div><script type="text/javascript">var cache = expando_cache(); cache["t3_2v0juy_cache"] = " &lt;iframe src=&quot;//www.redditmedia.com/mediaembed/2v0juy&quot; id=&quot;media-embed-2v0juy-71k&quot; class=&quot;media-embed&quot; width=&quot;560&quot; height=&quot;560&quot; border=&quot;0&quot; frameBorder=&quot;0&quot; scrolling=&quot;no&quot; allowfullscreen&gt;&lt;/iframe&gt; ";</script></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v0ly3 even&#32; link " onclick="click_thing(this)" data-fullname="t3_2v0ly3" ><p class="parent"></p><span class="rank">10</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">2760</div><div class="score unvoted">2761</div><div class="score likes">2762</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://en.m.wikipedia.org/wiki/Vlasic_Pickles" ><img src="//b.thumbs.redditmedia.com/4FZSxkHW02NE57WHmtCAXlXP5iXRgeCwf77Tui0VTXE.jpg" width='70' height='49' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://en.m.wikipedia.org/wiki/Vlasic_Pickles" tabindex="1" >TIL The Vlasic pickle Stork mascot was an attempt to capitalize on pregnant women's craving for pickles.</a>&#32;<span class="domain">(<a href="/domain/en.m.wikipedia.org/">en.m.wikipedia.org</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 19:44:58 2015 UTC" datetime="2015-02-06T19:44:58+00:00" class="live-timestamp">4 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/synthemerc" class="author may-blank id-t2_ev05h" >synthemerc</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/todayilearned/" class="subreddit hover may-blank" >/r/todayilearned</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/todayilearned/comments/2v0ly3/til_the_vlasic_pickle_stork_mascot_was_an_attempt/" class="comments may-blank" >89 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2uzz2i odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2uzz2i" ><p class="parent"></p><span class="rank">11</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">3753</div><div class="score unvoted">3754</div><div class="score likes">3755</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="https://www.youtube.com/watch?v=YpkixVDFpcI" ><img src="//b.thumbs.redditmedia.com/enaLbb9tdD0GBV827cJdPx2-4dOtD3XWgoM7cpRGcAM.jpg" width='70' height='52' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="https://www.youtube.com/watch?v=YpkixVDFpcI" tabindex="1" >RadioShack declared bankruptcy yesterday. Their old commercial now has a new meaning</a>&#32;<span class="domain">(<a href="/domain/youtube.com/">youtube.com</a>)</span></p><div class="expando-button collapsed video" onclick="expando_child(this)"></div><p class="tagline">submitted&#32;<time title="Fri Feb 6 16:49:09 2015 UTC" datetime="2015-02-06T16:49:09+00:00" class="live-timestamp">7 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/Cadd" class="author may-blank id-t2_9wvj0" >Cadd</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/videos/" class="subreddit hover may-blank" >/r/videos</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/videos/comments/2uzz2i/radioshack_declared_bankruptcy_yesterday_their/" class="comments may-blank" >956 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div><script type="text/javascript">var cache = expando_cache(); cache["t3_2uzz2i_cache"] = " &lt;iframe src=&quot;//www.redditmedia.com/mediaembed/2uzz2i&quot; id=&quot;media-embed-2uzz2i-6ye&quot; class=&quot;media-embed&quot; width=&quot;610&quot; height=&quot;348&quot; border=&quot;0&quot; frameBorder=&quot;0&quot; scrolling=&quot;no&quot; allowfullscreen&gt;&lt;/iframe&gt; ";</script></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2uzld9 even&#32; link " onclick="click_thing(this)" data-fullname="t3_2uzld9" ><p class="parent"></p><span class="rank">12</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">5313</div><div class="score unvoted">5314</div><div class="score likes">5315</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://news.nationalpost.com/2015/02/06/supreme-court-of-canada-strikes-down-ban-on-doctor-assisted-suicide/?preview_id=693648" tabindex="1" >Supreme Court of Canada strikes down ban on doctor-assisted suicide</a>&#32;<span class="domain">(<a href="/domain/news.nationalpost.com/">news.nationalpost.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 14:56:00 2015 UTC" datetime="2015-02-06T14:56:00+00:00" class="live-timestamp">9 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/koolaidhead" class="author may-blank id-t2_7po64" >koolaidhead</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/worldnews/" class="subreddit hover may-blank" >/r/worldnews</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/worldnews/comments/2uzld9/supreme_court_of_canada_strikes_down_ban_on/" class="comments may-blank" >2106 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v08uu linkflair linkflair-title1 odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2v08uu" ><p class="parent"></p><span class="rank">13</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">2726</div><div class="score unvoted">2727</div><div class="score likes">2728</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://i.imgur.com/LMkRb91.jpg" ><img src="//b.thumbs.redditmedia.com/6S2F2tTHY9XPqZcZ4Adyfsx3vCnBELYk-gwk0BhRyno.jpg" width='70' height='48' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://i.imgur.com/LMkRb91.jpg" tabindex="1" >PsBattle: This unamused cop</a><span class="linkflairlabel" title="Bad Title">Bad Title</span>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 18:05:19 2015 UTC" datetime="2015-02-06T18:05:19+00:00" class="live-timestamp">6 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/Impius" class="author may-blank id-t2_41oh4" >Impius</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/photoshopbattles/" class="subreddit hover may-blank" >/r/photoshopbattles</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/photoshopbattles/comments/2v08uu/psbattle_this_unamused_cop/" class="comments may-blank" >236 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v05rm even&#32; link " onclick="click_thing(this)" data-fullname="t3_2v05rm" ><p class="parent"></p><span class="rank">14</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">2908</div><div class="score unvoted">2909</div><div class="score likes">2910</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://i.imgur.com/ZMlSrP7.jpg" ><img src="//b.thumbs.redditmedia.com/u7tuwI566R2AQUXVrKcloENjXBrQ4jHsVQVOlbIQteY.jpg" width='70' height='70' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://i.imgur.com/ZMlSrP7.jpg" tabindex="1" >Bob Marley, 1965 - Would have been 70 today.</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 17:41:05 2015 UTC" datetime="2015-02-06T17:41:05+00:00" class="live-timestamp">7 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/zsreport" class="author may-blank id-t2_avobu" >zsreport</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/OldSchoolCool/" class="subreddit hover may-blank" >/r/OldSchoolCool</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/OldSchoolCool/comments/2v05rm/bob_marley_1965_would_have_been_70_today/" class="comments may-blank" >330 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v0oye linkflair linkflair-ntoflair odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2v0oye" ><p class="parent"></p><span class="rank">15</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">1714</div><div class="score unvoted">1715</div><div class="score likes">1716</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://consequenceofsound.net/2015/02/jack-white-bans-future-performances-at-university-of-oklahoma-after-newspaper-leaks-his-guacamole-recipe/" ><img src="//b.thumbs.redditmedia.com/Km7pmh-60L0s0xArRnz_w5ReGmJomCg0jESTzgQwRMQ.jpg" width='70' height='39' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://consequenceofsound.net/2015/02/jack-white-bans-future-performances-at-university-of-oklahoma-after-newspaper-leaks-his-guacamole-recipe/" tabindex="1" >Jack White bans future performances at University of Oklahoma after newspaper leaks his guacamole recipe</a><span class="linkflairlabel" title="/r/all">/r/all</span>&#32;<span class="domain">(<a href="/domain/consequenceofsound.net/">consequenceofsound.net</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 20:08:17 2015 UTC" datetime="2015-02-06T20:08:17+00:00" class="live-timestamp">4 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/asadavid" class="author may-blank id-t2_erl1w" >asadavid</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/nottheonion/" class="subreddit hover may-blank" >/r/nottheonion</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/nottheonion/comments/2v0oye/jack_white_bans_future_performances_at_university/" class="comments may-blank" >276 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v0dnu even&#32; link self" onclick="click_thing(this)" data-fullname="t3_2v0dnu" ><p class="parent"></p><span class="rank">16</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">2188</div><div class="score unvoted">2189</div><div class="score likes">2190</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><div class="entry unvoted"><p class="title"><a class="title may-blank " href="/r/tifu/comments/2v0dnu/tifu_by_getting_a_vasectomy/" tabindex="1" >TIFU by getting a vasectomy</a>&#32;<span class="domain">(<a href="/r/tifu/">self.tifu</a>)</span></p><div class="expando-button collapsed selftext" onclick="expando_child(this)"></div><p class="tagline">submitted&#32;<time title="Fri Feb 6 18:42:38 2015 UTC" datetime="2015-02-06T18:42:38+00:00" class="live-timestamp">6 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/Vassufferens" class="author may-blank id-t2_l6zzy" >Vassufferens</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/tifu/" class="subreddit hover may-blank" >/r/tifu</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/tifu/comments/2v0dnu/tifu_by_getting_a_vasectomy/" class="comments may-blank" >644 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v02nf over18 linkflair linkflair-album odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2v02nf" ><p class="parent"></p><span class="rank">17</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">2834</div><div class="score unvoted">2835</div><div class="score likes">2836</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail nsfw may-blank " href="http://imgur.com/a/cfL1g" ></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://imgur.com/a/cfL1g" tabindex="1" >Serge Marshennikov, various oil on linen, 2014</a><span class="linkflairlabel" title="Album">Album</span>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><div class="expando-button collapsed video" onclick="expando_child(this)"></div><p class="tagline">submitted&#32;<time title="Fri Feb 6 17:17:06 2015 UTC" datetime="2015-02-06T17:17:06+00:00" class="live-timestamp">7 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/AmericanArtCollector" class="author may-blank id-t2_gr25g" >AmericanArtCollector</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/Art/" class="subreddit hover may-blank" >/r/Art</a></p><ul class="flat-list buttons"><li class="rounded nsfw-stamp stamp"><acronym title="Adult content: Not Safe For Work">NSFW</acronym></li><li class="first"><a href="http://www.reddit.com/r/Art/comments/2v02nf/serge_marshennikov_various_oil_on_linen_2014/" class="comments may-blank" >192 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div><script type="text/javascript">var cache = expando_cache(); cache["t3_2v02nf_cache"] = " &lt;iframe src=&quot;//www.redditmedia.com/mediaembed/2v02nf&quot; id=&quot;media-embed-2v02nf-thw&quot; class=&quot;media-embed&quot; width=&quot;560&quot; height=&quot;560&quot; border=&quot;0&quot; frameBorder=&quot;0&quot; scrolling=&quot;no&quot; allowfullscreen&gt;&lt;/iframe&gt; ";</script></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2uzqsx linkflair linkflair-image even&#32; link " onclick="click_thing(this)" data-fullname="t3_2uzqsx" ><p class="parent"></p><span class="rank">18</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">3587</div><div class="score unvoted">3588</div><div class="score likes">3589</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://i.imgur.com/LmO7hx0.png" ><img src="//a.thumbs.redditmedia.com/_YGlFNII_yY6H_gy6oS6s2zwYr8pJt6kNODAeQ8sqm0.jpg" width='70' height='31' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://i.imgur.com/LmO7hx0.png" tabindex="1" >[Image] Emma Watson's perfect reply</a>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 15:42:33 2015 UTC" datetime="2015-02-06T15:42:33+00:00" class="live-timestamp">9 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/Sumit316" class="author may-blank id-t2_gg5le" >Sumit316</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/GetMotivated/" class="subreddit hover may-blank" >/r/GetMotivated</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/GetMotivated/comments/2uzqsx/image_emma_watsons_perfect_reply/" class="comments may-blank" >835 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2uze95 odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2uze95" ><p class="parent"></p><span class="rank">19</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">5037</div><div class="score unvoted">5038</div><div class="score likes">5039</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://www.ocalapost.com/bald-eagles-allegedly-poisoned-at-marion-county-landfill/" tabindex="1" >Bald Eagles poisoned because local county animal shelter is dumping euthanized animals at dump instead of cremating the pets</a>&#32;<span class="domain">(<a href="/domain/ocalapost.com/">ocalapost.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 13:44:55 2015 UTC" datetime="2015-02-06T13:44:55+00:00" class="live-timestamp">10 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/sords" class="author may-blank id-t2_ae866" >sords</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/news/" class="subreddit hover may-blank" >/r/news</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/news/comments/2uze95/bald_eagles_poisoned_because_local_county_animal/" class="comments may-blank" >991 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2uzgpa linkflair linkflair-black even&#32; link " onclick="click_thing(this)" data-fullname="t3_2uzgpa" ><p class="parent"></p><span class="rank">20</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">4525</div><div class="score unvoted">4526</div><div class="score likes">4527</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://i.imgur.com/iHW7Dwh.png" ><img src="//a.thumbs.redditmedia.com/86SLmrfkYt-3FhgAi_kw-3neklEDS4WoWqkxYx0z0Q0.jpg" width='70' height='70' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://i.imgur.com/iHW7Dwh.png" tabindex="1" >From absolute zero to &quot;absolute hot,&quot; the temperatures of the Universe</a><span class="linkflairlabel" title="/r/all">/r/all</span>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 14:10:51 2015 UTC" datetime="2015-02-06T14:10:51+00:00" class="live-timestamp">10 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/mike_pants" class="author may-blank id-t2_9leeg" >mike_pants</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/space/" class="subreddit hover may-blank" >/r/space</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/space/comments/2uzgpa/from_absolute_zero_to_absolute_hot_the/" class="comments may-blank" >866 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2uziff odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2uziff" ><p class="parent"></p><span class="rank">21</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">4119</div><div class="score unvoted">4120</div><div class="score likes">4121</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://imgur.com/rvPGsnA" ><img src="//b.thumbs.redditmedia.com/Y3DpTxqLgZ0A-oXBQOmYwy8pq-SW4UZ32dki2VE_jdw.jpg" width='70' height='46' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://imgur.com/rvPGsnA" tabindex="1" >Made a cake of my dad</a>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 14:27:56 2015 UTC" datetime="2015-02-06T14:27:56+00:00" class="live-timestamp">10 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/Katherine_Dey" class="author may-blank id-t2_jwzsl" >Katherine_Dey</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/food/" class="subreddit hover may-blank" >/r/food</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/food/comments/2uziff/made_a_cake_of_my_dad/" class="comments may-blank" >251 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2uzdha even&#32; link " onclick="click_thing(this)" data-fullname="t3_2uzdha" ><p class="parent"></p><span class="rank">22</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">4288</div><div class="score unvoted">4289</div><div class="score likes">4290</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://imgur.com/MtFYsRh" ><img src="//b.thumbs.redditmedia.com/O_XQhhQludZSrhLlP9aNv2dSRhEcFytOXBbodbsQhrQ.jpg" width='70' height='70' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://imgur.com/MtFYsRh" tabindex="1" >This grape looks like a pumpkin</a>&#32;<span class="domain">(<a href="/domain/imgur.com/">imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 13:35:35 2015 UTC" datetime="2015-02-06T13:35:35+00:00" class="live-timestamp">11 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/xoxozaphod" class="author may-blank id-t2_ay7a3" >xoxozaphod</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/mildlyinteresting/" class="subreddit hover may-blank" >/r/mildlyinteresting</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/mildlyinteresting/comments/2uzdha/this_grape_looks_like_a_pumpkin/" class="comments may-blank" >335 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v0g6u linkflair linkflair-soccer odd&#32; link " onclick="click_thing(this)" data-fullname="t3_2v0g6u" ><p class="parent"></p><span class="rank">23</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">1322</div><div class="score unvoted">1323</div><div class="score likes">1324</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail may-blank " href="http://i.imgur.com/1ygFQN8.jpg" ><img src="//b.thumbs.redditmedia.com/ynOgDTHGhCT96_-GB5U7-ENL9R3IIJi_R6x73Kl1K3s.jpg" width='70' height='60' alt=""></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="http://i.imgur.com/1ygFQN8.jpg" tabindex="1" >One of the world's oldest known soccer balls, found in the rafters of a bedroom in Stirling Castle and dating from around the time of Mary Queen of Scots in the 16th century</a><span class="linkflairlabel" title="Soccer">Soccer</span>&#32;<span class="domain">(<a href="/domain/i.imgur.com/">i.imgur.com</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 19:01:56 2015 UTC" datetime="2015-02-06T19:01:56+00:00" class="live-timestamp">5 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/MattRyd7" class="author may-blank id-t2_bgn8u" >MattRyd7</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/sports/" class="subreddit hover may-blank" >/r/sports</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/sports/comments/2v0g6u/one_of_the_worlds_oldest_known_soccer_balls_found/" class="comments may-blank" >143 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2uz6t9 linkflair linkflair-2 even&#32; link self" onclick="click_thing(this)" data-fullname="t3_2uz6t9" ><p class="parent"></p><span class="rank">24</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">4276</div><div class="score unvoted">4277</div><div class="score likes">4278</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><div class="entry unvoted"><p class="title"><a class="title may-blank " href="/r/Showerthoughts/comments/2uz6t9/while_apples_new_campus_is_being_built_i_wonder/" tabindex="1" >While Apple's new campus is being built, I wonder how many jokes have been made about &quot;installing windows&quot;</a><span class="linkflairlabel" title="/r/all">/r/all</span>&#32;<span class="domain">(<a href="/r/Showerthoughts/">self.Showerthoughts</a>)</span></p><p class="tagline">submitted&#32;<time title="Fri Feb 6 12:00:12 2015 UTC" datetime="2015-02-06T12:00:12+00:00" class="live-timestamp">12 hours ago</time>&#32;by&#32;<a href="http://www.reddit.com/user/switchtrip16" class="author may-blank id-t2_hi4vp" >switchtrip16</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/Showerthoughts/" class="subreddit hover may-blank" >/r/Showerthoughts</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/Showerthoughts/comments/2uz6t9/while_apples_new_campus_is_being_built_i_wonder/" class="comments may-blank" >647 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class=" thing id-t3_2v01c4 linkflair linkflair-gaming odd&#32; link self" onclick="click_thing(this)" data-fullname="t3_2v01c4" ><p class="parent"></p><span class="rank">25</span><div class="midcol unvoted" ><div class="arrow up login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="upvote" tabindex="0" ></div><div class="score dislikes">1554</div><div class="score unvoted">1555</div><div class="score likes">1556</div><div class="arrow down login-required" onclick="$(this).vote(r.config.vote_hash, null, event)" role="button" aria-label="downvote" tabindex="0" ></div></div><a class="thumbnail self may-blank " href="/r/IAmA/comments/2v01c4/were_failbetter_games_developers_of_fallen_london/" ></a><div class="entry unvoted"><p class="title"><a class="title may-blank " href="/r/IAmA/comments/2v01c4/were_failbetter_games_developers_of_fallen_london/" tabindex="1" >We’re Failbetter Games, developers of Fallen London, Dragon Age: The Last Court and now Sunless Sea - ask us anything!</a><span class="linkflairlabel" title="Gaming">Gaming</span>&#32;<span class="domain">(<a href="/r/IAmA/">self.IAmA</a>)</span></p><div class="expando-button collapsed selftext" onclick="expando_child(this)"></div><p class="tagline">submitted&#32;<time title="Fri Feb 6 17:07:20 2015 UTC" datetime="2015-02-06T17:07:20+00:00" class="live-timestamp">7 hours ago</time>&#32;<time class="edited-timestamp" title="last edited 3 hours ago" datetime="2015-02-06T21:41:01+00:00">*</time>&#32;by&#32;<a href="http://www.reddit.com/user/failbettergames" class="author may-blank id-t2_fhrbq" >failbettergames</a><span class="userattrs"></span>&#32;to&#32;<a href="http://www.reddit.com/r/IAmA/" class="subreddit hover may-blank" >/r/IAmA</a></p><ul class="flat-list buttons"><li class="first"><a href="http://www.reddit.com/r/IAmA/comments/2v01c4/were_failbetter_games_developers_of_fallen_london/" class="comments may-blank" >364 comments</a></li><li class="share"><span class="share-button toggle" style="" ><a class="option active login-required" href="#" tabindex="100" >share</a><a class="option " href="#">cancel</a></span></li></ul><div class="expando" style='display: none'><span class="error">loading...</span></div></div><div class="child" ></div><div class="clearleft"></div></div><div class="clearleft"></div><div class="nav-buttons"><span class="nextprev">view more:&#32;<a href="http://www.reddit.com/?count=25&amp;after=t3_2v01c4" rel="nofollow next" >next &rsaquo;</a></span><span class="next-suggestions">or try a&#32;<a href="http://www.reddit.com/r/random" >random subreddit</a></span></div></div></div></div><div class="footer-parent"><div by-zero class="footer rounded"><div class="col"><ul class="flat-vert hover" ><li class="flat-vert title">about</li><li ><a href="http://www.reddit.com/blog/" class="choice" >blog</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/about/" class="choice" >about</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/about/team/" class="choice" >team</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/code/" class="choice" >source code</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/advertising/" class="choice" >advertise</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/jobs/" class="choice" >jobs</a></li></ul></div><div class="col"><ul class="flat-vert hover" ><li class="flat-vert title">help</li><li ><a href="http://www.reddit.com/wiki/" class="choice" >wiki</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/wiki/faq" class="choice" >FAQ</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/wiki/reddiquette" class="choice" >reddiquette</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/rules/" class="choice" >rules</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/contact/" class="choice" >contact us</a></li></ul></div><div class="col"><ul class="flat-vert hover" ><li class="flat-vert title">tools</li><li ><a href="http://i.reddit.com" class="choice" >mobile</a></li><li ><span class="separator"></span><a href="https://addons.mozilla.org/firefox/addon/socialite/" class="choice" >firefox extension</a></li><li ><span class="separator"></span><a href="https://chrome.google.com/webstore/detail/algjnflpgoopkdijmkalfcifomdhmcbe" class="choice" >chrome extension</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/buttons/" class="choice" >buttons</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/widget/" class="choice" >widget</a></li></ul></div><div class="col"><ul class="flat-vert hover" ><li class="flat-vert title">&lt;3</li><li ><a href="http://www.reddit.com/gold/about/" class="buygold choice" >reddit gold</a></li><li ><span class="separator"></span><a href="http://www.reddit.com/store/" class="choice" >store</a></li><li ><span class="separator"></span><a href="http://redditgifts.com" class="choice" >redditgifts</a></li><li ><span class="separator"></span><a href="https://redditama.reddit.com" class="choice" >reddit AMA app</a></li><li ><span class="separator"></span><a href="http://reddit.tv" class="choice" >reddit.tv</a></li><li ><span class="separator"></span><a href="http://radioreddit.com" class="choice" >radio reddit</a></li></ul></div></div><p class="bottommenu">Use of this site constitutes acceptance of our&#32;<a href="http://www.reddit.com/help/useragreement" class="updated" >User Agreement (updated)</a>&#32;and&#32;<a href="http://www.reddit.com/help/privacypolicy" class="updated" >Privacy Policy (updated)</a>. &copy; 2015 reddit inc. All rights reserved.</p><p class="bottommenu">REDDIT and the ALIEN Logo are registered trademarks of reddit inc.</p></div><script>var BETA_HOST = 'beta.reddit.com'; if (location.host === BETA_HOST) { r.config.https_endpoint = 'https://' + BETA_HOST; }</script><script id="login-popup" type="text/template"><h3 id="cover-msg" class="modal-title">You need to login to do that.</h3><div id="login"><div class="split-panel"><div class="split-panel-section split-panel-divider"><h4 class="modal-title">create a new account</h4><form id="register-form" method="post" action="https://www.reddit.com/post/reg" class="form-v2"><input type="hidden" name="op" value="reg"><div class="c-form-group "><label for="user_reg" class="screenreader-only">username:</label><input value="" name="user" id="user_reg" class="c-form-control" type="text" maxlength="20" tabindex="2" placeholder="choose a username" data-validate-url="/api/check_username.json" data-validate-min="3" autocomplete="off" ><div class="c-form-control-feedback-wrapper"><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-form-group "><label for="passwd_reg" class="screenreader-only">password:</label><input id="passwd_reg" class="c-form-control" name="passwd" type="password" tabindex="2" placeholder="password" data-validate-url='/api/check_password.json'><div class="c-form-control-feedback-wrapper"><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-form-group "><label for="passwd2_reg" class="screenreader-only">verify password:</label><input name="passwd2" id="passwd2_reg" class="c-form-control" type="password" tabindex="2" placeholder="verify password"><div class="c-form-control-feedback-wrapper"><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-form-group "><label for="email_reg" class="screenreader-only">email: &nbsp;<i>(optional)</i></label><input value="" name="email" id="email_reg" class="c-form-control" type="text" tabindex="2" placeholder="email (optional)" data-validate-url="/api/check_email.json" data-validate-on="change blur"><div class="c-form-control-feedback-wrapper"><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-checkbox c-input-height"><label for="rem_reg" class="remember"><input type="checkbox" name="rem" id="rem_reg" tabindex="2">remember me</label></div><div class="c-clearfix"><span class="c-form-throbber"></span><button type="submit" class="c-btn c-btn-primary c-pull-right" tabindex="2">create account</button></div><div><div class="c-alert c-alert-danger"></div><span class="error RATELIMIT field-ratelimit" style="display:none"></span><span class="error RATELIMIT field-vdelay" style="display:none"></span></div></form></div><div class="split-panel-section"><h4 class="modal-title">sign in</h4><form id="login-form" method="post" action="https://www.reddit.com/post/login" class="form-v2"><input type="hidden" name="op" value="login"><div class="c-form-group "><label for="user_login" class="screenreader-only">username:</label><input value="" name="user" id="user_login" class="c-form-control" type="text" maxlength="20" tabindex="3" placeholder="username" ></div><div class="c-form-group "><label for="passwd_login" class="screenreader-only">password:</label><input id="passwd_login" class="c-form-control" name="passwd" type="password" tabindex="3" placeholder="password" ><div class="c-form-control-feedback-wrapper"><span class="c-form-control-feedback c-form-control-feedback-throbber"></span><span class="c-form-control-feedback c-form-control-feedback-error" title=""></span><span class="c-form-control-feedback c-form-control-feedback-success"></span></div></div><div class="c-checkbox c-input-height"><label for="rem_login" class="remember"><input type="checkbox" name="rem" id="rem_login" tabindex="3">remember me</label><a href="/password" class="c-pull-right">reset password</a></div><div class="c-clearfix"><span class="c-form-throbber"></span><button type="submit" class="c-btn c-btn-primary c-pull-right" tabindex="3">sign in</button></div><div><div class="c-alert c-alert-danger"></div></div></form></div></div><p class="login-disclaimer">We care about your privacy, and we never spam. By creating an account, you agree to reddit's&#32;<a href="http://www.reddit.com/help/useragreement" >User Agreement</a>&#32;and&#32;<a href="http://www.reddit.com/help/privacypolicy" >Privacy Policy</a>. We're proud of them, and you should read them.</p></div></script><script id="lang-popup" type="text/template"><form action="http://www.reddit.com/post/unlogged_options" method="post" class="pretty-form short-text"><input type="hidden" name="uh" value="" /><table class="content preftable"><tr><th>interface language</th><td class="prefright"><select id="lang" name="lang"><option selected='selected' value="en">English [en]</option><option value="ar">العربية [ar]</option><option value="be">Беларуская мова [be]</option><option value="bg">български език [bg]</option><option value="bs">Bosanski [bs]</option><option value="ca">català [ca]</option><option value="cs">česky [cs]</option><option value="da">dansk [da]</option><option value="de">Deutsch [de]</option><option value="el">Ελληνικά [el]</option><option value="en-au">English (Australia) [en-au]</option><option value="en-ca">English (Canadian) [en-ca]</option><option value="en-gb">English (Great Britain) [en-gb]</option><option value="en-us">English [en-us]</option><option value="eo">Esperanto [eo]</option><option value="es">español [es]</option><option value="es-ar">español [es-ar]</option><option value="et">eesti keel [et]</option><option value="eu">Euskara [eu]</option><option value="fa">فارسی [fa]</option><option value="fi">suomi [fi]</option><option value="fr">français [fr]</option><option value="gd">Gàidhlig [gd]</option><option value="he">עברית [he]</option><option value="hi">मानक हिन्दी [hi]</option><option value="hr">hrvatski [hr]</option><option value="hu">Magyar [hu]</option><option value="hy">Հայերեն լեզու [hy]</option><option value="id">Bahasa Indonesia [id]</option><option value="is">íslenska [is] (*)</option><option value="it">italiano (Italy) [it]</option><option value="ja">日本語 [ja]</option><option value="kn_IN">ಕನ್ನಡ [kn_IN]</option><option value="ko">한국어 [ko]</option><option value="la">Latin [la]</option><option value="leet">1337 [leet]</option><option value="lol">LOL [lol]</option><option value="lt">lietuvių kalba [lt]</option><option value="lv">latviešu valoda [lv]</option><option value="nl">Nederlands [nl]</option><option value="nn">Nynorsk [nn]</option><option value="no">Norsk [no]</option><option value="pir">Arrrrrrrr! [pir]</option><option value="pl">polski [pl]</option><option value="pt">português [pt] (*)</option><option value="pt-pt">português [pt-pt]</option><option value="pt_BR">português brasileiro [pt_BR]</option><option value="ro">română [ro]</option><option value="ru">русский [ru]</option><option value="sk">slovenčina [sk]</option><option value="sl">slovenščina [sl]</option><option value="sr">српски језик [sr]</option><option value="sr-la">Srpski [sr-la]</option><option value="sv">Svenska [sv]</option><option value="ta">தமிழ் [ta]</option><option value="th">ภาษาไทย [th]</option><option value="tr">Türkçe [tr]</option><option value="uk">українська мова [uk]</option><option value="vi">Tiếng Việt [vi]</option><option value="zh">中文 [zh]</option></select>&#32;<span class="little gray hover">(*) incomplete &#32;<a href="http://www.reddit.com/r/i18n/wiki/getting_started">volunteer to translate</a></span></td></tr><tr><td><input type="submit" class="btn" value="save options"/></td></tr></table></form></script><p class="debuginfo"><span class="icon">&pi;</span>&nbsp;<span class="content">Rendered by PID 11749 on&#32; app-271 &#32;at 2015-02-07 00:43:26.003679+00:00 running 64e2c8f country code: SE.</span></p><script type="text/javascript" src="//www.redditstatic.com/reddit.en.b2hddP8oQf0.js"></script></body></html>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: horsefield
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.64
4
+ version: 0.4.65
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Strömberg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-06 00:00:00.000000000 Z
11
+ date: 2015-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -96,12 +96,12 @@ files:
96
96
  - horsefield.gemspec
97
97
  - lib/horsefield.rb
98
98
  - lib/horsefield/diggable.rb
99
- - lib/horsefield/digger.rb
100
99
  - lib/horsefield/nokogiri.rb
101
100
  - lib/horsefield/scraper.rb
102
101
  - lib/horsefield/version.rb
103
102
  - test/horsefield/test_scraper.rb
104
103
  - test/recipe_source.html
104
+ - test/reddit_source.html
105
105
  - test/test_helper.rb
106
106
  homepage: http://github.com/apa512/horsefield
107
107
  licenses:
@@ -123,11 +123,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
123
  version: '0'
124
124
  requirements: []
125
125
  rubyforge_project:
126
- rubygems_version: 2.2.2
126
+ rubygems_version: 2.4.5
127
127
  signing_key:
128
128
  specification_version: 4
129
129
  summary: It's a scraper
130
130
  test_files:
131
131
  - test/horsefield/test_scraper.rb
132
132
  - test/recipe_source.html
133
+ - test/reddit_source.html
133
134
  - test/test_helper.rb
@@ -1,8 +0,0 @@
1
- module Horsefield
2
- class Digger
3
- def initialize(nokogiri_doc, fields = {})
4
- @nokogiri_doc = nokogiri_doc
5
- @fields = fields
6
- end
7
- end
8
- end