redditkit 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.md +22 -0
- data/README.md +155 -0
- data/Rakefile +8 -0
- data/lib/redditkit.rb +26 -0
- data/lib/redditkit/base.rb +60 -0
- data/lib/redditkit/client.rb +142 -0
- data/lib/redditkit/client/account.rb +73 -0
- data/lib/redditkit/client/apps.rb +63 -0
- data/lib/redditkit/client/captcha.rb +36 -0
- data/lib/redditkit/client/comments.rb +54 -0
- data/lib/redditkit/client/flair.rb +148 -0
- data/lib/redditkit/client/links.rb +134 -0
- data/lib/redditkit/client/miscellaneous.rb +50 -0
- data/lib/redditkit/client/moderation.rb +179 -0
- data/lib/redditkit/client/multireddits.rb +207 -0
- data/lib/redditkit/client/private_messages.rb +74 -0
- data/lib/redditkit/client/search.rb +25 -0
- data/lib/redditkit/client/subreddits.rb +120 -0
- data/lib/redditkit/client/users.rb +109 -0
- data/lib/redditkit/client/utilities.rb +137 -0
- data/lib/redditkit/client/voting.rb +41 -0
- data/lib/redditkit/client/wiki.rb +83 -0
- data/lib/redditkit/comment.rb +54 -0
- data/lib/redditkit/creatable.rb +17 -0
- data/lib/redditkit/error.rb +111 -0
- data/lib/redditkit/link.rb +140 -0
- data/lib/redditkit/moderator_action.rb +19 -0
- data/lib/redditkit/multireddit.rb +32 -0
- data/lib/redditkit/multireddit_description.rb +14 -0
- data/lib/redditkit/paginated_response.rb +22 -0
- data/lib/redditkit/private_message.rb +27 -0
- data/lib/redditkit/response/parse_json.rb +29 -0
- data/lib/redditkit/response/raise_error.rb +21 -0
- data/lib/redditkit/subreddit.rb +86 -0
- data/lib/redditkit/thing.rb +20 -0
- data/lib/redditkit/user.rb +30 -0
- data/lib/redditkit/version.rb +19 -0
- data/lib/redditkit/votable.rb +37 -0
- data/redditkit.gemspec +25 -0
- data/spec/cassettes/RedditKit_Client/should_raise_an_error_with_invalid_credentials.yml +39 -0
- data/spec/cassettes/RedditKit_Client_Account/_sign_in/signs_the_user_in.yml +132 -0
- data/spec/cassettes/RedditKit_Client_Account/_update_session/updates_the_current_session.yml +133 -0
- data/spec/cassettes/RedditKit_Client_Captcha/_captcha_url/returns_a_CAPTCHA_url_from_an_identifier.yml +38 -0
- data/spec/cassettes/RedditKit_Client_Captcha/_needs_captcha_/checks_if_the_current_account_needs_a_CAPTCHA.yml +44 -0
- data/spec/cassettes/RedditKit_Client_Captcha/_new_captcha_identifier/returns_a_new_CAPTCHA_identifier.yml +38 -0
- data/spec/cassettes/RedditKit_Client_Comments/_comment/requests_the_correct_resource.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Comments/_comments/with_a_RedditKit_Link/returns_comments_on_a_link.yml +140 -0
- data/spec/cassettes/RedditKit_Client_Comments/_comments/with_a_link_identifier/returns_comments_on_a_link.yml +89 -0
- data/spec/cassettes/RedditKit_Client_Comments/_submit_comment/requests_the_correct_resource.yml +313 -0
- data/spec/cassettes/RedditKit_Client_Flair/_apply_flair_template/clears_flair_templates.yml +52 -0
- data/spec/cassettes/RedditKit_Client_Flair/_clear_flair_templates/clears_flair_templates.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/creates_a_flair_template.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/raises_InvalidClassName.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/raises_TooManyClassNames.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Flair/_delete_user_flair/requests_the_correct_resource.yml +60 -0
- data/spec/cassettes/RedditKit_Client_Flair/_flair_list/returns_the_list_of_flair.yml +44 -0
- data/spec/cassettes/RedditKit_Client_Flair/_set_flair/requests_the_correct_resource.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Flair/_set_flair_options/sets_flair_options.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Flair/_set_flair_with_csv/requests_the_correct_resource.yml +51 -0
- data/spec/cassettes/RedditKit_Client_Flair/_toggle_flair/requests_the_correct_resource.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Links/_front_page/requests_the_correct_category.yml +498 -0
- data/spec/cassettes/RedditKit_Client_Links/_front_page/requests_the_correct_resource.yml +603 -0
- data/spec/cassettes/RedditKit_Client_Links/_hide/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Links/_link/returns_a_link.yml +55 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/contains_pagination_information.yml +402 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_a_certain_number_of_links.yml +186 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_front_page_links_if_no_subreddit_is_present.yml +603 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_links_with_the_correct_time_frame.yml +375 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_the_correct_subreddit_and_category.yml +402 -0
- data/spec/cassettes/RedditKit_Client_Links/_links_with_domain/returns_links_with_a_specific_domain.yml +99 -0
- data/spec/cassettes/RedditKit_Client_Links/_mark_nsfw/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Links/_random_link/returns_a_random_link.yml +91 -0
- data/spec/cassettes/RedditKit_Client_Links/_submit/raises_RedditKit_InvalidCaptcha_if_no_CAPTCHA_is_filled_out.yml +54 -0
- data/spec/cassettes/RedditKit_Client_Links/_unhide/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Links/_unmark_nsfw/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_delete/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_edit/requests_the_correct_resource.yml +52 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_save/saves_an_object.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_unsave/unsaves_an_object.yml +89 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_accept_moderator_invitation/requests_the_correct_resource.yml +53 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_ban/requests_the_correct_resource.yml +103 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_contributors_to_subreddit/requests_the_correct_resource.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_ignore_reports/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_moderation_log/returns_RedditKit_ModeratorAction_objects.yml +153 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_moderators_of_subreddit/requests_the_correct_resource.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_reset_subreddit_header/requests_the_correct_resource.yml +55 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_set_contest_mode/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_set_sticky_post/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_unban/requests_the_correct_resource.yml +54 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_unignore_reports/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_add_subreddit_to_multireddit/adds_a_subreddit_to_a_multireddit.yml +177 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_create_multireddit/creates_a_multireddit.yml +137 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_create_multireddit/raises_RedditKit_Conflict_when_using_an_existing_name.yml +133 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_delete_multireddit/deletes_a_multireddit.yml +134 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit/with_a_path/returns_a_multireddit.yml +39 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit/without_a_path/returns_a_multireddit.yml +39 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit_description/with_a_multireddit/returns_a_multireddit_description.yml +81 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit_description/with_a_username_and_multireddit_name/returns_a_multireddit_description.yml +45 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_my_multireddits/return_s_the_user_s_multireddits.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_remove_subreddit_from_multireddit/removes_a_subreddit_from_a_multireddit.yml +175 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_rename_multireddit/renames_a_multireddit.yml +134 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_set_multireddit_description/returns_a_multireddit_description.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_update_multireddit/updates_a_multireddit.yml +184 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_block_author_of_message/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_mark_as_read/requests_the_correct_resource.yml +51 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_mark_as_unread/requests_the_correct_resource.yml +51 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_messages/requests_the_correct_resource.yml +187 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_unblock/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Search/_search/restricts_searches_to_a_specific_subreddit.yml +878 -0
- data/spec/cassettes/RedditKit_Client_Search/_search/returns_a_specific_number_of_results.yml +130 -0
- data/spec/cassettes/RedditKit_Client_Search/_search/returns_search_results.yml +844 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_random_subreddit/returns_a_random_subreddit.yml +181 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_recommended_subreddits/returns_subreddit_names.yml +37 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_search_subreddits_by_name/returns_subreddit_names.yml +875 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddit/returns_a_specified_subreddit.yml +100 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits/returns_a_specified_number_of_subreddits.yml +505 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits/returns_subreddits_from_a_specific_category.yml +510 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits_by_topic/returns_subreddit_names.yml +41 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribe/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_a_specified_number_of_subreddits.yml +415 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_subreddits_from_a_specific_category.yml +58 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_the_user_s_subscribed_subreddits.yml +3469 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_unsubscribe/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Users/_friends/returns_the_user_s_friends.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_my_content/returns_the_user_s_content.yml +60 -0
- data/spec/cassettes/RedditKit_Client_Users/_user/requests_the_correct_resource.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_user/returns_a_specified_user.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_user/returns_the_authenticated_user.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_user_content/returns_the_user_s_content.yml +41 -0
- data/spec/cassettes/RedditKit_Client_Users/_username_available_/returns_false_for_an_unavailable_username.yml +36 -0
- data/spec/cassettes/RedditKit_Client_Users/_username_available_/returns_true_for_an_available_username.yml +36 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_comment_full_name_passed/downvotes_the_comment.yml +100 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_comment_passed/downvotes_the_comment.yml +154 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_link_full_name_passed/downvotes_the_link.yml +106 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_link_passed/downvotes_the_link.yml +166 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_comment_full_name_passed/upvotes_the_comment.yml +100 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_comment_passed/upvotes_the_comment.yml +154 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_link_full_name_passed/upvotes_the_link.yml +106 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_link_passed/upvotes_the_link.yml +166 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_comment_full_name_passed/withdraws_the_vote_on_the_comment.yml +154 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_comment_passed/withdraws_the_vote_on_the_comment.yml +208 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_link_full_name_passed/withdraws_the_vote_on_the_link.yml +166 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_link_passed/withdraws_the_vote_on_the_link.yml +226 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_add_wiki_editor/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_edit_wiki_page/requests_the_correct_resource.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_hide_wiki_revision/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_remove_wiki_editor/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_revert_to_revision/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Comment/should_not_be_deleted_if_neither_author_and_comment_attributes_are_set_to_deleted_.yml +90 -0
- data/spec/cassettes/RedditKit_Comment/should_return_replies.yml +90 -0
- data/spec/cassettes/authenticated_client.yml +87 -0
- data/spec/redditkit/base_spec.rb +45 -0
- data/spec/redditkit/client/account_spec.rb +50 -0
- data/spec/redditkit/client/apps_spec.rb +58 -0
- data/spec/redditkit/client/captcha_spec.rb +30 -0
- data/spec/redditkit/client/comments_spec.rb +40 -0
- data/spec/redditkit/client/flair_spec.rb +92 -0
- data/spec/redditkit/client/links_spec.rb +103 -0
- data/spec/redditkit/client/miscellaneous_spec.rb +40 -0
- data/spec/redditkit/client/moderation_spec.rb +141 -0
- data/spec/redditkit/client/multireddits_spec.rb +158 -0
- data/spec/redditkit/client/private_messages_spec.rb +51 -0
- data/spec/redditkit/client/search_spec.rb +25 -0
- data/spec/redditkit/client/subreddits_spec.rb +83 -0
- data/spec/redditkit/client/users_spec.rb +92 -0
- data/spec/redditkit/client/voting_spec.rb +99 -0
- data/spec/redditkit/client/wiki_spec.rb +40 -0
- data/spec/redditkit/client_spec.rb +46 -0
- data/spec/redditkit/comment_spec.rb +26 -0
- data/spec/redditkit/creatable_spec.rb +24 -0
- data/spec/redditkit/error_spec.rb +61 -0
- data/spec/redditkit/link_spec.rb +33 -0
- data/spec/redditkit/multireddit_spec.rb +27 -0
- data/spec/redditkit/paginated_response_spec.rb +23 -0
- data/spec/redditkit/thing_spec.rb +18 -0
- data/spec/redditkit/votable_spec.rb +52 -0
- data/spec/redditkit_spec.rb +21 -0
- data/spec/spec_helper.rb +124 -0
- metadata +390 -0
@@ -0,0 +1,49 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://www.reddit.com/api/setflairenabled
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: r=RedditKitTesting&flair_enabled=true
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.8
|
12
|
+
Cookie:
|
13
|
+
- reddit_session=20332937,2013-11-10T11:35:59,2077074c26ccd8ec123c996b77eeb7afb6090af9
|
14
|
+
X-Modhash:
|
15
|
+
- 36zuxndsdf695692a68e32384990478663dadfc30f0a1dd959
|
16
|
+
Content-Type:
|
17
|
+
- application/x-www-form-urlencoded
|
18
|
+
Accept-Encoding:
|
19
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
+
Accept:
|
21
|
+
- "*/*"
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=UTF-8
|
29
|
+
Content-Length:
|
30
|
+
- '248'
|
31
|
+
Cache-Control:
|
32
|
+
- no-cache
|
33
|
+
Pragma:
|
34
|
+
- no-cache
|
35
|
+
Server:
|
36
|
+
- "'; DROP TABLE servertypes; --"
|
37
|
+
Date:
|
38
|
+
- Sun, 10 Nov 2013 19:56:29 GMT
|
39
|
+
Connection:
|
40
|
+
- keep-alive
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: "{\"jquery\": [[0, 1, \"call\", [\"body\"]], [1, 2, \"attr\", \"find\"],
|
44
|
+
[2, 3, \"call\", [\".status\"]], [3, 4, \"attr\", \"hide\"], [4, 5, \"call\",
|
45
|
+
[]], [5, 6, \"attr\", \"html\"], [6, 7, \"call\", [\"\"]], [7, 8, \"attr\",
|
46
|
+
\"end\"], [8, 9, \"call\", []], [0, 10, \"refresh\", []]]}"
|
47
|
+
http_version:
|
48
|
+
recorded_at: Sun, 10 Nov 2013 19:56:28 GMT
|
49
|
+
recorded_with: VCR 2.6.0
|
@@ -0,0 +1,498 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/rising.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:42 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\": \"AdviceAnimals\", \"selftext_html\":
|
39
|
+
null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
40
|
+
null, \"id\": \"1qboeo\", \"secure_media_embed\": {}, \"clicked\": false,
|
41
|
+
\"stickied\": false, \"author\": \"NutchMuch\", \"media\": null, \"score\":
|
42
|
+
2, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
|
43
|
+
\"http://b.thumbs.redditmedia.com/BAD6I7GRdHNv99W7.jpg\", \"subreddit_id\":
|
44
|
+
\"t5_2s7tt\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
45
|
+
null, \"downs\": 0, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/AdviceAnimals/comments/1qboeo/bad_luck_body_wash/\",
|
46
|
+
\"name\": \"t3_1qboeo\", \"created\": 1384142031.0, \"url\": \"http://i.imgur.com/QNA3cRc.jpg\",
|
47
|
+
\"author_flair_text\": null, \"title\": \"Bad Luck Body Wash\", \"created_utc\":
|
48
|
+
1384113231.0, \"ups\": 2, \"num_comments\": 0, \"visited\": false, \"num_reports\":
|
49
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
50
|
+
\"i.imgur.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
51
|
+
\"aww\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
|
52
|
+
null, \"link_flair_text\": null, \"id\": \"1qboez\", \"secure_media_embed\":
|
53
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"starscreamsound\",
|
54
|
+
\"media\": null, \"score\": 2, \"approved_by\": null, \"over_18\": false,
|
55
|
+
\"hidden\": false, \"thumbnail\": \"http://a.thumbs.redditmedia.com/cq_0-38wJO_p1-hT.jpg\",
|
56
|
+
\"subreddit_id\": \"t5_2qh1o\", \"edited\": false, \"link_flair_css_class\":
|
57
|
+
null, \"author_flair_css_class\": null, \"downs\": 0, \"saved\": false, \"is_self\":
|
58
|
+
false, \"permalink\": \"/r/aww/comments/1qboez/they_finally_went_to_sleep/\",
|
59
|
+
\"name\": \"t3_1qboez\", \"created\": 1384142035.0, \"url\": \"http://i.imgur.com/v8bg3Hs.jpg\",
|
60
|
+
\"author_flair_text\": null, \"title\": \"They finally went to sleep\", \"created_utc\":
|
61
|
+
1384113235.0, \"ups\": 2, \"num_comments\": 0, \"visited\": false, \"num_reports\":
|
62
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
63
|
+
\"imgur.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\": \"AdviceAnimals\",
|
64
|
+
\"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
|
65
|
+
null, \"link_flair_text\": null, \"id\": \"1qboeb\", \"secure_media_embed\":
|
66
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"jcmck0320\", \"media\":
|
67
|
+
null, \"score\": 2, \"approved_by\": null, \"over_18\": false, \"hidden\":
|
68
|
+
false, \"thumbnail\": \"http://a.thumbs.redditmedia.com/KoGqsP-8cICSyLeN.jpg\",
|
69
|
+
\"subreddit_id\": \"t5_2s7tt\", \"edited\": false, \"link_flair_css_class\":
|
70
|
+
null, \"author_flair_css_class\": null, \"downs\": 0, \"saved\": false, \"is_self\":
|
71
|
+
false, \"permalink\": \"/r/AdviceAnimals/comments/1qboeb/i_worked_with_this_middleaged_cunt_at_a_deadend/\",
|
72
|
+
\"name\": \"t3_1qboeb\", \"created\": 1384142025.0, \"url\": \"http://imgur.com/gallery/967ZYyG\",
|
73
|
+
\"author_flair_text\": null, \"title\": \"I worked with this middle-aged cunt
|
74
|
+
at a dead-end job.\", \"created_utc\": 1384113225.0, \"ups\": 2, \"num_comments\":
|
75
|
+
1, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
76
|
+
\"t3\", \"data\": {\"domain\": \"imgur.com\", \"banned_by\": null, \"media_embed\":
|
77
|
+
{}, \"subreddit\": \"AdviceAnimals\", \"selftext_html\": null, \"selftext\":
|
78
|
+
\"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\": null,
|
79
|
+
\"id\": \"1qboa1\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
80
|
+
false, \"author\": \"Bigeasy600\", \"media\": null, \"score\": 2, \"approved_by\":
|
81
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"http://c.thumbs.redditmedia.com/_oj8vFVPgjqcExxh.jpg\",
|
82
|
+
\"subreddit_id\": \"t5_2s7tt\", \"edited\": false, \"link_flair_css_class\":
|
83
|
+
null, \"author_flair_css_class\": null, \"downs\": 0, \"saved\": false, \"is_self\":
|
84
|
+
false, \"permalink\": \"/r/AdviceAnimals/comments/1qboa1/my_sister_she_means_well_though/\",
|
85
|
+
\"name\": \"t3_1qboa1\", \"created\": 1384141940.0, \"url\": \"http://imgur.com/Kim2zab\",
|
86
|
+
\"author_flair_text\": null, \"title\": \"My sister. She means well though...\",
|
87
|
+
\"created_utc\": 1384113140.0, \"ups\": 2, \"num_comments\": 1, \"visited\":
|
88
|
+
false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\": \"t3\",
|
89
|
+
\"data\": {\"domain\": \"livememe.com\", \"banned_by\": null, \"media_embed\":
|
90
|
+
{}, \"subreddit\": \"AdviceAnimals\", \"selftext_html\": null, \"selftext\":
|
91
|
+
\"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\": null,
|
92
|
+
\"id\": \"1qbo9z\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
93
|
+
false, \"author\": \"Muffinlette\", \"media\": null, \"score\": 2, \"approved_by\":
|
94
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"http://a.thumbs.redditmedia.com/uWQWdJNSH_OZ7w7r.jpg\",
|
95
|
+
\"subreddit_id\": \"t5_2s7tt\", \"edited\": false, \"link_flair_css_class\":
|
96
|
+
null, \"author_flair_css_class\": null, \"downs\": 0, \"saved\": false, \"is_self\":
|
97
|
+
false, \"permalink\": \"/r/AdviceAnimals/comments/1qbo9z/anytime_i_see_a_picture_of_a_pet_sleeping_byon_a/\",
|
98
|
+
\"name\": \"t3_1qbo9z\", \"created\": 1384141939.0, \"url\": \"http://www.livememe.com/96kd2td.jpg\",
|
99
|
+
\"author_flair_text\": null, \"title\": \"Anytime I see a picture of a pet
|
100
|
+
sleeping by/on a computer.\", \"created_utc\": 1384113139.0, \"ups\": 2, \"num_comments\":
|
101
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
102
|
+
\"t3\", \"data\": {\"domain\": \"i.imgur.com\", \"banned_by\": null, \"media_embed\":
|
103
|
+
{}, \"subreddit\": \"gifs\", \"selftext_html\": null, \"selftext\": \"\",
|
104
|
+
\"likes\": null, \"secure_media\": null, \"link_flair_text\": null, \"id\":
|
105
|
+
\"1qbod5\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
106
|
+
false, \"author\": \"SIThereAndThere\", \"media\": null, \"score\": 2, \"approved_by\":
|
107
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
108
|
+
\"t5_2qt55\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
109
|
+
null, \"downs\": 0, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/gifs/comments/1qbod5/ahh_the_memories/\",
|
110
|
+
\"name\": \"t3_1qbod5\", \"created\": 1384141997.0, \"url\": \"http://i.imgur.com/vaHjD7k.gif\",
|
111
|
+
\"author_flair_text\": null, \"title\": \"Ahh the memories\", \"created_utc\":
|
112
|
+
1384113197.0, \"ups\": 2, \"num_comments\": 0, \"visited\": false, \"num_reports\":
|
113
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
114
|
+
\"i.imgur.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
115
|
+
\"AdviceAnimals\", \"selftext_html\": null, \"selftext\": \"\", \"likes\":
|
116
|
+
null, \"secure_media\": null, \"link_flair_text\": null, \"id\": \"1qbo9n\",
|
117
|
+
\"secure_media_embed\": {}, \"clicked\": false, \"stickied\": false, \"author\":
|
118
|
+
\"Malik112099\", \"media\": null, \"score\": 3, \"approved_by\": null, \"over_18\":
|
119
|
+
false, \"hidden\": false, \"thumbnail\": \"http://f.thumbs.redditmedia.com/Yr9jaMF_XU3UzGQA.jpg\",
|
120
|
+
\"subreddit_id\": \"t5_2s7tt\", \"edited\": false, \"link_flair_css_class\":
|
121
|
+
null, \"author_flair_css_class\": null, \"downs\": 0, \"saved\": false, \"is_self\":
|
122
|
+
false, \"permalink\": \"/r/AdviceAnimals/comments/1qbo9n/i_dont_care_what_any_of_you_say/\",
|
123
|
+
\"name\": \"t3_1qbo9n\", \"created\": 1384141935.0, \"url\": \"http://i.imgur.com/VQmvL9f.jpg\",
|
124
|
+
\"author_flair_text\": null, \"title\": \"I don't care what any of you say\",
|
125
|
+
\"created_utc\": 1384113135.0, \"ups\": 3, \"num_comments\": 0, \"visited\":
|
126
|
+
false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\": \"t3\",
|
127
|
+
\"data\": {\"domain\": \"imgur.com\", \"banned_by\": null, \"media_embed\":
|
128
|
+
{}, \"subreddit\": \"gaming\", \"selftext_html\": null, \"selftext\": \"\",
|
129
|
+
\"likes\": null, \"secure_media\": null, \"link_flair_text\": null, \"id\":
|
130
|
+
\"1qboco\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
131
|
+
false, \"author\": \"5ourcream\", \"media\": null, \"score\": 2, \"approved_by\":
|
132
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"http://e.thumbs.redditmedia.com/ndD0iMNJkqZlGmHd.jpg\",
|
133
|
+
\"subreddit_id\": \"t5_2qh03\", \"edited\": false, \"link_flair_css_class\":
|
134
|
+
null, \"author_flair_css_class\": null, \"downs\": 1, \"saved\": false, \"is_self\":
|
135
|
+
false, \"permalink\": \"/r/gaming/comments/1qboco/gif_big_daddy_on_date_night_credit_to_dorkly/\",
|
136
|
+
\"name\": \"t3_1qboco\", \"created\": 1384141991.0, \"url\": \"http://imgur.com/FH0Lgde\",
|
137
|
+
\"author_flair_text\": null, \"title\": \"[Gif] Big Daddy on Date Night (Credit
|
138
|
+
to Dorkly)\", \"created_utc\": 1384113191.0, \"ups\": 3, \"num_comments\":
|
139
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
140
|
+
\"t3\", \"data\": {\"domain\": \"soundcloud.com\", \"banned_by\": null, \"media_embed\":
|
141
|
+
{\"content\": \"<iframe width=\\\"600\\\" height=\\\"166\\\" scrolling=\\\"no\\\"
|
142
|
+
frameborder=\\\"no\\\" src=\\\"https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F118481496&show_artwork=true&maxwidth=900\\\"></iframe>\",
|
143
|
+
\"width\": 600, \"scrolling\": false, \"height\": 166}, \"subreddit\": \"Music\",
|
144
|
+
\"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
|
145
|
+
{\"type\": \"soundcloud.com\", \"oembed\": {\"provider_url\": \"http://soundcloud.com\",
|
146
|
+
\"description\": \"Yo Grapes started out as a side project of Craig, the drummer
|
147
|
+
of Desmond & the Tutus. After making a bunch of songs in his free time
|
148
|
+
it evolved...\", \"title\": \"You're So Good At Socialising by Yo Grapes\",
|
149
|
+
\"type\": \"rich\", \"thumbnail_width\": 500, \"height\": 166, \"width\":
|
150
|
+
600, \"html\": \"<iframe width=\\\"600\\\" height=\\\"166\\\" scrolling=\\\"no\\\"
|
151
|
+
frameborder=\\\"no\\\" src=\\\"https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F118481496&amp;show_artwork=true&amp;maxwidth=900\\\"></iframe>\",
|
152
|
+
\"author_name\": \"Yo Grapes\", \"version\": \"1.0\", \"provider_name\": \"SoundCloud\",
|
153
|
+
\"thumbnail_url\": \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000061839124-pqjz6e-t500x500.jpg%3F3eddc42&key=b1e305db91cf4aa5a86b732cc9fffceb\",
|
154
|
+
\"thumbnail_height\": 500, \"author_url\": \"http://soundcloud.com/yo-grapes\"}},
|
155
|
+
\"link_flair_text\": null, \"id\": \"1qbobj\", \"secure_media_embed\": {\"content\":
|
156
|
+
\"<iframe width=\\\"600\\\" height=\\\"166\\\" scrolling=\\\"no\\\" frameborder=\\\"no\\\"
|
157
|
+
src=\\\"https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F118481496&amp;show_artwork=true&amp;maxwidth=900\\\"></iframe>\",
|
158
|
+
\"width\": 600, \"scrolling\": false, \"height\": 166}, \"clicked\": false,
|
159
|
+
\"stickied\": false, \"author\": \"captaindyl\", \"media\": {\"type\": \"soundcloud.com\",
|
160
|
+
\"oembed\": {\"provider_url\": \"http://soundcloud.com\", \"description\":
|
161
|
+
\"Yo Grapes started out as a side project of Craig, the drummer of Desmond
|
162
|
+
& the Tutus. After making a bunch of songs in his free time it evolved...\",
|
163
|
+
\"title\": \"You're So Good At Socialising by Yo Grapes\", \"type\": \"rich\",
|
164
|
+
\"thumbnail_width\": 500, \"height\": 166, \"width\": 600, \"html\": \"<iframe
|
165
|
+
width=\\\"600\\\" height=\\\"166\\\" scrolling=\\\"no\\\" frameborder=\\\"no\\\"
|
166
|
+
src=\\\"https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F118481496&show_artwork=true&maxwidth=900\\\"></iframe>\",
|
167
|
+
\"author_name\": \"Yo Grapes\", \"version\": \"1.0\", \"provider_name\": \"SoundCloud\",
|
168
|
+
\"thumbnail_url\": \"http://i1.sndcdn.com/artworks-000061839124-pqjz6e-t500x500.jpg?3eddc42\",
|
169
|
+
\"thumbnail_height\": 500, \"author_url\": \"http://soundcloud.com/yo-grapes\"}},
|
170
|
+
\"score\": 2, \"approved_by\": null, \"over_18\": false, \"hidden\": false,
|
171
|
+
\"thumbnail\": \"\", \"subreddit_id\": \"t5_2qh1u\", \"edited\": false, \"link_flair_css_class\":
|
172
|
+
null, \"author_flair_css_class\": null, \"downs\": 0, \"saved\": false, \"is_self\":
|
173
|
+
false, \"permalink\": \"/r/Music/comments/1qbobj/something_nice_slow_to_end_off_this_sunday_evening/\",
|
174
|
+
\"name\": \"t3_1qbobj\", \"created\": 1384141971.0, \"url\": \"https://soundcloud.com/yo-grapes/youre-so-good-at-socialising\",
|
175
|
+
\"author_flair_text\": null, \"title\": \"Something nice & slow to end
|
176
|
+
off this Sunday evening...\", \"created_utc\": 1384113171.0, \"ups\": 2, \"num_comments\":
|
177
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
178
|
+
\"t3\", \"data\": {\"domain\": \"self.AskReddit\", \"banned_by\": null, \"media_embed\":
|
179
|
+
{}, \"subreddit\": \"AskReddit\", \"selftext_html\": null, \"selftext\": \"\",
|
180
|
+
\"likes\": null, \"secure_media\": null, \"link_flair_text\": null, \"id\":
|
181
|
+
\"1qbodz\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
182
|
+
false, \"author\": \"stol4e\", \"media\": null, \"score\": 3, \"approved_by\":
|
183
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
184
|
+
\"t5_2qh1i\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
185
|
+
null, \"downs\": 0, \"saved\": false, \"is_self\": true, \"permalink\": \"/r/AskReddit/comments/1qbodz/if_you_could_have_one_fictional_character_as/\",
|
186
|
+
\"name\": \"t3_1qbodz\", \"created\": 1384142017.0, \"url\": \"http://www.reddit.com/r/AskReddit/comments/1qbodz/if_you_could_have_one_fictional_character_as/\",
|
187
|
+
\"author_flair_text\": null, \"title\": \"If you could have one fictional
|
188
|
+
character as president of the United States who would it be?\", \"created_utc\":
|
189
|
+
1384113217.0, \"ups\": 3, \"num_comments\": 3, \"visited\": false, \"num_reports\":
|
190
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
191
|
+
\"i.imgur.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
192
|
+
\"pics\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
|
193
|
+
null, \"link_flair_text\": null, \"id\": \"1qboee\", \"secure_media_embed\":
|
194
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"Skissored\", \"media\":
|
195
|
+
null, \"score\": 0, \"approved_by\": null, \"over_18\": false, \"hidden\":
|
196
|
+
false, \"thumbnail\": \"http://c.thumbs.redditmedia.com/bHFx33M0sQs-aWB2.jpg\",
|
197
|
+
\"subreddit_id\": \"t5_2qh0u\", \"edited\": false, \"link_flair_css_class\":
|
198
|
+
null, \"author_flair_css_class\": null, \"downs\": 2, \"saved\": false, \"is_self\":
|
199
|
+
false, \"permalink\": \"/r/pics/comments/1qboee/a_loki_cosplayer_gets_to_ask_tom_hiddleston/\",
|
200
|
+
\"name\": \"t3_1qboee\", \"created\": 1384142026.0, \"url\": \"http://i.imgur.com/ribJGNP.jpg\",
|
201
|
+
\"author_flair_text\": null, \"title\": \"A Loki cosplayer gets to ask Tom
|
202
|
+
Hiddleston himself to do the 'Loki face' to confuse people.\", \"created_utc\":
|
203
|
+
1384113226.0, \"ups\": 2, \"num_comments\": 1, \"visited\": false, \"num_reports\":
|
204
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
205
|
+
\"i.imgur.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
206
|
+
\"pics\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
|
207
|
+
null, \"link_flair_text\": null, \"id\": \"1qbobz\", \"secure_media_embed\":
|
208
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"nwmiller\", \"media\":
|
209
|
+
null, \"score\": 1, \"approved_by\": null, \"over_18\": false, \"hidden\":
|
210
|
+
false, \"thumbnail\": \"http://b.thumbs.redditmedia.com/o0Fye-j0B0triDxg.jpg\",
|
211
|
+
\"subreddit_id\": \"t5_2qh0u\", \"edited\": false, \"link_flair_css_class\":
|
212
|
+
null, \"author_flair_css_class\": null, \"downs\": 1, \"saved\": false, \"is_self\":
|
213
|
+
false, \"permalink\": \"/r/pics/comments/1qbobz/before_and_after_double_jaw_surgery_top_is_prior/\",
|
214
|
+
\"name\": \"t3_1qbobz\", \"created\": 1384141978.0, \"url\": \"http://i.imgur.com/SbxaaQk.png\",
|
215
|
+
\"author_flair_text\": null, \"title\": \"Before and After double jaw surgery.
|
216
|
+
Top is prior to braces, bottom is just before getting braces off (1 year+
|
217
|
+
post surgery)\", \"created_utc\": 1384113178.0, \"ups\": 2, \"num_comments\":
|
218
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
219
|
+
\"t3\", \"data\": {\"domain\": \"self.AskReddit\", \"banned_by\": null, \"media_embed\":
|
220
|
+
{}, \"subreddit\": \"AskReddit\", \"selftext_html\": null, \"selftext\": \"\",
|
221
|
+
\"likes\": null, \"secure_media\": null, \"link_flair_text\": null, \"id\":
|
222
|
+
\"1qbo94\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
223
|
+
false, \"author\": \"Rhyniognatha\", \"media\": null, \"score\": 3, \"approved_by\":
|
224
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
225
|
+
\"t5_2qh1i\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
226
|
+
null, \"downs\": 0, \"saved\": false, \"is_self\": true, \"permalink\": \"/r/AskReddit/comments/1qbo94/what_are_you_suspicious_of_in_todays_society/\",
|
227
|
+
\"name\": \"t3_1qbo94\", \"created\": 1384141925.0, \"url\": \"http://www.reddit.com/r/AskReddit/comments/1qbo94/what_are_you_suspicious_of_in_todays_society/\",
|
228
|
+
\"author_flair_text\": null, \"title\": \"What are you suspicious of in today's
|
229
|
+
society?\", \"created_utc\": 1384113125.0, \"ups\": 3, \"num_comments\": 3,
|
230
|
+
\"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
231
|
+
\"t3\", \"data\": {\"domain\": \"i.imgur.com\", \"banned_by\": null, \"media_embed\":
|
232
|
+
{}, \"subreddit\": \"gaming\", \"selftext_html\": null, \"selftext\": \"\",
|
233
|
+
\"likes\": null, \"secure_media\": null, \"link_flair_text\": null, \"id\":
|
234
|
+
\"1qbodc\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
235
|
+
false, \"author\": \"createdoctober11\", \"media\": null, \"score\": 1, \"approved_by\":
|
236
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"default\", \"subreddit_id\":
|
237
|
+
\"t5_2qh03\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
238
|
+
null, \"downs\": 1, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/gaming/comments/1qbodc/the_empire_truly_is_evil_tiny_death_star_ios/\",
|
239
|
+
\"name\": \"t3_1qbodc\", \"created\": 1384142002.0, \"url\": \"http://i.imgur.com/iwbPVMP.jpg\",
|
240
|
+
\"author_flair_text\": null, \"title\": \"The empire truly is evil... [tiny
|
241
|
+
death star iOS]\", \"created_utc\": 1384113202.0, \"ups\": 2, \"num_comments\":
|
242
|
+
1, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
243
|
+
\"t3\", \"data\": {\"domain\": \"self.explainlikeimfive\", \"banned_by\":
|
244
|
+
null, \"media_embed\": {}, \"subreddit\": \"explainlikeimfive\", \"selftext_html\":
|
245
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>How do hackers
|
246
|
+
discover the vulnerabilities? Why are they in the software to begin with?
|
247
|
+
From what I understand, you have to specifically code a software program so
|
248
|
+
that it will do a specific thing. If the software developer wanted the program
|
249
|
+
to do x and a hacker found a way for the program to do y, is the original
|
250
|
+
programmer making mistakes in his/her code? Please explain it to me...</p>\\n</div><!--
|
251
|
+
SC_ON -->\", \"selftext\": \"How do hackers discover the vulnerabilities?
|
252
|
+
Why are they in the software to begin with? From what I understand, you have
|
253
|
+
to specifically code a software program so that it will do a specific thing.
|
254
|
+
If the software developer wanted the program to do x and a hacker found a
|
255
|
+
way for the program to do y, is the original programmer making mistakes in
|
256
|
+
his/her code? Please explain it to me...\", \"likes\": null, \"secure_media\":
|
257
|
+
null, \"link_flair_text\": null, \"id\": \"1qbof7\", \"secure_media_embed\":
|
258
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"bumgees\", \"media\":
|
259
|
+
null, \"score\": 1, \"approved_by\": null, \"over_18\": false, \"hidden\":
|
260
|
+
false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2sokd\", \"edited\": false,
|
261
|
+
\"link_flair_css_class\": null, \"author_flair_css_class\": null, \"downs\":
|
262
|
+
0, \"saved\": false, \"is_self\": true, \"permalink\": \"/r/explainlikeimfive/comments/1qbof7/eli5_how_do_hackers_use_vulnerabilities_in/\",
|
263
|
+
\"name\": \"t3_1qbof7\", \"created\": 1384142040.0, \"url\": \"http://www.reddit.com/r/explainlikeimfive/comments/1qbof7/eli5_how_do_hackers_use_vulnerabilities_in/\",
|
264
|
+
\"author_flair_text\": null, \"title\": \"ELI5: How do hackers use vulnerabilities
|
265
|
+
in software?\", \"created_utc\": 1384113240.0, \"ups\": 1, \"num_comments\":
|
266
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
267
|
+
\"t3\", \"data\": {\"domain\": \"i.memecaptain.com\", \"banned_by\": null,
|
268
|
+
\"media_embed\": {}, \"subreddit\": \"AdviceAnimals\", \"selftext_html\":
|
269
|
+
null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
270
|
+
null, \"id\": \"1qbodu\", \"secure_media_embed\": {}, \"clicked\": false,
|
271
|
+
\"stickied\": false, \"author\": \"Chronusx\", \"media\": null, \"score\":
|
272
|
+
1, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
|
273
|
+
\"http://b.thumbs.redditmedia.com/8QCwZTBZwIEDvjG7.jpg\", \"subreddit_id\":
|
274
|
+
\"t5_2s7tt\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
275
|
+
null, \"downs\": 0, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/AdviceAnimals/comments/1qbodu/every_time_on_askreddit/\",
|
276
|
+
\"name\": \"t3_1qbodu\", \"created\": 1384142015.0, \"url\": \"http://i.memecaptain.com/gend_images/THaWEA.png\",
|
277
|
+
\"author_flair_text\": null, \"title\": \"Every time on Askreddit\", \"created_utc\":
|
278
|
+
1384113215.0, \"ups\": 1, \"num_comments\": 0, \"visited\": false, \"num_reports\":
|
279
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
280
|
+
\"i.imgur.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
281
|
+
\"aww\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
|
282
|
+
null, \"link_flair_text\": null, \"id\": \"1qboej\", \"secure_media_embed\":
|
283
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"tallproducer\",
|
284
|
+
\"media\": null, \"score\": 1, \"approved_by\": null, \"over_18\": false,
|
285
|
+
\"hidden\": false, \"thumbnail\": \"http://f.thumbs.redditmedia.com/03ktJ1fh1KuYPoKG.jpg\",
|
286
|
+
\"subreddit_id\": \"t5_2qh1o\", \"edited\": false, \"link_flair_css_class\":
|
287
|
+
null, \"author_flair_css_class\": null, \"downs\": 0, \"saved\": false, \"is_self\":
|
288
|
+
false, \"permalink\": \"/r/aww/comments/1qboej/we_put_a_box_to_hold_cords_this_is_the_result/\",
|
289
|
+
\"name\": \"t3_1qboej\", \"created\": 1384142030.0, \"url\": \"http://i.imgur.com/I5ngnLR.jpg\",
|
290
|
+
\"author_flair_text\": null, \"title\": \"We put a box to hold cords. This
|
291
|
+
is the result.\", \"created_utc\": 1384113230.0, \"ups\": 1, \"num_comments\":
|
292
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
293
|
+
\"t3\", \"data\": {\"domain\": \"soundcloud.com\", \"banned_by\": null, \"media_embed\":
|
294
|
+
{\"content\": \"<iframe width=\\\"600\\\" height=\\\"166\\\" scrolling=\\\"no\\\"
|
295
|
+
frameborder=\\\"no\\\" src=\\\"https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F119475155&show_artwork=true&maxwidth=900\\\"></iframe>\",
|
296
|
+
\"width\": 600, \"scrolling\": false, \"height\": 166}, \"subreddit\": \"Music\",
|
297
|
+
\"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
|
298
|
+
{\"oembed\": {\"provider_url\": \"http://soundcloud.com\", \"description\":
|
299
|
+
\"FREE DOWNLOAD www.facebook.com/weareaguaroja/app_208195102528120 www.facebook.com/weareaguaroja
|
300
|
+
twitter.com/weareaguaroja Recorded by Adrien Pallot Mixed by Clement Roussel
|
301
|
+
Mastered by Adrien Pallot Artwork : Jantana\", \"title\": \"Third Eye Vision
|
302
|
+
by Agua Roja\", \"thumbnail_width\": 500, \"height\": 166, \"width\": 600,
|
303
|
+
\"html\": \"<iframe width=\\\"600\\\" height=\\\"166\\\" scrolling=\\\"no\\\"
|
304
|
+
frameborder=\\\"no\\\" src=\\\"https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F119475155&amp;show_artwork=true&amp;maxwidth=900\\\"></iframe>\",
|
305
|
+
\"author_name\": \"Agua Roja\", \"version\": \"1.0\", \"provider_name\": \"SoundCloud\",
|
306
|
+
\"thumbnail_url\": \"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.sndcdn.com%2Fartworks-000062390287-mmcnj6-t500x500.jpg%3F3eddc42&key=b1e305db91cf4aa5a86b732cc9fffceb\",
|
307
|
+
\"type\": \"rich\", \"thumbnail_height\": 500, \"author_url\": \"http://soundcloud.com/agua-roja\"},
|
308
|
+
\"type\": \"soundcloud.com\"}, \"link_flair_text\": null, \"id\": \"1qboei\",
|
309
|
+
\"secure_media_embed\": {\"content\": \"<iframe width=\\\"600\\\" height=\\\"166\\\"
|
310
|
+
scrolling=\\\"no\\\" frameborder=\\\"no\\\" src=\\\"https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F119475155&amp;show_artwork=true&amp;maxwidth=900\\\"></iframe>\",
|
311
|
+
\"width\": 600, \"scrolling\": false, \"height\": 166}, \"clicked\": false,
|
312
|
+
\"stickied\": false, \"author\": \"rockyrama\", \"media\": {\"oembed\": {\"provider_url\":
|
313
|
+
\"http://soundcloud.com\", \"description\": \"FREE DOWNLOAD www.facebook.com/weareaguaroja/app_208195102528120
|
314
|
+
www.facebook.com/weareaguaroja twitter.com/weareaguaroja Recorded by Adrien
|
315
|
+
Pallot Mixed by Clement Roussel Mastered by Adrien Pallot Artwork : Jantana\",
|
316
|
+
\"title\": \"Third Eye Vision by Agua Roja\", \"thumbnail_width\": 500, \"height\":
|
317
|
+
166, \"width\": 600, \"html\": \"<iframe width=\\\"600\\\" height=\\\"166\\\"
|
318
|
+
scrolling=\\\"no\\\" frameborder=\\\"no\\\" src=\\\"https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F119475155&show_artwork=true&maxwidth=900\\\"></iframe>\",
|
319
|
+
\"author_name\": \"Agua Roja\", \"version\": \"1.0\", \"provider_name\": \"SoundCloud\",
|
320
|
+
\"thumbnail_url\": \"http://i1.sndcdn.com/artworks-000062390287-mmcnj6-t500x500.jpg?3eddc42\",
|
321
|
+
\"type\": \"rich\", \"thumbnail_height\": 500, \"author_url\": \"http://soundcloud.com/agua-roja\"},
|
322
|
+
\"type\": \"soundcloud.com\"}, \"score\": 1, \"approved_by\": null, \"over_18\":
|
323
|
+
false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2qh1u\",
|
324
|
+
\"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
325
|
+
null, \"downs\": 0, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/Music/comments/1qboei/best_song_for_a_sunday_agua_roja_third_eye_vision/\",
|
326
|
+
\"name\": \"t3_1qboei\", \"created\": 1384142029.0, \"url\": \"https://soundcloud.com/agua-roja/third-eye-vision\",
|
327
|
+
\"author_flair_text\": null, \"title\": \"Best song for a sunday : Agua Roja
|
328
|
+
- \\\"Third Eye Vision\\\"\", \"created_utc\": 1384113229.0, \"ups\": 1, \"num_comments\":
|
329
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
330
|
+
\"t3\", \"data\": {\"domain\": \"self.AskReddit\", \"banned_by\": null, \"media_embed\":
|
331
|
+
{}, \"subreddit\": \"AskReddit\", \"selftext_html\": \"<!-- SC_OFF --><div
|
332
|
+
class=\\\"md\\\"><p>Curious if there&#39;s any really good ones
|
333
|
+
out there, just to try for fun, maybe to gain something, whatever!</p>\\n</div><!--
|
334
|
+
SC_ON -->\", \"selftext\": \"Curious if there's any really good ones out
|
335
|
+
there, just to try for fun, maybe to gain something, whatever!\", \"likes\":
|
336
|
+
null, \"secure_media\": null, \"link_flair_text\": null, \"id\": \"1qbobw\",
|
337
|
+
\"secure_media_embed\": {}, \"clicked\": false, \"stickied\": false, \"author\":
|
338
|
+
\"dream__weaver\", \"media\": null, \"score\": 2, \"approved_by\": null, \"over_18\":
|
339
|
+
false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2qh1i\",
|
340
|
+
\"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
341
|
+
null, \"downs\": 0, \"saved\": false, \"is_self\": true, \"permalink\": \"/r/AskReddit/comments/1qbobw/whats_the_best_public_psychological_trick_to_pull/\",
|
342
|
+
\"name\": \"t3_1qbobw\", \"created\": 1384141976.0, \"url\": \"http://www.reddit.com/r/AskReddit/comments/1qbobw/whats_the_best_public_psychological_trick_to_pull/\",
|
343
|
+
\"author_flair_text\": null, \"title\": \"What's the best public psychological
|
344
|
+
trick to pull on people?\", \"created_utc\": 1384113176.0, \"ups\": 2, \"num_comments\":
|
345
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
346
|
+
\"t3\", \"data\": {\"domain\": \"youtube.com\", \"banned_by\": null, \"media_embed\":
|
347
|
+
{\"content\": \"<iframe width=\\\"600\\\" height=\\\"450\\\" src=\\\"http://www.youtube.com/embed/K8MkVIe9xGc?feature=oembed\\\"
|
348
|
+
frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"width\": 600,
|
349
|
+
\"scrolling\": false, \"height\": 450}, \"subreddit\": \"Music\", \"selftext_html\":
|
350
|
+
null, \"selftext\": \"\", \"likes\": null, \"secure_media\": {\"oembed\":
|
351
|
+
{\"provider_url\": \"http://www.youtube.com/\", \"description\": \"Refused
|
352
|
+
- New Noise \\u00a9 Burning Heart Records\", \"title\": \"Refused - New Noise\",
|
353
|
+
\"url\": \"http://www.youtube.com/watch?v=K8MkVIe9xGc\", \"author_name\":
|
354
|
+
\"fleskpung\", \"height\": 450, \"width\": 600, \"html\": \"<iframe width=\\\"600\\\"
|
355
|
+
height=\\\"450\\\" src=\\\"https://www.youtube.com/embed/K8MkVIe9xGc?feature=oembed\\\"
|
356
|
+
frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"thumbnail_width\":
|
357
|
+
480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\":
|
358
|
+
\"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FK8MkVIe9xGc%2Fhqdefault.jpg&key=b1e305db91cf4aa5a86b732cc9fffceb\",
|
359
|
+
\"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"http://www.youtube.com/user/fleskpung\"},
|
360
|
+
\"type\": \"youtube.com\"}, \"link_flair_text\": null, \"id\": \"1qbodv\",
|
361
|
+
\"secure_media_embed\": {\"content\": \"<iframe width=\\\"600\\\" height=\\\"450\\\"
|
362
|
+
src=\\\"https://www.youtube.com/embed/K8MkVIe9xGc?feature=oembed\\\" frameborder=\\\"0\\\"
|
363
|
+
allowfullscreen></iframe>\", \"width\": 600, \"scrolling\": false,
|
364
|
+
\"height\": 450}, \"clicked\": false, \"stickied\": false, \"author\": \"william_heath\",
|
365
|
+
\"media\": {\"oembed\": {\"provider_url\": \"http://www.youtube.com/\", \"description\":
|
366
|
+
\"Refused - New Noise \\u00a9 Burning Heart Records\", \"title\": \"Refused
|
367
|
+
- New Noise\", \"url\": \"http://www.youtube.com/watch?v=K8MkVIe9xGc\", \"author_name\":
|
368
|
+
\"fleskpung\", \"height\": 450, \"width\": 600, \"html\": \"<iframe width=\\\"600\\\"
|
369
|
+
height=\\\"450\\\" src=\\\"http://www.youtube.com/embed/K8MkVIe9xGc?feature=oembed\\\"
|
370
|
+
frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"thumbnail_width\":
|
371
|
+
480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\":
|
372
|
+
\"http://i1.ytimg.com/vi/K8MkVIe9xGc/hqdefault.jpg\", \"type\": \"video\",
|
373
|
+
\"thumbnail_height\": 360, \"author_url\": \"http://www.youtube.com/user/fleskpung\"},
|
374
|
+
\"type\": \"youtube.com\"}, \"score\": 1, \"approved_by\": null, \"over_18\":
|
375
|
+
false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2qh1u\",
|
376
|
+
\"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
377
|
+
null, \"downs\": 0, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/Music/comments/1qbodv/refusednew_noise/\",
|
378
|
+
\"name\": \"t3_1qbodv\", \"created\": 1384142016.0, \"url\": \"http://www.youtube.com/watch?v=K8MkVIe9xGc\",
|
379
|
+
\"author_flair_text\": null, \"title\": \"Refused-New Noise\", \"created_utc\":
|
380
|
+
1384113216.0, \"ups\": 1, \"num_comments\": 0, \"visited\": false, \"num_reports\":
|
381
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
382
|
+
\"self.gaming\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
383
|
+
\"gaming\", \"selftext_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Hi
|
384
|
+
everyone! I am looking to get into gaming more since my indoor entertainment
|
385
|
+
currently consists of redditing with background TV, which I am getting pretty
|
386
|
+
bored of, and I want to spice it up. The thing is that, despite owning consoles
|
387
|
+
for most of my life, I have never really gotten into video games outside of
|
388
|
+
playing super casually with friends. I have tried a few times to commit to
|
389
|
+
playing a longer game and usually end up getting stuck on some puzzle or something
|
390
|
+
pretty early on. This then causes me to either stop playing out of frustration
|
391
|
+
or to look up most of the solutions online, which is just not very fun. So,
|
392
|
+
because of that, I have always considered myself to not like videogames very
|
393
|
+
much. But I recently realized that it is completely possible that I just have
|
394
|
+
been playing the wrong games, which is why I am here for help! </p>\\n\\n<p>I
|
395
|
+
played enough games as a kid (I&#39;m 22 now, this was like back in middle
|
396
|
+
school) to have some idea of my preferences, so hopefully this can help narrow
|
397
|
+
it down. My favorite game of all time was SSX3 for PS2, I played that game
|
398
|
+
so much we ended up breaking the disk. I also remember enjoying beating the
|
399
|
+
Jak and Daxter games my friend lent me once, I liked the storyline and the
|
400
|
+
games felt challenging but also intuitive and not impossibly frustrating.
|
401
|
+
I also like Mario Kart and Super Smash when I play with friends, although
|
402
|
+
I am pretty terrible at both. I do not like shooting games very much... my
|
403
|
+
friends always loved Nightfire and COD and the like and I just never had much
|
404
|
+
fun with those. </p>\\n\\n<p>I am definitely looking for something
|
405
|
+
with a good storyline that I can get into, but I want it to be fun and not
|
406
|
+
overly complex. So... does anyone have any recommendations of games I would
|
407
|
+
like?? I currently have an XBox 360 I share with my brother, so help me find
|
408
|
+
some games for it! Thanks doods</p>\\n</div><!-- SC_ON -->\",
|
409
|
+
\"selftext\": \"Hi everyone! I am looking to get into gaming more since my
|
410
|
+
indoor entertainment currently consists of redditing with background TV, which
|
411
|
+
I am getting pretty bored of, and I want to spice it up. The thing is that,
|
412
|
+
despite owning consoles for most of my life, I have never really gotten into
|
413
|
+
video games outside of playing super casually with friends. I have tried a
|
414
|
+
few times to commit to playing a longer game and usually end up getting stuck
|
415
|
+
on some puzzle or something pretty early on. This then causes me to either
|
416
|
+
stop playing out of frustration or to look up most of the solutions online,
|
417
|
+
which is just not very fun. So, because of that, I have always considered
|
418
|
+
myself to not like videogames very much. But I recently realized that it is
|
419
|
+
completely possible that I just have been playing the wrong games, which is
|
420
|
+
why I am here for help! \\n\\nI played enough games as a kid (I'm 22 now,
|
421
|
+
this was like back in middle school) to have some idea of my preferences,
|
422
|
+
so hopefully this can help narrow it down. My favorite game of all time was
|
423
|
+
SSX3 for PS2, I played that game so much we ended up breaking the disk. I
|
424
|
+
also remember enjoying beating the Jak and Daxter games my friend lent me
|
425
|
+
once, I liked the storyline and the games felt challenging but also intuitive
|
426
|
+
and not impossibly frustrating. I also like Mario Kart and Super Smash when
|
427
|
+
I play with friends, although I am pretty terrible at both. I do not like
|
428
|
+
shooting games very much... my friends always loved Nightfire and COD and
|
429
|
+
the like and I just never had much fun with those. \\n\\nI am definitely looking
|
430
|
+
for something with a good storyline that I can get into, but I want it to
|
431
|
+
be fun and not overly complex. So... does anyone have any recommendations
|
432
|
+
of games I would like?? I currently have an XBox 360 I share with my brother,
|
433
|
+
so help me find some games for it! Thanks doods\", \"likes\": null, \"secure_media\":
|
434
|
+
null, \"link_flair_text\": null, \"id\": \"1qboc9\", \"secure_media_embed\":
|
435
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"slamdawgmillionaire\",
|
436
|
+
\"media\": null, \"score\": 2, \"approved_by\": null, \"over_18\": false,
|
437
|
+
\"hidden\": false, \"thumbnail\": \"self\", \"subreddit_id\": \"t5_2qh03\",
|
438
|
+
\"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
439
|
+
null, \"downs\": 0, \"saved\": false, \"is_self\": true, \"permalink\": \"/r/gaming/comments/1qboc9/looking_to_get_into_gaming_need_some_advice_about/\",
|
440
|
+
\"name\": \"t3_1qboc9\", \"created\": 1384141984.0, \"url\": \"http://www.reddit.com/r/gaming/comments/1qboc9/looking_to_get_into_gaming_need_some_advice_about/\",
|
441
|
+
\"author_flair_text\": null, \"title\": \"Looking to get into gaming- need
|
442
|
+
some advice about games I will like\", \"created_utc\": 1384113184.0, \"ups\":
|
443
|
+
2, \"num_comments\": 0, \"visited\": false, \"num_reports\": null, \"distinguished\":
|
444
|
+
null}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"imgur.com\", \"banned_by\":
|
445
|
+
null, \"media_embed\": {}, \"subreddit\": \"AdviceAnimals\", \"selftext_html\":
|
446
|
+
null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
447
|
+
null, \"id\": \"1qboaz\", \"secure_media_embed\": {}, \"clicked\": false,
|
448
|
+
\"stickied\": false, \"author\": \"natch22\", \"media\": null, \"score\":
|
449
|
+
1, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
|
450
|
+
\"http://a.thumbs.redditmedia.com/kqYe59EOp0Q36yql.jpg\", \"subreddit_id\":
|
451
|
+
\"t5_2s7tt\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
452
|
+
null, \"downs\": 1, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/AdviceAnimals/comments/1qboaz/been_noticing_this_problem/\",
|
453
|
+
\"name\": \"t3_1qboaz\", \"created\": 1384141962.0, \"url\": \"http://imgur.com/z8p8vWS\",
|
454
|
+
\"author_flair_text\": null, \"title\": \"Been noticing this problem\", \"created_utc\":
|
455
|
+
1384113162.0, \"ups\": 2, \"num_comments\": 0, \"visited\": false, \"num_reports\":
|
456
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
457
|
+
\"youtube.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
458
|
+
\"Music\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
|
459
|
+
null, \"link_flair_text\": null, \"id\": \"1qbode\", \"secure_media_embed\":
|
460
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"beyondthestar\",
|
461
|
+
\"media\": null, \"score\": 1, \"approved_by\": null, \"over_18\": false,
|
462
|
+
\"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2qh1u\", \"edited\":
|
463
|
+
false, \"link_flair_css_class\": null, \"author_flair_css_class\": null, \"downs\":
|
464
|
+
0, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/Music/comments/1qbode/sound_tourist_time_travel_i_love_those_oldschool/\",
|
465
|
+
\"name\": \"t3_1qbode\", \"created\": 1384142003.0, \"url\": \"http://www.youtube.com/attribution_link?a=49zlTunVIfi-AqaF68PCUw&u=%2Fwatch%3Fv%3D1ww7_EG9oN8%26feature%3Dshare\",
|
466
|
+
\"author_flair_text\": null, \"title\": \"Sound Tourist - Time Travel ///
|
467
|
+
i love those oldschool sounds, reminds me on better times :)))\", \"created_utc\":
|
468
|
+
1384113203.0, \"ups\": 1, \"num_comments\": 0, \"visited\": false, \"num_reports\":
|
469
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
470
|
+
\"imgur.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\": \"aww\",
|
471
|
+
\"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
|
472
|
+
null, \"link_flair_text\": null, \"id\": \"1qbobk\", \"secure_media_embed\":
|
473
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"polishgangster\",
|
474
|
+
\"media\": null, \"score\": 1, \"approved_by\": null, \"over_18\": false,
|
475
|
+
\"hidden\": false, \"thumbnail\": \"http://d.thumbs.redditmedia.com/TwEHuppe4UwtT41c.jpg\",
|
476
|
+
\"subreddit_id\": \"t5_2qh1o\", \"edited\": false, \"link_flair_css_class\":
|
477
|
+
null, \"author_flair_css_class\": null, \"downs\": 0, \"saved\": false, \"is_self\":
|
478
|
+
false, \"permalink\": \"/r/aww/comments/1qbobk/reddit_i_present_to_you_gandalf_the_grey/\",
|
479
|
+
\"name\": \"t3_1qbobk\", \"created\": 1384141972.0, \"url\": \"http://imgur.com/g3jOp3J\",
|
480
|
+
\"author_flair_text\": null, \"title\": \"Reddit I present to you \\\"Gandalf
|
481
|
+
the Grey\\\"\", \"created_utc\": 1384113172.0, \"ups\": 1, \"num_comments\":
|
482
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
483
|
+
\"t3\", \"data\": {\"domain\": \"imgur.com\", \"banned_by\": null, \"media_embed\":
|
484
|
+
{}, \"subreddit\": \"pics\", \"selftext_html\": null, \"selftext\": \"\",
|
485
|
+
\"likes\": null, \"secure_media\": null, \"link_flair_text\": null, \"id\":
|
486
|
+
\"1qbofa\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
487
|
+
false, \"author\": \"sexysoccerchick12\", \"media\": null, \"score\": 0, \"approved_by\":
|
488
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"http://b.thumbs.redditmedia.com/w4_Ic_e2b767CwYs.jpg\",
|
489
|
+
\"subreddit_id\": \"t5_2qh0u\", \"edited\": false, \"link_flair_css_class\":
|
490
|
+
null, \"author_flair_css_class\": null, \"downs\": 2, \"saved\": false, \"is_self\":
|
491
|
+
false, \"permalink\": \"/r/pics/comments/1qbofa/bellingham_bay/\", \"name\":
|
492
|
+
\"t3_1qbofa\", \"created\": 1384142041.0, \"url\": \"http://imgur.com/zY3Zwmf\",
|
493
|
+
\"author_flair_text\": null, \"title\": \"Bellingham Bay\", \"created_utc\":
|
494
|
+
1384113241.0, \"ups\": 2, \"num_comments\": 0, \"visited\": false, \"num_reports\":
|
495
|
+
null, \"distinguished\": null}}], \"after\": \"t3_1qbofa\", \"before\": null}}"
|
496
|
+
http_version:
|
497
|
+
recorded_at: Sun, 10 Nov 2013 19:56:41 GMT
|
498
|
+
recorded_with: VCR 2.6.0
|