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,510 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/reddits/new.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 22:38:23 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\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
38
|
+
null, \"id\": \"2z20r\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
39
|
+
\"display_name\": \"LiterallyAnyoneCanMod\", \"header_img\": null, \"description_html\":
|
40
|
+
null, \"title\": \"Anyone can mod - Literally!\", \"over18\": false, \"user_is_moderator\":
|
41
|
+
null, \"header_title\": null, \"description\": \"\", \"submit_link_label\":
|
42
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
43
|
+
\"high\", \"header_size\": null, \"subscribers\": 1, \"submit_text_label\":
|
44
|
+
null, \"name\": \"t5_2z20r\", \"created\": 1384151559.0, \"url\": \"/r/LiterallyAnyoneCanMod/\",
|
45
|
+
\"created_utc\": 1384122759.0, \"user_is_contributor\": null, \"public_traffic\":
|
46
|
+
false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
47
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
48
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
49
|
+
null, \"id\": \"2z20q\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
50
|
+
\"display_name\": \"PowerMetalSubreddit\", \"header_img\": null, \"description_html\":
|
51
|
+
null, \"title\": \"power metal\", \"over18\": false, \"user_is_moderator\":
|
52
|
+
null, \"header_title\": null, \"description\": \"\", \"submit_link_label\":
|
53
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
54
|
+
\"high\", \"header_size\": null, \"subscribers\": 1, \"submit_text_label\":
|
55
|
+
null, \"name\": \"t5_2z20q\", \"created\": 1384151555.0, \"url\": \"/r/PowerMetalSubreddit/\",
|
56
|
+
\"created_utc\": 1384122755.0, \"user_is_contributor\": null, \"public_traffic\":
|
57
|
+
false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
58
|
+
\"restricted\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
59
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
60
|
+
null, \"id\": \"2z20p\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
61
|
+
\"display_name\": \"infiniteflight\", \"header_img\": null, \"description_html\":
|
62
|
+
null, \"title\": \"Infinite Flight: Best mobile flying sim\", \"over18\":
|
63
|
+
false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
64
|
+
\"\", \"submit_link_label\": \"Create a new flight plan (post link)\", \"accounts_active\":
|
65
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
66
|
+
null, \"subscribers\": 1, \"submit_text_label\": \"Talk to ATC (text post)\",
|
67
|
+
\"name\": \"t5_2z20p\", \"created\": 1384151545.0, \"url\": \"/r/infiniteflight/\",
|
68
|
+
\"created_utc\": 1384122745.0, \"user_is_contributor\": null, \"public_traffic\":
|
69
|
+
false, \"public_description\": \"The subreddit for fans of the Infinite Flight
|
70
|
+
flying simulator.\", \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\",
|
71
|
+
\"submission_type\": \"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\",
|
72
|
+
\"data\": {\"submit_text_html\": null, \"user_is_banned\": null, \"id\": \"2z20o\",
|
73
|
+
\"submit_text\": \"\", \"spam_selfposts\": \"high\", \"display_name\": \"dueren\",
|
74
|
+
\"header_img\": null, \"description_html\": null, \"title\": \"Ein Subreddit
|
75
|
+
f\\u00fcr D\\u00fcren und Umgebung\", \"over18\": false, \"user_is_moderator\":
|
76
|
+
null, \"header_title\": null, \"description\": \"\", \"submit_link_label\":
|
77
|
+
null, \"accounts_active\": null, \"spam_comments\": \"high\", \"spam_links\":
|
78
|
+
\"high\", \"header_size\": null, \"subscribers\": 1, \"submit_text_label\":
|
79
|
+
null, \"name\": \"t5_2z20o\", \"created\": 1384151374.0, \"url\": \"/r/dueren/\",
|
80
|
+
\"created_utc\": 1384122574.0, \"user_is_contributor\": null, \"public_traffic\":
|
81
|
+
false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
82
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
83
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF --><div
|
84
|
+
class=\\\"md\\\"><p>Please submit only relevant posts.</p>\\n</div><!--
|
85
|
+
SC_ON -->\", \"user_is_banned\": null, \"id\": \"2z20l\", \"submit_text\":
|
86
|
+
\"Please submit only relevant posts.\", \"spam_selfposts\": \"high\", \"display_name\":
|
87
|
+
\"Fredcraft\", \"header_img\": null, \"description_html\": \"<!-- SC_OFF
|
88
|
+
--><div class=\\\"md\\\"><p>Fredcraft</p>\\n</div><!--
|
89
|
+
SC_ON -->\", \"title\": \"Fredcraft\", \"over18\": false, \"user_is_moderator\":
|
90
|
+
null, \"header_title\": null, \"description\": \"Fredcraft\", \"submit_link_label\":
|
91
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
92
|
+
\"high\", \"header_size\": null, \"subscribers\": 1, \"submit_text_label\":
|
93
|
+
null, \"name\": \"t5_2z20l\", \"created\": 1384151003.0, \"url\": \"/r/Fredcraft/\",
|
94
|
+
\"created_utc\": 1384122203.0, \"user_is_contributor\": null, \"public_traffic\":
|
95
|
+
false, \"public_description\": \"A subreddit for my Minecraft server!\", \"comment_score_hide_mins\":
|
96
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
97
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
98
|
+
--><div class=\\\"md\\\"><p>Please no NSFW links or pictures.
|
99
|
+
Please don&#39;t put the punch line in the title if posting a funny picture.
|
100
|
+
All posts should be somewhat related to Chipper875 or Yellowmonkeymrbank1.</p>\\n</div><!--
|
101
|
+
SC_ON -->\", \"user_is_banned\": null, \"id\": \"2z20k\", \"submit_text\":
|
102
|
+
\"Please no NSFW links or pictures. Please don't put the punch line in the
|
103
|
+
title if posting a funny picture. All posts should be somewhat related to
|
104
|
+
Chipper875 or Yellowmonkeymrbank1.\", \"spam_selfposts\": \"high\", \"display_name\":
|
105
|
+
\"Chipper875\", \"header_img\": null, \"description_html\": \"<!-- SC_OFF
|
106
|
+
--><div class=\\\"md\\\"><p>Welcome to the Chipper875 hangout
|
107
|
+
place for cool people!</p>\\n\\n<p>Here are YouTube stuffs that
|
108
|
+
you may want to go to:\\n<a href=\\\"http://www.youtube.com/user/yellowmonkeymrbank1\\\">YellowMonkeyMrBank1</a>\\n<a
|
109
|
+
href=\\\"http://www.youtube.com/user/chipper875\\\">Chipper875</a></p>\\n</div><!--
|
110
|
+
SC_ON -->\", \"title\": \"The subreddit for stuff that relates to Chipper875
|
111
|
+
or Yellowmonkeymrbank \", \"over18\": false, \"user_is_moderator\": null,
|
112
|
+
\"header_title\": null, \"description\": \"Welcome to the Chipper875 hangout
|
113
|
+
place for cool people!\\n\\nHere are YouTube stuffs that you may want to go
|
114
|
+
to:\\n[YellowMonkeyMrBank1](http://www.youtube.com/user/yellowmonkeymrbank1)\\n[Chipper875](http://www.youtube.com/user/chipper875)\",
|
115
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
116
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
117
|
+
1, \"submit_text_label\": null, \"name\": \"t5_2z20k\", \"created\": 1384150935.0,
|
118
|
+
\"url\": \"/r/Chipper875/\", \"created_utc\": 1384122135.0, \"user_is_contributor\":
|
119
|
+
null, \"public_traffic\": true, \"public_description\": \"This subreddit is
|
120
|
+
for Yellowmonkeymrbank in the case that he decides to disable YouTube comments.\",
|
121
|
+
\"comment_score_hide_mins\": 10, \"subreddit_type\": \"public\", \"submission_type\":
|
122
|
+
\"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
123
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>Im Mrnanofear,
|
124
|
+
that teenager that does those things on youtube, called videos! but google+
|
125
|
+
have recently screwed youtube up, so i have resorted to using this subreddit
|
126
|
+
for my comment section!\\nthanks nanonerds!</p>\\n\\n<p>My Channel:
|
127
|
+
<a href=\\\"http://www.youtube.com/user/mrnanofear\\\">http://www.youtube.com/user/mrnanofear</a></p>\\n</div><!--
|
128
|
+
SC_ON -->\", \"user_is_banned\": null, \"id\": \"2z20j\", \"submit_text\":
|
129
|
+
\"Im Mrnanofear, that teenager that does those things on youtube, called videos!
|
130
|
+
but google+ have recently screwed youtube up, so i have resorted to using
|
131
|
+
this subreddit for my comment section!\\nthanks nanonerds!\\n\\nMy Channel:
|
132
|
+
http://www.youtube.com/user/mrnanofear\", \"spam_selfposts\": \"low\", \"display_name\":
|
133
|
+
\"MrNanoFear\", \"header_img\": null, \"description_html\": \"<!-- SC_OFF
|
134
|
+
--><div class=\\\"md\\\"><p>Welcome NanoNerds, You are either
|
135
|
+
here from one of my videos or have clicked here on Reddit! i hope you check
|
136
|
+
out my youtube channel if you haven&#39;t already; <a href=\\\"http://www.youtube.com/user/mrnanofear\\\">http://www.youtube.com/user/mrnanofear</a>\\nthanks
|
137
|
+
for Reading!</p>\\n</div><!-- SC_ON -->\", \"title\": \"MrNanoFear\",
|
138
|
+
\"over18\": false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
139
|
+
\"Welcome NanoNerds, You are either here from one of my videos or have clicked
|
140
|
+
here on Reddit! i hope you check out my youtube channel if you haven't already;
|
141
|
+
http://www.youtube.com/user/mrnanofear\\nthanks for Reading!\", \"submit_link_label\":
|
142
|
+
null, \"accounts_active\": null, \"spam_comments\": \"high\", \"spam_links\":
|
143
|
+
\"all\", \"header_size\": null, \"subscribers\": 1, \"submit_text_label\":
|
144
|
+
null, \"name\": \"t5_2z20j\", \"created\": 1384150680.0, \"url\": \"/r/MrNanoFear/\",
|
145
|
+
\"created_utc\": 1384121880.0, \"user_is_contributor\": null, \"public_traffic\":
|
146
|
+
true, \"public_description\": \"MrNanoFear's Comment Section. Google + is
|
147
|
+
Awful. so i resorted to Reddit!\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
148
|
+
\"public\", \"submission_type\": \"self\", \"user_is_subscriber\": null}},
|
149
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF --><div
|
150
|
+
class=\\\"md\\\"><p>-Be Appropriate\\n-Minecraft Related Posts only\\n-No
|
151
|
+
Insulting Others\\n-No Personal Information\\n-No Self Promotion</p>\\n</div><!--
|
152
|
+
SC_ON -->\", \"user_is_banned\": null, \"id\": \"2z20i\", \"submit_text\":
|
153
|
+
\"-Be Appropriate\\n-Minecraft Related Posts only\\n-No Insulting Others\\n-No
|
154
|
+
Personal Information\\n-No Self Promotion\", \"spam_selfposts\": \"high\",
|
155
|
+
\"display_name\": \"Asajz\", \"header_img\": null, \"description_html\": \"<!--
|
156
|
+
SC_OFF --><div class=\\\"md\\\"><p>Rules:<br/>\\n*Be
|
157
|
+
Appropriate<br/>\\n*Minecraft Related Posts only<br/>\\n*No Insulting
|
158
|
+
Others<br/>\\n*No Personal Information.... EVER!!<br/>\\n*No Self
|
159
|
+
Promotion (Unless Requested by Moderator)</p>\\n\\n<p>Links:\\n<a
|
160
|
+
href=\\\"http://youtube.com/Asajz\\\">YouTube</a><br/>\\n<a
|
161
|
+
href=\\\"http://reddit.com/r/Asajz\\\">Reddit</a><br/>\\n<a
|
162
|
+
href=\\\"http://twitter.com/Asajz\\\">Twitter</a></p>\\n</div><!--
|
163
|
+
SC_ON -->\", \"title\": \"Asajz\", \"over18\": false, \"user_is_moderator\":
|
164
|
+
null, \"header_title\": \"Asajz's personal Subreddit for YouTube\", \"description\":
|
165
|
+
\"Rules: \\n*Be Appropriate \\n*Minecraft Related Posts only \\n*No Insulting
|
166
|
+
Others \\n*No Personal Information.... EVER!! \\n*No Self Promotion (Unless
|
167
|
+
Requested by Moderator)\\n\\n \\n \\nLinks:\\n[YouTube](http://youtube.com/Asajz)
|
168
|
+
\ \\n[Reddit](http://reddit.com/r/Asajz) \\n[Twitter](http://twitter.com/Asajz)\",
|
169
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
170
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
171
|
+
1, \"submit_text_label\": null, \"name\": \"t5_2z20i\", \"created\": 1384150646.0,
|
172
|
+
\"url\": \"/r/Asajz/\", \"created_utc\": 1384121846.0, \"user_is_contributor\":
|
173
|
+
null, \"public_traffic\": false, \"public_description\": \"The subreddit for
|
174
|
+
Asajz's Minecraft Downloadable Content and YouTube Videos.\", \"comment_score_hide_mins\":
|
175
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
176
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
177
|
+
null, \"id\": \"2z20g\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
178
|
+
\"display_name\": \"readblog\", \"header_img\": null, \"description_html\":
|
179
|
+
null, \"title\": \"Blogs\", \"over18\": false, \"user_is_moderator\": null,
|
180
|
+
\"header_title\": null, \"description\": \"\", \"submit_link_label\": null,
|
181
|
+
\"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"high\",
|
182
|
+
\"header_size\": null, \"subscribers\": 1, \"submit_text_label\": null, \"name\":
|
183
|
+
\"t5_2z20g\", \"created\": 1384150592.0, \"url\": \"/r/readblog/\", \"created_utc\":
|
184
|
+
1384121792.0, \"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
|
185
|
+
\"post blog posts here. or don't.\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
186
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
187
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
188
|
+
null, \"id\": \"2z20f\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
189
|
+
\"display_name\": \"ProtoTest\", \"header_img\": null, \"description_html\":
|
190
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>CSS testing done
|
191
|
+
here so I don&#39;t fuck up the subreddits I mod.</p>\\n\\n<p>Want
|
192
|
+
me to help you out with your subreddit? Message me on reddit.</p>\\n</div><!--
|
193
|
+
SC_ON -->\", \"title\": \"CSS Testing\", \"over18\": false, \"user_is_moderator\":
|
194
|
+
null, \"header_title\": null, \"description\": \"CSS testing done here so
|
195
|
+
I don't fuck up the subreddits I mod.\\n\\nWant me to help you out with your
|
196
|
+
subreddit? Message me on reddit.\", \"submit_link_label\": null, \"accounts_active\":
|
197
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
198
|
+
null, \"subscribers\": 1, \"submit_text_label\": null, \"name\": \"t5_2z20f\",
|
199
|
+
\"created\": 1384150524.0, \"url\": \"/r/ProtoTest/\", \"created_utc\": 1384121724.0,
|
200
|
+
\"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
|
201
|
+
\"CSS testing done here so I don't fuck up the subreddits I mod.\", \"comment_score_hide_mins\":
|
202
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
203
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
204
|
+
--><div class=\\\"md\\\"><p>HEY YOU DON&quot;T CLICK THAT
|
205
|
+
BUTTON</p>\\n</div><!-- SC_ON -->\", \"user_is_banned\":
|
206
|
+
null, \"id\": \"2z20d\", \"submit_text\": \"HEY YOU DON\\\"T CLICK THAT BUTTON\",
|
207
|
+
\"spam_selfposts\": \"high\", \"display_name\": \"theasianpianist\", \"header_img\":
|
208
|
+
null, \"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Ladiladida</p>\\n</div><!--
|
209
|
+
SC_ON -->\", \"title\": \"Subreddit for testing CSS/formatting\", \"over18\":
|
210
|
+
false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
211
|
+
\"Ladiladida\", \"submit_link_label\": \"NON-SELF POST\", \"accounts_active\":
|
212
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
213
|
+
null, \"subscribers\": 1, \"submit_text_label\": \"SELF POST\", \"name\":
|
214
|
+
\"t5_2z20d\", \"created\": 1384150498.0, \"url\": \"/r/theasianpianist/\",
|
215
|
+
\"created_utc\": 1384121698.0, \"user_is_contributor\": null, \"public_traffic\":
|
216
|
+
false, \"public_description\": \"Yaddayadda\", \"comment_score_hide_mins\":
|
217
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
218
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
219
|
+
--><div class=\\\"md\\\"><p>Please no NSFW links or pictures.
|
220
|
+
Please don&#39;t put the punch line in the title if posting a funny picture.
|
221
|
+
All posts should be somewhat related to Chipper875 or Yellowmonkeymrbank1.
|
222
|
+
</p>\\n</div><!-- SC_ON -->\", \"user_is_banned\": null,
|
223
|
+
\"id\": \"2z20c\", \"submit_text\": \"Please no NSFW links or pictures. Please
|
224
|
+
don't put the punch line in the title if posting a funny picture. All posts
|
225
|
+
should be somewhat related to Chipper875 or Yellowmonkeymrbank1. \", \"spam_selfposts\":
|
226
|
+
\"high\", \"display_name\": \"Chipper885\", \"header_img\": null, \"description_html\":
|
227
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>Welcome to the
|
228
|
+
Chipper875 hangout place for cool people!</p>\\n\\n<p>Here are
|
229
|
+
YouTube stuffs that you may want to go to:\\n<a href=\\\"http://www.youtube.com/user/yellowmonkeymrbank1\\\">YellowMonkeyMrBank1</a>\\n<a
|
230
|
+
href=\\\"http://www.youtube.com/user/chipper875\\\">Chipper875</a></p>\\n</div><!--
|
231
|
+
SC_ON -->\", \"title\": \"The subreddit for stuff that relates to Chipper875
|
232
|
+
or Yellowmonkeymrbank \", \"over18\": false, \"user_is_moderator\": null,
|
233
|
+
\"header_title\": null, \"description\": \"Welcome to the Chipper875 hangout
|
234
|
+
place for cool people!\\n\\nHere are YouTube stuffs that you may want to go
|
235
|
+
to:\\n[YellowMonkeyMrBank1](http://www.youtube.com/user/yellowmonkeymrbank1)\\n[Chipper875](http://www.youtube.com/user/chipper875)\",
|
236
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
237
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
238
|
+
1, \"submit_text_label\": null, \"name\": \"t5_2z20c\", \"created\": 1384150334.0,
|
239
|
+
\"url\": \"/r/Chipper885/\", \"created_utc\": 1384121534.0, \"user_is_contributor\":
|
240
|
+
null, \"public_traffic\": false, \"public_description\": \"This subreddit
|
241
|
+
is for Yellowmonkeymrbank in the case that he decides to disable YouTube comments.\",
|
242
|
+
\"comment_score_hide_mins\": 10, \"subreddit_type\": \"public\", \"submission_type\":
|
243
|
+
\"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
244
|
+
null, \"user_is_banned\": null, \"id\": \"2z20b\", \"submit_text\": \"\",
|
245
|
+
\"spam_selfposts\": \"high\", \"display_name\": \"minuteearth\", \"header_img\":
|
246
|
+
null, \"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>minuteearth</p>\\n</div><!--
|
247
|
+
SC_ON -->\", \"title\": \"minuteearth\", \"over18\": false, \"user_is_moderator\":
|
248
|
+
null, \"header_title\": null, \"description\": \"minuteearth\", \"submit_link_label\":
|
249
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
250
|
+
\"high\", \"header_size\": null, \"subscribers\": 1, \"submit_text_label\":
|
251
|
+
null, \"name\": \"t5_2z20b\", \"created\": 1384150227.0, \"url\": \"/r/minuteearth/\",
|
252
|
+
\"created_utc\": 1384121427.0, \"user_is_contributor\": null, \"public_traffic\":
|
253
|
+
false, \"public_description\": \"minuteearth\", \"comment_score_hide_mins\":
|
254
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
255
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
256
|
+
--><div class=\\\"md\\\"><p>Please feel free to say and post
|
257
|
+
whatever you like as long as:</p>\\n\\n<p>1: It&#39;s relevant
|
258
|
+
to Rank94</p>\\n\\n<p>2: Its not Hate (defined as inaccurate derogatory
|
259
|
+
slander without any proof)</p>\\n\\n<p>3: It isnt any personal
|
260
|
+
Information</p>\\n</div><!-- SC_ON -->\", \"user_is_banned\":
|
261
|
+
null, \"id\": \"2z20a\", \"submit_text\": \"Please feel free to say and post
|
262
|
+
whatever you like as long as:\\n\\n1: It's relevant to Rank94\\n\\n2: Its
|
263
|
+
not Hate (defined as inaccurate derogatory slander without any proof)\\n\\n3:
|
264
|
+
It isnt any personal Information\", \"spam_selfposts\": \"high\", \"display_name\":
|
265
|
+
\"Rank94\", \"header_img\": null, \"description_html\": \"<!-- SC_OFF --><div
|
266
|
+
class=\\\"md\\\"><p>A podcast group that talks about the Video Games
|
267
|
+
Industry and the Culture surrounding it.</p>\\n\\n<p>Please feel
|
268
|
+
free to say and post whatever you like as long as:</p>\\n\\n<p>1:
|
269
|
+
It&#39;s relevant to Rank94</p>\\n\\n<p>2: Its not Hate (defined
|
270
|
+
as inaccurate derogatory slander without any proof)</p>\\n\\n<p>3:
|
271
|
+
It isnt any personal Information</p>\\n\\n<p>4: Do not downvote
|
272
|
+
if you disagree with someone, That&#39;s not the point of Downvoting.</p>\\n</div><!--
|
273
|
+
SC_ON -->\", \"title\": \"The Rank94 Subreddit for Feedback and Such.\",
|
274
|
+
\"over18\": false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
275
|
+
\"A podcast group that talks about the Video Games Industry and the Culture
|
276
|
+
surrounding it.\\n\\nPlease feel free to say and post whatever you like as
|
277
|
+
long as:\\n\\n1: It's relevant to Rank94\\n\\n2: Its not Hate (defined as
|
278
|
+
inaccurate derogatory slander without any proof)\\n\\n3: It isnt any personal
|
279
|
+
Information\\n\\n4: Do not downvote if you disagree with someone, That's not
|
280
|
+
the point of Downvoting.\\n\", \"submit_link_label\": null, \"accounts_active\":
|
281
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
282
|
+
null, \"subscribers\": 1, \"submit_text_label\": null, \"name\": \"t5_2z20a\",
|
283
|
+
\"created\": 1384150140.0, \"url\": \"/r/Rank94/\", \"created_utc\": 1384121340.0,
|
284
|
+
\"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
|
285
|
+
\"A podcast group that talks about the Video Games Industry and the Culture
|
286
|
+
surrounding it.\", \"comment_score_hide_mins\": 30, \"subreddit_type\": \"public\",
|
287
|
+
\"submission_type\": \"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\",
|
288
|
+
\"data\": {\"submit_text_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>FORBIDDEN
|
289
|
+
- explicit content (hate, discrimination, violence etc), shameless self-promotion
|
290
|
+
or any content which doesn&#39;t contain any kind of offer to other web
|
291
|
+
owners about exchanging links, ads, posts and similar...</p>\\n</div><!--
|
292
|
+
SC_ON -->\", \"user_is_banned\": null, \"id\": \"2z209\", \"submit_text\":
|
293
|
+
\"FORBIDDEN - explicit content (hate, discrimination, violence etc), shameless
|
294
|
+
self-promotion or any content which doesn't contain any kind of offer to other
|
295
|
+
web owners about exchanging links, ads, posts and similar...\", \"spam_selfposts\":
|
296
|
+
\"low\", \"display_name\": \"exchangeweb\", \"header_img\": null, \"description_html\":
|
297
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>this is the place
|
298
|
+
where website / blog / etc owners can share their ideas and offers about exchanging
|
299
|
+
links, ads, posts and other goodies with each other.</p>\\n\\n<p>You
|
300
|
+
can share a link or make a text post as long as your post is strictly an offer
|
301
|
+
to other web owners.</p>\\n\\n<p>FORBIDDEN - explicit content
|
302
|
+
(hate, discrimination, violence etc), shameless self-promotion or any content
|
303
|
+
which doesn&#39;t contain any kind of offer to other web owners about
|
304
|
+
exchanging links, ads, posts and similar...</p>\\n</div><!--
|
305
|
+
SC_ON -->\", \"title\": \"exchangeweb\", \"over18\": false, \"user_is_moderator\":
|
306
|
+
null, \"header_title\": null, \"description\": \"this is the place where website
|
307
|
+
/ blog / etc owners can share their ideas and offers about exchanging links,
|
308
|
+
ads, posts and other goodies with each other.\\n\\nYou can share a link or
|
309
|
+
make a text post as long as your post is strictly an offer to other web owners.\\n\\nFORBIDDEN
|
310
|
+
- explicit content (hate, discrimination, violence etc), shameless self-promotion
|
311
|
+
or any content which doesn't contain any kind of offer to other web owners
|
312
|
+
about exchanging links, ads, posts and similar...\", \"submit_link_label\":
|
313
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
314
|
+
\"low\", \"header_size\": null, \"subscribers\": 1, \"submit_text_label\":
|
315
|
+
null, \"name\": \"t5_2z209\", \"created\": 1384149837.0, \"url\": \"/r/exchangeweb/\",
|
316
|
+
\"created_utc\": 1384121037.0, \"user_is_contributor\": null, \"public_traffic\":
|
317
|
+
true, \"public_description\": \"this is the place where website / blog / etc
|
318
|
+
owners can share their ideas and offers about exchanging links, ads, posts
|
319
|
+
and other goodies with each other\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
320
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
321
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
322
|
+
null, \"id\": \"2z208\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
323
|
+
\"display_name\": \"gnAchR\", \"header_img\": null, \"description_html\":
|
324
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>AAG</p>\\n</div><!--
|
325
|
+
SC_ON -->\", \"title\": \"Autoimmune Autonomic Ganglionopathy\", \"over18\":
|
326
|
+
false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
327
|
+
\"AAG\", \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
328
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
329
|
+
1, \"submit_text_label\": null, \"name\": \"t5_2z208\", \"created\": 1384149773.0,
|
330
|
+
\"url\": \"/r/gnAchR/\", \"created_utc\": 1384120973.0, \"user_is_contributor\":
|
331
|
+
null, \"public_traffic\": false, \"public_description\": \"For those living
|
332
|
+
with or affected by autoimmune autonomic failure.\", \"comment_score_hide_mins\":
|
333
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
334
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
335
|
+
null, \"id\": \"2z207\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
336
|
+
\"display_name\": \"Basically_Brett\", \"header_img\": null, \"description_html\":
|
337
|
+
null, \"title\": \"Brett's Gaming Blog\", \"over18\": false, \"user_is_moderator\":
|
338
|
+
null, \"header_title\": null, \"description\": \"\", \"submit_link_label\":
|
339
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
340
|
+
\"high\", \"header_size\": null, \"subscribers\": 1, \"submit_text_label\":
|
341
|
+
null, \"name\": \"t5_2z207\", \"created\": 1384149724.0, \"url\": \"/r/Basically_Brett/\",
|
342
|
+
\"created_utc\": 1384120924.0, \"user_is_contributor\": null, \"public_traffic\":
|
343
|
+
false, \"public_description\": \"This is my blog all about gaming, I review
|
344
|
+
games so you don't have to! If you are interested in seeing more of me visit
|
345
|
+
my Youtube channel Basically Brett\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
346
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
347
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
348
|
+
null, \"id\": \"2z206\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
349
|
+
\"display_name\": \"hiphopsubreddit\", \"header_img\": null, \"description_html\":
|
350
|
+
null, \"title\": \"put yo hands in the air like you just don't care\", \"over18\":
|
351
|
+
false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
352
|
+
\"\", \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
353
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
354
|
+
1, \"submit_text_label\": null, \"name\": \"t5_2z206\", \"created\": 1384149688.0,
|
355
|
+
\"url\": \"/r/hiphopsubreddit/\", \"created_utc\": 1384120888.0, \"user_is_contributor\":
|
356
|
+
null, \"public_traffic\": false, \"public_description\": \"\", \"comment_score_hide_mins\":
|
357
|
+
0, \"subreddit_type\": \"restricted\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
358
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
359
|
+
null, \"id\": \"2z205\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
360
|
+
\"display_name\": \"pocketgravel\", \"header_img\": \"http://e.thumbs.redditmedia.com/2g2VX4WLJ1tj5xZF.png\",
|
361
|
+
\"description_html\": null, \"title\": \"pocketgravel\", \"over18\": false,
|
362
|
+
\"user_is_moderator\": null, \"header_title\": null, \"description\": \"\",
|
363
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
364
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": [134, 90], \"subscribers\":
|
365
|
+
1, \"submit_text_label\": null, \"name\": \"t5_2z205\", \"created\": 1384149687.0,
|
366
|
+
\"url\": \"/r/pocketgravel/\", \"created_utc\": 1384120887.0, \"user_is_contributor\":
|
367
|
+
null, \"public_traffic\": false, \"public_description\": \"A subreddit dedicated
|
368
|
+
to the throwing of small rocks as self defense\", \"comment_score_hide_mins\":
|
369
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
370
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
371
|
+
null, \"id\": \"2z204\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
372
|
+
\"display_name\": \"CarSitting\", \"header_img\": null, \"description_html\":
|
373
|
+
null, \"title\": \"news for cars, stuff that's car sitting\", \"over18\":
|
374
|
+
false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
375
|
+
\"\", \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
376
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
377
|
+
1, \"submit_text_label\": null, \"name\": \"t5_2z204\", \"created\": 1384149651.0,
|
378
|
+
\"url\": \"/r/CarSitting/\", \"created_utc\": 1384120851.0, \"user_is_contributor\":
|
379
|
+
null, \"public_traffic\": false, \"public_description\": \"\", \"comment_score_hide_mins\":
|
380
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
381
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
382
|
+
null, \"id\": \"2z203\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
383
|
+
\"display_name\": \"askredditchristmas\", \"header_img\": null, \"description_html\":
|
384
|
+
null, \"title\": \"AskRedditChristmas\", \"over18\": false, \"user_is_moderator\":
|
385
|
+
null, \"header_title\": null, \"description\": \"\", \"submit_link_label\":
|
386
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
387
|
+
\"high\", \"header_size\": null, \"subscribers\": 1, \"submit_text_label\":
|
388
|
+
null, \"name\": \"t5_2z203\", \"created\": 1384149636.0, \"url\": \"/r/askredditchristmas/\",
|
389
|
+
\"created_utc\": 1384120836.0, \"user_is_contributor\": null, \"public_traffic\":
|
390
|
+
false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
391
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
392
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
393
|
+
null, \"id\": \"2z202\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
394
|
+
\"display_name\": \"minutephysics\", \"header_img\": null, \"description_html\":
|
395
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>minutephysics</p>\\n</div><!--
|
396
|
+
SC_ON -->\", \"title\": \"minutephysics\", \"over18\": false, \"user_is_moderator\":
|
397
|
+
null, \"header_title\": null, \"description\": \"minutephysics\", \"submit_link_label\":
|
398
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
399
|
+
\"high\", \"header_size\": null, \"subscribers\": 1, \"submit_text_label\":
|
400
|
+
null, \"name\": \"t5_2z202\", \"created\": 1384149499.0, \"url\": \"/r/minutephysics/\",
|
401
|
+
\"created_utc\": 1384120699.0, \"user_is_contributor\": null, \"public_traffic\":
|
402
|
+
false, \"public_description\": \"minutephysics\", \"comment_score_hide_mins\":
|
403
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
404
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
405
|
+
null, \"id\": \"2z201\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
406
|
+
\"display_name\": \"makingacronyms\", \"header_img\": null, \"description_html\":
|
407
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p><a href=\\\"/r/makingacronyms\\\">/r/makingacronyms</a>
|
408
|
+
is a subreddit where someone posts a word or phrase, and others try to create
|
409
|
+
an acronym out of it. The game goes like this:</p>\\n\\n<ol>\\n<li><p>A
|
410
|
+
user posts a word or phrase.</p></li>\\n<li><p>Others
|
411
|
+
comment in the thread, trying to make an acronym from said word or phrases&#39;s
|
412
|
+
letters. The acronym can be as funny or serious as you want.</p></li>\\n<li><p>You
|
413
|
+
are allowed to use occasional &#39;of&#39;s, &#39;and&#39;s,
|
414
|
+
&#39;if&#39;s, etc. in your acronym, but you can&#39;t enter entire
|
415
|
+
words from letters that don&#39;t exist; that would ruin the challenge.
|
416
|
+
If you do put in an such, put it in parentheses for sake of format.</p></li>\\n</ol>\\n\\n<p>Here&#39;s
|
417
|
+
an example.</p>\\n\\n<p>Title - &quot;Reddit&quot;</p>\\n\\n<p>Possible
|
418
|
+
comments: </p>\\n\\n<p>&quot;Ready Example (of) doofuses deteriorating
|
419
|
+
information (and) technology&quot; </p>\\n\\n<p>&quot;Really
|
420
|
+
Excellent Days Doing Important Things&quot;</p>\\n</div><!--
|
421
|
+
SC_ON -->\", \"title\": \"Making Acronyms - For When Abbreviation Counts\",
|
422
|
+
\"over18\": false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
423
|
+
\"/r/makingacronyms is a subreddit where someone posts a word or phrase, and
|
424
|
+
others try to create an acronym out of it. The game goes like this:\\n\\n1.
|
425
|
+
A user posts a word or phrase.\\n\\n2. Others comment in the thread, trying
|
426
|
+
to make an acronym from said word or phrases's letters. The acronym can be
|
427
|
+
as funny or serious as you want.\\n\\n3. You are allowed to use occasional
|
428
|
+
'of's, 'and's, 'if's, etc. in your acronym, but you can't enter entire words
|
429
|
+
from letters that don't exist; that would ruin the challenge. If you do put
|
430
|
+
in an such, put it in parentheses for sake of format.\\n\\nHere's an example.\\n\\nTitle
|
431
|
+
- \\\"Reddit\\\"\\n\\nPossible comments: \\n\\n\\\"Ready Example (of) doofuses
|
432
|
+
deteriorating information (and) technology\\\" \\n\\n\\\"Really Excellent
|
433
|
+
Days Doing Important Things\\\"\\n \", \"submit_link_label\": null, \"accounts_active\":
|
434
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
435
|
+
null, \"subscribers\": 1, \"submit_text_label\": null, \"name\": \"t5_2z201\",
|
436
|
+
\"created\": 1384149325.0, \"url\": \"/r/makingacronyms/\", \"created_utc\":
|
437
|
+
1384120525.0, \"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
|
438
|
+
\"/r/makingacronyms is a subreddit where someone posts a word or phrase, and
|
439
|
+
others try to create an acronym out of it.\", \"comment_score_hide_mins\":
|
440
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"self\", \"user_is_subscriber\":
|
441
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
442
|
+
null, \"id\": \"2z200\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
443
|
+
\"display_name\": \"AgeOfEmpires4\", \"header_img\": null, \"description_html\":
|
444
|
+
null, \"title\": \"AoE\", \"over18\": false, \"user_is_moderator\": null,
|
445
|
+
\"header_title\": null, \"description\": \"\", \"submit_link_label\": null,
|
446
|
+
\"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"high\",
|
447
|
+
\"header_size\": null, \"subscribers\": 1, \"submit_text_label\": null, \"name\":
|
448
|
+
\"t5_2z200\", \"created\": 1384149125.0, \"url\": \"/r/AgeOfEmpires4/\", \"created_utc\":
|
449
|
+
1384120325.0, \"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
|
450
|
+
\"\", \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
|
451
|
+
\"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
452
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>Please submit
|
453
|
+
links to the documents you want, one after the other. </p>\\n</div><!--
|
454
|
+
SC_ON -->\", \"user_is_banned\": null, \"id\": \"2z1zz\", \"submit_text\":
|
455
|
+
\"Please submit links to the documents you want, one after the other. \",
|
456
|
+
\"spam_selfposts\": \"high\", \"display_name\": \"CourseHero\", \"header_img\":
|
457
|
+
null, \"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Hey
|
458
|
+
there if you are reading this you are looking at an example submission. The
|
459
|
+
first 10 people from different colleges (to prevent spamming) will be free.
|
460
|
+
Those 10 get 2 documents.</p>\\n\\n<p>If you aren&#39;t free,
|
461
|
+
put your reddit username within the paypal transaction. $1 donations per document.
|
462
|
+
I&#39;ll try my best and fulfill all requests within 24 hours. If there
|
463
|
+
are issues, I&#39;ll alert you ASAP and attempt to refund the donation
|
464
|
+
(minus paypal fees ~.30 cents). </p>\\n\\n<p>The paypal email
|
465
|
+
address is ******@gmail.com (this will be put in after testing the first 10
|
466
|
+
people).</p>\\n\\n<p><strong># Submission Example</strong></p>\\n\\n<p>Links:</p>\\n\\n<p><a
|
467
|
+
href=\\\"http://www.coursehero.com/file/7159173/Homework-5-Solution/\\\">www.coursehero.com/file/7159173/Homework-5-Solution/</a>\\n<a
|
468
|
+
href=\\\"http://www.coursehero.com/file/7990250/hw-3-solutions/\\\">www.coursehero.com/file/7990250/hw-3-solutions/</a></p>\\n\\n<p><strong>#
|
469
|
+
END OF EXAMPLE</strong></p>\\n\\n<p>I can&#39;t stand
|
470
|
+
course hero. It taunts you with documents owned by your university. Need help
|
471
|
+
as you can&#39;t solve a problem? Well if you can&#39;t find it through
|
472
|
+
google, course hero may have a copy of an old document which may save you
|
473
|
+
hours or days worth of work. I sucked it up and bought a years subscription,
|
474
|
+
and hope to make up the initial costs while helping other people. The life
|
475
|
+
of this subreddit past that is questionable. </p>\\n\\n<p>The
|
476
|
+
legalities of this subreddit are similar to CourseHeros: Follow the guide
|
477
|
+
located at <a href=\\\"http://www.coursehero.com/copyright.php\\\">this
|
478
|
+
link</a> and send me a message with the information and infringing material
|
479
|
+
will be removed.</p>\\n</div><!-- SC_ON -->\", \"title\":
|
480
|
+
\"Get Course Hero Documents for free or cheap!\", \"over18\": false, \"user_is_moderator\":
|
481
|
+
null, \"header_title\": null, \"description\": \"Hey there if you are reading
|
482
|
+
this you are looking at an example submission. The first 10 people from different
|
483
|
+
colleges (to prevent spamming) will be free. Those 10 get 2 documents.\\n\\nIf
|
484
|
+
you aren't free, put your reddit username within the paypal transaction. $1
|
485
|
+
donations per document. I'll try my best and fulfill all requests within 24
|
486
|
+
hours. If there are issues, I'll alert you ASAP and attempt to refund the
|
487
|
+
donation (minus paypal fees ~.30 cents). \\n\\nThe paypal email address is
|
488
|
+
******@gmail.com (this will be put in after testing the first 10 people).\\n\\n\\n\\n\\n**#
|
489
|
+
Submission Example**\\n\\nLinks:\\n\\nwww.coursehero.com/file/7159173/Homework-5-Solution/\\nwww.coursehero.com/file/7990250/hw-3-solutions/\\n\\n\\n**#
|
490
|
+
END OF EXAMPLE**\\n\\nI can't stand course hero. It taunts you with documents
|
491
|
+
owned by your university. Need help as you can't solve a problem? Well if
|
492
|
+
you can't find it through google, course hero may have a copy of an old document
|
493
|
+
which may save you hours or days worth of work. I sucked it up and bought
|
494
|
+
a years subscription, and hope to make up the initial costs while helping
|
495
|
+
other people. The life of this subreddit past that is questionable. \\n\\n\\nThe
|
496
|
+
legalities of this subreddit are similar to CourseHeros: Follow the guide
|
497
|
+
located at [this link](http://www.coursehero.com/copyright.php) and send me
|
498
|
+
a message with the information and infringing material will be removed.\\n\\n\",
|
499
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
500
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
501
|
+
1, \"submit_text_label\": null, \"name\": \"t5_2z1zz\", \"created\": 1384149117.0,
|
502
|
+
\"url\": \"/r/CourseHero/\", \"created_utc\": 1384120317.0, \"user_is_contributor\":
|
503
|
+
null, \"public_traffic\": false, \"public_description\": \"First 10 people
|
504
|
+
get 2 documents free, after that it is a $1 dollar donation per document!
|
505
|
+
This will be adjusted as needed! \", \"comment_score_hide_mins\": 5, \"subreddit_type\":
|
506
|
+
\"public\", \"submission_type\": \"self\", \"user_is_subscriber\": null}}],
|
507
|
+
\"after\": \"t5_2z1zz\", \"before\": null}}"
|
508
|
+
http_version:
|
509
|
+
recorded_at: Sun, 10 Nov 2013 22:38:22 GMT
|
510
|
+
recorded_with: VCR 2.6.0
|