redditkit 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- 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,46 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://www.reddit.com/api/hide
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: id=t3_1n002d
|
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
|
+
- '2'
|
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:47 GMT
|
39
|
+
Connection:
|
40
|
+
- keep-alive
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: "{}"
|
44
|
+
http_version:
|
45
|
+
recorded_at: Sun, 10 Nov 2013 19:56:46 GMT
|
46
|
+
recorded_with: VCR 2.6.0
|
@@ -0,0 +1,55 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/api/info.json?id=t3_1n002d
|
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:46 GMT
|
29
|
+
Content-Length:
|
30
|
+
- '1378'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
body:
|
34
|
+
encoding: UTF-8
|
35
|
+
string: "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"children\":
|
36
|
+
[{\"kind\": \"t3\", \"data\": {\"domain\": \"self.RedditKitTesting\", \"banned_by\":
|
37
|
+
null, \"media_embed\": {}, \"subreddit\": \"RedditKitTesting\", \"selftext_html\":
|
38
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>Here&#39;s
|
39
|
+
a test self post. This will never be deleted and can be used to test voting/saving/hiding.</p>\\n</div><!--
|
40
|
+
SC_ON -->\", \"selftext\": \"Here's a test self post. This will never be
|
41
|
+
deleted and can be used to test voting/saving/hiding.\", \"likes\": null,
|
42
|
+
\"secure_media\": null, \"link_flair_text\": \"Test flair\", \"id\": \"1n002d\",
|
43
|
+
\"secure_media_embed\": {}, \"clicked\": false, \"stickied\": false, \"author\":
|
44
|
+
\"samsymons\", \"media\": null, \"score\": 1, \"approved_by\": null, \"over_18\":
|
45
|
+
true, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2ylc5\",
|
46
|
+
\"edited\": 1382729104.0, \"link_flair_css_class\": \"testclass\", \"author_flair_css_class\":
|
47
|
+
\"csvclass\", \"downs\": 1, \"saved\": false, \"is_self\": true, \"permalink\":
|
48
|
+
\"/r/RedditKitTesting/comments/1n002d/test_self_post/\", \"name\": \"t3_1n002d\",
|
49
|
+
\"created\": 1379988320.0, \"url\": \"http://www.reddit.com/r/RedditKitTesting/comments/1n002d/test_self_post/\",
|
50
|
+
\"author_flair_text\": \"Test CSV\", \"title\": \"Test self post\", \"created_utc\":
|
51
|
+
1379984720.0, \"ups\": 2, \"num_comments\": 3, \"visited\": false, \"num_reports\":
|
52
|
+
null, \"distinguished\": null}}], \"after\": null, \"before\": null}}"
|
53
|
+
http_version:
|
54
|
+
recorded_at: Sun, 10 Nov 2013 19:56:45 GMT
|
55
|
+
recorded_with: VCR 2.6.0
|
@@ -0,0 +1,402 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/r/programming/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:46 GMT
|
29
|
+
Content-Length:
|
30
|
+
- '28577'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
body:
|
34
|
+
encoding: UTF-8
|
35
|
+
string: "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"children\":
|
36
|
+
[{\"kind\": \"t3\", \"data\": {\"domain\": \"ruoyusun.com\", \"banned_by\":
|
37
|
+
null, \"media_embed\": {}, \"subreddit\": \"programming\", \"selftext_html\":
|
38
|
+
null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
39
|
+
null, \"id\": \"1qb2q2\", \"secure_media_embed\": {}, \"clicked\": false,
|
40
|
+
\"stickied\": false, \"author\": \"insraq\", \"media\": null, \"score\": 117,
|
41
|
+
\"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
|
42
|
+
\"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false, \"link_flair_css_class\":
|
43
|
+
null, \"author_flair_css_class\": null, \"downs\": 50, \"saved\": false, \"is_self\":
|
44
|
+
false, \"permalink\": \"/r/programming/comments/1qb2q2/scala_is_not_java_glue/\",
|
45
|
+
\"name\": \"t3_1qb2q2\", \"created\": 1384123369.0, \"url\": \"http://ruoyusun.com/2013/11/10/scala-is-not-java-glue.html\",
|
46
|
+
\"author_flair_text\": null, \"title\": \"Scala is Not Java Glue\", \"created_utc\":
|
47
|
+
1384094569.0, \"ups\": 167, \"num_comments\": 55, \"visited\": false, \"num_reports\":
|
48
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
49
|
+
\"programmableweb.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
50
|
+
\"programming\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null,
|
51
|
+
\"secure_media\": null, \"link_flair_text\": null, \"id\": \"1qbabt\", \"secure_media_embed\":
|
52
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"mycall\", \"media\":
|
53
|
+
null, \"score\": 33, \"approved_by\": null, \"over_18\": false, \"hidden\":
|
54
|
+
false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false,
|
55
|
+
\"link_flair_css_class\": null, \"author_flair_css_class\": null, \"downs\":
|
56
|
+
9, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1qbabt/the_ultimate_web_api_directory_over_10k_large/\",
|
57
|
+
\"name\": \"t3_1qbabt\", \"created\": 1384130983.0, \"url\": \"http://www.programmableweb.com/apis/directory\",
|
58
|
+
\"author_flair_text\": null, \"title\": \"The Ultimate Web API Directory,
|
59
|
+
over 10k large.\", \"created_utc\": 1384102183.0, \"ups\": 42, \"num_comments\":
|
60
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
61
|
+
\"t3\", \"data\": {\"domain\": \"en.wikipedia.org\", \"banned_by\": null,
|
62
|
+
\"media_embed\": {}, \"subreddit\": \"programming\", \"selftext_html\": null,
|
63
|
+
\"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
64
|
+
null, \"id\": \"1qb8er\", \"secure_media_embed\": {}, \"clicked\": false,
|
65
|
+
\"stickied\": false, \"author\": \"sanity\", \"media\": null, \"score\": 31,
|
66
|
+
\"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
|
67
|
+
\"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false, \"link_flair_css_class\":
|
68
|
+
null, \"author_flair_css_class\": null, \"downs\": 22, \"saved\": false, \"is_self\":
|
69
|
+
false, \"permalink\": \"/r/programming/comments/1qb8er/in_addition_to_branch_prediction_and_caching_what/\",
|
70
|
+
\"name\": \"t3_1qb8er\", \"created\": 1384129238.0, \"url\": \"http://en.wikipedia.org/wiki/Branch_predictor\",
|
71
|
+
\"author_flair_text\": null, \"title\": \"In addition to branch prediction
|
72
|
+
and caching, what other aspects of modern computer architecture should programmers
|
73
|
+
be aware of when writing efficient code?\", \"created_utc\": 1384100438.0,
|
74
|
+
\"ups\": 53, \"num_comments\": 58, \"visited\": false, \"num_reports\": null,
|
75
|
+
\"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"prog21.dadgum.com\",
|
76
|
+
\"banned_by\": null, \"media_embed\": {}, \"subreddit\": \"programming\",
|
77
|
+
\"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
|
78
|
+
null, \"link_flair_text\": null, \"id\": \"1qa3v7\", \"secure_media_embed\":
|
79
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"mwandee\", \"media\":
|
80
|
+
null, \"score\": 459, \"approved_by\": null, \"over_18\": false, \"hidden\":
|
81
|
+
false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false,
|
82
|
+
\"link_flair_css_class\": null, \"author_flair_css_class\": null, \"downs\":
|
83
|
+
193, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1qa3v7/dont_fall_in_love_with_your_technology/\",
|
84
|
+
\"name\": \"t3_1qa3v7\", \"created\": 1384075861.0, \"url\": \"http://prog21.dadgum.com/128.html?classic\",
|
85
|
+
\"author_flair_text\": null, \"title\": \"Don't Fall in Love With Your Technology\",
|
86
|
+
\"created_utc\": 1384047061.0, \"ups\": 652, \"num_comments\": 215, \"visited\":
|
87
|
+
false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\": \"t3\",
|
88
|
+
\"data\": {\"domain\": \"joshuakemp.blogspot.com\", \"banned_by\": null, \"media_embed\":
|
89
|
+
{}, \"subreddit\": \"programming\", \"selftext_html\": null, \"selftext\":
|
90
|
+
\"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\": null,
|
91
|
+
\"id\": \"1qagi2\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
92
|
+
false, \"author\": \"BotCoin\", \"media\": null, \"score\": 201, \"approved_by\":
|
93
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
94
|
+
\"t5_2fwo\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
95
|
+
null, \"downs\": 95, \"saved\": false, \"is_self\": false, \"permalink\":
|
96
|
+
\"/r/programming/comments/1qagi2/how_a_blacksmith_learned_to_code/\", \"name\":
|
97
|
+
\"t3_1qagi2\", \"created\": 1384087753.0, \"url\": \"http://joshuakemp.blogspot.com/2013/11/how-blacksmith-learned-to-code-and-9.html\",
|
98
|
+
\"author_flair_text\": null, \"title\": \"How a blacksmith learned to code\",
|
99
|
+
\"created_utc\": 1384058953.0, \"ups\": 296, \"num_comments\": 85, \"visited\":
|
100
|
+
false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\": \"t3\",
|
101
|
+
\"data\": {\"domain\": \"blog.hvidtfeldts.net\", \"banned_by\": null, \"media_embed\":
|
102
|
+
{}, \"subreddit\": \"programming\", \"selftext_html\": null, \"selftext\":
|
103
|
+
\"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\": null,
|
104
|
+
\"id\": \"1qbby0\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
105
|
+
false, \"author\": \"sidcool1234\", \"media\": null, \"score\": 12, \"approved_by\":
|
106
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
107
|
+
\"t5_2fwo\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
108
|
+
null, \"downs\": 4, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1qbby0/the_mandelbulb/\",
|
109
|
+
\"name\": \"t3_1qbby0\", \"created\": 1384132350.0, \"url\": \"http://blog.hvidtfeldts.net/index.php/category/mandelbulb/\",
|
110
|
+
\"author_flair_text\": null, \"title\": \"The Mandelbulb\", \"created_utc\":
|
111
|
+
1384103550.0, \"ups\": 16, \"num_comments\": 1, \"visited\": false, \"num_reports\":
|
112
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
113
|
+
\"speakerdeck.com\", \"banned_by\": null, \"media_embed\": {\"content\": \"<iframe
|
114
|
+
allowfullscreen=\\\"true\\\" allowtransparency=\\\"true\\\" frameborder=\\\"0\\\"
|
115
|
+
height=\\\"704\\\" id=\\\"talk_frame_62623\\\" mozallowfullscreen=\\\"true\\\"
|
116
|
+
src=\\\"http://speakerdeck.com/player/ee88fcf0e4010130a0b1566329155b74\\\"
|
117
|
+
style=\\\"border:0; padding:0; margin:0; background:transparent;\\\" webkitallowfullscreen=\\\"true\\\"
|
118
|
+
width=\\\"600\\\"></iframe>\", \"width\": 600, \"scrolling\": false,
|
119
|
+
\"height\": 704}, \"subreddit\": \"programming\", \"selftext_html\": null,
|
120
|
+
\"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
121
|
+
null, \"id\": \"1qapyd\", \"secure_media_embed\": {}, \"clicked\": false,
|
122
|
+
\"stickied\": false, \"author\": \"mariuz\", \"media\": {\"oembed\": {\"provider_url\":
|
123
|
+
\"https://speakerdeck.com/\", \"description\": \"We all know that Python is
|
124
|
+
the best language there is, right? Well, we Pythonistas might know that, but
|
125
|
+
the world of Mobile development has passed Python by. Apple's iOS platform
|
126
|
+
and Google's Android platform have chosen Objective-C and Java respectively
|
127
|
+
as their preferred languages.\", \"title\": \"Android: The Land that Python
|
128
|
+
Forgot? (Christopher Neugebauer)\", \"thumbnail_width\": 210, \"height\":
|
129
|
+
704, \"width\": 600, \"html\": \"<iframe allowfullscreen=\\\"true\\\" allowtransparency=\\\"true\\\"
|
130
|
+
frameborder=\\\"0\\\" height=\\\"704\\\" id=\\\"talk_frame_62623\\\" mozallowfullscreen=\\\"true\\\"
|
131
|
+
src=\\\"http://speakerdeck.com/player/ee88fcf0e4010130a0b1566329155b74\\\"
|
132
|
+
style=\\\"border:0; padding:0; margin:0; background:transparent;\\\" webkitallowfullscreen=\\\"true\\\"
|
133
|
+
width=\\\"600\\\"></iframe>\", \"author_name\": \"PyCon Canada\",
|
134
|
+
\"version\": \"1.0\", \"provider_name\": \"Speaker Deck\", \"thumbnail_url\":
|
135
|
+
\"https://speakerd.s3.amazonaws.com/presentations/ee88fcf0e4010130a0b1566329155b74/thumb_slide_0.jpg\",
|
136
|
+
\"type\": \"rich\", \"thumbnail_height\": 157, \"author_url\": \"https://speakerdeck.com/pyconca\"},
|
137
|
+
\"type\": \"speakerdeck.com\"}, \"score\": 20, \"approved_by\": null, \"over_18\":
|
138
|
+
false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2fwo\",
|
139
|
+
\"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
140
|
+
null, \"downs\": 21, \"saved\": false, \"is_self\": false, \"permalink\":
|
141
|
+
\"/r/programming/comments/1qapyd/android_the_land_that_python_forgot/\", \"name\":
|
142
|
+
\"t3_1qapyd\", \"created\": 1384099861.0, \"url\": \"https://speakerdeck.com/pyconca/android-the-land-that-python-forgot-christopher-neugebauer\",
|
143
|
+
\"author_flair_text\": null, \"title\": \"Android: The Land That Python Forgot\",
|
144
|
+
\"created_utc\": 1384071061.0, \"ups\": 41, \"num_comments\": 10, \"visited\":
|
145
|
+
false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\": \"t3\",
|
146
|
+
\"data\": {\"domain\": \"wired.com\", \"banned_by\": null, \"media_embed\":
|
147
|
+
{}, \"subreddit\": \"programming\", \"selftext_html\": null, \"selftext\":
|
148
|
+
\"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\": null,
|
149
|
+
\"id\": \"1q8p7h\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
150
|
+
false, \"author\": \"mahamara\", \"media\": null, \"score\": 713, \"approved_by\":
|
151
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
152
|
+
\"t5_2fwo\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
153
|
+
null, \"downs\": 409, \"saved\": false, \"is_self\": false, \"permalink\":
|
154
|
+
\"/r/programming/comments/1q8p7h/like_a_good_scotch_developers_get_better_with_age/\",
|
155
|
+
\"name\": \"t3_1q8p7h\", \"created\": 1384026946.0, \"url\": \"http://www.wired.com/wiredenterprise/2013/04/developers-age/\",
|
156
|
+
\"author_flair_text\": null, \"title\": \"Like a Good Scotch, Developers Get
|
157
|
+
Better With Age\", \"created_utc\": 1383998146.0, \"ups\": 1122, \"num_comments\":
|
158
|
+
368, \"visited\": false, \"num_reports\": null, \"distinguished\": null}},
|
159
|
+
{\"kind\": \"t3\", \"data\": {\"domain\": \"cs.brown.edu\", \"banned_by\":
|
160
|
+
null, \"media_embed\": {}, \"subreddit\": \"programming\", \"selftext_html\":
|
161
|
+
null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
162
|
+
null, \"id\": \"1qb8nz\", \"secure_media_embed\": {}, \"clicked\": false,
|
163
|
+
\"stickied\": false, \"author\": \"tel\", \"media\": null, \"score\": 3, \"approved_by\":
|
164
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
165
|
+
\"t5_2fwo\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
166
|
+
null, \"downs\": 4, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1qb8nz/python_the_full_monty_a_tested_smallstep_semantics/\",
|
167
|
+
\"name\": \"t3_1qb8nz\", \"created\": 1384129509.0, \"url\": \"http://cs.brown.edu/~sk/Publications/Papers/Published/pmmwplck-python-full-monty/paper.pdf\",
|
168
|
+
\"author_flair_text\": null, \"title\": \"Python: The Full Monty (A Tested
|
169
|
+
Small-Step Semantics)\", \"created_utc\": 1384100709.0, \"ups\": 7, \"num_comments\":
|
170
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
171
|
+
\"t3\", \"data\": {\"domain\": \"mscharhag.com\", \"banned_by\": null, \"media_embed\":
|
172
|
+
{}, \"subreddit\": \"programming\", \"selftext_html\": null, \"selftext\":
|
173
|
+
\"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\": null,
|
174
|
+
\"id\": \"1qasm7\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
175
|
+
false, \"author\": \"michschar\", \"media\": null, \"score\": 8, \"approved_by\":
|
176
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
177
|
+
\"t5_2fwo\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
178
|
+
null, \"downs\": 11, \"saved\": false, \"is_self\": false, \"permalink\":
|
179
|
+
\"/r/programming/comments/1qasm7/groovys_magical_nullobject/\", \"name\":
|
180
|
+
\"t3_1qasm7\", \"created\": 1384105104.0, \"url\": \"http://www.mscharhag.com/2013/11/groovys-magical-nullobject.html\",
|
181
|
+
\"author_flair_text\": null, \"title\": \"Groovy's magical NullObject\", \"created_utc\":
|
182
|
+
1384076304.0, \"ups\": 19, \"num_comments\": 7, \"visited\": false, \"num_reports\":
|
183
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
184
|
+
\"phoronix.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
185
|
+
\"programming\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null,
|
186
|
+
\"secure_media\": null, \"link_flair_text\": null, \"id\": \"1qalbw\", \"secure_media_embed\":
|
187
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"dgryski\", \"media\":
|
188
|
+
null, \"score\": 15, \"approved_by\": null, \"over_18\": false, \"hidden\":
|
189
|
+
false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false,
|
190
|
+
\"link_flair_css_class\": null, \"author_flair_css_class\": null, \"downs\":
|
191
|
+
19, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1qalbw/phoronix_gcc_looks_to_turn_off_java_replace_with/\",
|
192
|
+
\"name\": \"t3_1qalbw\", \"created\": 1384093170.0, \"url\": \"http://www.phoronix.com/scan.php?page=news_item&px=MTUwOTA\",
|
193
|
+
\"author_flair_text\": null, \"title\": \"[Phoronix] GCC Looks To Turn Off
|
194
|
+
Java, Replace With Go Or ADA\", \"created_utc\": 1384064370.0, \"ups\": 34,
|
195
|
+
\"num_comments\": 9, \"visited\": false, \"num_reports\": null, \"distinguished\":
|
196
|
+
null}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"pyret.org\", \"banned_by\":
|
197
|
+
null, \"media_embed\": {}, \"subreddit\": \"programming\", \"selftext_html\":
|
198
|
+
null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
199
|
+
null, \"id\": \"1q8zzk\", \"secure_media_embed\": {}, \"clicked\": false,
|
200
|
+
\"stickied\": false, \"author\": \"welle\", \"media\": null, \"score\": 195,
|
201
|
+
\"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
|
202
|
+
\"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false, \"link_flair_css_class\":
|
203
|
+
null, \"author_flair_css_class\": null, \"downs\": 53, \"saved\": false, \"is_self\":
|
204
|
+
false, \"permalink\": \"/r/programming/comments/1q8zzk/pyret_a_new_programming_language_from_the/\",
|
205
|
+
\"name\": \"t3_1q8zzk\", \"created\": 1384041618.0, \"url\": \"http://www.pyret.org/\",
|
206
|
+
\"author_flair_text\": null, \"title\": \"Pyret: A new programming language
|
207
|
+
from the creators of Racket\", \"created_utc\": 1384012818.0, \"ups\": 248,
|
208
|
+
\"num_comments\": 148, \"visited\": false, \"num_reports\": null, \"distinguished\":
|
209
|
+
null}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"ionrock.org\", \"banned_by\":
|
210
|
+
null, \"media_embed\": {}, \"subreddit\": \"programming\", \"selftext_html\":
|
211
|
+
null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
212
|
+
null, \"id\": \"1qbo0r\", \"secure_media_embed\": {}, \"clicked\": false,
|
213
|
+
\"stickied\": false, \"author\": \"nohtyp\", \"media\": null, \"score\": 1,
|
214
|
+
\"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
|
215
|
+
\"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false, \"link_flair_css_class\":
|
216
|
+
null, \"author_flair_css_class\": null, \"downs\": 0, \"saved\": false, \"is_self\":
|
217
|
+
false, \"permalink\": \"/r/programming/comments/1qbo0r/framework_frustration/\",
|
218
|
+
\"name\": \"t3_1qbo0r\", \"created\": 1384141736.0, \"url\": \"http://ionrock.org/2013/10/24/framework_frustration.html\",
|
219
|
+
\"author_flair_text\": null, \"title\": \"Framework Frustration\", \"created_utc\":
|
220
|
+
1384112936.0, \"ups\": 1, \"num_comments\": 0, \"visited\": false, \"num_reports\":
|
221
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
222
|
+
\"jakevdp.github.io\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
223
|
+
\"programming\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null,
|
224
|
+
\"secure_media\": null, \"link_flair_text\": null, \"id\": \"1q91mb\", \"secure_media_embed\":
|
225
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"welle\", \"media\":
|
226
|
+
null, \"score\": 99, \"approved_by\": null, \"over_18\": false, \"hidden\":
|
227
|
+
false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false,
|
228
|
+
\"link_flair_css_class\": null, \"author_flair_css_class\": null, \"downs\":
|
229
|
+
33, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1q91mb/the_big_data_brain_drain_why_science_is_in_trouble/\",
|
230
|
+
\"name\": \"t3_1q91mb\", \"created\": 1384014383.0, \"url\": \"http://jakevdp.github.io/blog/2013/10/26/big-data-brain-drain/\",
|
231
|
+
\"author_flair_text\": null, \"title\": \"The Big Data Brain Drain: Why Science
|
232
|
+
is in Trouble\", \"created_utc\": 1384014383.0, \"ups\": 132, \"num_comments\":
|
233
|
+
22, \"visited\": false, \"num_reports\": null, \"distinguished\": null}},
|
234
|
+
{\"kind\": \"t3\", \"data\": {\"domain\": \"preshing.com\", \"banned_by\":
|
235
|
+
null, \"media_embed\": {}, \"subreddit\": \"programming\", \"selftext_html\":
|
236
|
+
null, \"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
237
|
+
null, \"id\": \"1q9deb\", \"secure_media_embed\": {}, \"clicked\": false,
|
238
|
+
\"stickied\": false, \"author\": \"yaph\", \"media\": null, \"score\": 50,
|
239
|
+
\"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
|
240
|
+
\"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false, \"link_flair_css_class\":
|
241
|
+
null, \"author_flair_css_class\": null, \"downs\": 20, \"saved\": false, \"is_self\":
|
242
|
+
false, \"permalink\": \"/r/programming/comments/1q9deb/highresolution_mandelbrot_in_obfuscated_python/\",
|
243
|
+
\"name\": \"t3_1q9deb\", \"created\": 1384053398.0, \"url\": \"http://preshing.com/20110926/high-resolution-mandelbrot-in-obfuscated-python/\",
|
244
|
+
\"author_flair_text\": null, \"title\": \"High-Resolution Mandelbrot in Obfuscated
|
245
|
+
Python\", \"created_utc\": 1384024598.0, \"ups\": 70, \"num_comments\": 5,
|
246
|
+
\"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
247
|
+
\"t3\", \"data\": {\"domain\": \"manorey.net\", \"banned_by\": null, \"media_embed\":
|
248
|
+
{}, \"subreddit\": \"programming\", \"selftext_html\": null, \"selftext\":
|
249
|
+
\"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\": null,
|
250
|
+
\"id\": \"1qas8w\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
251
|
+
false, \"author\": \"teimoor\", \"media\": null, \"score\": 3, \"approved_by\":
|
252
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
253
|
+
\"t5_2fwo\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
254
|
+
null, \"downs\": 15, \"saved\": false, \"is_self\": false, \"permalink\":
|
255
|
+
\"/r/programming/comments/1qas8w/a_javascript_brainfuck_interpretter_and/\",
|
256
|
+
\"name\": \"t3_1qas8w\", \"created\": 1384104332.0, \"url\": \"http://manorey.net/mo/ng-brainfuck/\",
|
257
|
+
\"author_flair_text\": null, \"title\": \"a Javascript brainfuck interpretter
|
258
|
+
and visualizer fully in AngularJs\", \"created_utc\": 1384075532.0, \"ups\":
|
259
|
+
18, \"num_comments\": 3, \"visited\": false, \"num_reports\": null, \"distinguished\":
|
260
|
+
null}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"christophermeiklejohn.com\",
|
261
|
+
\"banned_by\": null, \"media_embed\": {}, \"subreddit\": \"programming\",
|
262
|
+
\"selftext_html\": null, \"selftext\": \"\", \"likes\": null, \"secure_media\":
|
263
|
+
null, \"link_flair_text\": null, \"id\": \"1qb4js\", \"secure_media_embed\":
|
264
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"cmeiklejohn\",
|
265
|
+
\"media\": null, \"score\": 0, \"approved_by\": null, \"over_18\": false,
|
266
|
+
\"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2fwo\", \"edited\":
|
267
|
+
false, \"link_flair_css_class\": null, \"author_flair_css_class\": null, \"downs\":
|
268
|
+
3, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1qb4js/announcing_proceedings_distributed_reading_groups/\",
|
269
|
+
\"name\": \"t3_1qb4js\", \"created\": 1384125450.0, \"url\": \"http://christophermeiklejohn.com/distributed/2013/11/10/announcing-proceedings-distributed-reading-groups.html\",
|
270
|
+
\"author_flair_text\": null, \"title\": \"Announcing Proceedings: Distributed
|
271
|
+
Reading Groups\", \"created_utc\": 1384096650.0, \"ups\": 2, \"num_comments\":
|
272
|
+
1, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
273
|
+
\"t3\", \"data\": {\"domain\": \"infoq.com\", \"banned_by\": null, \"media_embed\":
|
274
|
+
{}, \"subreddit\": \"programming\", \"selftext_html\": null, \"selftext\":
|
275
|
+
\"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\": null,
|
276
|
+
\"id\": \"1qb42i\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
277
|
+
false, \"author\": \"schoenobates\", \"media\": null, \"score\": 0, \"approved_by\":
|
278
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
279
|
+
\"t5_2fwo\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
280
|
+
null, \"downs\": 8, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1qb42i/glassfish_commercial_edition_is_dead/\",
|
281
|
+
\"name\": \"t3_1qb42i\", \"created\": 1384124896.0, \"url\": \"http://www.infoq.com/news/2013/11/glassfish-commercial-dead\",
|
282
|
+
\"author_flair_text\": null, \"title\": \"GlassFish Commercial Edition is
|
283
|
+
Dead\", \"created_utc\": 1384096096.0, \"ups\": 3, \"num_comments\": 1, \"visited\":
|
284
|
+
false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\": \"t3\",
|
285
|
+
\"data\": {\"domain\": \"algorithmsandme.blogspot.in\", \"banned_by\": null,
|
286
|
+
\"media_embed\": {}, \"subreddit\": \"programming\", \"selftext_html\": null,
|
287
|
+
\"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
288
|
+
null, \"id\": \"1qa928\", \"secure_media_embed\": {}, \"clicked\": false,
|
289
|
+
\"stickied\": false, \"author\": \"jitsceait\", \"media\": null, \"score\":
|
290
|
+
10, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
|
291
|
+
\"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false, \"link_flair_css_class\":
|
292
|
+
null, \"author_flair_css_class\": null, \"downs\": 10, \"saved\": false, \"is_self\":
|
293
|
+
false, \"permalink\": \"/r/programming/comments/1qa928/strings_algorithms/\",
|
294
|
+
\"name\": \"t3_1qa928\", \"created\": 1384080562.0, \"url\": \"http://algorithmsandme.blogspot.in/search/label/strings\",
|
295
|
+
\"author_flair_text\": null, \"title\": \"Strings algorithms\", \"created_utc\":
|
296
|
+
1384051762.0, \"ups\": 20, \"num_comments\": 1, \"visited\": false, \"num_reports\":
|
297
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
298
|
+
\"jliszka.github.io\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
299
|
+
\"programming\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null,
|
300
|
+
\"secure_media\": null, \"link_flair_text\": null, \"id\": \"1q8t4p\", \"secure_media_embed\":
|
301
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"gallais\", \"media\":
|
302
|
+
null, \"score\": 60, \"approved_by\": null, \"over_18\": false, \"hidden\":
|
303
|
+
false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false,
|
304
|
+
\"link_flair_css_class\": null, \"author_flair_css_class\": null, \"downs\":
|
305
|
+
17, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1q8t4p/infinite_lazy_polynomials/\",
|
306
|
+
\"name\": \"t3_1q8t4p\", \"created\": 1384033730.0, \"url\": \"http://jliszka.github.io/2013/10/31/infinite-lazy-polynomials.html\",
|
307
|
+
\"author_flair_text\": null, \"title\": \"Infinite Lazy Polynomials\", \"created_utc\":
|
308
|
+
1384004930.0, \"ups\": 77, \"num_comments\": 19, \"visited\": false, \"num_reports\":
|
309
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
310
|
+
\"raw.github.com\", \"banned_by\": null, \"media_embed\": {}, \"subreddit\":
|
311
|
+
\"programming\", \"selftext_html\": null, \"selftext\": \"\", \"likes\": null,
|
312
|
+
\"secure_media\": null, \"link_flair_text\": null, \"id\": \"1q94op\", \"secure_media_embed\":
|
313
|
+
{}, \"clicked\": false, \"stickied\": false, \"author\": \"jsyeo\", \"media\":
|
314
|
+
null, \"score\": 18, \"approved_by\": null, \"over_18\": false, \"hidden\":
|
315
|
+
false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false,
|
316
|
+
\"link_flair_css_class\": null, \"author_flair_css_class\": null, \"downs\":
|
317
|
+
19, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1q94op/til_machine_descriptors_in_gcc_are_written_in_a/\",
|
318
|
+
\"name\": \"t3_1q94op\", \"created\": 1384045999.0, \"url\": \"https://raw.github.com/mirrors/gcc/master/gcc/config/arm/arm.md\",
|
319
|
+
\"author_flair_text\": null, \"title\": \"TIL: Machine descriptors in GCC
|
320
|
+
are written in a Lisp-like syntax\", \"created_utc\": 1384017199.0, \"ups\":
|
321
|
+
37, \"num_comments\": 18, \"visited\": false, \"num_reports\": null, \"distinguished\":
|
322
|
+
null}}, {\"kind\": \"t3\", \"data\": {\"domain\": \"youtube.com\", \"banned_by\":
|
323
|
+
null, \"media_embed\": {\"content\": \"<iframe width=\\\"600\\\" height=\\\"450\\\"
|
324
|
+
src=\\\"http://www.youtube.com/embed/womMVqu5p0w?feature=oembed\\\" frameborder=\\\"0\\\"
|
325
|
+
allowfullscreen></iframe>\", \"width\": 600, \"scrolling\": false,
|
326
|
+
\"height\": 450}, \"subreddit\": \"programming\", \"selftext_html\": null,
|
327
|
+
\"selftext\": \"\", \"likes\": null, \"secure_media\": {\"oembed\": {\"provider_url\":
|
328
|
+
\"http://www.youtube.com/\", \"description\": \"A whirlwind tour of the trials
|
329
|
+
and adventures of writing a high-performance PHP interpreter using the PyPy
|
330
|
+
toolkit.\", \"title\": \"PyConZA 2013: \\\"PHP interpreter using PyPy technology\\\"
|
331
|
+
by Maciej Fijalkowski\", \"url\": \"http://www.youtube.com/watch?v=womMVqu5p0w\",
|
332
|
+
\"author_name\": \"pyconza\", \"height\": 450, \"width\": 600, \"html\": \"<iframe
|
333
|
+
width=\\\"600\\\" height=\\\"450\\\" src=\\\"https://www.youtube.com/embed/womMVqu5p0w?feature=oembed\\\"
|
334
|
+
frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"thumbnail_width\":
|
335
|
+
480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\":
|
336
|
+
\"https://i.embed.ly/1/image?url=http%3A%2F%2Fi1.ytimg.com%2Fvi%2FwomMVqu5p0w%2Fhqdefault.jpg&key=b1e305db91cf4aa5a86b732cc9fffceb\",
|
337
|
+
\"type\": \"video\", \"thumbnail_height\": 360, \"author_url\": \"http://www.youtube.com/user/pyconza\"},
|
338
|
+
\"type\": \"youtube.com\"}, \"link_flair_text\": null, \"id\": \"1q8vz2\",
|
339
|
+
\"secure_media_embed\": {\"content\": \"<iframe width=\\\"600\\\" height=\\\"450\\\"
|
340
|
+
src=\\\"https://www.youtube.com/embed/womMVqu5p0w?feature=oembed\\\" frameborder=\\\"0\\\"
|
341
|
+
allowfullscreen></iframe>\", \"width\": 600, \"scrolling\": false,
|
342
|
+
\"height\": 450}, \"clicked\": false, \"stickied\": false, \"author\": \"sanxiyn\",
|
343
|
+
\"media\": {\"oembed\": {\"provider_url\": \"http://www.youtube.com/\", \"description\":
|
344
|
+
\"A whirlwind tour of the trials and adventures of writing a high-performance
|
345
|
+
PHP interpreter using the PyPy toolkit.\", \"title\": \"PyConZA 2013: \\\"PHP
|
346
|
+
interpreter using PyPy technology\\\" by Maciej Fijalkowski\", \"url\": \"http://www.youtube.com/watch?v=womMVqu5p0w\",
|
347
|
+
\"author_name\": \"pyconza\", \"height\": 450, \"width\": 600, \"html\": \"<iframe
|
348
|
+
width=\\\"600\\\" height=\\\"450\\\" src=\\\"http://www.youtube.com/embed/womMVqu5p0w?feature=oembed\\\"
|
349
|
+
frameborder=\\\"0\\\" allowfullscreen></iframe>\", \"thumbnail_width\":
|
350
|
+
480, \"version\": \"1.0\", \"provider_name\": \"YouTube\", \"thumbnail_url\":
|
351
|
+
\"http://i1.ytimg.com/vi/womMVqu5p0w/hqdefault.jpg\", \"type\": \"video\",
|
352
|
+
\"thumbnail_height\": 360, \"author_url\": \"http://www.youtube.com/user/pyconza\"},
|
353
|
+
\"type\": \"youtube.com\"}, \"score\": 24, \"approved_by\": null, \"over_18\":
|
354
|
+
false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\": \"t5_2fwo\",
|
355
|
+
\"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
356
|
+
null, \"downs\": 15, \"saved\": false, \"is_self\": false, \"permalink\":
|
357
|
+
\"/r/programming/comments/1q8vz2/php_interpreter_using_pypy_technology/\",
|
358
|
+
\"name\": \"t3_1q8vz2\", \"created\": 1384037342.0, \"url\": \"http://www.youtube.com/watch?v=womMVqu5p0w\",
|
359
|
+
\"author_flair_text\": null, \"title\": \"PHP interpreter using PyPy technology\",
|
360
|
+
\"created_utc\": 1384008542.0, \"ups\": 39, \"num_comments\": 2, \"visited\":
|
361
|
+
false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\": \"t3\",
|
362
|
+
\"data\": {\"domain\": \"blogs.apache.org\", \"banned_by\": null, \"media_embed\":
|
363
|
+
{}, \"subreddit\": \"programming\", \"selftext_html\": null, \"selftext\":
|
364
|
+
\"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\": null,
|
365
|
+
\"id\": \"1q9qjq\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
366
|
+
false, \"author\": \"andywenk\", \"media\": null, \"score\": 5, \"approved_by\":
|
367
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
368
|
+
\"t5_2fwo\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
369
|
+
null, \"downs\": 7, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1q9qjq/couchdb_will_go_multilingual_looking_for/\",
|
370
|
+
\"name\": \"t3_1q9qjq\", \"created\": 1384064216.0, \"url\": \"https://blogs.apache.org/couchdb/entry/couchdb_will_go_multilingual_looking\",
|
371
|
+
\"author_flair_text\": null, \"title\": \"CouchDB will go multilingual - looking
|
372
|
+
for contributors!\", \"created_utc\": 1384035416.0, \"ups\": 12, \"num_comments\":
|
373
|
+
0, \"visited\": false, \"num_reports\": null, \"distinguished\": null}}, {\"kind\":
|
374
|
+
\"t3\", \"data\": {\"domain\": \"cppblogs.blogspot.in\", \"banned_by\": null,
|
375
|
+
\"media_embed\": {}, \"subreddit\": \"programming\", \"selftext_html\": null,
|
376
|
+
\"selftext\": \"\", \"likes\": null, \"secure_media\": null, \"link_flair_text\":
|
377
|
+
null, \"id\": \"1q8rgn\", \"secure_media_embed\": {}, \"clicked\": false,
|
378
|
+
\"stickied\": false, \"author\": \"humble_programmer\", \"media\": null, \"score\":
|
379
|
+
26, \"approved_by\": null, \"over_18\": false, \"hidden\": false, \"thumbnail\":
|
380
|
+
\"\", \"subreddit_id\": \"t5_2fwo\", \"edited\": false, \"link_flair_css_class\":
|
381
|
+
null, \"author_flair_css_class\": null, \"downs\": 35, \"saved\": false, \"is_self\":
|
382
|
+
false, \"permalink\": \"/r/programming/comments/1q8rgn/learn_c_c_style_casts/\",
|
383
|
+
\"name\": \"t3_1q8rgn\", \"created\": 1384031054.0, \"url\": \"http://cppblogs.blogspot.in/2013/08/c-style-casts.html\",
|
384
|
+
\"author_flair_text\": null, \"title\": \"Learn C++: C++ style casts\", \"created_utc\":
|
385
|
+
1384002254.0, \"ups\": 61, \"num_comments\": 33, \"visited\": false, \"num_reports\":
|
386
|
+
null, \"distinguished\": null}}, {\"kind\": \"t3\", \"data\": {\"domain\":
|
387
|
+
\"coding.smashingmagazine.com\", \"banned_by\": null, \"media_embed\": {},
|
388
|
+
\"subreddit\": \"programming\", \"selftext_html\": null, \"selftext\": \"\",
|
389
|
+
\"likes\": null, \"secure_media\": null, \"link_flair_text\": null, \"id\":
|
390
|
+
\"1q8xui\", \"secure_media_embed\": {}, \"clicked\": false, \"stickied\":
|
391
|
+
false, \"author\": \"slyrp\", \"media\": null, \"score\": 16, \"approved_by\":
|
392
|
+
null, \"over_18\": false, \"hidden\": false, \"thumbnail\": \"\", \"subreddit_id\":
|
393
|
+
\"t5_2fwo\", \"edited\": false, \"link_flair_css_class\": null, \"author_flair_css_class\":
|
394
|
+
null, \"downs\": 5, \"saved\": false, \"is_self\": false, \"permalink\": \"/r/programming/comments/1q8xui/a_great_example_of_how_to_explain_a_css_hack/\",
|
395
|
+
\"name\": \"t3_1q8xui\", \"created\": 1384039482.0, \"url\": \"http://coding.smashingmagazine.com/2013/08/09/absolute-horizontal-vertical-centering-css/\",
|
396
|
+
\"author_flair_text\": null, \"title\": \"A great example of how to explain
|
397
|
+
a CSS hack - vertical centering with margin: auto\", \"created_utc\": 1384010682.0,
|
398
|
+
\"ups\": 21, \"num_comments\": 2, \"visited\": false, \"num_reports\": null,
|
399
|
+
\"distinguished\": null}}], \"after\": \"t3_1q8xui\", \"before\": null}}"
|
400
|
+
http_version:
|
401
|
+
recorded_at: Sun, 10 Nov 2013 19:56:45 GMT
|
402
|
+
recorded_with: VCR 2.6.0
|