redditkit 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (180) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +22 -0
  3. data/README.md +155 -0
  4. data/Rakefile +8 -0
  5. data/lib/redditkit.rb +26 -0
  6. data/lib/redditkit/base.rb +60 -0
  7. data/lib/redditkit/client.rb +142 -0
  8. data/lib/redditkit/client/account.rb +73 -0
  9. data/lib/redditkit/client/apps.rb +63 -0
  10. data/lib/redditkit/client/captcha.rb +36 -0
  11. data/lib/redditkit/client/comments.rb +54 -0
  12. data/lib/redditkit/client/flair.rb +148 -0
  13. data/lib/redditkit/client/links.rb +134 -0
  14. data/lib/redditkit/client/miscellaneous.rb +50 -0
  15. data/lib/redditkit/client/moderation.rb +179 -0
  16. data/lib/redditkit/client/multireddits.rb +207 -0
  17. data/lib/redditkit/client/private_messages.rb +74 -0
  18. data/lib/redditkit/client/search.rb +25 -0
  19. data/lib/redditkit/client/subreddits.rb +120 -0
  20. data/lib/redditkit/client/users.rb +109 -0
  21. data/lib/redditkit/client/utilities.rb +137 -0
  22. data/lib/redditkit/client/voting.rb +41 -0
  23. data/lib/redditkit/client/wiki.rb +83 -0
  24. data/lib/redditkit/comment.rb +54 -0
  25. data/lib/redditkit/creatable.rb +17 -0
  26. data/lib/redditkit/error.rb +111 -0
  27. data/lib/redditkit/link.rb +140 -0
  28. data/lib/redditkit/moderator_action.rb +19 -0
  29. data/lib/redditkit/multireddit.rb +32 -0
  30. data/lib/redditkit/multireddit_description.rb +14 -0
  31. data/lib/redditkit/paginated_response.rb +22 -0
  32. data/lib/redditkit/private_message.rb +27 -0
  33. data/lib/redditkit/response/parse_json.rb +29 -0
  34. data/lib/redditkit/response/raise_error.rb +21 -0
  35. data/lib/redditkit/subreddit.rb +86 -0
  36. data/lib/redditkit/thing.rb +20 -0
  37. data/lib/redditkit/user.rb +30 -0
  38. data/lib/redditkit/version.rb +19 -0
  39. data/lib/redditkit/votable.rb +37 -0
  40. data/redditkit.gemspec +25 -0
  41. data/spec/cassettes/RedditKit_Client/should_raise_an_error_with_invalid_credentials.yml +39 -0
  42. data/spec/cassettes/RedditKit_Client_Account/_sign_in/signs_the_user_in.yml +132 -0
  43. data/spec/cassettes/RedditKit_Client_Account/_update_session/updates_the_current_session.yml +133 -0
  44. data/spec/cassettes/RedditKit_Client_Captcha/_captcha_url/returns_a_CAPTCHA_url_from_an_identifier.yml +38 -0
  45. data/spec/cassettes/RedditKit_Client_Captcha/_needs_captcha_/checks_if_the_current_account_needs_a_CAPTCHA.yml +44 -0
  46. data/spec/cassettes/RedditKit_Client_Captcha/_new_captcha_identifier/returns_a_new_CAPTCHA_identifier.yml +38 -0
  47. data/spec/cassettes/RedditKit_Client_Comments/_comment/requests_the_correct_resource.yml +47 -0
  48. data/spec/cassettes/RedditKit_Client_Comments/_comments/with_a_RedditKit_Link/returns_comments_on_a_link.yml +140 -0
  49. data/spec/cassettes/RedditKit_Client_Comments/_comments/with_a_link_identifier/returns_comments_on_a_link.yml +89 -0
  50. data/spec/cassettes/RedditKit_Client_Comments/_submit_comment/requests_the_correct_resource.yml +313 -0
  51. data/spec/cassettes/RedditKit_Client_Flair/_apply_flair_template/clears_flair_templates.yml +52 -0
  52. data/spec/cassettes/RedditKit_Client_Flair/_clear_flair_templates/clears_flair_templates.yml +49 -0
  53. data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/creates_a_flair_template.yml +46 -0
  54. data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/raises_InvalidClassName.yml +46 -0
  55. data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/raises_TooManyClassNames.yml +47 -0
  56. data/spec/cassettes/RedditKit_Client_Flair/_delete_user_flair/requests_the_correct_resource.yml +60 -0
  57. data/spec/cassettes/RedditKit_Client_Flair/_flair_list/returns_the_list_of_flair.yml +44 -0
  58. data/spec/cassettes/RedditKit_Client_Flair/_set_flair/requests_the_correct_resource.yml +49 -0
  59. data/spec/cassettes/RedditKit_Client_Flair/_set_flair_options/sets_flair_options.yml +49 -0
  60. data/spec/cassettes/RedditKit_Client_Flair/_set_flair_with_csv/requests_the_correct_resource.yml +51 -0
  61. data/spec/cassettes/RedditKit_Client_Flair/_toggle_flair/requests_the_correct_resource.yml +49 -0
  62. data/spec/cassettes/RedditKit_Client_Links/_front_page/requests_the_correct_category.yml +498 -0
  63. data/spec/cassettes/RedditKit_Client_Links/_front_page/requests_the_correct_resource.yml +603 -0
  64. data/spec/cassettes/RedditKit_Client_Links/_hide/requests_the_correct_resource.yml +46 -0
  65. data/spec/cassettes/RedditKit_Client_Links/_link/returns_a_link.yml +55 -0
  66. data/spec/cassettes/RedditKit_Client_Links/_links/contains_pagination_information.yml +402 -0
  67. data/spec/cassettes/RedditKit_Client_Links/_links/requests_a_certain_number_of_links.yml +186 -0
  68. data/spec/cassettes/RedditKit_Client_Links/_links/requests_front_page_links_if_no_subreddit_is_present.yml +603 -0
  69. data/spec/cassettes/RedditKit_Client_Links/_links/requests_links_with_the_correct_time_frame.yml +375 -0
  70. data/spec/cassettes/RedditKit_Client_Links/_links/requests_the_correct_subreddit_and_category.yml +402 -0
  71. data/spec/cassettes/RedditKit_Client_Links/_links_with_domain/returns_links_with_a_specific_domain.yml +99 -0
  72. data/spec/cassettes/RedditKit_Client_Links/_mark_nsfw/requests_the_correct_resource.yml +46 -0
  73. data/spec/cassettes/RedditKit_Client_Links/_random_link/returns_a_random_link.yml +91 -0
  74. data/spec/cassettes/RedditKit_Client_Links/_submit/raises_RedditKit_InvalidCaptcha_if_no_CAPTCHA_is_filled_out.yml +54 -0
  75. data/spec/cassettes/RedditKit_Client_Links/_unhide/requests_the_correct_resource.yml +46 -0
  76. data/spec/cassettes/RedditKit_Client_Links/_unmark_nsfw/requests_the_correct_resource.yml +46 -0
  77. data/spec/cassettes/RedditKit_Client_Miscellaneous/_delete/requests_the_correct_resource.yml +46 -0
  78. data/spec/cassettes/RedditKit_Client_Miscellaneous/_edit/requests_the_correct_resource.yml +52 -0
  79. data/spec/cassettes/RedditKit_Client_Miscellaneous/_save/saves_an_object.yml +46 -0
  80. data/spec/cassettes/RedditKit_Client_Miscellaneous/_unsave/unsaves_an_object.yml +89 -0
  81. data/spec/cassettes/RedditKit_Client_Moderation/_accept_moderator_invitation/requests_the_correct_resource.yml +53 -0
  82. data/spec/cassettes/RedditKit_Client_Moderation/_ban/requests_the_correct_resource.yml +103 -0
  83. data/spec/cassettes/RedditKit_Client_Moderation/_contributors_to_subreddit/requests_the_correct_resource.yml +47 -0
  84. data/spec/cassettes/RedditKit_Client_Moderation/_ignore_reports/requests_the_correct_resource.yml +46 -0
  85. data/spec/cassettes/RedditKit_Client_Moderation/_moderation_log/returns_RedditKit_ModeratorAction_objects.yml +153 -0
  86. data/spec/cassettes/RedditKit_Client_Moderation/_moderators_of_subreddit/requests_the_correct_resource.yml +48 -0
  87. data/spec/cassettes/RedditKit_Client_Moderation/_reset_subreddit_header/requests_the_correct_resource.yml +55 -0
  88. data/spec/cassettes/RedditKit_Client_Moderation/_set_contest_mode/requests_the_correct_resource.yml +46 -0
  89. data/spec/cassettes/RedditKit_Client_Moderation/_set_sticky_post/requests_the_correct_resource.yml +46 -0
  90. data/spec/cassettes/RedditKit_Client_Moderation/_unban/requests_the_correct_resource.yml +54 -0
  91. data/spec/cassettes/RedditKit_Client_Moderation/_unignore_reports/requests_the_correct_resource.yml +46 -0
  92. data/spec/cassettes/RedditKit_Client_Multireddits/_add_subreddit_to_multireddit/adds_a_subreddit_to_a_multireddit.yml +177 -0
  93. data/spec/cassettes/RedditKit_Client_Multireddits/_create_multireddit/creates_a_multireddit.yml +137 -0
  94. data/spec/cassettes/RedditKit_Client_Multireddits/_create_multireddit/raises_RedditKit_Conflict_when_using_an_existing_name.yml +133 -0
  95. data/spec/cassettes/RedditKit_Client_Multireddits/_delete_multireddit/deletes_a_multireddit.yml +134 -0
  96. data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit/with_a_path/returns_a_multireddit.yml +39 -0
  97. data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit/without_a_path/returns_a_multireddit.yml +39 -0
  98. data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit_description/with_a_multireddit/returns_a_multireddit_description.yml +81 -0
  99. data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit_description/with_a_username_and_multireddit_name/returns_a_multireddit_description.yml +45 -0
  100. data/spec/cassettes/RedditKit_Client_Multireddits/_my_multireddits/return_s_the_user_s_multireddits.yml +47 -0
  101. data/spec/cassettes/RedditKit_Client_Multireddits/_remove_subreddit_from_multireddit/removes_a_subreddit_from_a_multireddit.yml +175 -0
  102. data/spec/cassettes/RedditKit_Client_Multireddits/_rename_multireddit/renames_a_multireddit.yml +134 -0
  103. data/spec/cassettes/RedditKit_Client_Multireddits/_set_multireddit_description/returns_a_multireddit_description.yml +48 -0
  104. data/spec/cassettes/RedditKit_Client_Multireddits/_update_multireddit/updates_a_multireddit.yml +184 -0
  105. data/spec/cassettes/RedditKit_Client_PrivateMessages/_block_author_of_message/requests_the_correct_resource.yml +46 -0
  106. data/spec/cassettes/RedditKit_Client_PrivateMessages/_mark_as_read/requests_the_correct_resource.yml +51 -0
  107. data/spec/cassettes/RedditKit_Client_PrivateMessages/_mark_as_unread/requests_the_correct_resource.yml +51 -0
  108. data/spec/cassettes/RedditKit_Client_PrivateMessages/_messages/requests_the_correct_resource.yml +187 -0
  109. data/spec/cassettes/RedditKit_Client_PrivateMessages/_unblock/requests_the_correct_resource.yml +46 -0
  110. data/spec/cassettes/RedditKit_Client_Search/_search/restricts_searches_to_a_specific_subreddit.yml +878 -0
  111. data/spec/cassettes/RedditKit_Client_Search/_search/returns_a_specific_number_of_results.yml +130 -0
  112. data/spec/cassettes/RedditKit_Client_Search/_search/returns_search_results.yml +844 -0
  113. data/spec/cassettes/RedditKit_Client_Subreddits/_random_subreddit/returns_a_random_subreddit.yml +181 -0
  114. data/spec/cassettes/RedditKit_Client_Subreddits/_recommended_subreddits/returns_subreddit_names.yml +37 -0
  115. data/spec/cassettes/RedditKit_Client_Subreddits/_search_subreddits_by_name/returns_subreddit_names.yml +875 -0
  116. data/spec/cassettes/RedditKit_Client_Subreddits/_subreddit/returns_a_specified_subreddit.yml +100 -0
  117. data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits/returns_a_specified_number_of_subreddits.yml +505 -0
  118. data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits/returns_subreddits_from_a_specific_category.yml +510 -0
  119. data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits_by_topic/returns_subreddit_names.yml +41 -0
  120. data/spec/cassettes/RedditKit_Client_Subreddits/_subscribe/requests_the_correct_resource.yml +46 -0
  121. data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_a_specified_number_of_subreddits.yml +415 -0
  122. data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_subreddits_from_a_specific_category.yml +58 -0
  123. data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_the_user_s_subscribed_subreddits.yml +3469 -0
  124. data/spec/cassettes/RedditKit_Client_Subreddits/_unsubscribe/requests_the_correct_resource.yml +46 -0
  125. data/spec/cassettes/RedditKit_Client_Users/_friends/returns_the_user_s_friends.yml +48 -0
  126. data/spec/cassettes/RedditKit_Client_Users/_my_content/returns_the_user_s_content.yml +60 -0
  127. data/spec/cassettes/RedditKit_Client_Users/_user/requests_the_correct_resource.yml +48 -0
  128. data/spec/cassettes/RedditKit_Client_Users/_user/returns_a_specified_user.yml +48 -0
  129. data/spec/cassettes/RedditKit_Client_Users/_user/returns_the_authenticated_user.yml +48 -0
  130. data/spec/cassettes/RedditKit_Client_Users/_user_content/returns_the_user_s_content.yml +41 -0
  131. data/spec/cassettes/RedditKit_Client_Users/_username_available_/returns_false_for_an_unavailable_username.yml +36 -0
  132. data/spec/cassettes/RedditKit_Client_Users/_username_available_/returns_true_for_an_available_username.yml +36 -0
  133. data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_comment_full_name_passed/downvotes_the_comment.yml +100 -0
  134. data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_comment_passed/downvotes_the_comment.yml +154 -0
  135. data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_link_full_name_passed/downvotes_the_link.yml +106 -0
  136. data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_link_passed/downvotes_the_link.yml +166 -0
  137. data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_comment_full_name_passed/upvotes_the_comment.yml +100 -0
  138. data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_comment_passed/upvotes_the_comment.yml +154 -0
  139. data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_link_full_name_passed/upvotes_the_link.yml +106 -0
  140. data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_link_passed/upvotes_the_link.yml +166 -0
  141. data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_comment_full_name_passed/withdraws_the_vote_on_the_comment.yml +154 -0
  142. data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_comment_passed/withdraws_the_vote_on_the_comment.yml +208 -0
  143. data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_link_full_name_passed/withdraws_the_vote_on_the_link.yml +166 -0
  144. data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_link_passed/withdraws_the_vote_on_the_link.yml +226 -0
  145. data/spec/cassettes/RedditKit_Client_Wiki/_add_wiki_editor/requests_the_correct_resource.yml +46 -0
  146. data/spec/cassettes/RedditKit_Client_Wiki/_edit_wiki_page/requests_the_correct_resource.yml +48 -0
  147. data/spec/cassettes/RedditKit_Client_Wiki/_hide_wiki_revision/requests_the_correct_resource.yml +46 -0
  148. data/spec/cassettes/RedditKit_Client_Wiki/_remove_wiki_editor/requests_the_correct_resource.yml +46 -0
  149. data/spec/cassettes/RedditKit_Client_Wiki/_revert_to_revision/requests_the_correct_resource.yml +46 -0
  150. data/spec/cassettes/RedditKit_Comment/should_not_be_deleted_if_neither_author_and_comment_attributes_are_set_to_deleted_.yml +90 -0
  151. data/spec/cassettes/RedditKit_Comment/should_return_replies.yml +90 -0
  152. data/spec/cassettes/authenticated_client.yml +87 -0
  153. data/spec/redditkit/base_spec.rb +45 -0
  154. data/spec/redditkit/client/account_spec.rb +50 -0
  155. data/spec/redditkit/client/apps_spec.rb +58 -0
  156. data/spec/redditkit/client/captcha_spec.rb +30 -0
  157. data/spec/redditkit/client/comments_spec.rb +40 -0
  158. data/spec/redditkit/client/flair_spec.rb +92 -0
  159. data/spec/redditkit/client/links_spec.rb +103 -0
  160. data/spec/redditkit/client/miscellaneous_spec.rb +40 -0
  161. data/spec/redditkit/client/moderation_spec.rb +141 -0
  162. data/spec/redditkit/client/multireddits_spec.rb +158 -0
  163. data/spec/redditkit/client/private_messages_spec.rb +51 -0
  164. data/spec/redditkit/client/search_spec.rb +25 -0
  165. data/spec/redditkit/client/subreddits_spec.rb +83 -0
  166. data/spec/redditkit/client/users_spec.rb +92 -0
  167. data/spec/redditkit/client/voting_spec.rb +99 -0
  168. data/spec/redditkit/client/wiki_spec.rb +40 -0
  169. data/spec/redditkit/client_spec.rb +46 -0
  170. data/spec/redditkit/comment_spec.rb +26 -0
  171. data/spec/redditkit/creatable_spec.rb +24 -0
  172. data/spec/redditkit/error_spec.rb +61 -0
  173. data/spec/redditkit/link_spec.rb +33 -0
  174. data/spec/redditkit/multireddit_spec.rb +27 -0
  175. data/spec/redditkit/paginated_response_spec.rb +23 -0
  176. data/spec/redditkit/thing_spec.rb +18 -0
  177. data/spec/redditkit/votable_spec.rb +52 -0
  178. data/spec/redditkit_spec.rb +21 -0
  179. data/spec/spec_helper.rb +124 -0
  180. metadata +390 -0
