maxml 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fba4c17c910de98b027690492642390fb8deaa41
4
+ data.tar.gz: 09beeb50cb1a2053d7ec17dc63b6b920838efe6e
5
+ SHA512:
6
+ metadata.gz: e50c1f475965dea0ce7a3804d89d9bac1384b16fcc2e39fd371b49bbe8aa907f0c99da752c28f495160bdc6c0f01bafefb76038ec97fdf9fb6aa73a2b70d46ae
7
+ data.tar.gz: 18986067d0f6b9b8e46d9b8641a26a2e28877476a9422eccb1dbe011aefba3f2ee5cda8c1d6aaa96a2ab9073adf29f8dd3565e06f9837ff3832cc1d9ea055ea6
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 David Leung
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,39 @@
1
+ # MaxML
2
+
3
+ Download, parse and save an XML document to MongoDB
4
+
5
+ ## Install
6
+
7
+ gem install rspec
8
+
9
+
10
+ ## Usage Example
11
+
12
+ ```ruby
13
+ # DB defaults to "localhost" for `host` and 27017 for `port`
14
+ db_config = {database: "maxml_test", collection: "xmls"}
15
+ reddit = MaxML::XML.new("http://www.reddit.com/.rss", db_config)
16
+ reddit.save
17
+ )
18
+ ```
19
+ ## Copyright and License
20
+
21
+ Copyright © 2014 David Leung
22
+
23
+ Permission is hereby granted, free of charge, to any person obtaining a copy
24
+ of this software and associated documentation files (the "Software"), to deal
25
+ in the Software without restriction, including without limitation the rights
26
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
27
+ copies of the Software, and to permit persons to whom the Software is
28
+ furnished to do so, subject to the following conditions:
29
+
30
+ The above copyright notice and this permission notice shall be included in all
31
+ copies or substantial portions of the Software.
32
+
33
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
34
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
35
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
36
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
37
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
38
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ require 'maxml/xml'
@@ -0,0 +1,18 @@
1
+ module MaxML
2
+ module Errors
3
+
4
+ class InvalidConfig < ArgumentError
5
+ def initialize
6
+ super("DB options should be a hash")
7
+ end
8
+ end
9
+
10
+ class InvalidConfigOption < ArgumentError
11
+ def initialize(name)
12
+ super("Missing DB Configuration property :#{name}. Make sure that " +
13
+ "MongoPersistence.config is called from your code.")
14
+ end
15
+ end
16
+
17
+ end
18
+ end
@@ -0,0 +1,45 @@
1
+ require 'mongo'
2
+ require 'maxml/errors'
3
+ module MaxML
4
+ class MongoPersistence
5
+ include Mongo
6
+
7
+ attr_reader :config
8
+
9
+ DEFAULT_CONFIG = {
10
+ :host => "localhost",
11
+ :port => 27017
12
+ }.freeze
13
+
14
+ def initialize
15
+ @config = DEFAULT_CONFIG.dup
16
+ end
17
+
18
+ def config=(opts)
19
+ conf = DEFAULT_CONFIG.merge(opts)
20
+ self.class.validate_config(conf)
21
+ @config = conf
22
+ end
23
+
24
+ def save(hash)
25
+ self.class.validate_config(@config)
26
+ client = MongoClient.new(@config[:host], @config[:port])
27
+ db = client.db(@config[:database])
28
+ coll = db.collection(@config[:collection])
29
+
30
+ coll.insert(hash)
31
+ end
32
+
33
+ def self.validate_config(opts)
34
+ raise Errors::InvalidConfig unless opts.is_a? Hash
35
+
36
+ required_keys = [:host, :port, :database, :collection]
37
+ required_keys.each do |key|
38
+ unless opts.has_key?(key)
39
+ raise Errors::InvalidConfigOption.new(key)
40
+ end
41
+ end
42
+ end
43
+
44
+ end # class MongoPersistence
45
+ end # module MaxML
@@ -0,0 +1,47 @@
1
+ require 'open-uri'
2
+ require 'nori'
3
+ require 'json'
4
+ require 'maxml/mongo_persistence'
5
+
6
+ module MaxML
7
+ class XML
8
+ attr_reader :url, :date
9
+ attr_accessor :db
10
+
11
+ def initialize(url, db=MongoPersistence, **db_conf)
12
+ @url = url
13
+ @date = Time.now
14
+ @content = self.class.fetch_content(url)
15
+ @db = db.new
16
+ db_config(db_conf) unless db_conf.empty?
17
+ end
18
+
19
+ def to_s
20
+ @content
21
+ end
22
+
23
+ def to_json
24
+ to_hash.to_json
25
+ end
26
+
27
+ def to_hash
28
+ parser = Nori.new
29
+ parser.parse(@content)
30
+ end
31
+
32
+ def save
33
+ content = block_given? ? yield(to_hash) : to_hash
34
+ @db.save({url: @url, date: @date, content: content})
35
+ end
36
+
37
+ def db_config(opts)
38
+ @db.config = opts
39
+ end
40
+
41
+ def self.fetch_content(url)
42
+ uri = URI.parse(url)
43
+ uri.read
44
+ end
45
+
46
+ end
47
+ end
@@ -0,0 +1,3 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:atom="http://www.w3.org/2005/Atom">
3
+ <channel><title>reddit: the front page of the internet</title><link>http://www.reddit.com/</link><description></description><image><url>http://www.reddit.com/reddit.com.header.png</url><title>reddit: the front page of the internet</title><link>http://www.reddit.com/</link></image><atom:link rel="self" href="http://www.reddit.com/.rss" type="application/rss+xml" /><item><title>My boyfriend and I met at the dog park, so it was really their 2 year anniversary last weekend.</title><category>aww</category><link>http://www.reddit.com/r/aww/comments/2etf4h/my_boyfriend_and_i_met_at_the_dog_park_so_it_was/</link><guid isPermaLink="true">http://www.reddit.com/r/aww/comments/2etf4h/my_boyfriend_and_i_met_at_the_dog_park_so_it_was/</guid><pubDate>Thu, 28 Aug 2014 12:31:18 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/aww/comments/2etf4h/my_boyfriend_and_i_met_at_the_dog_park_so_it_was/&#34;&gt;&lt;img src=&#34;http://a.thumbs.redditmedia.com/lmyCN-9dO1xX2VsyzBFiWjNLuwcR52hQAyhM0_u_uY8.jpg&#34; alt=&#34;My boyfriend and I met at the dog park, so it was really their 2 year anniversary last weekend.&#34; title=&#34;My boyfriend and I met at the dog park, so it was really their 2 year anniversary last weekend.&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/keatno_pizza&#34;&gt; keatno_pizza &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/aww/&#34;&gt; aww&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/rhfiKTf.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/aww/comments/2etf4h/my_boyfriend_and_i_met_at_the_dog_park_so_it_was/"&gt;[335 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>My boyfriend and I met at the dog park, so it was really their 2 year anniversary last weekend.</media:title><media:thumbnail url="http://a.thumbs.redditmedia.com/lmyCN-9dO1xX2VsyzBFiWjNLuwcR52hQAyhM0_u_uY8.jpg" /></item><item><title>Recent ultrasound result looks good.</title><category>funny</category><link>http://www.reddit.com/r/funny/comments/2etdpv/recent_ultrasound_result_looks_good/</link><guid isPermaLink="true">http://www.reddit.com/r/funny/comments/2etdpv/recent_ultrasound_result_looks_good/</guid><pubDate>Thu, 28 Aug 2014 12:11:37 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/funny/comments/2etdpv/recent_ultrasound_result_looks_good/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/-0xo59TDcuFZMli9qoOPt1poxuhvvhKz3VJG5s8bhng.jpg&#34; alt=&#34;Recent ultrasound result looks good.&#34; title=&#34;Recent ultrasound result looks good.&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/meancloth&#34;&gt; meancloth &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/funny/&#34;&gt; funny&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/MdrKNe8.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/funny/comments/2etdpv/recent_ultrasound_result_looks_good/"&gt;[231 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Recent ultrasound result looks good.</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/-0xo59TDcuFZMli9qoOPt1poxuhvvhKz3VJG5s8bhng.jpg" /></item><item><title>THE LEVEL.</title><category>pics</category><link>http://www.reddit.com/r/pics/comments/2etcoj/the_level/</link><guid isPermaLink="true">http://www.reddit.com/r/pics/comments/2etcoj/the_level/</guid><pubDate>Thu, 28 Aug 2014 11:56:13 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/pics/comments/2etcoj/the_level/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/3Hhnv9sJDTzIJ46r1S9-OZunfxNL-dsRGw5t3Mi-JIM.jpg&#34; alt=&#34;THE LEVEL.&#34; title=&#34;THE LEVEL.&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/bluuui&#34;&gt; bluuui &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/pics/&#34;&gt; pics&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/vqjpgUh.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/pics/comments/2etcoj/the_level/"&gt;[400 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>THE LEVEL.</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/3Hhnv9sJDTzIJ46r1S9-OZunfxNL-dsRGw5t3Mi-JIM.jpg" /></item><item><title>I’m Seth Shostak, and I direct the search for extraterrestrials at the SETI Institute in California. We’re trying to find evidence of intelligent life in space: aliens at least as clever as we are. AMA!</title><category>science</category><link>http://www.reddit.com/r/science/comments/2eta6t/im_seth_shostak_and_i_direct_the_search_for/</link><guid isPermaLink="true">http://www.reddit.com/r/science/comments/2eta6t/im_seth_shostak_and_i_direct_the_search_for/</guid><pubDate>Thu, 28 Aug 2014 11:16:52 +0000</pubDate><description>&lt;!-- SC_OFF --&gt;&lt;div class=&#34;md&#34;&gt;&lt;p&gt;In a recent article in &lt;a href=&#34;https://theconversation.com/we-could-find-alien-life-but-politicians-dont-have-the-will-29304&#34;&gt;The Conversation&lt;/a&gt;, I suggested that we could find life beyond Earth within two decades if we simply made it a higher priority. Here I mean life of any kind, including those undoubtedly dominant species that are single-celled and microscopic. But of course, I want to find intelligent life – the kind that could JOIN the conversation. So AMA about life in space and our search for it!&lt;/p&gt; &lt;p&gt;I will be back at 1 pm EDT (5pm UTC, 6 pm BST, 10 am PDT) to answer questions, AMA.&lt;/p&gt; &lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/sshostak&#34;&gt; sshostak &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/science/&#34;&gt; science&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/science/comments/2eta6t/im_seth_shostak_and_i_direct_the_search_for/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/science/comments/2eta6t/im_seth_shostak_and_i_direct_the_search_for/"&gt;[1827 comments]&lt;/a&gt;</description></item><item><title>Surprise!</title><category>gifs</category><link>http://www.reddit.com/r/gifs/comments/2et8uh/surprise/</link><guid isPermaLink="true">http://www.reddit.com/r/gifs/comments/2et8uh/surprise/</guid><pubDate>Thu, 28 Aug 2014 10:54:57 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/antici_______pation&#34;&gt; antici_______pation &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/gifs/&#34;&gt; gifs&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/lyI9Qcw.gif&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/gifs/comments/2et8uh/surprise/"&gt;[96 comments]&lt;/a&gt;</description></item><item><title>Little boy goes off on his mom for getting pregnant</title><category>videos</category><link>http://www.reddit.com/r/videos/comments/2et10i/little_boy_goes_off_on_his_mom_for_getting/</link><guid isPermaLink="true">http://www.reddit.com/r/videos/comments/2et10i/little_boy_goes_off_on_his_mom_for_getting/</guid><pubDate>Thu, 28 Aug 2014 08:27:15 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/videos/comments/2et10i/little_boy_goes_off_on_his_mom_for_getting/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/NDF9083G9f0a2rmsgixoUILZxZ7rYmEr9q7JOJLfugg.jpg&#34; alt=&#34;Little boy goes off on his mom for getting pregnant&#34; title=&#34;Little boy goes off on his mom for getting pregnant&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/Roush14&#34;&gt; Roush14 &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/videos/&#34;&gt; videos&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;https://www.youtube.com/watch?v=QKnVWr2PkIU&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/videos/comments/2et10i/little_boy_goes_off_on_his_mom_for_getting/"&gt;[1466 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Little boy goes off on his mom for getting pregnant</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/NDF9083G9f0a2rmsgixoUILZxZ7rYmEr9q7JOJLfugg.jpg" /></item><item><title>Just had an encounter with a phisher and wanted to remind everybody not to fall for their fake links.</title><category>gaming</category><link>http://www.reddit.com/r/gaming/comments/2et2o2/just_had_an_encounter_with_a_phisher_and_wanted/</link><guid isPermaLink="true">http://www.reddit.com/r/gaming/comments/2et2o2/just_had_an_encounter_with_a_phisher_and_wanted/</guid><pubDate>Thu, 28 Aug 2014 09:00:59 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/gaming/comments/2et2o2/just_had_an_encounter_with_a_phisher_and_wanted/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/CQyUQXVMY7uQsbnkR8EUV5el3mrSK62x1wMMjbry_wo.jpg&#34; alt=&#34;Just had an encounter with a phisher and wanted to remind everybody not to fall for their fake links.&#34; title=&#34;Just had an encounter with a phisher and wanted to remind everybody not to fall for their fake links.&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/dudderzdude&#34;&gt; dudderzdude &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/gaming/&#34;&gt; gaming&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://imgur.com/wMDB8HU&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/gaming/comments/2et2o2/just_had_an_encounter_with_a_phisher_and_wanted/"&gt;[370 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Just had an encounter with a phisher and wanted to remind everybody not to fall for their fake links.</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/CQyUQXVMY7uQsbnkR8EUV5el3mrSK62x1wMMjbry_wo.jpg" /></item><item><title>Russia has begun &quot;full scale invasion&quot; into Ukraine fighting now on two fronts.</title><category>worldnews</category><link>http://www.reddit.com/r/worldnews/comments/2esuo9/russia_has_begun_full_scale_invasion_into_ukraine/</link><guid isPermaLink="true">http://www.reddit.com/r/worldnews/comments/2esuo9/russia_has_begun_full_scale_invasion_into_ukraine/</guid><pubDate>Thu, 28 Aug 2014 06:32:42 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/Goobiesnax&#34;&gt; Goobiesnax &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/worldnews/&#34;&gt; worldnews&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.cnn.com/2014/08/28/world/europe/ukraine-crisis/index.html&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/worldnews/comments/2esuo9/russia_has_begun_full_scale_invasion_into_ukraine/"&gt;[4737 comments]&lt;/a&gt;</description></item><item><title>Louisiana Parish's drinking water tests positive for Brain-eating amoeba</title><category>news</category><link>http://www.reddit.com/r/news/comments/2etjzf/louisiana_parishs_drinking_water_tests_positive/</link><guid isPermaLink="true">http://www.reddit.com/r/news/comments/2etjzf/louisiana_parishs_drinking_water_tests_positive/</guid><pubDate>Thu, 28 Aug 2014 13:30:43 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/absolutspacegirl&#34;&gt; absolutspacegirl &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/news/&#34;&gt; news&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://wgno.com/2014/08/28/st-john-parish-drinking-water-tests-positive-for-brain-eating-amoeba/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/news/comments/2etjzf/louisiana_parishs_drinking_water_tests_positive/"&gt;[184 comments]&lt;/a&gt;</description></item><item><title>TIL North Korea enlists around 2000 women as part of a 'Pleasure Squad'. These are attractive women who provide entertainment and sexual services for top officials. One defector says Kim Jong-il was &quot;sentimental when drunk, and even shed tears&quot;</title><category>todayilearned</category><link>http://www.reddit.com/r/todayilearned/comments/2et9k8/til_north_korea_enlists_around_2000_women_as_part/</link><guid isPermaLink="true">http://www.reddit.com/r/todayilearned/comments/2et9k8/til_north_korea_enlists_around_2000_women_as_part/</guid><pubDate>Thu, 28 Aug 2014 11:06:53 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/todayilearned/comments/2et9k8/til_north_korea_enlists_around_2000_women_as_part/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/QONjPL7Wflj3yPHDYs3gp1sqFHOFdTa_42m7MJFcr3w.jpg&#34; alt=&#34;TIL North Korea enlists around 2000 women as part of a &#39;Pleasure Squad&#39;. These are attractive women who provide entertainment and sexual services for top officials. One defector says Kim Jong-il was &amp;quot;sentimental when drunk, and even shed tears&amp;quot;&#34; title=&#34;TIL North Korea enlists around 2000 women as part of a &#39;Pleasure Squad&#39;. These are attractive women who provide entertainment and sexual services for top officials. One defector says Kim Jong-il was &amp;quot;sentimental when drunk, and even shed tears&amp;quot;&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/fmpundit&#34;&gt; fmpundit &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/todayilearned/&#34;&gt; todayilearned&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.thenational.ae/news/world/asia-pacific/pleasure-squad-defector-sheds-light-on-life-of-kim-jong-il#full&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/todayilearned/comments/2et9k8/til_north_korea_enlists_around_2000_women_as_part/"&gt;[178 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>TIL North Korea enlists around 2000 women as part of a 'Pleasure Squad'. These are attractive women who provide entertainment and sexual services for top officials. One defector says Kim Jong-il was &quot;sentimental when drunk, and even shed tears&quot;</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/QONjPL7Wflj3yPHDYs3gp1sqFHOFdTa_42m7MJFcr3w.jpg" /></item><item><title>What I wait for every baseball game</title><category>sports</category><link>http://www.reddit.com/r/sports/comments/2etntz/what_i_wait_for_every_baseball_game/</link><guid isPermaLink="true">http://www.reddit.com/r/sports/comments/2etntz/what_i_wait_for_every_baseball_game/</guid><pubDate>Thu, 28 Aug 2014 14:13:31 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/sports/comments/2etntz/what_i_wait_for_every_baseball_game/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/UUXSM87ADgFqkCODmIFUI6hs2TpUfkd0e602uChZnsQ.jpg&#34; alt=&#34;What I wait for every baseball game&#34; title=&#34;What I wait for every baseball game&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/just_wait_a_sec&#34;&gt; just_wait_a_sec &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/sports/&#34;&gt; sports&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://imgur.com/DnI1mg8&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/sports/comments/2etntz/what_i_wait_for_every_baseball_game/"&gt;[156 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>What I wait for every baseball game</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/UUXSM87ADgFqkCODmIFUI6hs2TpUfkd0e602uChZnsQ.jpg" /></item><item><title>Somebody shot the tree that my 2x4 was made from</title><category>mildlyinteresting</category><link>http://www.reddit.com/r/mildlyinteresting/comments/2esie3/somebody_shot_the_tree_that_my_2x4_was_made_from/</link><guid isPermaLink="true">http://www.reddit.com/r/mildlyinteresting/comments/2esie3/somebody_shot_the_tree_that_my_2x4_was_made_from/</guid><pubDate>Thu, 28 Aug 2014 03:47:31 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/mildlyinteresting/comments/2esie3/somebody_shot_the_tree_that_my_2x4_was_made_from/&#34;&gt;&lt;img src=&#34;http://a.thumbs.redditmedia.com/FqUm9L2wVJSwomJrd6h_CS4ZO-ndI0OnB7T1hS6Uv50.jpg&#34; alt=&#34;Somebody shot the tree that my 2x4 was made from&#34; title=&#34;Somebody shot the tree that my 2x4 was made from&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/Larrychap&#34;&gt; Larrychap &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/mildlyinteresting/&#34;&gt; mildlyinteresting&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/mgBAoQx.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/mildlyinteresting/comments/2esie3/somebody_shot_the_tree_that_my_2x4_was_made_from/"&gt;[513 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Somebody shot the tree that my 2x4 was made from</media:title><media:thumbnail url="http://a.thumbs.redditmedia.com/FqUm9L2wVJSwomJrd6h_CS4ZO-ndI0OnB7T1hS6Uv50.jpg" /></item><item><title>Godzilla - Concept Art</title><category>movies</category><link>http://www.reddit.com/r/movies/comments/2et750/godzilla_concept_art/</link><guid isPermaLink="true">http://www.reddit.com/r/movies/comments/2et750/godzilla_concept_art/</guid><pubDate>Thu, 28 Aug 2014 10:27:08 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/movies/comments/2et750/godzilla_concept_art/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/OWy3DRVzYSfqNCMHFDSUiELA7W39LCvaSUhSpmo5j9Q.jpg&#34; alt=&#34;Godzilla - Concept Art&#34; title=&#34;Godzilla - Concept Art&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/Sourcecode12&#34;&gt; Sourcecode12 &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/movies/&#34;&gt; movies&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://imgur.com/a/bRLIe&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/movies/comments/2et750/godzilla_concept_art/"&gt;[134 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Godzilla - Concept Art</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/OWy3DRVzYSfqNCMHFDSUiELA7W39LCvaSUhSpmo5j9Q.jpg" /></item><item><title>Blind Melon - Change [90s alt] Beautiful acoustic version, and yes, they were more than a one-hit wonder</title><category>Music</category><link>http://www.reddit.com/r/Music/comments/2ethr4/blind_melon_change_90s_alt_beautiful_acoustic/</link><guid isPermaLink="true">http://www.reddit.com/r/Music/comments/2ethr4/blind_melon_change_90s_alt_beautiful_acoustic/</guid><pubDate>Thu, 28 Aug 2014 13:04:38 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/pechinburger&#34;&gt; pechinburger &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/Music/&#34;&gt; Music&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.youtube.com/watch?v=VdXXgppVU4c&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/Music/comments/2ethr4/blind_melon_change_90s_alt_beautiful_acoustic/"&gt;[151 comments]&lt;/a&gt;</description></item><item><title>I run an underground metal label AMA!</title><category>IAmA</category><link>http://www.reddit.com/r/IAmA/comments/2et9op/i_run_an_underground_metal_label_ama/</link><guid isPermaLink="true">http://www.reddit.com/r/IAmA/comments/2et9op/i_run_an_underground_metal_label_ama/</guid><pubDate>Thu, 28 Aug 2014 11:08:55 +0000</pubDate><description>&lt;!-- SC_OFF --&gt;&lt;div class=&#34;md&#34;&gt;&lt;p&gt;I&amp;#39;ve run a small UK based independent record label for nearly a year now. We focus on underground metal, and have 5 releases out so far. People always seem interested in the day-to-day running of a label, and bands are always asking for advice, so I figured why not do an AMA (which will also help me work out this Reddit thing)!&lt;/p&gt; &lt;p&gt;&lt;a href=&#34;https://twitter.com/UltharRecords/status/504948524178743296&#34;&gt;https://twitter.com/UltharRecords/status/504948524178743296&lt;/a&gt;&lt;/p&gt; &lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/EaLordoftheDeep&#34;&gt; EaLordoftheDeep &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/IAmA/&#34;&gt; IAmA&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/IAmA/comments/2et9op/i_run_an_underground_metal_label_ama/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/IAmA/comments/2et9op/i_run_an_underground_metal_label_ama/"&gt;[450 comments]&lt;/a&gt;</description></item><item><title>Princess Mononoke forest, Yakushima island, Japan [OC][1024x681]</title><category>EarthPorn</category><link>http://www.reddit.com/r/EarthPorn/comments/2es94f/princess_mononoke_forest_yakushima_island_japan/</link><guid isPermaLink="true">http://www.reddit.com/r/EarthPorn/comments/2es94f/princess_mononoke_forest_yakushima_island_japan/</guid><pubDate>Thu, 28 Aug 2014 02:08:42 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/EarthPorn/comments/2es94f/princess_mononoke_forest_yakushima_island_japan/&#34;&gt;&lt;img src=&#34;http://a.thumbs.redditmedia.com/QQ_9to5jEyO_GwJosq0Or117QmTKwtPR5-TNVuSrs14.jpg&#34; alt=&#34;Princess Mononoke forest, Yakushima island, Japan [OC][1024x681]&#34; title=&#34;Princess Mononoke forest, Yakushima island, Japan [OC][1024x681]&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/IdyllicCanopy&#34;&gt; IdyllicCanopy &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/EarthPorn/&#34;&gt; EarthPorn&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://fc08.deviantart.net/fs71/i/2014/237/d/b/princess_mononoke_real_forest_by_idylliccanopy-d7wovs0.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/EarthPorn/comments/2es94f/princess_mononoke_forest_yakushima_island_japan/"&gt;[134 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Princess Mononoke forest, Yakushima island, Japan [OC][1024x681]</media:title><media:thumbnail url="http://a.thumbs.redditmedia.com/QQ_9to5jEyO_GwJosq0Or117QmTKwtPR5-TNVuSrs14.jpg" /></item><item><title>ELI5: What's the difference between all the various American intelligence/defense agencies?</title><category>explainlikeimfive</category><link>http://www.reddit.com/r/explainlikeimfive/comments/2et9rz/eli5_whats_the_difference_between_all_the_various/</link><guid isPermaLink="true">http://www.reddit.com/r/explainlikeimfive/comments/2et9rz/eli5_whats_the_difference_between_all_the_various/</guid><pubDate>Thu, 28 Aug 2014 11:10:18 +0000</pubDate><description>&lt;!-- SC_OFF --&gt;&lt;div class=&#34;md&#34;&gt;&lt;p&gt;I&amp;#39;ve heard of loads of different ones - CIA, FBI, NSA, DIA, Homeland Security, DOD, DEA - but don&amp;#39;t know what the difference between each of them is. From what I can tell (at least from movies and TV shows) they all seem to have more or less the same purpose; stopping criminals and terrorists.&lt;/p&gt; &lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/LGSIDI&#34;&gt; LGSIDI &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/explainlikeimfive/&#34;&gt; explainlikeimfive&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/explainlikeimfive/comments/2et9rz/eli5_whats_the_difference_between_all_the_various/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/explainlikeimfive/comments/2et9rz/eli5_whats_the_difference_between_all_the_various/"&gt;[186 comments]&lt;/a&gt;</description></item><item><title>If you could bring one character to life from your favorite book or movie and be your best friend, who would it be?</title><category>AskReddit</category><link>http://www.reddit.com/r/AskReddit/comments/2etat7/if_you_could_bring_one_character_to_life_from/</link><guid isPermaLink="true">http://www.reddit.com/r/AskReddit/comments/2etat7/if_you_could_bring_one_character_to_life_from/</guid><pubDate>Thu, 28 Aug 2014 11:27:14 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/TheTicketeer&#34;&gt; TheTicketeer &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/AskReddit/&#34;&gt; AskReddit&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/AskReddit/comments/2etat7/if_you_could_bring_one_character_to_life_from/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/AskReddit/comments/2etat7/if_you_could_bring_one_character_to_life_from/"&gt;[1203 comments]&lt;/a&gt;</description></item><item><title>&quot;?!&quot; makes a sound in my head, but I can't describe what it is.</title><category>Showerthoughts</category><link>http://www.reddit.com/r/Showerthoughts/comments/2es6x5/makes_a_sound_in_my_head_but_i_cant_describe_what/</link><guid isPermaLink="true">http://www.reddit.com/r/Showerthoughts/comments/2es6x5/makes_a_sound_in_my_head_but_i_cant_describe_what/</guid><pubDate>Thu, 28 Aug 2014 01:46:29 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/Zadder&#34;&gt; Zadder &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/Showerthoughts/&#34;&gt; Showerthoughts&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/Showerthoughts/comments/2es6x5/makes_a_sound_in_my_head_but_i_cant_describe_what/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/Showerthoughts/comments/2es6x5/makes_a_sound_in_my_head_but_i_cant_describe_what/"&gt;[805 comments]&lt;/a&gt;</description></item><item><title>40% of managers avoid hiring younger women to get around maternity leave [x-post /r/Economics]</title><category>TwoXChromosomes</category><link>http://www.reddit.com/r/TwoXChromosomes/comments/2etety/40_of_managers_avoid_hiring_younger_women_to_get/</link><guid isPermaLink="true">http://www.reddit.com/r/TwoXChromosomes/comments/2etety/40_of_managers_avoid_hiring_younger_women_to_get/</guid><pubDate>Thu, 28 Aug 2014 12:27:15 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/lady_skendich&#34;&gt; lady_skendich &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/TwoXChromosomes/&#34;&gt; TwoXChromosomes&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.theguardian.com/money/2014/aug/12/managers-avoid-hiring-younger-women-maternity-leave&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/TwoXChromosomes/comments/2etety/40_of_managers_avoid_hiring_younger_women_to_get/"&gt;[369 comments]&lt;/a&gt;</description></item><item><title>PsBattle: A museum model of Bigfoot</title><category>photoshopbattles</category><link>http://www.reddit.com/r/photoshopbattles/comments/2eshwc/psbattle_a_museum_model_of_bigfoot/</link><guid isPermaLink="true">http://www.reddit.com/r/photoshopbattles/comments/2eshwc/psbattle_a_museum_model_of_bigfoot/</guid><pubDate>Thu, 28 Aug 2014 03:42:02 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/photoshopbattles/comments/2eshwc/psbattle_a_museum_model_of_bigfoot/&#34;&gt;&lt;img src=&#34;http://a.thumbs.redditmedia.com/IWH6csFZXyXlZEKPVC2IolAcMJ9a2PSCD_LiI7w0Dx0.jpg&#34; alt=&#34;PsBattle: A museum model of Bigfoot&#34; title=&#34;PsBattle: A museum model of Bigfoot&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/Smocahontas_&#34;&gt; Smocahontas_ &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/photoshopbattles/&#34;&gt; photoshopbattles&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/soaZrwM.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/photoshopbattles/comments/2eshwc/psbattle_a_museum_model_of_bigfoot/"&gt;[295 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>PsBattle: A museum model of Bigfoot</media:title><media:thumbnail url="http://a.thumbs.redditmedia.com/IWH6csFZXyXlZEKPVC2IolAcMJ9a2PSCD_LiI7w0Dx0.jpg" /></item><item><title>Young Kenyan woman holds her pet deer in Mombassa, March 1909</title><category>OldSchoolCool</category><link>http://www.reddit.com/r/OldSchoolCool/comments/2etnm1/young_kenyan_woman_holds_her_pet_deer_in_mombassa/</link><guid isPermaLink="true">http://www.reddit.com/r/OldSchoolCool/comments/2etnm1/young_kenyan_woman_holds_her_pet_deer_in_mombassa/</guid><pubDate>Thu, 28 Aug 2014 14:11:13 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/OldSchoolCool/comments/2etnm1/young_kenyan_woman_holds_her_pet_deer_in_mombassa/&#34;&gt;&lt;img src=&#34;http://a.thumbs.redditmedia.com/WeSlIOxxx4Zu6PJMHpKFBDGILPt02OSNExpx0gTeD-4.jpg&#34; alt=&#34;Young Kenyan woman holds her pet deer in Mombassa, March 1909&#34; title=&#34;Young Kenyan woman holds her pet deer in Mombassa, March 1909&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/TheMagicDrake&#34;&gt; TheMagicDrake &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/OldSchoolCool/&#34;&gt; OldSchoolCool&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/9NjxKIo.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/OldSchoolCool/comments/2etnm1/young_kenyan_woman_holds_her_pet_deer_in_mombassa/"&gt;[21 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Young Kenyan woman holds her pet deer in Mombassa, March 1909</media:title><media:thumbnail url="http://a.thumbs.redditmedia.com/WeSlIOxxx4Zu6PJMHpKFBDGILPt02OSNExpx0gTeD-4.jpg" /></item><item><title>A husband and wife are having dinner...</title><category>Jokes</category><link>http://www.reddit.com/r/Jokes/comments/2eszjh/a_husband_and_wife_are_having_dinner/</link><guid isPermaLink="true">http://www.reddit.com/r/Jokes/comments/2eszjh/a_husband_and_wife_are_having_dinner/</guid><pubDate>Thu, 28 Aug 2014 07:58:47 +0000</pubDate><description>&lt;!-- SC_OFF --&gt;&lt;div class=&#34;md&#34;&gt;&lt;p&gt;A husband and wife are having dinner at a very fine restaurant when an absolutely stunning young woman comes over to their table, gives the husband a big open-mouthed kiss, then says she&amp;#39;ll see him later and walks away. ‪‪ The wife glares at her husband and says, &amp;quot;Who in the hell was that?&amp;quot;&lt;/p&gt; &lt;p&gt;&amp;quot;Oh,&amp;quot; replies the husband, &amp;quot;She&amp;#39;s my mistress.&amp;quot;&lt;/p&gt; &lt;p&gt;&amp;quot;Well, that&amp;#39;s the last straw,&amp;quot; says the wife. &amp;quot;I&amp;#39;ve had enough. I want a divorce!&amp;quot;&lt;/p&gt; &lt;p&gt;&amp;quot;I can understand that,&amp;quot; replies her husband, &amp;quot;But remember, if we get a divorce it will mean no more shopping trips to Paris, no more wintering in Barbados, no more summers in Tuscany, no more Jaguar in the garage, and no more yacht club. Not only that, but no more diamonds, no more credit card, and large bank account.&amp;quot; &lt;/p&gt; &lt;p&gt;&amp;quot;But, he said, &amp;quot;The decision is all yours.&amp;quot;&lt;/p&gt; &lt;p&gt;Just then, a mutual friend of theirs enters the restaurant with a gorgeous babe on his arm.&lt;/p&gt; &lt;p&gt;&amp;quot;Who&amp;#39;s that woman with Bobby?&amp;quot; asks the wife.&lt;/p&gt; &lt;p&gt;&amp;quot;That&amp;#39;s his mistress,&amp;quot; says the husband.&lt;br/&gt; &amp;quot;Ours is prettier,&amp;quot; she replies !&lt;/p&gt; &lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/he19&#34;&gt; he19 &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/Jokes/&#34;&gt; Jokes&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/Jokes/comments/2eszjh/a_husband_and_wife_are_having_dinner/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/Jokes/comments/2eszjh/a_husband_and_wife_are_having_dinner/"&gt;[167 comments]&lt;/a&gt;</description></item><item><title>NASA confirms that their rocket to Mars will have first launch in 2018</title><category>Futurology</category><link>http://www.reddit.com/r/Futurology/comments/2esv7x/nasa_confirms_that_their_rocket_to_mars_will_have/</link><guid isPermaLink="true">http://www.reddit.com/r/Futurology/comments/2esv7x/nasa_confirms_that_their_rocket_to_mars_will_have/</guid><pubDate>Thu, 28 Aug 2014 06:41:30 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/Futurology/comments/2esv7x/nasa_confirms_that_their_rocket_to_mars_will_have/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/rvt6BGXwWw8Mjqdrc-scJzvniYLxRHp9ficX_kev39g.jpg&#34; alt=&#34;NASA confirms that their rocket to Mars will have first launch in 2018&#34; title=&#34;NASA confirms that their rocket to Mars will have first launch in 2018&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/ImLivingAmongYou&#34;&gt; ImLivingAmongYou &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/Futurology/&#34;&gt; Futurology&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://spaceindustrynews.com/nasa-completes-key-review-of-worlds-most-powerful-rocket-in-support-of-journey-to-mars/4668/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/Futurology/comments/2esv7x/nasa_confirms_that_their_rocket_to_mars_will_have/"&gt;[100 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>NASA confirms that their rocket to Mars will have first launch in 2018</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/rvt6BGXwWw8Mjqdrc-scJzvniYLxRHp9ficX_kev39g.jpg" /></item><item><title>TIFU by wearing white underwear and a suit to a party [nsfw warning, feces]</title><category>tifu</category><link>http://www.reddit.com/r/tifu/comments/2esixx/tifu_by_wearing_white_underwear_and_a_suit_to_a/</link><guid isPermaLink="true">http://www.reddit.com/r/tifu/comments/2esixx/tifu_by_wearing_white_underwear_and_a_suit_to_a/</guid><pubDate>Thu, 28 Aug 2014 03:53:43 +0000</pubDate><description>&lt;!-- SC_OFF --&gt;&lt;div class=&#34;md&#34;&gt;&lt;p&gt;I&amp;#39;ve lurked on this sub for a while and I think it&amp;#39;s time that I tell my story of how I massively fucked up and made an idiot of myself in front of my entire graduating class.&lt;/p&gt; &lt;p&gt;I graduated from high school last May. During my 4 years, I&amp;#39;ve never been to an actual party. I&amp;#39;ve tasted alcohol in small sips but I haven&amp;#39;t touched drugs, and needless to say, I haven&amp;#39;t done anything with any girls. I never really got out much and just kept to myself the entire time. Oh well. &lt;/p&gt; &lt;p&gt;This past July, some of the popular kids from my graduating class threw a huge party as a last goodbye to their high school years. Everyone in my graduating class was invited. Sadly nobody mentioned this to me personally, but I got the details via Facebook and decided that I wanted at least one good high school memory, and I decided that I would actually go to this thing.&lt;/p&gt; &lt;p&gt;When it hit me that I was finally going to change my life and start doing actual stuff like partying instead of staying home all day, I got pretty excited, I felt like I was finally in control of my life. I felt like I could come out of my shell and do something cool. I was also pretty anxious because I felt like this would finally be an opportunity for me to get intimate or even lose my virginity. &lt;/p&gt; &lt;p&gt;I cringe now that I have to think about it, but in the midst of my excitement I thought it would be a good idea to wear a suit to this party. I dunno, it seemed it would have been a special and memorable night and I wanted to look good. I get it, there&amp;#39;s always &lt;em&gt;that guy&lt;/em&gt; who feels the need to wear a suit at in inappropriate time, and I was that guy. Needless to say, I&amp;#39;m not exactly in shape and the suit fitted on me very, very poorly. It was baggy in some areas and tight in others, but at the time I didn&amp;#39;t care because I thought I looked sharp. I wore white underwear, this is important later on. &lt;/p&gt; &lt;p&gt;I show up to party, at a massive house owned by this rich kid on the football team, and it&amp;#39;s pretty much already packed. People are in the backyard, the front yard, and inside. &lt;/p&gt; &lt;p&gt;So I live in Miami, which is in South Florida. As you can imagine, on this particular Saturday night in July, it was over 100 degrees F and excessively humid. Pair that with a thick wool suit, I exit my car already drenched in sweat. Everyone is wearing normal clothes, shorts and t-shirts, so I look like the odd one out. I immediately start to feel embarrassed and uncomfortable and out of place, but I decide to start walking around, ignoring people&amp;#39;s stares.&lt;/p&gt; &lt;p&gt;My antics during the party aren&amp;#39;t integral to my TIFU. As you can probably imagine, for the next 2-3 hours I wandered aimlessly, awkwardly standing by the drink/snack tables for most of the time, trying to figure out how I could strike up a conversation or do anything at all to make myself not a loser. &lt;/p&gt; &lt;p&gt;&lt;strong&gt;My fuck up started at midnight.&lt;/strong&gt; I&amp;#39;m standing by the drink area holding a can of beer that I could barely drink because it tasted so fucking gross. I&amp;#39;m deeply regretting my choice of attire and my decision to even show up. I&amp;#39;m drenched in sweat and pretty down in the dumps over the whole night, wishing I was at home watching TV or playing a game or something. A group of girls approach and start pouring themselves a shitload of drinks. In the group was a girl, we&amp;#39;ll call her K. She wasn&amp;#39;t really hot by most standards, but definitely not ugly. K was known for being extremely promiscuous. I was never really in the know about these sorts of things, but I still heard fuckloads of stories about K giving head, doing threesomes, and getting fucked in every direction with pretty much any guy on every sports team. When she came nearby I could hear her bragging about having sex with the host and the other girls giggling. &lt;/p&gt; &lt;p&gt;I decide, you know what, fuck it, I&amp;#39;m just going to say something because I didn&amp;#39;t have that much to lose. I put on a confident face and start talking to her. I guess it&amp;#39;s because she&amp;#39;s just extroverted and tipsy, but she actually responded to me. I offered to get her a drink and she says ok, so we both walk towards the table where the drinks are, at this point her friends are left behind and it&amp;#39;s just us. she asks why I&amp;#39;m wearing a suit. I can feel my face turning bright red and awkwardly say &amp;quot;yeah just wanted to look good I guess&amp;quot;. I tell her she looked great and she said thanks. I just kind of awkwardly blurted out &amp;quot;maybe this suit will get me laid&amp;quot;. She started giggling and said &amp;quot;you need it, you are definitely a virgin, i can tell&amp;quot;. I was too nervous to say anything so I tried to smile, and she just kept laughing. After an awkward pause I said &amp;quot;do you want to hook up?&amp;quot; At this point, I&amp;#39;m just like, what the hell, I might as well try, and given her willingness to have sex with just about anyone, I figured I might have a shot. So I&amp;#39;m standing there with my face bright red trying to act cool and collected and she is staring at me with her mouth open. I definitely expected the worst, but she started giggling and said &amp;quot;Yes, but only because you&amp;#39;re a virgin&amp;quot; &lt;/p&gt; &lt;p&gt;I followed her into a bedroom on the 2nd floor and she closed the door behind us. we stood in front of the foot of the bed. the room itself was decently large, with a single bed, bedside table, television, and a closet on the other side of the bed. it was very dimly lit, i could barely see her. she let me kiss her a few times, and obviously i sucked at it, but it was my first time and i was mind-blowlingly excited. it was finally about to happen. i put my arms awkwardly around her midsection like a hug and let her do most of the mouth work while i touched her ass and boobs. she was wearing a really skimpy pair of shorts that she slid off while i took off my slacks.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Here&amp;#39;s where things go really fucking bad&lt;/strong&gt;. she pulls off her panties and steps back, and pushes them between my lips. it was wildly sexy, and with my inexperience and in the heat of the moment and i took my underpants off and did the same thing to her. She immediately pushes it away from her mouth and starts gagging. I immediately flicked on the light, and that&amp;#39;s when I notice the smell and realize what the fuck I had just done. &lt;/p&gt; &lt;p&gt;Given the heat, the humidity, and my attire, I was sweating like crazy, and had a case of massive swamp-ass. basically, the sweat from my ass mixed with the dried fecal matter in my ass itself, and caked my white underwear with a dark brown liquid. I&amp;#39;m not talking about little streaks, but big wet splotches that smelled absolutely rancid. I had pushed my underwear, wet with my feces juices, into her mouth and onto her tongue. &lt;/p&gt; &lt;p&gt;She saw the underwear, now on the ground, brown side up, and started spitting and screaming &amp;quot;WHAT THE FUCK THOMAS? WHAT THE FUCK IS WRONG WITH YOU, I ALWAYS KNEW YOU WERE A FUCKING DISGUSTING WEIRDO, THIS IS WHY NOBODY LIKES YOU&amp;quot; as I&amp;#39;m struggling to put my slacks back on&lt;/p&gt; &lt;p&gt;I&amp;#39;m standing there staring at my underwear absolutely fucking mortified and embarrassed while she screamed and tried to wash the taste out of her mouth with beer. She was literally on the verge of tears. I was in shock, I could barely process what the fuck just happened and what I was to do at this point. I just wanted to blow my brains out.&lt;/p&gt; &lt;p&gt;The host and two other guys barge in and shout &amp;quot;WHAT THE FUCK IS GOING ON? WHO&amp;#39;S SCREAMING?&amp;quot;...they see K washing her mouth out and my shit stained underpants on the ground and give me this vicious glare mixed with a &lt;em&gt;what-the-fuck-man?&lt;/em&gt; stare. &lt;/p&gt; &lt;p&gt;I dart out the door, pushing past a bunch of people who were in the hallway that heard the commotion and were trying to see what was going on inside. I hustle downstairs, at this point I&amp;#39;m almost about to cry too, and everyone was staring at me. I made it across the main hallway towards the front door when the guys were on the balcony above, shouting &amp;quot;THOMAS FUCKING SHIT HIS PANTS&amp;quot; I could feel everyone&amp;#39;s eyes on me as I slammed the front door shut and scrambled to my car. I went home that night and just sat in bed trying to process what just happened. &lt;/p&gt; &lt;p&gt;Next morning, I wake up to a fuckload of hate messages on Facebook, I see statuses about &amp;quot;that weird kid who shit his pants at [...]&amp;#39;s party last night&amp;quot;. So I deleted my Facebook altogether and at this point it embarrasses me to even think about what happened but I am comforted by the fact that I&amp;#39;ll never have to see these people again and I ended up getting physical with a decently attractive girl. Here&amp;#39;s to hoping my college years aren&amp;#39;t as bad as my highschool years. &lt;/p&gt; &lt;p&gt;&lt;strong&gt;TLDR: shoved my shit-caked underpants into a girl&amp;#39;s mouth, now everyone that knows me hates me&lt;/strong&gt;&lt;/p&gt; &lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/im_too_dumb&#34;&gt; im_too_dumb &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/tifu/&#34;&gt; tifu&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/tifu/comments/2esixx/tifu_by_wearing_white_underwear_and_a_suit_to_a/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/tifu/comments/2esixx/tifu_by_wearing_white_underwear_and_a_suit_to_a/"&gt;[404 comments]&lt;/a&gt;</description></item></channel></rss>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>reddit: the front page of the internet</title><link>http://www.reddit.com/</link><description></description><image><url>http://www.reddit.com/reddit.com.header.png</url><title>reddit: the front page of the internet</title><link>http://www.reddit.com/</link></image><atom:link rel="self" href="http://www.reddit.com/.rss" type="application/rss+xml" /><item><title>My boyfriend and I met at the dog park, so it was really their 2 year anniversary last weekend.</title><category>aww</category><link>http://www.reddit.com/r/aww/comments/2etf4h/my_boyfriend_and_i_met_at_the_dog_park_so_it_was/</link><guid isPermaLink="true">http://www.reddit.com/r/aww/comments/2etf4h/my_boyfriend_and_i_met_at_the_dog_park_so_it_was/</guid><pubDate>Thu, 28 Aug 2014 12:31:18 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/aww/comments/2etf4h/my_boyfriend_and_i_met_at_the_dog_park_so_it_was/&#34;&gt;&lt;img src=&#34;http://a.thumbs.redditmedia.com/lmyCN-9dO1xX2VsyzBFiWjNLuwcR52hQAyhM0_u_uY8.jpg&#34; alt=&#34;My boyfriend and I met at the dog park, so it was really their 2 year anniversary last weekend.&#34; title=&#34;My boyfriend and I met at the dog park, so it was really their 2 year anniversary last weekend.&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/keatno_pizza&#34;&gt; keatno_pizza &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/aww/&#34;&gt; aww&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/rhfiKTf.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/aww/comments/2etf4h/my_boyfriend_and_i_met_at_the_dog_park_so_it_was/"&gt;[335 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>My boyfriend and I met at the dog park, so it was really their 2 year anniversary last weekend.</media:title><media:thumbnail url="http://a.thumbs.redditmedia.com/lmyCN-9dO1xX2VsyzBFiWjNLuwcR52hQAyhM0_u_uY8.jpg" /></item><item><title>Recent ultrasound result looks good.</title><category>funny</category><link>http://www.reddit.com/r/funny/comments/2etdpv/recent_ultrasound_result_looks_good/</link><guid isPermaLink="true">http://www.reddit.com/r/funny/comments/2etdpv/recent_ultrasound_result_looks_good/</guid><pubDate>Thu, 28 Aug 2014 12:11:37 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/funny/comments/2etdpv/recent_ultrasound_result_looks_good/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/-0xo59TDcuFZMli9qoOPt1poxuhvvhKz3VJG5s8bhng.jpg&#34; alt=&#34;Recent ultrasound result looks good.&#34; title=&#34;Recent ultrasound result looks good.&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/meancloth&#34;&gt; meancloth &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/funny/&#34;&gt; funny&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/MdrKNe8.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/funny/comments/2etdpv/recent_ultrasound_result_looks_good/"&gt;[231 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Recent ultrasound result looks good.</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/-0xo59TDcuFZMli9qoOPt1poxuhvvhKz3VJG5s8bhng.jpg" /></item><item><title>THE LEVEL.</title><category>pics</category><link>http://www.reddit.com/r/pics/comments/2etcoj/the_level/</link><guid isPermaLink="true">http://www.reddit.com/r/pics/comments/2etcoj/the_level/</guid><pubDate>Thu, 28 Aug 2014 11:56:13 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/pics/comments/2etcoj/the_level/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/3Hhnv9sJDTzIJ46r1S9-OZunfxNL-dsRGw5t3Mi-JIM.jpg&#34; alt=&#34;THE LEVEL.&#34; title=&#34;THE LEVEL.&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/bluuui&#34;&gt; bluuui &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/pics/&#34;&gt; pics&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/vqjpgUh.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/pics/comments/2etcoj/the_level/"&gt;[400 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>THE LEVEL.</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/3Hhnv9sJDTzIJ46r1S9-OZunfxNL-dsRGw5t3Mi-JIM.jpg" /></item><item><title>I’m Seth Shostak, and I direct the search for extraterrestrials at the SETI Institute in California. We’re trying to find evidence of intelligent life in space: aliens at least as clever as we are. AMA!</title><category>science</category><link>http://www.reddit.com/r/science/comments/2eta6t/im_seth_shostak_and_i_direct_the_search_for/</link><guid isPermaLink="true">http://www.reddit.com/r/science/comments/2eta6t/im_seth_shostak_and_i_direct_the_search_for/</guid><pubDate>Thu, 28 Aug 2014 11:16:52 +0000</pubDate><description>&lt;!-- SC_OFF --&gt;&lt;div class=&#34;md&#34;&gt;&lt;p&gt;In a recent article in &lt;a href=&#34;https://theconversation.com/we-could-find-alien-life-but-politicians-dont-have-the-will-29304&#34;&gt;The Conversation&lt;/a&gt;, I suggested that we could find life beyond Earth within two decades if we simply made it a higher priority. Here I mean life of any kind, including those undoubtedly dominant species that are single-celled and microscopic. But of course, I want to find intelligent life – the kind that could JOIN the conversation. So AMA about life in space and our search for it!&lt;/p&gt; &lt;p&gt;I will be back at 1 pm EDT (5pm UTC, 6 pm BST, 10 am PDT) to answer questions, AMA.&lt;/p&gt; &lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/sshostak&#34;&gt; sshostak &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/science/&#34;&gt; science&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/science/comments/2eta6t/im_seth_shostak_and_i_direct_the_search_for/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/science/comments/2eta6t/im_seth_shostak_and_i_direct_the_search_for/"&gt;[1827 comments]&lt;/a&gt;</description></item><item><title>Surprise!</title><category>gifs</category><link>http://www.reddit.com/r/gifs/comments/2et8uh/surprise/</link><guid isPermaLink="true">http://www.reddit.com/r/gifs/comments/2et8uh/surprise/</guid><pubDate>Thu, 28 Aug 2014 10:54:57 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/antici_______pation&#34;&gt; antici_______pation &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/gifs/&#34;&gt; gifs&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/lyI9Qcw.gif&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/gifs/comments/2et8uh/surprise/"&gt;[96 comments]&lt;/a&gt;</description></item><item><title>Little boy goes off on his mom for getting pregnant</title><category>videos</category><link>http://www.reddit.com/r/videos/comments/2et10i/little_boy_goes_off_on_his_mom_for_getting/</link><guid isPermaLink="true">http://www.reddit.com/r/videos/comments/2et10i/little_boy_goes_off_on_his_mom_for_getting/</guid><pubDate>Thu, 28 Aug 2014 08:27:15 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/videos/comments/2et10i/little_boy_goes_off_on_his_mom_for_getting/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/NDF9083G9f0a2rmsgixoUILZxZ7rYmEr9q7JOJLfugg.jpg&#34; alt=&#34;Little boy goes off on his mom for getting pregnant&#34; title=&#34;Little boy goes off on his mom for getting pregnant&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/Roush14&#34;&gt; Roush14 &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/videos/&#34;&gt; videos&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;https://www.youtube.com/watch?v=QKnVWr2PkIU&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/videos/comments/2et10i/little_boy_goes_off_on_his_mom_for_getting/"&gt;[1466 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Little boy goes off on his mom for getting pregnant</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/NDF9083G9f0a2rmsgixoUILZxZ7rYmEr9q7JOJLfugg.jpg" /></item><item><title>Just had an encounter with a phisher and wanted to remind everybody not to fall for their fake links.</title><category>gaming</category><link>http://www.reddit.com/r/gaming/comments/2et2o2/just_had_an_encounter_with_a_phisher_and_wanted/</link><guid isPermaLink="true">http://www.reddit.com/r/gaming/comments/2et2o2/just_had_an_encounter_with_a_phisher_and_wanted/</guid><pubDate>Thu, 28 Aug 2014 09:00:59 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/gaming/comments/2et2o2/just_had_an_encounter_with_a_phisher_and_wanted/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/CQyUQXVMY7uQsbnkR8EUV5el3mrSK62x1wMMjbry_wo.jpg&#34; alt=&#34;Just had an encounter with a phisher and wanted to remind everybody not to fall for their fake links.&#34; title=&#34;Just had an encounter with a phisher and wanted to remind everybody not to fall for their fake links.&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/dudderzdude&#34;&gt; dudderzdude &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/gaming/&#34;&gt; gaming&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://imgur.com/wMDB8HU&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/gaming/comments/2et2o2/just_had_an_encounter_with_a_phisher_and_wanted/"&gt;[370 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Just had an encounter with a phisher and wanted to remind everybody not to fall for their fake links.</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/CQyUQXVMY7uQsbnkR8EUV5el3mrSK62x1wMMjbry_wo.jpg" /></item><item><title>Russia has begun &quot;full scale invasion&quot; into Ukraine fighting now on two fronts.</title><category>worldnews</category><link>http://www.reddit.com/r/worldnews/comments/2esuo9/russia_has_begun_full_scale_invasion_into_ukraine/</link><guid isPermaLink="true">http://www.reddit.com/r/worldnews/comments/2esuo9/russia_has_begun_full_scale_invasion_into_ukraine/</guid><pubDate>Thu, 28 Aug 2014 06:32:42 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/Goobiesnax&#34;&gt; Goobiesnax &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/worldnews/&#34;&gt; worldnews&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.cnn.com/2014/08/28/world/europe/ukraine-crisis/index.html&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/worldnews/comments/2esuo9/russia_has_begun_full_scale_invasion_into_ukraine/"&gt;[4737 comments]&lt;/a&gt;</description></item><item><title>Louisiana Parish's drinking water tests positive for Brain-eating amoeba</title><category>news</category><link>http://www.reddit.com/r/news/comments/2etjzf/louisiana_parishs_drinking_water_tests_positive/</link><guid isPermaLink="true">http://www.reddit.com/r/news/comments/2etjzf/louisiana_parishs_drinking_water_tests_positive/</guid><pubDate>Thu, 28 Aug 2014 13:30:43 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/absolutspacegirl&#34;&gt; absolutspacegirl &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/news/&#34;&gt; news&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://wgno.com/2014/08/28/st-john-parish-drinking-water-tests-positive-for-brain-eating-amoeba/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/news/comments/2etjzf/louisiana_parishs_drinking_water_tests_positive/"&gt;[184 comments]&lt;/a&gt;</description></item><item><title>TIL North Korea enlists around 2000 women as part of a 'Pleasure Squad'. These are attractive women who provide entertainment and sexual services for top officials. One defector says Kim Jong-il was &quot;sentimental when drunk, and even shed tears&quot;</title><category>todayilearned</category><link>http://www.reddit.com/r/todayilearned/comments/2et9k8/til_north_korea_enlists_around_2000_women_as_part/</link><guid isPermaLink="true">http://www.reddit.com/r/todayilearned/comments/2et9k8/til_north_korea_enlists_around_2000_women_as_part/</guid><pubDate>Thu, 28 Aug 2014 11:06:53 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/todayilearned/comments/2et9k8/til_north_korea_enlists_around_2000_women_as_part/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/QONjPL7Wflj3yPHDYs3gp1sqFHOFdTa_42m7MJFcr3w.jpg&#34; alt=&#34;TIL North Korea enlists around 2000 women as part of a &#39;Pleasure Squad&#39;. These are attractive women who provide entertainment and sexual services for top officials. One defector says Kim Jong-il was &amp;quot;sentimental when drunk, and even shed tears&amp;quot;&#34; title=&#34;TIL North Korea enlists around 2000 women as part of a &#39;Pleasure Squad&#39;. These are attractive women who provide entertainment and sexual services for top officials. One defector says Kim Jong-il was &amp;quot;sentimental when drunk, and even shed tears&amp;quot;&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/fmpundit&#34;&gt; fmpundit &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/todayilearned/&#34;&gt; todayilearned&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.thenational.ae/news/world/asia-pacific/pleasure-squad-defector-sheds-light-on-life-of-kim-jong-il#full&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/todayilearned/comments/2et9k8/til_north_korea_enlists_around_2000_women_as_part/"&gt;[178 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>TIL North Korea enlists around 2000 women as part of a 'Pleasure Squad'. These are attractive women who provide entertainment and sexual services for top officials. One defector says Kim Jong-il was &quot;sentimental when drunk, and even shed tears&quot;</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/QONjPL7Wflj3yPHDYs3gp1sqFHOFdTa_42m7MJFcr3w.jpg" /></item><item><title>What I wait for every baseball game</title><category>sports</category><link>http://www.reddit.com/r/sports/comments/2etntz/what_i_wait_for_every_baseball_game/</link><guid isPermaLink="true">http://www.reddit.com/r/sports/comments/2etntz/what_i_wait_for_every_baseball_game/</guid><pubDate>Thu, 28 Aug 2014 14:13:31 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/sports/comments/2etntz/what_i_wait_for_every_baseball_game/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/UUXSM87ADgFqkCODmIFUI6hs2TpUfkd0e602uChZnsQ.jpg&#34; alt=&#34;What I wait for every baseball game&#34; title=&#34;What I wait for every baseball game&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/just_wait_a_sec&#34;&gt; just_wait_a_sec &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/sports/&#34;&gt; sports&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://imgur.com/DnI1mg8&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/sports/comments/2etntz/what_i_wait_for_every_baseball_game/"&gt;[156 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>What I wait for every baseball game</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/UUXSM87ADgFqkCODmIFUI6hs2TpUfkd0e602uChZnsQ.jpg" /></item><item><title>Somebody shot the tree that my 2x4 was made from</title><category>mildlyinteresting</category><link>http://www.reddit.com/r/mildlyinteresting/comments/2esie3/somebody_shot_the_tree_that_my_2x4_was_made_from/</link><guid isPermaLink="true">http://www.reddit.com/r/mildlyinteresting/comments/2esie3/somebody_shot_the_tree_that_my_2x4_was_made_from/</guid><pubDate>Thu, 28 Aug 2014 03:47:31 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/mildlyinteresting/comments/2esie3/somebody_shot_the_tree_that_my_2x4_was_made_from/&#34;&gt;&lt;img src=&#34;http://a.thumbs.redditmedia.com/FqUm9L2wVJSwomJrd6h_CS4ZO-ndI0OnB7T1hS6Uv50.jpg&#34; alt=&#34;Somebody shot the tree that my 2x4 was made from&#34; title=&#34;Somebody shot the tree that my 2x4 was made from&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/Larrychap&#34;&gt; Larrychap &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/mildlyinteresting/&#34;&gt; mildlyinteresting&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/mgBAoQx.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/mildlyinteresting/comments/2esie3/somebody_shot_the_tree_that_my_2x4_was_made_from/"&gt;[513 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Somebody shot the tree that my 2x4 was made from</media:title><media:thumbnail url="http://a.thumbs.redditmedia.com/FqUm9L2wVJSwomJrd6h_CS4ZO-ndI0OnB7T1hS6Uv50.jpg" /></item><item><title>Godzilla - Concept Art</title><category>movies</category><link>http://www.reddit.com/r/movies/comments/2et750/godzilla_concept_art/</link><guid isPermaLink="true">http://www.reddit.com/r/movies/comments/2et750/godzilla_concept_art/</guid><pubDate>Thu, 28 Aug 2014 10:27:08 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/movies/comments/2et750/godzilla_concept_art/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/OWy3DRVzYSfqNCMHFDSUiELA7W39LCvaSUhSpmo5j9Q.jpg&#34; alt=&#34;Godzilla - Concept Art&#34; title=&#34;Godzilla - Concept Art&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/Sourcecode12&#34;&gt; Sourcecode12 &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/movies/&#34;&gt; movies&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://imgur.com/a/bRLIe&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/movies/comments/2et750/godzilla_concept_art/"&gt;[134 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Godzilla - Concept Art</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/OWy3DRVzYSfqNCMHFDSUiELA7W39LCvaSUhSpmo5j9Q.jpg" /></item><item><title>Blind Melon - Change [90s alt] Beautiful acoustic version, and yes, they were more than a one-hit wonder</title><category>Music</category><link>http://www.reddit.com/r/Music/comments/2ethr4/blind_melon_change_90s_alt_beautiful_acoustic/</link><guid isPermaLink="true">http://www.reddit.com/r/Music/comments/2ethr4/blind_melon_change_90s_alt_beautiful_acoustic/</guid><pubDate>Thu, 28 Aug 2014 13:04:38 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/pechinburger&#34;&gt; pechinburger &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/Music/&#34;&gt; Music&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.youtube.com/watch?v=VdXXgppVU4c&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/Music/comments/2ethr4/blind_melon_change_90s_alt_beautiful_acoustic/"&gt;[151 comments]&lt;/a&gt;</description></item><item><title>I run an underground metal label AMA!</title><category>IAmA</category><link>http://www.reddit.com/r/IAmA/comments/2et9op/i_run_an_underground_metal_label_ama/</link><guid isPermaLink="true">http://www.reddit.com/r/IAmA/comments/2et9op/i_run_an_underground_metal_label_ama/</guid><pubDate>Thu, 28 Aug 2014 11:08:55 +0000</pubDate><description>&lt;!-- SC_OFF --&gt;&lt;div class=&#34;md&#34;&gt;&lt;p&gt;I&amp;#39;ve run a small UK based independent record label for nearly a year now. We focus on underground metal, and have 5 releases out so far. People always seem interested in the day-to-day running of a label, and bands are always asking for advice, so I figured why not do an AMA (which will also help me work out this Reddit thing)!&lt;/p&gt; &lt;p&gt;&lt;a href=&#34;https://twitter.com/UltharRecords/status/504948524178743296&#34;&gt;https://twitter.com/UltharRecords/status/504948524178743296&lt;/a&gt;&lt;/p&gt; &lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/EaLordoftheDeep&#34;&gt; EaLordoftheDeep &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/IAmA/&#34;&gt; IAmA&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/IAmA/comments/2et9op/i_run_an_underground_metal_label_ama/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/IAmA/comments/2et9op/i_run_an_underground_metal_label_ama/"&gt;[450 comments]&lt;/a&gt;</description></item><item><title>Princess Mononoke forest, Yakushima island, Japan [OC][1024x681]</title><category>EarthPorn</category><link>http://www.reddit.com/r/EarthPorn/comments/2es94f/princess_mononoke_forest_yakushima_island_japan/</link><guid isPermaLink="true">http://www.reddit.com/r/EarthPorn/comments/2es94f/princess_mononoke_forest_yakushima_island_japan/</guid><pubDate>Thu, 28 Aug 2014 02:08:42 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/EarthPorn/comments/2es94f/princess_mononoke_forest_yakushima_island_japan/&#34;&gt;&lt;img src=&#34;http://a.thumbs.redditmedia.com/QQ_9to5jEyO_GwJosq0Or117QmTKwtPR5-TNVuSrs14.jpg&#34; alt=&#34;Princess Mononoke forest, Yakushima island, Japan [OC][1024x681]&#34; title=&#34;Princess Mononoke forest, Yakushima island, Japan [OC][1024x681]&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/IdyllicCanopy&#34;&gt; IdyllicCanopy &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/EarthPorn/&#34;&gt; EarthPorn&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://fc08.deviantart.net/fs71/i/2014/237/d/b/princess_mononoke_real_forest_by_idylliccanopy-d7wovs0.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/EarthPorn/comments/2es94f/princess_mononoke_forest_yakushima_island_japan/"&gt;[134 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Princess Mononoke forest, Yakushima island, Japan [OC][1024x681]</media:title><media:thumbnail url="http://a.thumbs.redditmedia.com/QQ_9to5jEyO_GwJosq0Or117QmTKwtPR5-TNVuSrs14.jpg" /></item><item><title>ELI5: What's the difference between all the various American intelligence/defense agencies?</title><category>explainlikeimfive</category><link>http://www.reddit.com/r/explainlikeimfive/comments/2et9rz/eli5_whats_the_difference_between_all_the_various/</link><guid isPermaLink="true">http://www.reddit.com/r/explainlikeimfive/comments/2et9rz/eli5_whats_the_difference_between_all_the_various/</guid><pubDate>Thu, 28 Aug 2014 11:10:18 +0000</pubDate><description>&lt;!-- SC_OFF --&gt;&lt;div class=&#34;md&#34;&gt;&lt;p&gt;I&amp;#39;ve heard of loads of different ones - CIA, FBI, NSA, DIA, Homeland Security, DOD, DEA - but don&amp;#39;t know what the difference between each of them is. From what I can tell (at least from movies and TV shows) they all seem to have more or less the same purpose; stopping criminals and terrorists.&lt;/p&gt; &lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/LGSIDI&#34;&gt; LGSIDI &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/explainlikeimfive/&#34;&gt; explainlikeimfive&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/explainlikeimfive/comments/2et9rz/eli5_whats_the_difference_between_all_the_various/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/explainlikeimfive/comments/2et9rz/eli5_whats_the_difference_between_all_the_various/"&gt;[186 comments]&lt;/a&gt;</description></item><item><title>If you could bring one character to life from your favorite book or movie and be your best friend, who would it be?</title><category>AskReddit</category><link>http://www.reddit.com/r/AskReddit/comments/2etat7/if_you_could_bring_one_character_to_life_from/</link><guid isPermaLink="true">http://www.reddit.com/r/AskReddit/comments/2etat7/if_you_could_bring_one_character_to_life_from/</guid><pubDate>Thu, 28 Aug 2014 11:27:14 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/TheTicketeer&#34;&gt; TheTicketeer &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/AskReddit/&#34;&gt; AskReddit&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/AskReddit/comments/2etat7/if_you_could_bring_one_character_to_life_from/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/AskReddit/comments/2etat7/if_you_could_bring_one_character_to_life_from/"&gt;[1203 comments]&lt;/a&gt;</description></item><item><title>&quot;?!&quot; makes a sound in my head, but I can't describe what it is.</title><category>Showerthoughts</category><link>http://www.reddit.com/r/Showerthoughts/comments/2es6x5/makes_a_sound_in_my_head_but_i_cant_describe_what/</link><guid isPermaLink="true">http://www.reddit.com/r/Showerthoughts/comments/2es6x5/makes_a_sound_in_my_head_but_i_cant_describe_what/</guid><pubDate>Thu, 28 Aug 2014 01:46:29 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/Zadder&#34;&gt; Zadder &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/Showerthoughts/&#34;&gt; Showerthoughts&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/Showerthoughts/comments/2es6x5/makes_a_sound_in_my_head_but_i_cant_describe_what/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/Showerthoughts/comments/2es6x5/makes_a_sound_in_my_head_but_i_cant_describe_what/"&gt;[805 comments]&lt;/a&gt;</description></item><item><title>40% of managers avoid hiring younger women to get around maternity leave [x-post /r/Economics]</title><category>TwoXChromosomes</category><link>http://www.reddit.com/r/TwoXChromosomes/comments/2etety/40_of_managers_avoid_hiring_younger_women_to_get/</link><guid isPermaLink="true">http://www.reddit.com/r/TwoXChromosomes/comments/2etety/40_of_managers_avoid_hiring_younger_women_to_get/</guid><pubDate>Thu, 28 Aug 2014 12:27:15 +0000</pubDate><description>submitted by &lt;a href=&#34;http://www.reddit.com/user/lady_skendich&#34;&gt; lady_skendich &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/TwoXChromosomes/&#34;&gt; TwoXChromosomes&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.theguardian.com/money/2014/aug/12/managers-avoid-hiring-younger-women-maternity-leave&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/TwoXChromosomes/comments/2etety/40_of_managers_avoid_hiring_younger_women_to_get/"&gt;[369 comments]&lt;/a&gt;</description></item><item><title>PsBattle: A museum model of Bigfoot</title><category>photoshopbattles</category><link>http://www.reddit.com/r/photoshopbattles/comments/2eshwc/psbattle_a_museum_model_of_bigfoot/</link><guid isPermaLink="true">http://www.reddit.com/r/photoshopbattles/comments/2eshwc/psbattle_a_museum_model_of_bigfoot/</guid><pubDate>Thu, 28 Aug 2014 03:42:02 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/photoshopbattles/comments/2eshwc/psbattle_a_museum_model_of_bigfoot/&#34;&gt;&lt;img src=&#34;http://a.thumbs.redditmedia.com/IWH6csFZXyXlZEKPVC2IolAcMJ9a2PSCD_LiI7w0Dx0.jpg&#34; alt=&#34;PsBattle: A museum model of Bigfoot&#34; title=&#34;PsBattle: A museum model of Bigfoot&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/Smocahontas_&#34;&gt; Smocahontas_ &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/photoshopbattles/&#34;&gt; photoshopbattles&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/soaZrwM.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/photoshopbattles/comments/2eshwc/psbattle_a_museum_model_of_bigfoot/"&gt;[295 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>PsBattle: A museum model of Bigfoot</media:title><media:thumbnail url="http://a.thumbs.redditmedia.com/IWH6csFZXyXlZEKPVC2IolAcMJ9a2PSCD_LiI7w0Dx0.jpg" /></item><item><title>Young Kenyan woman holds her pet deer in Mombassa, March 1909</title><category>OldSchoolCool</category><link>http://www.reddit.com/r/OldSchoolCool/comments/2etnm1/young_kenyan_woman_holds_her_pet_deer_in_mombassa/</link><guid isPermaLink="true">http://www.reddit.com/r/OldSchoolCool/comments/2etnm1/young_kenyan_woman_holds_her_pet_deer_in_mombassa/</guid><pubDate>Thu, 28 Aug 2014 14:11:13 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/OldSchoolCool/comments/2etnm1/young_kenyan_woman_holds_her_pet_deer_in_mombassa/&#34;&gt;&lt;img src=&#34;http://a.thumbs.redditmedia.com/WeSlIOxxx4Zu6PJMHpKFBDGILPt02OSNExpx0gTeD-4.jpg&#34; alt=&#34;Young Kenyan woman holds her pet deer in Mombassa, March 1909&#34; title=&#34;Young Kenyan woman holds her pet deer in Mombassa, March 1909&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/TheMagicDrake&#34;&gt; TheMagicDrake &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/OldSchoolCool/&#34;&gt; OldSchoolCool&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://i.imgur.com/9NjxKIo.jpg&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/OldSchoolCool/comments/2etnm1/young_kenyan_woman_holds_her_pet_deer_in_mombassa/"&gt;[21 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>Young Kenyan woman holds her pet deer in Mombassa, March 1909</media:title><media:thumbnail url="http://a.thumbs.redditmedia.com/WeSlIOxxx4Zu6PJMHpKFBDGILPt02OSNExpx0gTeD-4.jpg" /></item><item><title>A husband and wife are having dinner...</title><category>Jokes</category><link>http://www.reddit.com/r/Jokes/comments/2eszjh/a_husband_and_wife_are_having_dinner/</link><guid isPermaLink="true">http://www.reddit.com/r/Jokes/comments/2eszjh/a_husband_and_wife_are_having_dinner/</guid><pubDate>Thu, 28 Aug 2014 07:58:47 +0000</pubDate><description>&lt;!-- SC_OFF --&gt;&lt;div class=&#34;md&#34;&gt;&lt;p&gt;A husband and wife are having dinner at a very fine restaurant when an absolutely stunning young woman comes over to their table, gives the husband a big open-mouthed kiss, then says she&amp;#39;ll see him later and walks away. ‪‪ The wife glares at her husband and says, &amp;quot;Who in the hell was that?&amp;quot;&lt;/p&gt; &lt;p&gt;&amp;quot;Oh,&amp;quot; replies the husband, &amp;quot;She&amp;#39;s my mistress.&amp;quot;&lt;/p&gt; &lt;p&gt;&amp;quot;Well, that&amp;#39;s the last straw,&amp;quot; says the wife. &amp;quot;I&amp;#39;ve had enough. I want a divorce!&amp;quot;&lt;/p&gt; &lt;p&gt;&amp;quot;I can understand that,&amp;quot; replies her husband, &amp;quot;But remember, if we get a divorce it will mean no more shopping trips to Paris, no more wintering in Barbados, no more summers in Tuscany, no more Jaguar in the garage, and no more yacht club. Not only that, but no more diamonds, no more credit card, and large bank account.&amp;quot; &lt;/p&gt; &lt;p&gt;&amp;quot;But, he said, &amp;quot;The decision is all yours.&amp;quot;&lt;/p&gt; &lt;p&gt;Just then, a mutual friend of theirs enters the restaurant with a gorgeous babe on his arm.&lt;/p&gt; &lt;p&gt;&amp;quot;Who&amp;#39;s that woman with Bobby?&amp;quot; asks the wife.&lt;/p&gt; &lt;p&gt;&amp;quot;That&amp;#39;s his mistress,&amp;quot; says the husband.&lt;br/&gt; &amp;quot;Ours is prettier,&amp;quot; she replies !&lt;/p&gt; &lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/he19&#34;&gt; he19 &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/Jokes/&#34;&gt; Jokes&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/Jokes/comments/2eszjh/a_husband_and_wife_are_having_dinner/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/Jokes/comments/2eszjh/a_husband_and_wife_are_having_dinner/"&gt;[167 comments]&lt;/a&gt;</description></item><item><title>NASA confirms that their rocket to Mars will have first launch in 2018</title><category>Futurology</category><link>http://www.reddit.com/r/Futurology/comments/2esv7x/nasa_confirms_that_their_rocket_to_mars_will_have/</link><guid isPermaLink="true">http://www.reddit.com/r/Futurology/comments/2esv7x/nasa_confirms_that_their_rocket_to_mars_will_have/</guid><pubDate>Thu, 28 Aug 2014 06:41:30 +0000</pubDate><description>&lt;table&gt; &lt;tr&gt;&lt;td&gt; &lt;a href=&#34;http://www.reddit.com/r/Futurology/comments/2esv7x/nasa_confirms_that_their_rocket_to_mars_will_have/&#34;&gt;&lt;img src=&#34;http://b.thumbs.redditmedia.com/rvt6BGXwWw8Mjqdrc-scJzvniYLxRHp9ficX_kev39g.jpg&#34; alt=&#34;NASA confirms that their rocket to Mars will have first launch in 2018&#34; title=&#34;NASA confirms that their rocket to Mars will have first launch in 2018&#34; /&gt;&lt;/a&gt; &lt;/td&gt;&lt;td&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/ImLivingAmongYou&#34;&gt; ImLivingAmongYou &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/Futurology/&#34;&gt; Futurology&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://spaceindustrynews.com/nasa-completes-key-review-of-worlds-most-powerful-rocket-in-support-of-journey-to-mars/4668/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/Futurology/comments/2esv7x/nasa_confirms_that_their_rocket_to_mars_will_have/"&gt;[100 comments]&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</description><media:title>NASA confirms that their rocket to Mars will have first launch in 2018</media:title><media:thumbnail url="http://b.thumbs.redditmedia.com/rvt6BGXwWw8Mjqdrc-scJzvniYLxRHp9ficX_kev39g.jpg" /></item><item><title>TIFU by wearing white underwear and a suit to a party [nsfw warning, feces]</title><category>tifu</category><link>http://www.reddit.com/r/tifu/comments/2esixx/tifu_by_wearing_white_underwear_and_a_suit_to_a/</link><guid isPermaLink="true">http://www.reddit.com/r/tifu/comments/2esixx/tifu_by_wearing_white_underwear_and_a_suit_to_a/</guid><pubDate>Thu, 28 Aug 2014 03:53:43 +0000</pubDate><description>&lt;!-- SC_OFF --&gt;&lt;div class=&#34;md&#34;&gt;&lt;p&gt;I&amp;#39;ve lurked on this sub for a while and I think it&amp;#39;s time that I tell my story of how I massively fucked up and made an idiot of myself in front of my entire graduating class.&lt;/p&gt; &lt;p&gt;I graduated from high school last May. During my 4 years, I&amp;#39;ve never been to an actual party. I&amp;#39;ve tasted alcohol in small sips but I haven&amp;#39;t touched drugs, and needless to say, I haven&amp;#39;t done anything with any girls. I never really got out much and just kept to myself the entire time. Oh well. &lt;/p&gt; &lt;p&gt;This past July, some of the popular kids from my graduating class threw a huge party as a last goodbye to their high school years. Everyone in my graduating class was invited. Sadly nobody mentioned this to me personally, but I got the details via Facebook and decided that I wanted at least one good high school memory, and I decided that I would actually go to this thing.&lt;/p&gt; &lt;p&gt;When it hit me that I was finally going to change my life and start doing actual stuff like partying instead of staying home all day, I got pretty excited, I felt like I was finally in control of my life. I felt like I could come out of my shell and do something cool. I was also pretty anxious because I felt like this would finally be an opportunity for me to get intimate or even lose my virginity. &lt;/p&gt; &lt;p&gt;I cringe now that I have to think about it, but in the midst of my excitement I thought it would be a good idea to wear a suit to this party. I dunno, it seemed it would have been a special and memorable night and I wanted to look good. I get it, there&amp;#39;s always &lt;em&gt;that guy&lt;/em&gt; who feels the need to wear a suit at in inappropriate time, and I was that guy. Needless to say, I&amp;#39;m not exactly in shape and the suit fitted on me very, very poorly. It was baggy in some areas and tight in others, but at the time I didn&amp;#39;t care because I thought I looked sharp. I wore white underwear, this is important later on. &lt;/p&gt; &lt;p&gt;I show up to party, at a massive house owned by this rich kid on the football team, and it&amp;#39;s pretty much already packed. People are in the backyard, the front yard, and inside. &lt;/p&gt; &lt;p&gt;So I live in Miami, which is in South Florida. As you can imagine, on this particular Saturday night in July, it was over 100 degrees F and excessively humid. Pair that with a thick wool suit, I exit my car already drenched in sweat. Everyone is wearing normal clothes, shorts and t-shirts, so I look like the odd one out. I immediately start to feel embarrassed and uncomfortable and out of place, but I decide to start walking around, ignoring people&amp;#39;s stares.&lt;/p&gt; &lt;p&gt;My antics during the party aren&amp;#39;t integral to my TIFU. As you can probably imagine, for the next 2-3 hours I wandered aimlessly, awkwardly standing by the drink/snack tables for most of the time, trying to figure out how I could strike up a conversation or do anything at all to make myself not a loser. &lt;/p&gt; &lt;p&gt;&lt;strong&gt;My fuck up started at midnight.&lt;/strong&gt; I&amp;#39;m standing by the drink area holding a can of beer that I could barely drink because it tasted so fucking gross. I&amp;#39;m deeply regretting my choice of attire and my decision to even show up. I&amp;#39;m drenched in sweat and pretty down in the dumps over the whole night, wishing I was at home watching TV or playing a game or something. A group of girls approach and start pouring themselves a shitload of drinks. In the group was a girl, we&amp;#39;ll call her K. She wasn&amp;#39;t really hot by most standards, but definitely not ugly. K was known for being extremely promiscuous. I was never really in the know about these sorts of things, but I still heard fuckloads of stories about K giving head, doing threesomes, and getting fucked in every direction with pretty much any guy on every sports team. When she came nearby I could hear her bragging about having sex with the host and the other girls giggling. &lt;/p&gt; &lt;p&gt;I decide, you know what, fuck it, I&amp;#39;m just going to say something because I didn&amp;#39;t have that much to lose. I put on a confident face and start talking to her. I guess it&amp;#39;s because she&amp;#39;s just extroverted and tipsy, but she actually responded to me. I offered to get her a drink and she says ok, so we both walk towards the table where the drinks are, at this point her friends are left behind and it&amp;#39;s just us. she asks why I&amp;#39;m wearing a suit. I can feel my face turning bright red and awkwardly say &amp;quot;yeah just wanted to look good I guess&amp;quot;. I tell her she looked great and she said thanks. I just kind of awkwardly blurted out &amp;quot;maybe this suit will get me laid&amp;quot;. She started giggling and said &amp;quot;you need it, you are definitely a virgin, i can tell&amp;quot;. I was too nervous to say anything so I tried to smile, and she just kept laughing. After an awkward pause I said &amp;quot;do you want to hook up?&amp;quot; At this point, I&amp;#39;m just like, what the hell, I might as well try, and given her willingness to have sex with just about anyone, I figured I might have a shot. So I&amp;#39;m standing there with my face bright red trying to act cool and collected and she is staring at me with her mouth open. I definitely expected the worst, but she started giggling and said &amp;quot;Yes, but only because you&amp;#39;re a virgin&amp;quot; &lt;/p&gt; &lt;p&gt;I followed her into a bedroom on the 2nd floor and she closed the door behind us. we stood in front of the foot of the bed. the room itself was decently large, with a single bed, bedside table, television, and a closet on the other side of the bed. it was very dimly lit, i could barely see her. she let me kiss her a few times, and obviously i sucked at it, but it was my first time and i was mind-blowlingly excited. it was finally about to happen. i put my arms awkwardly around her midsection like a hug and let her do most of the mouth work while i touched her ass and boobs. she was wearing a really skimpy pair of shorts that she slid off while i took off my slacks.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Here&amp;#39;s where things go really fucking bad&lt;/strong&gt;. she pulls off her panties and steps back, and pushes them between my lips. it was wildly sexy, and with my inexperience and in the heat of the moment and i took my underpants off and did the same thing to her. She immediately pushes it away from her mouth and starts gagging. I immediately flicked on the light, and that&amp;#39;s when I notice the smell and realize what the fuck I had just done. &lt;/p&gt; &lt;p&gt;Given the heat, the humidity, and my attire, I was sweating like crazy, and had a case of massive swamp-ass. basically, the sweat from my ass mixed with the dried fecal matter in my ass itself, and caked my white underwear with a dark brown liquid. I&amp;#39;m not talking about little streaks, but big wet splotches that smelled absolutely rancid. I had pushed my underwear, wet with my feces juices, into her mouth and onto her tongue. &lt;/p&gt; &lt;p&gt;She saw the underwear, now on the ground, brown side up, and started spitting and screaming &amp;quot;WHAT THE FUCK THOMAS? WHAT THE FUCK IS WRONG WITH YOU, I ALWAYS KNEW YOU WERE A FUCKING DISGUSTING WEIRDO, THIS IS WHY NOBODY LIKES YOU&amp;quot; as I&amp;#39;m struggling to put my slacks back on&lt;/p&gt; &lt;p&gt;I&amp;#39;m standing there staring at my underwear absolutely fucking mortified and embarrassed while she screamed and tried to wash the taste out of her mouth with beer. She was literally on the verge of tears. I was in shock, I could barely process what the fuck just happened and what I was to do at this point. I just wanted to blow my brains out.&lt;/p&gt; &lt;p&gt;The host and two other guys barge in and shout &amp;quot;WHAT THE FUCK IS GOING ON? WHO&amp;#39;S SCREAMING?&amp;quot;...they see K washing her mouth out and my shit stained underpants on the ground and give me this vicious glare mixed with a &lt;em&gt;what-the-fuck-man?&lt;/em&gt; stare. &lt;/p&gt; &lt;p&gt;I dart out the door, pushing past a bunch of people who were in the hallway that heard the commotion and were trying to see what was going on inside. I hustle downstairs, at this point I&amp;#39;m almost about to cry too, and everyone was staring at me. I made it across the main hallway towards the front door when the guys were on the balcony above, shouting &amp;quot;THOMAS FUCKING SHIT HIS PANTS&amp;quot; I could feel everyone&amp;#39;s eyes on me as I slammed the front door shut and scrambled to my car. I went home that night and just sat in bed trying to process what just happened. &lt;/p&gt; &lt;p&gt;Next morning, I wake up to a fuckload of hate messages on Facebook, I see statuses about &amp;quot;that weird kid who shit his pants at [...]&amp;#39;s party last night&amp;quot;. So I deleted my Facebook altogether and at this point it embarrasses me to even think about what happened but I am comforted by the fact that I&amp;#39;ll never have to see these people again and I ended up getting physical with a decently attractive girl. Here&amp;#39;s to hoping my college years aren&amp;#39;t as bad as my highschool years. &lt;/p&gt; &lt;p&gt;&lt;strong&gt;TLDR: shoved my shit-caked underpants into a girl&amp;#39;s mouth, now everyone that knows me hates me&lt;/strong&gt;&lt;/p&gt; &lt;/div&gt;&lt;!-- SC_ON --&gt; submitted by &lt;a href=&#34;http://www.reddit.com/user/im_too_dumb&#34;&gt; im_too_dumb &lt;/a&gt; to &lt;a href=&#34;http://www.reddit.com/r/tifu/&#34;&gt; tifu&lt;/a&gt; &lt;br/&gt; &lt;a href=&#34;http://www.reddit.com/r/tifu/comments/2esixx/tifu_by_wearing_white_underwear_and_a_suit_to_a/&#34;&gt;[link]&lt;/a&gt; &lt;a href="http://www.reddit.com/r/tifu/comments/2esixx/tifu_by_wearing_white_underwear_and_a_suit_to_a/"&gt;[404 comments]&lt;/a&gt;</description></item></channel></rss>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss version="2.0"
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:media="http://search.yahoo.com/mrss/"
5
+ xmlns:atom="http://www.w3.org/2005/Atom">
6
+ <channel>
7
+ <title>XML Sitemaps RSS Feed</title>
8
+ <link>http://www.example.com/</link>
9
+ <description>Example.com - Feed</description>
10
+
11
+ <item>
12
+ <title>First Post</title>
13
+ </item>
14
+ </channel>
15
+ </rss>
@@ -0,0 +1,61 @@
1
+ require 'spec_helper'
2
+ require 'webmock/rspec/matchers'
3
+
4
+ require "maxml/xml"
5
+ require 'json'
6
+ require 'mongo'
7
+
8
+ describe MaxML::XML do
9
+
10
+ URL = "http://www.example.com/sitemap.xml".freeze
11
+ XML_DOC = File.read("spec/fixtures/sample.xml").freeze
12
+
13
+ let(:xml) { MaxML::XML.new(URL) }
14
+
15
+ before(:each) do
16
+ stub_request(:get, URL).to_return(:body => XML_DOC)
17
+ end
18
+
19
+ it "should fetch XML content from remote server on creation" do
20
+ xml
21
+ expect(a_request(:any, URL)).to have_been_requested.once
22
+ end
23
+
24
+ it "should convert XML to JSON" do
25
+ # We can't be sure the JSON library used will always
26
+ # generate the same JSON string. So let's parse it and
27
+ # test the parsed object instead.
28
+ json = JSON.parse(xml.to_json)
29
+
30
+ feed = json["rss"]["channel"]
31
+
32
+ expect(feed["title"]).to eq("XML Sitemaps RSS Feed")
33
+ expect(feed["link"]).to eq("http://www.example.com/")
34
+ expect(feed["description"]).to eq("Example.com - Feed")
35
+ expect(feed["item"]["title"]).to eq("First Post")
36
+ end
37
+
38
+ it "should save the XML content to DB" do
39
+ db = xml.db
40
+ allow(db).to receive(:save)
41
+
42
+ record = {:url => URL, :date => xml.date, :content => xml.to_hash}
43
+ expect(db).to receive(:save).with(record)
44
+
45
+ xml.save
46
+ end
47
+
48
+ it "should be able to update db config" do
49
+ db = xml.db
50
+ allow(db).to receive(:config=)
51
+ db_spec = {:host => "example.com", :port => 1337}
52
+ expect(db).to receive(:config=).with(db_spec)
53
+
54
+ xml.db_config(db_spec)
55
+ end
56
+
57
+ it "implements to_s method to return the serialized XML document" do
58
+ expect(xml.to_s).to eq(XML_DOC)
59
+ end
60
+
61
+ end
@@ -0,0 +1,53 @@
1
+ require 'mongo'
2
+ include Mongo
3
+
4
+ describe MaxML::MongoPersistence do
5
+
6
+ let (:db) { MaxML::MongoPersistence.new }
7
+
8
+ DEFAULT_CONFIG = {
9
+ :host => ENV["TEST_DB_HOST"] || "localhost",
10
+ :port => ENV["TEST_DB_PORT"] || 27017
11
+ }.freeze
12
+
13
+ FULL_CONFIG = DEFAULT_CONFIG
14
+ .merge({
15
+ :database => 'maxml_testing',
16
+ :collection => 'xmls',
17
+ :username => 'user',
18
+ :password => 'secret'
19
+ }).freeze
20
+
21
+ context "when initializing" do
22
+ it "should be configured to connect to default host and port" do
23
+ expect(db.config[:host]).to eq(DEFAULT_CONFIG[:host])
24
+ expect(db.config[:port]).to eq(DEFAULT_CONFIG[:port])
25
+ end
26
+ end
27
+
28
+ it "should accept configurations" do
29
+ db.config = FULL_CONFIG
30
+ conf = db.config
31
+ expect(conf[:host]).to eq(DEFAULT_CONFIG[:host])
32
+ expect(conf[:port]).to eq(DEFAULT_CONFIG[:port])
33
+ expect(conf[:database]).to eq(FULL_CONFIG[:database])
34
+ expect(conf[:collection]).to eq(FULL_CONFIG[:collection])
35
+ end
36
+
37
+ it "should save a hash to DB" do
38
+ client = MongoClient.new(FULL_CONFIG[:host], FULL_CONFIG[:port])
39
+ test_db = client.db(FULL_CONFIG[:database])
40
+ coll = test_db.collection(FULL_CONFIG[:collection])
41
+ coll.drop
42
+
43
+ db.config = FULL_CONFIG
44
+ db.save({:successful_save => true})
45
+
46
+ expect(coll.find({:successful_save => true}).count).to eq(1)
47
+ end
48
+
49
+ it "should validate configuration when changing database settings"
50
+
51
+ it "should validate configuration when saving"
52
+
53
+ end
@@ -0,0 +1,80 @@
1
+ require 'webmock/rspec'
2
+
3
+ # This file was generated by the `rspec --init` command. Conventionally, all
4
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
5
+ # The generated `.rspec` file contains `--require spec_helper` which will cause this
6
+ # file to always be loaded, without a need to explicitly require it in any files.
7
+ #
8
+ # Given that it is always loaded, you are encouraged to keep this file as
9
+ # light-weight as possible. Requiring heavyweight dependencies from this file
10
+ # will add to the boot time of your test suite on EVERY test run, even for an
11
+ # individual file that may not need all of that loaded. Instead, make a
12
+ # separate helper file that requires this one and then use it only in the specs
13
+ # that actually need it.
14
+ #
15
+ # The `.rspec` file also contains a few flags that are not defaults but that
16
+ # users commonly want.
17
+ #
18
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
19
+ RSpec.configure do |config|
20
+ # The settings below are suggested to provide a good initial experience
21
+ # with RSpec, but feel free to customize to your heart's content.
22
+
23
+ # These two settings work together to allow you to limit a spec run
24
+ # to individual examples or groups you care about by tagging them with
25
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
26
+ # get run.
27
+ config.filter_run :focus
28
+ config.run_all_when_everything_filtered = true
29
+
30
+ # Many RSpec users commonly either run the entire suite or an individual
31
+ # file, and it's useful to allow more verbose output when running an
32
+ # individual spec file.
33
+ if config.files_to_run.one?
34
+ # Use the documentation formatter for detailed output,
35
+ # unless a formatter has already been configured
36
+ # (e.g. via a command-line flag).
37
+ config.default_formatter = 'doc'
38
+ end
39
+
40
+ # Print the 10 slowest examples and example groups at the
41
+ # end of the spec run, to help surface which specs are running
42
+ # particularly slow.
43
+ config.profile_examples = 10
44
+
45
+ # Run specs in random order to surface order dependencies. If you find an
46
+ # order dependency and want to debug it, you can fix the order by providing
47
+ # the seed, which is printed after each run.
48
+ # --seed 1234
49
+ config.order = :random
50
+
51
+ # Seed global randomization in this process using the `--seed` CLI option.
52
+ # Setting this allows you to use `--seed` to deterministically reproduce
53
+ # test failures related to randomization by passing the same `--seed` value
54
+ # as the one that triggered the failure.
55
+ Kernel.srand config.seed
56
+
57
+ # rspec-expectations config goes here. You can use an alternate
58
+ # assertion/expectation library such as wrong or the stdlib/minitest
59
+ # assertions if you prefer.
60
+ config.expect_with :rspec do |expectations|
61
+ # Enable only the newer, non-monkey-patching expect syntax.
62
+ # For more details, see:
63
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
64
+ expectations.syntax = :expect
65
+ end
66
+
67
+ # rspec-mocks config goes here. You can use an alternate test double
68
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
69
+ config.mock_with :rspec do |mocks|
70
+ # Enable only the newer, non-monkey-patching expect syntax.
71
+ # For more details, see:
72
+ # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
73
+ mocks.syntax = :expect
74
+
75
+ # Prevents you from mocking or stubbing a method that does not exist on
76
+ # a real object. This is generally recommended.
77
+ mocks.verify_partial_doubles = true
78
+ end
79
+
80
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: maxml
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - David Leung
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-08-29 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |
14
+ # MaxML
15
+
16
+ Download, parse and save an XML document to MongoDB
17
+
18
+ ## Install
19
+
20
+ gem install rspec
21
+
22
+
23
+ ## Usage Example
24
+
25
+ ```ruby
26
+ # DB defaults to "localhost" for `host` and 27017 for `port`
27
+ db_config = {database: "maxml_test", collection: "xmls"}
28
+ reddit = MaxML::XML.new("http://www.reddit.com/.rss", db_config)
29
+ reddit.save
30
+ )
31
+ ```
32
+ ## Copyright and License
33
+
34
+ Copyright © 2014 David Leung
35
+
36
+ Permission is hereby granted, free of charge, to any person obtaining a copy
37
+ of this software and associated documentation files (the "Software"), to deal
38
+ in the Software without restriction, including without limitation the rights
39
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
40
+ copies of the Software, and to permit persons to whom the Software is
41
+ furnished to do so, subject to the following conditions:
42
+
43
+ The above copyright notice and this permission notice shall be included in all
44
+ copies or substantial portions of the Software.
45
+
46
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
47
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
48
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
49
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
50
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
51
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
52
+ SOFTWARE.
53
+ email: david@davidslab.com
54
+ executables: []
55
+ extensions: []
56
+ extra_rdoc_files: []
57
+ files:
58
+ - LICENSE
59
+ - README.md
60
+ - lib/maxml.rb
61
+ - lib/maxml/errors.rb
62
+ - lib/maxml/mongo_persistence.rb
63
+ - lib/maxml/xml.rb
64
+ - spec/fixtures/#reddit.xml#
65
+ - spec/fixtures/reddit.xml
66
+ - spec/fixtures/sample.xml
67
+ - spec/maxml_spec.rb
68
+ - spec/mongo_persisitence_spec.rb
69
+ - spec/spec_helper.rb
70
+ homepage: http://github.com/dhl/maxml
71
+ licenses:
72
+ - MIT
73
+ metadata: {}
74
+ post_install_message:
75
+ rdoc_options: []
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '1.9'
83
+ required_rubygems_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ requirements: []
89
+ rubyforge_project:
90
+ rubygems_version: 2.4.1
91
+ signing_key:
92
+ specification_version: 4
93
+ summary: Download, parse and save an XML document to MongoDB
94
+ test_files:
95
+ - spec/maxml_spec.rb
96
+ - spec/spec_helper.rb
97
+ - spec/mongo_persisitence_spec.rb
98
+ - spec/fixtures/#reddit.xml#
99
+ - spec/fixtures/sample.xml
100
+ - spec/fixtures/reddit.xml