@@ -0,0 +1,603 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://www.reddit.com/hot.json
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Content-Type:
22
+ - application/json; charset=UTF-8
23
+ Server:
24
+ - "'; DROP TABLE servertypes; --"
25
+ Vary:
26
+ - accept-encoding
27
+ Date:
28
+ - Sun, 10 Nov 2013 19:56:41 GMT
29
+ Transfer-Encoding:
30
+ - chunked
31
+ Connection:
32
+ - Transfer-Encoding
33
+ - keep-alive
34
+ body:
35
+ encoding: UTF-8
36
+ string: "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"children\":
37
+ [{\"kind\": \"t3\", \"data\": {\"domain\": \"i.imgur.com\", \"banned_by\":
38
+ null, \"media_embed\": {}, \"subreddit\": \"pics\", \"selftext_html\": null,
39
+ \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
40
+ null, \"id\": \"1qb8qj\", \"secure_media_embed\": {}, \"clicked\": false,
41
+ \"stickied\": false, \"author\": \"shishdem\", \"media\": null, \"score\":
42
+ 4179, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
43
+ \"http://a.thumbs.redditmedia.com/Z6J7lct_CxHdEYzl.jpg\", \"subreddit_id\":
44
+ \"t5_2qh0u\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
45
+ null, \"downs\": 8263, \"saved\": false, \"is_self\": false, \"permalink\":
46
+ \"/r/pics/comments/1qb8qj/ron_burgundy_and_daft_punk_doing_a_little/\", \"name\":
47
+ \"t3_1qb8qj\", \"created\": 1384129579.0, \"url\": \"http://i.imgur.com/9Scncsm.jpg\",
48
+ \"author_flair_text\": null, \"title\": \"Ron Burgundy and Daft Punk doing
49
+ a little sightseeing around town (Amsterdam)\", \"created_utc\": 1384100779.0,
50
+ \"distinguished\": null, \"num_comments\": 285, \"visited\": false, \"num_reports\":
51
+ null, \"ups\": 12442}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"i.imgur.com\",
52
+ \"banned_by\": null, \"media_embed\": {}, \"subreddit\": \"aww\", \"selftext_html\":
53
+ null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
54
+ null, \"id\": \"1qba80\", \"secure_media_embed\": {}, \"clicked\": false,
55
+ \"stickied\": false, \"author\": \"bazinga624\", \"media\": null, \"score\":
56
+ 3205, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
57
+ \"http://d.thumbs.redditmedia.com/Y4iTIstjmTWoWBJQ.jpg\", \"subreddit_id\":
58
+ \"t5_2qh1o\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
59
+ null, \"downs\": 3408, \"saved\": false, \"is_self\": false, \"permalink\":
60
+ \"/r/aww/comments/1qba80/he_walked_into_the_room_and_told_on_himself_i/\",
61
+ \"name\": \"t3_1qba80\", \"created\": 1384130894.0, \"url\": \"http://i.imgur.com/LZJ1UIK.jpg\",
62
+ \"author_flair_text\": null, \"title\": \"He walked into the room and told
63
+ on himself. I have no idea what he did.\", \"created_utc\": 1384102094.0,
64
+ \"distinguished\": null, \"num_comments\": 207, \"visited\": false, \"num_reports\":
65
+ null, \"ups\": 6613}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"imgur.com\",
66
+ \"banned_by\": null, \"media_embed\": {}, \"subreddit\": \"funny\", \"selftext_html\":
67
+ null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
68
+ null, \"id\": \"1qbap1\", \"secure_media_embed\": {}, \"clicked\": false,
69
+ \"stickied\": false, \"author\": \"oPHILcial\", \"media\": null, \"score\":
70
+ 2784, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
71
+ \"http://d.thumbs.redditmedia.com/i1YHvPPPDk5PoiAW.jpg\", \"subreddit_id\":
72
+ \"t5_2qh33\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
73
+ null, \"downs\": 2671, \"saved\": false, \"is_self\": false, \"permalink\":
74
+ \"/r/funny/comments/1qbap1/exiting_a_public_bathroom/\", \"name\": \"t3_1qbap1\",
75
+ \"created\": 1384131310.0, \"url\": \"http://imgur.com/068K8TX\", \"author_flair_text\":
76
+ null, \"title\": \"Exiting a public bathroom\", \"created_utc\": 1384102510.0,
77
+ \"distinguished\": null, \"num_comments\": 279, \"visited\": false, \"num_reports\":
78
+ null, \"ups\": 5455}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"articles.latimes.com\",
79
+ \"banned_by\": null, \"media_embed\": {}, \"subreddit\": \"todayilearned\",
80
+ \"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
81
+ null, \"link_flair_text\": null, \"id\": \"1qb6fw\", \"secure_media_embed\":
82
+ {}, \"clicked\": false, \"stickied\": false, \"author\": \"philippe10coutinho\",
83
+ \"media\": null, \"score\": 3267, \"approved_by\": null, \"over_18\": false,
84
+ \"hidden\": false, \"thumbnail\": \"http://d.thumbs.redditmedia.com/jQGMY9-u0EtJCzFo.jpg\",
85
+ \"subreddit_id\": \"t5_2qqjc\", \"edited\": false, \"link_flair_css_class\":
86
+ null, \"author_flair_css_class\": null, \"downs\": 11307, \"saved\": false,
87
+ \"is_self\": false, \"permalink\": \"/r/todayilearned/comments/1qb6fw/til_that_target_had_to_issue_an_apology_to_its/\",
88
+ \"name\": \"t3_1qb6fw\", \"created\": 1384127381.0, \"url\": \"http://articles.latimes.com/2013/apr/05/business/la-fi-mo-target-manatee-20130405\",
89
+ \"author_flair_text\": null, \"title\": \"TIL That Target had to issue an
90
+ apology to its customers following outrage about the fact that a popular dress
91
+ was offered in a color \\\"Dark heather gray\\\" for normal sizes, but the
92
+ same color was titled \\\"Manatee gray\\\" for plus-sized dresses.\", \"created_utc\":
93
+ 1384098581.0, \"distinguished\": null, \"num_comments\": 1139, \"visited\":
94
+ false, \"num_reports\": null, \"ups\": 14574}}, {\"kind\": \"t3\", \"data\":
95
+ {\"domain\": \"i.imgur.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
96
+ \"WTF\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
97
+ null, \"link_flair_text\": null, \"id\": \"1qb45h\", \"secure_media_embed\":
98
+ {}, \"clicked\": false, \"stickied\": false, \"author\": \"1Voice1Life\",
99
+ \"media\": null, \"score\": 3394, \"approved_by\": null, \"over_18\": false,
100
+ \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2qh61\", \"edited\":
101
+ false, \"link_flair_css_class\": null, \"author_flair_css_class\": null, \"downs\":
102
+ 10727, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/WTF/comments/1qb45h/tiger_on_the_loose_xpost_from_ranimalsbeingjerks/\",
103
+ \"name\": \"t3_1qb45h\", \"created\": 1384124989.0, \"url\": \"http://i.imgur.com/5zmU6FV.gif\",
104
+ \"author_flair_text\": null, \"title\": \"Tiger on the loose [x-post from
105
+ /r/AnimalsBeingJerks]\", \"created_utc\": 1384096189.0, \"distinguished\":
106
+ null, \"num_comments\": 742, \"visited\": false, \"num_reports\": null, \"ups\":
107
+ 14121}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"youtube.com\", \"banned_by\":
108
+ null, \"media_embed\": {\"content\": \"<iframe width=\\\"600\\\" height=\\\"338\\\"
109
+ src=\\\"http://www.youtube.com/embed/KaOC9danxNo?feature=oembed\\\" frameborder=\\\"0\\\"
110
+ allowfullscreen></iframe>\", \"width\": 600, \"scrolling\": false,
111
+ \"height\": 338}, \"subreddit\": \"Music\", \"selftext_html\": null, \"selftext\":
112
+ \"\", \"likes\": null, \"secure_media\": {\"type\": \"youtube.com\", \"oembed\":
113
+ {\"provider_url\": \"http://www.youtube.com/\", \"description\": \"A revised
114
+ version of David Bowie's Space Oddity, recorded by Commander Chris Hadfield
115
+ on board the International Space Station. (Note: This video cannot be reproduced
116
+ and is licensed for online music use only.) With thanks to Emm Gryner, Joe
117
+ Corcoran, Andrew Tidby and Evan Hadfield for all their hard work.\", \"title\":
118
+ \"Space Oddity\", \"url\": \"http://www.youtube.com/watch?v=KaOC9danxNo\",
119
+ \"type\": \"video\", \"author_name\": \"Chris Hadfield\", \"height\": 338,
120
+ \"width\": 600, \"html\": \"<iframe width=\\\"600\\\" height=\\\"338\\\"
121
+ src=\\\"https://www.youtube.com/embed/KaOC9danxNo?feature=oembed\\\" frameborder=\\\"0\\\"
122
+ allowfullscreen></iframe>\", \"thumbnail_width\": 480, \"version\":
123
+ \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FKaOC9danxNo%2Fhqdefault.jpg&key=b1e305db91cf4aa5a86b732cc9fffceb\",
124
+ \"thumbnail_height\": 360, \"author_url\": \"http://www.youtube.com/channel/UCtGG8ucQgEJPeUPhJZ4M4jA\"}},
125
+ \"link_flair_text\": null, \"id\": \"1qb6ah\", \"secure_media_embed\": {\"content\":
126
+ \"<iframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/KaOC9danxNo?feature=oembed\\\"
127
+ frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"width\": 600,
128
+ \"scrolling\": false, \"height\": 338}, \"clicked\": false, \"stickied\":
129
+ false, \"author\": \"Spyrulfyre\", \"media\": {\"type\": \"youtube.com\",
130
+ \"oembed\": {\"provider_url\": \"http://www.youtube.com/\", \"description\":
131
+ \"A revised version of David Bowie's Space Oddity, recorded by Commander Chris
132
+ Hadfield on board the International Space Station. (Note: This video cannot
133
+ be reproduced and is licensed for online music use only.) With thanks to Emm
134
+ Gryner, Joe Corcoran, Andrew Tidby and Evan Hadfield for all their hard work.\",
135
+ \"title\": \"Space Oddity\", \"url\": \"http://www.youtube.com/watch?v=KaOC9danxNo\",
136
+ \"type\": \"video\", \"author_name\": \"Chris Hadfield\", \"height\": 338,
137
+ \"width\": 600, \"html\": \"<iframe width=\\\"600\\\" height=\\\"338\\\"
138
+ src=\\\"http://www.youtube.com/embed/KaOC9danxNo?feature=oembed\\\" frameborder=\\\"0\\\"
139
+ allowfullscreen></iframe>\", \"thumbnail_width\": 480, \"version\":
140
+ \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"http://i1.ytimg.com/vi/KaOC9danxNo/hqdefault.jpg\",
141
+ \"thumbnail_height\": 360, \"author_url\": \"http://www.youtube.com/channel/UCtGG8ucQgEJPeUPhJZ4M4jA\"}},
142
+ \"score\": 2925, \"approved_by\": null, \"over_18\": false, \"hidden\": false,
143
+ \"thumbnail\": \"\", \"subreddit_id\": \"t5_2qh1u\", \"edited\": false, \"link_flair_css_class\":
144
+ null, \"author_flair_css_class\": null, \"downs\": 9280, \"saved\": false,
145
+ \"is_self\": false, \"permalink\": \"/r/Music/comments/1qb6ah/lady_gaga_has_announced_that_she_will_be_the/\",
146
+ \"name\": \"t3_1qb6ah\", \"created\": 1384098449.0, \"url\": \"http://www.youtube.com/watch?v=KaOC9danxNo&noredirect=1\",
147
+ \"author_flair_text\": null, \"title\": \"Lady Gaga has announced that she
148
+ will be the first live performer in space. This video shows it's already been
149
+ done.\", \"created_utc\": 1384098449.0, \"distinguished\": null, \"num_comments\":
150
+ 900, \"visited\": false, \"num_reports\": null, \"ups\": 12205}}, {\"kind\":
151
+ \"t3\", \"data\": {\"domain\": \"i.imgur.com\", \"banned_by\": null, \"media_embed\":
152
+ {}, \"subreddit\": \"gaming\", \"selftext_html\": null, \"selftext\": \"\",
153
+ \"likes\": null, \"secure_media\": null, \"link_flair_text\": null, \"id\":
154
+ \"1qb3js\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
155
+ false, \"author\": \"WeededDragon1\", \"media\": null, \"score\": 3388, \"approved_by\":
156
+ null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"http://e.thumbs.redditmedia.com/3akeMvrKgQ9hrCnR.jpg\",
157
+ \"subreddit_id\": \"t5_2qh03\", \"edited\": false, \"link_flair_css_class\":
158
+ null, \"author_flair_css_class\": null, \"downs\": 12790, \"saved\": false,
159
+ \"is_self\": false, \"permalink\": \"/r/gaming/comments/1qb3js/that_awkward_moment_when_diablo_shows_up_to_your/\",
160
+ \"name\": \"t3_1qb3js\", \"created\": 1384124321.0, \"url\": \"http://i.imgur.com/oEOq068.jpg\",
161
+ \"author_flair_text\": null, \"title\": \"That awkward moment when Diablo
162
+ shows up to your religious protest\", \"created_utc\": 1384095521.0, \"distinguished\":
163
+ null, \"num_comments\": 674, \"visited\": false, \"num_reports\": null, \"ups\":
164
+ 16178}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"i.imgur.com\", \"banned_by\":
165
+ null, \"media_embed\": {}, \"subreddit\": \"AdviceAnimals\", \"selftext_html\":
166
+ null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
167
+ null, \"id\": \"1qb5ss\", \"secure_media_embed\": {}, \"clicked\": false,
168
+ \"stickied\": false, \"author\": \"theoryyylol\", \"media\": null, \"score\":
169
+ 2509, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
170
+ \"http://f.thumbs.redditmedia.com/TgZCqL5NNUk_kY0k.jpg\", \"subreddit_id\":
171
+ \"t5_2s7tt\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
172
+ null, \"downs\": 3466, \"saved\": false, \"is_self\": false, \"permalink\":
173
+ \"/r/AdviceAnimals/comments/1qb5ss/im_pretty_sure_everyone_has_had_a_boss_like_this/\",
174
+ \"name\": \"t3_1qb5ss\", \"created\": 1384126772.0, \"url\": \"http://i.imgur.com/KinTmgh.jpg\",
175
+ \"author_flair_text\": null, \"title\": \"Im pretty sure everyone has had
176
+ a boss like this at some point... corporation or not!\", \"created_utc\":
177
+ 1384097972.0, \"distinguished\": null, \"num_comments\": 403, \"visited\":
178
+ false, \"num_reports\": null, \"ups\": 5975}}, {\"kind\": \"t3\", \"data\":
179
+ {\"domain\": \"i.imgur.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
180
+ \"gifs\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
181
+ null, \"link_flair_text\": null, \"id\": \"1qb1w2\", \"secure_media_embed\":
182
+ {}, \"clicked\": false, \"stickied\": false, \"author\": \"wtfisdisreal\",
183
+ \"media\": null, \"score\": 2970, \"approved_by\": null, \"over_18\": false,
184
+ \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2qt55\", \"edited\":
185
+ false, \"link_flair_css_class\": null, \"author_flair_css_class\": null, \"downs\":
186
+ 10582, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/gifs/comments/1qb1w2/puppy/\",
187
+ \"name\": \"t3_1qb1w2\", \"created\": 1384122312.0, \"url\": \"http://i.imgur.com/mUcM09n.gif\",
188
+ \"author_flair_text\": null, \"title\": \"Puppy!\", \"created_utc\": 1384093512.0,
189
+ \"distinguished\": null, \"num_comments\": 126, \"visited\": false, \"num_reports\":
190
+ null, \"ups\": 13552}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"theguardian.com\",
191
+ \"banned_by\": null, \"media_embed\": {}, \"subreddit\": \"worldnews\", \"selftext_html\":
192
+ null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
193
+ null, \"id\": \"1qb2hc\", \"secure_media_embed\": {}, \"clicked\": false,
194
+ \"stickied\": false, \"author\": \"filosoful\", \"media\": null, \"score\":
195
+ 2422, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
196
+ \"\", \"subreddit_id\": \"t5_2qh13\", \"edited\": false, \"link_flair_css_class\":
197
+ null, \"author_flair_css_class\": null, \"downs\": 3388, \"saved\": false,
198
+ \"is_self\": false, \"permalink\": \"/r/worldnews/comments/1qb2hc/homosexuality_is_illegal_in_41_out_of_53/\",
199
+ \"name\": \"t3_1qb2hc\", \"created\": 1384123082.0, \"url\": \"http://www.theguardian.com/world/2013/nov/10/homosexuality-illegal-in-41-out-of-53-commonwealth-countries-report\",
200
+ \"author_flair_text\": null, \"title\": \"Homosexuality is illegal in 41 out
201
+ of 53 Commonwealth countries\", \"created_utc\": 1384094282.0, \"distinguished\":
202
+ null, \"num_comments\": 642, \"visited\": false, \"num_reports\": null, \"ups\":
203
+ 5810}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"youtube.com\", \"banned_by\":
204
+ null, \"media_embed\": {\"content\": \"<iframe width=\\\"600\\\" height=\\\"338\\\"
205
+ src=\\\"http://www.youtube.com/embed/cMhF5p_BGTU?feature=oembed\\\" frameborder=\\\"0\\\"
206
+ allowfullscreen></iframe>\", \"width\": 600, \"scrolling\": false,
207
+ \"height\": 338}, \"subreddit\": \"videos\", \"selftext_html\": null, \"selftext\":
208
+ \"\", \"likes\": null, \"secure_media\": {\"type\": \"youtube.com\", \"oembed\":
209
+ {\"provider_url\": \"http://www.youtube.com/\", \"description\": \"10 months
210
+ of my life in 1 second shots\", \"title\": \"Bits of Life\", \"url\": \"http://www.youtube.com/watch?v=cMhF5p_BGTU\",
211
+ \"type\": \"video\", \"author_name\": \"Micha\\u0142 Miko\\u0142aj Wojtunik\",
212
+ \"height\": 338, \"width\": 600, \"html\": \"<iframe width=\\\"600\\\"
213
+ height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/cMhF5p_BGTU?feature=oembed\\\"
214
+ frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"thumbnail_width\":
215
+ 480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\":
216
+ \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FcMhF5p_BGTU%2Fhqdefault.jpg&key=b1e305db91cf4aa5a86b732cc9fffceb\",
217
+ \"thumbnail_height\": 360, \"author_url\": \"http://www.youtube.com/channel/UCruUCy7EQ1PD_9CX9PaJfvw\"}},
218
+ \"link_flair_text\": null, \"id\": \"1qazud\", \"secure_media_embed\": {\"content\":
219
+ \"<iframe width=\\\"600\\\" height=\\\"338\\\" src=\\\"https://www.youtube.com/embed/cMhF5p_BGTU?feature=oembed\\\"
220
+ frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"width\": 600,
221
+ \"scrolling\": false, \"height\": 338}, \"clicked\": false, \"stickied\":
222
+ false, \"author\": \"qrpkk\", \"media\": {\"type\": \"youtube.com\", \"oembed\":
223
+ {\"provider_url\": \"http://www.youtube.com/\", \"description\": \"10 months
224
+ of my life in 1 second shots\", \"title\": \"Bits of Life\", \"url\": \"http://www.youtube.com/watch?v=cMhF5p_BGTU\",
225
+ \"type\": \"video\", \"author_name\": \"Micha\\u0142 Miko\\u0142aj Wojtunik\",
226
+ \"height\": 338, \"width\": 600, \"html\": \"<iframe width=\\\"600\\\"
227
+ height=\\\"338\\\" src=\\\"http://www.youtube.com/embed/cMhF5p_BGTU?feature=oembed\\\"
228
+ frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"thumbnail_width\":
229
+ 480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\":
230
+ \"http://i1.ytimg.com/vi/cMhF5p_BGTU/hqdefault.jpg\", \"thumbnail_height\":
231
+ 360, \"author_url\": \"http://www.youtube.com/channel/UCruUCy7EQ1PD_9CX9PaJfvw\"}},
232
+ \"score\": 2460, \"approved_by\": null, \"over_18\": false, \"hidden\": false,
233
+ \"thumbnail\": \"http://a.thumbs.redditmedia.com/4gMqz6bgKAXQI-JH.jpg\", \"subreddit_id\":
234
+ \"t5_2qh1e\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
235
+ null, \"downs\": 3665, \"saved\": false, \"is_self\": false, \"permalink\":
236
+ \"/r/videos/comments/1qazud/man_films_2_seconds_of_each_day_everyday_for_10/\",
237
+ \"name\": \"t3_1qazud\", \"created\": 1384119446.0, \"url\": \"http://www.youtube.com/watch?v=cMhF5p_BGTU\",
238
+ \"author_flair_text\": null, \"title\": \"Man films 2 seconds of each day,
239
+ everyday, for 10 months.\", \"created_utc\": 1384090646.0, \"distinguished\":
240
+ null, \"num_comments\": 604, \"visited\": false, \"num_reports\": null, \"ups\":
241
+ 6125}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"i.imgur.com\", \"banned_by\":
242
+ null, \"media_embed\": {}, \"subreddit\": \"EarthPorn\", \"selftext_html\":
243
+ null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
244
+ null, \"id\": \"1qb0xk\", \"secure_media_embed\": {}, \"clicked\": false,
245
+ \"stickied\": false, \"author\": \"SKhan13\", \"media\": null, \"score\":
246
+ 2183, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
247
+ \"http://d.thumbs.redditmedia.com/-dtMPFfSzIpX_BPu.jpg\", \"subreddit_id\":
248
+ \"t5_2sbq3\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
249
+ null, \"downs\": 1005, \"saved\": false, \"is_self\": false, \"permalink\":
250
+ \"/r/EarthPorn/comments/1qb0xk/tam_c\\u1ed1cb\\u00edch_\\u0111\\u1ed9ng_vietnam_1920x1080_photo_by_olga/\",
251
+ \"name\": \"t3_1qb0xk\", \"created\": 1384121021.0, \"url\": \"http://i.imgur.com/GsGu8l2.jpg\",
252
+ \"author_flair_text\": null, \"title\": \"Tam C\\u1ed1c-B\\u00edch \\u0110\\u1ed9ng,
253
+ Vietnam [1920x1080] Photo by Olga Khoroshunova\", \"created_utc\": 1384092221.0,
254
+ \"distinguished\": null, \"num_comments\": 66, \"visited\": false, \"num_reports\":
255
+ null, \"ups\": 3188}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"self.AskReddit\",
256
+ \"banned_by\": null, \"media_embed\": {}, \"subreddit\": \"AskReddit\", \"selftext_html\":
257
+ null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
258
+ null, \"id\": \"1qavdp\", \"secure_media_embed\": {}, \"clicked\": false,
259
+ \"stickied\": false, \"author\": \"coversation\", \"media\": null, \"score\":
260
+ 2254, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
261
+ \"\", \"subreddit_id\": \"t5_2qh1i\", \"edited\": false, \"link_flair_css_class\":
262
+ null, \"author_flair_css_class\": null, \"downs\": 3329, \"saved\": false,
263
+ \"is_self\": true, \"permalink\": \"/r/AskReddit/comments/1qavdp/what_is_a_rule_that_is_broken_so_often_that_it/\",
264
+ \"name\": \"t3_1qavdp\", \"created\": 1384111235.0, \"url\": \"http://www.reddit.com/r/AskReddit/comments/1qavdp/what_is_a_rule_that_is_broken_so_often_that_it/\",
265
+ \"author_flair_text\": null, \"title\": \"What is a rule that is broken so
266
+ often that it essentially doesn't exist?\", \"created_utc\": 1384082435.0,
267
+ \"distinguished\": null, \"num_comments\": 8434, \"visited\": false, \"num_reports\":
268
+ null, \"ups\": 5583}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"theguardian.com\",
269
+ \"banned_by\": null, \"media_embed\": {}, \"subreddit\": \"news\", \"selftext_html\":
270
+ null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
271
+ null, \"id\": \"1qawgs\", \"secure_media_embed\": {}, \"clicked\": false,
272
+ \"stickied\": false, \"author\": \"gabemart\", \"media\": null, \"score\":
273
+ 1800, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
274
+ \"\", \"subreddit_id\": \"t5_2qh3l\", \"edited\": false, \"link_flair_css_class\":
275
+ null, \"author_flair_css_class\": null, \"downs\": 809, \"saved\": false,
276
+ \"is_self\": false, \"permalink\": \"/r/news/comments/1qawgs/typhoon_haiyan_kills_10000_in_philippines_live/\",
277
+ \"name\": \"t3_1qawgs\", \"created\": 1384113440.0, \"url\": \"http://www.theguardian.com/world/2013/nov/10/typhoon-haiyan-kills-10000-in-philippines-live-updates\",
278
+ \"author_flair_text\": null, \"title\": \"Typhoon Haiyan kills 10,000 in Philippines:
279
+ live updates\", \"created_utc\": 1384084640.0, \"distinguished\": null, \"num_comments\":
280
+ 243, \"visited\": false, \"num_reports\": null, \"ups\": 2609}}, {\"kind\":
281
+ \"t3\", \"data\": {\"domain\": \"plosone.org\", \"banned_by\": null, \"media_embed\":
282
+ {}, \"subreddit\": \"science\", \"selftext_html\": null, \"selftext\": \"\",
283
+ \"likes\": null, \"secure_media\": null, \"link_flair_text\": \"Social Sciences\",
284
+ \"id\": \"1qar49\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
285
+ false, \"author\": \"8902080104093\", \"media\": null, \"score\": 3146, \"approved_by\":
286
+ null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
287
+ \"t5_mouw\", \"edited\": false, \"link_flair_css_class\": \"soc\", \"author_flair_css_class\":
288
+ null, \"downs\": 11189, \"saved\": false, \"is_self\": false, \"permalink\":
289
+ \"/r/science/comments/1qar49/huh_is_the_universal_word_say_linguists_huh_is/\",
290
+ \"name\": \"t3_1qar49\", \"created\": 1384102047.0, \"url\": \"http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0078273\",
291
+ \"author_flair_text\": null, \"title\": \"\\\"Huh\\\" is the universal word,
292
+ say linguists. \\\"Huh\\\" is not innate (other primates don't say it), but
293
+ the circumstances of its use (needing to quickly and briefly prompt another
294
+ speaker to repeat herself) are universal, so languages that share no commonalities
295
+ still converged on this word.\", \"created_utc\": 1384073247.0, \"distinguished\":
296
+ null, \"num_comments\": 691, \"visited\": false, \"num_reports\": null, \"ups\":
297
+ 14335}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"reddit.com\", \"banned_by\":
298
+ null, \"media_embed\": {}, \"subreddit\": \"bestof\", \"selftext_html\": null,
299
+ \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
300
+ \"[getdisciplined]\", \"id\": \"1qau50\", \"secure_media_embed\": {}, \"clicked\":
301
+ false, \"stickied\": false, \"author\": \"wwwhizz\", \"media\": null, \"score\":
302
+ 1780, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
303
+ \"\", \"subreddit_id\": \"t5_2qh3v\", \"edited\": false, \"link_flair_css_class\":
304
+ null, \"author_flair_css_class\": null, \"downs\": 1242, \"saved\": false,
305
+ \"is_self\": false, \"permalink\": \"/r/bestof/comments/1qau50/ryans01_gives_a_four_rule_plan_to_have_a_better/\",
306
+ \"name\": \"t3_1qau50\", \"created\": 1384108461.0, \"url\": \"http://www.reddit.com/r/getdisciplined/comments/1q96b5/i_just_dont_care_about_myself/cdah4af?context=3\",
307
+ \"author_flair_text\": null, \"title\": \"ryans01 gives a four rule plan to
308
+ have a better and more productive life\", \"created_utc\": 1384079661.0, \"distinguished\":
309
+ null, \"num_comments\": 142, \"visited\": false, \"num_reports\": null, \"ups\":
310
+ 3022}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"theguardian.com\", \"banned_by\":
311
+ null, \"media_embed\": {}, \"subreddit\": \"technology\", \"selftext_html\":
312
+ null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
313
+ null, \"id\": \"1qapzb\", \"secure_media_embed\": {}, \"clicked\": false,
314
+ \"stickied\": false, \"author\": \"8902080104093\", \"media\": null, \"score\":
315
+ 2629, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
316
+ \"\", \"subreddit_id\": \"t5_2qh16\", \"edited\": false, \"link_flair_css_class\":
317
+ null, \"author_flair_css_class\": null, \"downs\": 4171, \"saved\": false,
318
+ \"is_self\": false, \"permalink\": \"/r/technology/comments/1qapzb/teenagers_say_goodbye_to_facebook_and_hello_to/\",
319
+ \"name\": \"t3_1qapzb\", \"created\": 1384099913.0, \"url\": \"http://www.theguardian.com/technology/2013/nov/10/teenagers-messenger-apps-facebook-exodus\",
320
+ \"author_flair_text\": null, \"title\": \"Teenagers say goodbye to Facebook
321
+ and hello to messenger apps just as their mums and dads get the hang of social
322
+ networking\", \"created_utc\": 1384071113.0, \"distinguished\": null, \"num_comments\":
323
+ 1324, \"visited\": false, \"num_reports\": null, \"ups\": 6800}}, {\"kind\":
324
+ \"t3\", \"data\": {\"domain\": \"imgur.com\", \"banned_by\": null, \"media_embed\":
325
+ {\"content\": \"<iframe class=\\\"imgur-album\\\" width=\\\"550\\\" height=\\\"550\\\"
326
+ frameborder=\\\"0\\\" src=\\\"http://imgur.com/a/aTPNs/embed\\\"></iframe>\",
327
+ \"width\": 550, \"scrolling\": false, \"height\": 550}, \"subreddit\": \"movies\",
328
+ \"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
329
+ null, \"link_flair_text\": \"\", \"id\": \"1qatss\", \"secure_media_embed\":
330
+ {}, \"clicked\": false, \"stickied\": false, \"author\": \"throw10away\",
331
+ \"media\": {\"type\": \"imgur.com\", \"oembed\": {\"provider_url\": \"http://imgur.com\",
332
+ \"description\": \"Imgur is home to the web's most popular image content,
333
+ curated in real time by a dedicated community through commenting, voting and
334
+ sharing.\", \"title\": \"imgur: the simple image sharer\", \"type\": \"rich\",
335
+ \"thumbnail_width\": 1571, \"height\": 550, \"width\": 550, \"html\": \"<iframe
336
+ class=\\\"imgur-album\\\" width=\\\"550\\\" height=\\\"550\\\" frameborder=\\\"0\\\"
337
+ src=\\\"http://imgur.com/a/aTPNs/embed\\\"></iframe>\", \"version\":
338
+ \"1.0\", \"provider_name\": \"Imgur\", \"thumbnail_url\": \"http://i.imgur.com/LHD1hp1.jpg\",
339
+ \"thumbnail_height\": 1200}}, \"score\": 1739, \"approved_by\": null, \"over_18\":
340
+ true, \"hidden\": false, \"thumbnail\": \"nsfw\", \"subreddit_id\": \"t5_2qh3s\",
341
+ \"edited\": false, \"link_flair_css_class\": \"media\", \"author_flair_css_class\":
342
+ null, \"downs\": 1217, \"saved\": false, \"is_self\": false, \"permalink\":
343
+ \"/r/movies/comments/1qatss/movie_posters_inspired_by_salvador_dali/\", \"name\":
344
+ \"t3_1qatss\", \"created\": 1384107701.0, \"url\": \"http://imgur.com/a/aTPNs\",
345
+ \"author_flair_text\": null, \"title\": \"Movie posters inspired by Salvador
346
+ Dali\", \"created_utc\": 1384078901.0, \"distinguished\": null, \"num_comments\":
347
+ 110, \"visited\": false, \"num_reports\": null, \"ups\": 2956}}, {\"kind\":
348
+ \"t3\", \"data\": {\"domain\": \"self.IAmA\", \"banned_by\": null, \"media_embed\":
349
+ {}, \"subreddit\": \"IAmA\", \"selftext_html\": \"<!-- SC_OFF --><div
350
+ class=\\\"md\\\"><p>Title says it all, I'm an american engineer
351
+ who was sent over to help with construction here in Sochi for the olympics.
352
+ Attached is a picture of my ID badge and a picture of the olympic cauldron
353
+ that is still being built <a href=\\\"http://imgur.com/sV38sYE,v7lgDN6#0\\\">http://imgur.com/sV38sYE,v7lgDN6#0</a>
354
+ \ only 89 days until the olympics and there is still a lot of construction.
355
+ Ask me anything about being an american in Russia or Sochi or the 2014 olympics.</p>\\n</div><!--
356
+ SC_ON -->\", \"selftext\": \"Title says it all, I'm an american engineer
357
+ who was sent over to help with construction here in Sochi for the olympics.
358
+ Attached is a picture of my ID badge and a picture of the olympic cauldron
359
+ that is still being built http://imgur.com/sV38sYE,v7lgDN6#0 only 89 days
360
+ until the olympics and there is still a lot of construction. Ask me anything
361
+ about being an american in Russia or Sochi or the 2014 olympics.\", \"likes\":
362
+ null, \"secure_media\": null, \"link_flair_text\": null, \"id\": \"1qbh49\",
363
+ \"secure_media_embed\": {}, \"clicked\": false, \"stickied\": false, \"author\":
364
+ \"metarinka\", \"media\": null, \"score\": 325, \"approved_by\": null, \"over_18\":
365
+ false, \"hidden\": false, \"thumbnail\": \"self\", \"subreddit_id\": \"t5_2qzb6\",
366
+ \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
367
+ null, \"downs\": 107, \"saved\": false, \"is_self\": true, \"permalink\":
368
+ \"/r/IAmA/comments/1qbh49/i_am_an_american_contractor_in_sochi_russia/\",
369
+ \"name\": \"t3_1qbh49\", \"created\": 1384136577.0, \"url\": \"http://www.reddit.com/r/IAmA/comments/1qbh49/i_am_an_american_contractor_in_sochi_russia/\",
370
+ \"author_flair_text\": null, \"title\": \"I am an American contractor in Sochi
371
+ Russia helping to build stadiums for the 2014 winter Olympics. AMAA\", \"created_utc\":
372
+ 1384107777.0, \"distinguished\": null, \"num_comments\": 141, \"visited\":
373
+ false, \"num_reports\": null, \"ups\": 432}}, {\"kind\": \"t3\", \"data\":
374
+ {\"domain\": \"self.askscience\", \"banned_by\": null, \"media_embed\": {},
375
+ \"subreddit\": \"askscience\", \"selftext_html\": \"<!-- SC_OFF --><div
376
+ class=\\\"md\\\"><p>As space is a vacuum, but would inhale something,
377
+ or would nothing happen? I've been wondering this for years and just
378
+ found this subreddit.</p>\\n</div><!-- SC_ON -->\", \"selftext\":
379
+ \"As space is a vacuum, but would inhale something, or would nothing happen?
380
+ I've been wondering this for years and just found this subreddit.\", \"likes\":
381
+ null, \"secure_media\": null, \"link_flair_text\": \"Biology\", \"id\": \"1qauf7\",
382
+ \"secure_media_embed\": {}, \"clicked\": false, \"stickied\": false, \"author\":
383
+ \"Ass-assin\", \"media\": null, \"score\": 785, \"approved_by\": null, \"over_18\":
384
+ false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2qm4e\",
385
+ \"edited\": false, \"link_flair_css_class\": \"bio\", \"author_flair_css_class\":
386
+ null, \"downs\": 456, \"saved\": false, \"is_self\": true, \"permalink\":
387
+ \"/r/askscience/comments/1qauf7/when_you_attempt_inhale_in_space_what_do_you/\",
388
+ \"name\": \"t3_1qauf7\", \"created\": 1384109065.0, \"url\": \"http://www.reddit.com/r/askscience/comments/1qauf7/when_you_attempt_inhale_in_space_what_do_you/\",
389
+ \"author_flair_text\": null, \"title\": \"When you (attempt) inhale in space,
390
+ what do you inhale, or is it just physical impossible to inhale?\", \"created_utc\":
391
+ 1384080265.0, \"distinguished\": null, \"num_comments\": 229, \"visited\":
392
+ false, \"num_reports\": null, \"ups\": 1241}}, {\"kind\": \"t3\", \"data\":
393
+ {\"domain\": \"self.books\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
394
+ \"books\", \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Hi
395
+ Reddit! <a href=\\\"http://www.williamkowalski.com/blog.\\\">My name
396
+ is William Kowalski.</a> I've been writing since I was a little
397
+ kid, and I've been publishing novels since 1998. I started writing
398
+ my first novel, EDDIE'S BASTARD, at age 23 or 24, and sold it to HarperCollins
399
+ Publishers when I was 28. It came out in 1999 and became an international
400
+ best-seller, with translations in over a dozen languages. I've published
401
+ eight more books since then. My tenth title will be out next year.</p>\\n\\n<p>I
402
+ also write shorter books for adults with literacy challenges, or who are learning
403
+ to read English. These are called Rapid Reads, and they're put out
404
+ by Orca Books of Vancouver. The goal of these books is to tell a story that
405
+ will engage an adult while using simple, straightforward language--a very
406
+ difficult task. So, five of my published books are literary/mainstream fiction,
407
+ and five of them are Rapid Reads. I'm also an adult educator, and
408
+ I often work with the very people for whom these Rapid Reads are intended.
409
+ \ Listening to grown men and women reading for the first time in their lives
410
+ from a book I wrote myself is a very powerful experience. </p>\\n\\n<p>I'm
411
+ an American by birth. I grew up in Erie, PA and have lived all over the country,
412
+ most recently in Brooklyn, NY. I moved to Canada in 2000 after meeting the
413
+ woman who is now my wife. We married in 2002 and moved to rural Nova Scotia.
414
+ \ We have two kids now. Life is a lot quieter than it was when I was a twenty-something
415
+ bachelor living in New York City, but it feels much more full. I'm
416
+ a lucky guy and I know it.</p>\\n\\n<p>My writing career so far
417
+ has spanned two worlds. It began during the dying days of the old world of
418
+ publishing, when advances were sky-high and no one was really talking much
419
+ about e-books or self-publishing yet. Like many other midlist authors, I
420
+ now find myself in a strange and slightly scary new world, where the publishing
421
+ industry seems to be folding in on itself and no one quite knows what is going
422
+ to happen. It's a weird time to be a writer. The old gods are dead.
423
+ \ I would say "Long live the new gods," but I don't
424
+ know who they are yet.</p>\\n\\n<p>Feel free to ask me anything,
425
+ though I can't promise to answer <em>everything</em>.
426
+ \ I especially encourage questions from beginning writers who hope to find
427
+ their own success. </p>\\n\\n<p>Disclaimer: I do not consider
428
+ myself an expert on either writing or publishing. I can only share my experiences
429
+ in these areas, and you can take from them what you will. The only thing
430
+ I'm really an expert on is being me, and there are some days when
431
+ even that seems beyond me.</p>\\n\\n<p><strong>BIBLIOGRAPHY</strong></p>\\n\\n<ul>\\n<li><p>1999
432
+ \ EDDIE'S BASTARD (HarperCollins)</p></li>\\n<li><p>2001
433
+ \ SOMEWHERE SOUTH OF HERE (HarperCollins)</p></li>\\n<li><p>2003
434
+ \ THE ADVENTURES OF FLASH JACKSON (HarperCollins)</p></li>\\n<li><p>2004
435
+ \ THE GOOD NEIGHBOR (HarperCollins)</p></li>\\n<li><p>2003-present
436
+ \ Kids. Man, do they take up your time. </p></li>\\n<li><p>2010
437
+ \ THE BARRIO KINGS, THE WAY IT WORKS (Orca/ Raven Rapid Reads)</p></li>\\n<li><p>2011
438
+ \ SOMETHING NOBLE (Orca/Raven Rapid Reads)</p></li>\\n<li><p>2012
439
+ \ JUST GONE (Orca/Raven Rapid Reads)</p></li>\\n<li><p>2013
440
+ \ THE HUNDRED HEARTS (Canadian publication by Thomas Allen, now Dundurn--not
441
+ currently for sale in the US)</p></li>\\n<li><p>2014
442
+ \ THE INNOCENCE DEVICE (Orca/Raven Rapid Reads)</p></li>\\n</ul>\\n\\n<p><strong>FREE
443
+ E-BOOK OPPORTUNITY:</strong> The good folks at Orca/Raven have agreed
444
+ to give a free e-copy of one of my Rapid Reads books, JUST GONE, to the first
445
+ 50 people who email <a href=\\\"mailto:digital@orcabook.com\\\">digital@orcabook.com</a>
446
+ and request it. Technically these are "samples", because
447
+ they will only live on your device for 30 days. Since today is Sunday and
448
+ tomorrow is a holiday, I am unsure of just when these requests will be filled.
449
+ \ But don't let that stop you from asking!</p>\\n\\n<p>I
450
+ had hoped to organize a similar giveaway of THE HUNDRED HEARTS, my newest
451
+ work of literary fiction, but for reasons beyond my control that wasn't
452
+ able to happen. My apologies.</p>\\n\\n<p>I hope to be here answering
453
+ questions for the next few hours. Thanks to the mods of r/books for allowing
454
+ me to do this AMA, and thanks to you all for stopping by!</p>\\n\\n<p>Bill</p>\\n</div><!--
455
+ SC_ON -->\", \"selftext\": \"Hi Reddit! [My name is William Kowalski.](http://www.williamkowalski.com/blog.)
456
+ I've been writing since I was a little kid, and I've been publishing novels
457
+ since 1998. I started writing my first novel, EDDIE'S BASTARD, at age 23
458
+ or 24, and sold it to HarperCollins Publishers when I was 28. It came out
459
+ in 1999 and became an international best-seller, with translations in over
460
+ a dozen languages. I've published eight more books since then. My tenth
461
+ title will be out next year.\\n\\nI also write shorter books for adults with
462
+ literacy challenges, or who are learning to read English. These are called
463
+ Rapid Reads, and they're put out by Orca Books of Vancouver. The goal of
464
+ these books is to tell a story that will engage an adult while using simple,
465
+ straightforward language--a very difficult task. So, five of my published
466
+ books are literary/mainstream fiction, and five of them are Rapid Reads. I'm
467
+ also an adult educator, and I often work with the very people for whom these
468
+ Rapid Reads are intended. Listening to grown men and women reading for the
469
+ first time in their lives from a book I wrote myself is a very powerful experience.
470
+ \ \\n\\nI'm an American by birth. I grew up in Erie, PA and have lived all
471
+ over the country, most recently in Brooklyn, NY. I moved to Canada in 2000
472
+ after meeting the woman who is now my wife. We married in 2002 and moved
473
+ to rural Nova Scotia. We have two kids now. Life is a lot quieter than it
474
+ was when I was a twenty-something bachelor living in New York City, but it
475
+ feels much more full. I'm a lucky guy and I know it.\\n\\nMy writing career
476
+ so far has spanned two worlds. It began during the dying days of the old
477
+ world of publishing, when advances were sky-high and no one was really talking
478
+ much about e-books or self-publishing yet. Like many other midlist authors,
479
+ I now find myself in a strange and slightly scary new world, where the publishing
480
+ industry seems to be folding in on itself and no one quite knows what is going
481
+ to happen. It's a weird time to be a writer. The old gods are dead. I would
482
+ say \\\"Long live the new gods,\\\" but I don't know who they are yet.\\n\\nFeel
483
+ free to ask me anything, though I can't promise to answer *everything*. I
484
+ especially encourage questions from beginning writers who hope to find their
485
+ own success. \\n\\nDisclaimer: I do not consider myself an expert on either
486
+ writing or publishing. I can only share my experiences in these areas, and
487
+ you can take from them what you will. The only thing I'm really an expert
488
+ on is being me, and there are some days when even that seems beyond me.\\n\\n**BIBLIOGRAPHY**\\n\\n*
489
+ \ 1999 EDDIE'S BASTARD (HarperCollins)\\n\\n* 2001 SOMEWHERE SOUTH OF
490
+ HERE (HarperCollins)\\n\\n* 2003 THE ADVENTURES OF FLASH JACKSON (HarperCollins)\\n\\n*
491
+ \ 2004 THE GOOD NEIGHBOR (HarperCollins)\\n\\n* 2003-present Kids. Man,
492
+ do they take up your time. \\n\\n* 2010 THE BARRIO KINGS, THE WAY IT WORKS
493
+ (Orca/ Raven Rapid Reads)\\n\\n* 2011 SOMETHING NOBLE (Orca/Raven Rapid
494
+ Reads)\\n\\n* 2012 JUST GONE (Orca/Raven Rapid Reads)\\n\\n* 2013 THE
495
+ HUNDRED HEARTS (Canadian publication by Thomas Allen, now Dundurn--not currently
496
+ for sale in the US)\\n\\n* 2014 THE INNOCENCE DEVICE (Orca/Raven Rapid
497
+ Reads)\\n\\n**FREE E-BOOK OPPORTUNITY:** The good folks at Orca/Raven have
498
+ agreed to give a free e-copy of one of my Rapid Reads books, JUST GONE, to
499
+ the first 50 people who email digital@orcabook.com and request it. Technically
500
+ these are \\\"samples\\\", because they will only live on your device for
501
+ 30 days. Since today is Sunday and tomorrow is a holiday, I am unsure of
502
+ just when these requests will be filled. But don't let that stop you from
503
+ asking!\\n\\nI had hoped to organize a similar giveaway of THE HUNDRED HEARTS,
504
+ my newest work of literary fiction, but for reasons beyond my control that
505
+ wasn't able to happen. My apologies.\\n\\nI hope to be here answering questions
506
+ for the next few hours. Thanks to the mods of r/books for allowing me to
507
+ do this AMA, and thanks to you all for stopping by!\\n\\nBill\", \"likes\":
508
+ null, \"secure_media\": null, \"link_flair_text\": null, \"id\": \"1qb6tz\",
509
+ \"secure_media_embed\": {}, \"clicked\": false, \"stickied\": false, \"author\":
510
+ \"William_Kowalski\", \"media\": null, \"score\": 278, \"approved_by\": null,
511
+ \"over_18\": false, \"hidden\": false, \"thumbnail\": \"self\", \"subreddit_id\":
512
+ \"t5_2qh4i\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
513
+ null, \"downs\": 107, \"saved\": false, \"is_self\": true, \"permalink\":
514
+ \"/r/books/comments/1qb6tz/ive_been_a_professional_novelist_since_1998_i/\",
515
+ \"name\": \"t3_1qb6tz\", \"created\": 1384127749.0, \"url\": \"http://www.reddit.com/r/books/comments/1qb6tz/ive_been_a_professional_novelist_since_1998_i/\",
516
+ \"author_flair_text\": null, \"title\": \"I've been a professional novelist
517
+ since 1998. I love helping up-and-coming writers. My name is William Kowalski.
518
+ AMAA!\", \"created_utc\": 1384098949.0, \"distinguished\": null, \"num_comments\":
519
+ 232, \"visited\": false, \"num_reports\": null, \"ups\": 385}}, {\"kind\":
520
+ \"t3\", \"data\": {\"domain\": \"self.explainlikeimfive\", \"banned_by\":
521
+ null, \"media_embed\": {}, \"subreddit\": \"explainlikeimfive\", \"selftext_html\":
522
+ null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
523
+ null, \"id\": \"1qbap6\", \"secure_media_embed\": {}, \"clicked\": false,
524
+ \"stickied\": false, \"author\": \"Do_not_dare_give_up\", \"media\": null,
525
+ \"score\": 211, \"approved_by\": null, \"over_18\": false, \"hidden\": false,
526
+ \"thumbnail\": \"\", \"subreddit_id\": \"t5_2sokd\", \"edited\": false, \"link_flair_css_class\":
527
+ null, \"author_flair_css_class\": null, \"downs\": 74, \"saved\": false, \"is_self\":
528
+ true, \"permalink\": \"/r/explainlikeimfive/comments/1qbap6/eli5_vevo_what_is_it_what_does_it_do_and_why_does/\",
529
+ \"name\": \"t3_1qbap6\", \"created\": 1384131313.0, \"url\": \"http://www.reddit.com/r/explainlikeimfive/comments/1qbap6/eli5_vevo_what_is_it_what_does_it_do_and_why_does/\",
530
+ \"author_flair_text\": null, \"title\": \"ELI5: Vevo, what is it, what does
531
+ it do, and why does everyone seem to hate it?\", \"created_utc\": 1384102513.0,
532
+ \"distinguished\": null, \"num_comments\": 44, \"visited\": false, \"num_reports\":
533
+ null, \"ups\": 285}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"youtube.com\",
534
+ \"banned_by\": null, \"media_embed\": {\"content\": \"<iframe width=\\\"600\\\"
535
+ height=\\\"450\\\" src=\\\"http://www.youtube.com/embed/LSxTcaDBPbs?feature=oembed\\\"
536
+ frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"width\": 600,
537
+ \"scrolling\": false, \"height\": 450}, \"subreddit\": \"television\", \"selftext_html\":
538
+ null, \"selftext\": \"\", \"likes\": null, \"secure_media\": {\"oembed\":
539
+ {\"provider_url\": \"http://www.youtube.com/\", \"description\": \"Coming
540
+ 2014. The classic anime available on Blu-ray and Digital for the first time
541
+ ever in the U.S. from FUNimation.\", \"title\": \"Cowboy Bebop - Coming Soon
542
+ - Trailer\", \"url\": \"http://www.youtube.com/watch?v=LSxTcaDBPbs\", \"author_name\":
543
+ \"FUNimation\", \"height\": 450, \"width\": 600, \"html\": \"<iframe width=\\\"600\\\"
544
+ height=\\\"450\\\" src=\\\"https://www.youtube.com/embed/LSxTcaDBPbs?feature=oembed\\\"
545
+ frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"thumbnail_width\":
546
+ 480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\":
547
+ \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FLSxTcaDBPbs%2Fhqdefault.jpg&key=b1e305db91cf4aa5a86b732cc9fffceb\",
548
+ \"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"http://www.youtube.com/user/FUNimation\"},
549
+ \"type\": \"youtube.com\"}, \"link_flair_text\": null, \"id\": \"1q9o0o\",
550
+ \"secure_media_embed\": {\"content\": \"<iframe width=\\\"600\\\" height=\\\"450\\\"
551
+ src=\\\"https://www.youtube.com/embed/LSxTcaDBPbs?feature=oembed\\\" frameborder=\\\"0\\\"
552
+ allowfullscreen></iframe>\", \"width\": 600, \"scrolling\": false,
553
+ \"height\": 450}, \"clicked\": false, \"stickied\": false, \"author\": \"anothercowboy\",
554
+ \"media\": {\"oembed\": {\"provider_url\": \"http://www.youtube.com/\", \"description\":
555
+ \"Coming 2014. The classic anime available on Blu-ray and Digital for the
556
+ first time ever in the U.S. from FUNimation.\", \"title\": \"Cowboy Bebop
557
+ - Coming Soon - Trailer\", \"url\": \"http://www.youtube.com/watch?v=LSxTcaDBPbs\",
558
+ \"author_name\": \"FUNimation\", \"height\": 450, \"width\": 600, \"html\":
559
+ \"<iframe width=\\\"600\\\" height=\\\"450\\\" src=\\\"http://www.youtube.com/embed/LSxTcaDBPbs?feature=oembed\\\"
560
+ frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"thumbnail_width\":
561
+ 480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\":
562
+ \"http://i1.ytimg.com/vi/LSxTcaDBPbs/hqdefault.jpg\", \"type\": \"video\",
563
+ \"thumbnail_height\": 360, \"author_url\": \"http://www.youtube.com/user/FUNimation\"},
564
+ \"type\": \"youtube.com\"}, \"score\": 1077, \"approved_by\": null, \"over_18\":
565
+ false, \"hidden\": false, \"thumbnail\": \"http://d.thumbs.redditmedia.com/5OCkE31yl2JKXp7c.jpg\",
566
+ \"subreddit_id\": \"t5_2qh6e\", \"edited\": false, \"link_flair_css_class\":
567
+ null, \"author_flair_css_class\": null, \"downs\": 564, \"saved\": false,
568
+ \"is_self\": false, \"permalink\": \"/r/television/comments/1q9o0o/cowboy_bebop_bluray_us_release/\",
569
+ \"name\": \"t3_1q9o0o\", \"created\": 1384062204.0, \"url\": \"http://www.youtube.com/watch?v=LSxTcaDBPbs\",
570
+ \"author_flair_text\": null, \"title\": \"Cowboy Bebop Blu-Ray U.S. Release\",
571
+ \"created_utc\": 1384033404.0, \"distinguished\": null, \"num_comments\":
572
+ 294, \"visited\": false, \"num_reports\": null, \"ups\": 1641}}, {\"kind\":
573
+ \"t3\", \"data\": {\"domain\": \"tech.uk.msn.com\", \"banned_by\": null, \"media_embed\":
574
+ {}, \"subreddit\": \"technology\", \"selftext_html\": null, \"selftext\":
575
+ \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\": null,
576
+ \"id\": \"1qba8s\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
577
+ false, \"author\": \"ButtUglyPaolo\", \"media\": null, \"score\": 500, \"approved_by\":
578
+ null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
579
+ \"t5_2qh16\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
580
+ null, \"downs\": 114, \"saved\": false, \"is_self\": false, \"permalink\":
581
+ \"/r/technology/comments/1qba8s/a_3d_printed_liver_has_been_created_that_can/\",
582
+ \"name\": \"t3_1qba8s\", \"created\": 1384130916.0, \"url\": \"http://tech.uk.msn.com/news/articles.aspx?cp-documentid=258282574\",
583
+ \"author_flair_text\": null, \"title\": \"A 3D printed liver has been created
584
+ that can survive for 40 days\", \"created_utc\": 1384102116.0, \"distinguished\":
585
+ null, \"num_comments\": 46, \"visited\": false, \"num_reports\": null, \"ups\":
586
+ 614}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"imgur.com\", \"banned_by\":
587
+ null, \"media_embed\": {}, \"subreddit\": \"AdviceAnimals\", \"selftext_html\":
588
+ null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
589
+ null, \"id\": \"1qb6lp\", \"secure_media_embed\": {}, \"clicked\": false,
590
+ \"stickied\": false, \"author\": \"Maestronaut\", \"media\": null, \"score\":
591
+ 2161, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
592
+ \"http://c.thumbs.redditmedia.com/VKAenXTRhgwhlHJt.jpg\", \"subreddit_id\":
593
+ \"t5_2s7tt\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
594
+ null, \"downs\": 2122, \"saved\": false, \"is_self\": false, \"permalink\":
595
+ \"/r/AdviceAnimals/comments/1qb6lp/seriously_why_am_i_here_then/\", \"name\":
596
+ \"t3_1qb6lp\", \"created\": 1384127529.0, \"url\": \"http://imgur.com/6MwdN2Q\",
597
+ \"author_flair_text\": null, \"title\": \"Seriously, why am I here then?\",
598
+ \"created_utc\": 1384098729.0, \"distinguished\": null, \"num_comments\":
599
+ 175, \"visited\": false, \"num_reports\": null, \"ups\": 4283}}], \"after\":
600
+ \"t3_1qb6lp\", \"before\": null}}"
601
+ http_version:
602
+ recorded_at: Sun, 10 Nov 2013 19:56:41 GMT
603
+ recorded_with: VCR 2.6.0