redditkit 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.md +22 -0
- data/README.md +155 -0
- data/Rakefile +8 -0
- data/lib/redditkit.rb +26 -0
- data/lib/redditkit/base.rb +60 -0
- data/lib/redditkit/client.rb +142 -0
- data/lib/redditkit/client/account.rb +73 -0
- data/lib/redditkit/client/apps.rb +63 -0
- data/lib/redditkit/client/captcha.rb +36 -0
- data/lib/redditkit/client/comments.rb +54 -0
- data/lib/redditkit/client/flair.rb +148 -0
- data/lib/redditkit/client/links.rb +134 -0
- data/lib/redditkit/client/miscellaneous.rb +50 -0
- data/lib/redditkit/client/moderation.rb +179 -0
- data/lib/redditkit/client/multireddits.rb +207 -0
- data/lib/redditkit/client/private_messages.rb +74 -0
- data/lib/redditkit/client/search.rb +25 -0
- data/lib/redditkit/client/subreddits.rb +120 -0
- data/lib/redditkit/client/users.rb +109 -0
- data/lib/redditkit/client/utilities.rb +137 -0
- data/lib/redditkit/client/voting.rb +41 -0
- data/lib/redditkit/client/wiki.rb +83 -0
- data/lib/redditkit/comment.rb +54 -0
- data/lib/redditkit/creatable.rb +17 -0
- data/lib/redditkit/error.rb +111 -0
- data/lib/redditkit/link.rb +140 -0
- data/lib/redditkit/moderator_action.rb +19 -0
- data/lib/redditkit/multireddit.rb +32 -0
- data/lib/redditkit/multireddit_description.rb +14 -0
- data/lib/redditkit/paginated_response.rb +22 -0
- data/lib/redditkit/private_message.rb +27 -0
- data/lib/redditkit/response/parse_json.rb +29 -0
- data/lib/redditkit/response/raise_error.rb +21 -0
- data/lib/redditkit/subreddit.rb +86 -0
- data/lib/redditkit/thing.rb +20 -0
- data/lib/redditkit/user.rb +30 -0
- data/lib/redditkit/version.rb +19 -0
- data/lib/redditkit/votable.rb +37 -0
- data/redditkit.gemspec +25 -0
- data/spec/cassettes/RedditKit_Client/should_raise_an_error_with_invalid_credentials.yml +39 -0
- data/spec/cassettes/RedditKit_Client_Account/_sign_in/signs_the_user_in.yml +132 -0
- data/spec/cassettes/RedditKit_Client_Account/_update_session/updates_the_current_session.yml +133 -0
- data/spec/cassettes/RedditKit_Client_Captcha/_captcha_url/returns_a_CAPTCHA_url_from_an_identifier.yml +38 -0
- data/spec/cassettes/RedditKit_Client_Captcha/_needs_captcha_/checks_if_the_current_account_needs_a_CAPTCHA.yml +44 -0
- data/spec/cassettes/RedditKit_Client_Captcha/_new_captcha_identifier/returns_a_new_CAPTCHA_identifier.yml +38 -0
- data/spec/cassettes/RedditKit_Client_Comments/_comment/requests_the_correct_resource.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Comments/_comments/with_a_RedditKit_Link/returns_comments_on_a_link.yml +140 -0
- data/spec/cassettes/RedditKit_Client_Comments/_comments/with_a_link_identifier/returns_comments_on_a_link.yml +89 -0
- data/spec/cassettes/RedditKit_Client_Comments/_submit_comment/requests_the_correct_resource.yml +313 -0
- data/spec/cassettes/RedditKit_Client_Flair/_apply_flair_template/clears_flair_templates.yml +52 -0
- data/spec/cassettes/RedditKit_Client_Flair/_clear_flair_templates/clears_flair_templates.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/creates_a_flair_template.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/raises_InvalidClassName.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/raises_TooManyClassNames.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Flair/_delete_user_flair/requests_the_correct_resource.yml +60 -0
- data/spec/cassettes/RedditKit_Client_Flair/_flair_list/returns_the_list_of_flair.yml +44 -0
- data/spec/cassettes/RedditKit_Client_Flair/_set_flair/requests_the_correct_resource.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Flair/_set_flair_options/sets_flair_options.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Flair/_set_flair_with_csv/requests_the_correct_resource.yml +51 -0
- data/spec/cassettes/RedditKit_Client_Flair/_toggle_flair/requests_the_correct_resource.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Links/_front_page/requests_the_correct_category.yml +498 -0
- data/spec/cassettes/RedditKit_Client_Links/_front_page/requests_the_correct_resource.yml +603 -0
- data/spec/cassettes/RedditKit_Client_Links/_hide/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Links/_link/returns_a_link.yml +55 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/contains_pagination_information.yml +402 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_a_certain_number_of_links.yml +186 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_front_page_links_if_no_subreddit_is_present.yml +603 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_links_with_the_correct_time_frame.yml +375 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_the_correct_subreddit_and_category.yml +402 -0
- data/spec/cassettes/RedditKit_Client_Links/_links_with_domain/returns_links_with_a_specific_domain.yml +99 -0
- data/spec/cassettes/RedditKit_Client_Links/_mark_nsfw/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Links/_random_link/returns_a_random_link.yml +91 -0
- data/spec/cassettes/RedditKit_Client_Links/_submit/raises_RedditKit_InvalidCaptcha_if_no_CAPTCHA_is_filled_out.yml +54 -0
- data/spec/cassettes/RedditKit_Client_Links/_unhide/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Links/_unmark_nsfw/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_delete/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_edit/requests_the_correct_resource.yml +52 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_save/saves_an_object.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_unsave/unsaves_an_object.yml +89 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_accept_moderator_invitation/requests_the_correct_resource.yml +53 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_ban/requests_the_correct_resource.yml +103 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_contributors_to_subreddit/requests_the_correct_resource.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_ignore_reports/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_moderation_log/returns_RedditKit_ModeratorAction_objects.yml +153 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_moderators_of_subreddit/requests_the_correct_resource.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_reset_subreddit_header/requests_the_correct_resource.yml +55 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_set_contest_mode/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_set_sticky_post/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_unban/requests_the_correct_resource.yml +54 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_unignore_reports/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_add_subreddit_to_multireddit/adds_a_subreddit_to_a_multireddit.yml +177 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_create_multireddit/creates_a_multireddit.yml +137 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_create_multireddit/raises_RedditKit_Conflict_when_using_an_existing_name.yml +133 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_delete_multireddit/deletes_a_multireddit.yml +134 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit/with_a_path/returns_a_multireddit.yml +39 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit/without_a_path/returns_a_multireddit.yml +39 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit_description/with_a_multireddit/returns_a_multireddit_description.yml +81 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit_description/with_a_username_and_multireddit_name/returns_a_multireddit_description.yml +45 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_my_multireddits/return_s_the_user_s_multireddits.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_remove_subreddit_from_multireddit/removes_a_subreddit_from_a_multireddit.yml +175 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_rename_multireddit/renames_a_multireddit.yml +134 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_set_multireddit_description/returns_a_multireddit_description.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_update_multireddit/updates_a_multireddit.yml +184 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_block_author_of_message/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_mark_as_read/requests_the_correct_resource.yml +51 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_mark_as_unread/requests_the_correct_resource.yml +51 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_messages/requests_the_correct_resource.yml +187 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_unblock/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Search/_search/restricts_searches_to_a_specific_subreddit.yml +878 -0
- data/spec/cassettes/RedditKit_Client_Search/_search/returns_a_specific_number_of_results.yml +130 -0
- data/spec/cassettes/RedditKit_Client_Search/_search/returns_search_results.yml +844 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_random_subreddit/returns_a_random_subreddit.yml +181 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_recommended_subreddits/returns_subreddit_names.yml +37 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_search_subreddits_by_name/returns_subreddit_names.yml +875 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddit/returns_a_specified_subreddit.yml +100 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits/returns_a_specified_number_of_subreddits.yml +505 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits/returns_subreddits_from_a_specific_category.yml +510 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits_by_topic/returns_subreddit_names.yml +41 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribe/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_a_specified_number_of_subreddits.yml +415 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_subreddits_from_a_specific_category.yml +58 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_the_user_s_subscribed_subreddits.yml +3469 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_unsubscribe/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Users/_friends/returns_the_user_s_friends.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_my_content/returns_the_user_s_content.yml +60 -0
- data/spec/cassettes/RedditKit_Client_Users/_user/requests_the_correct_resource.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_user/returns_a_specified_user.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_user/returns_the_authenticated_user.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_user_content/returns_the_user_s_content.yml +41 -0
- data/spec/cassettes/RedditKit_Client_Users/_username_available_/returns_false_for_an_unavailable_username.yml +36 -0
- data/spec/cassettes/RedditKit_Client_Users/_username_available_/returns_true_for_an_available_username.yml +36 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_comment_full_name_passed/downvotes_the_comment.yml +100 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_comment_passed/downvotes_the_comment.yml +154 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_link_full_name_passed/downvotes_the_link.yml +106 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_link_passed/downvotes_the_link.yml +166 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_comment_full_name_passed/upvotes_the_comment.yml +100 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_comment_passed/upvotes_the_comment.yml +154 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_link_full_name_passed/upvotes_the_link.yml +106 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_link_passed/upvotes_the_link.yml +166 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_comment_full_name_passed/withdraws_the_vote_on_the_comment.yml +154 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_comment_passed/withdraws_the_vote_on_the_comment.yml +208 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_link_full_name_passed/withdraws_the_vote_on_the_link.yml +166 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_link_passed/withdraws_the_vote_on_the_link.yml +226 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_add_wiki_editor/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_edit_wiki_page/requests_the_correct_resource.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_hide_wiki_revision/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_remove_wiki_editor/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_revert_to_revision/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Comment/should_not_be_deleted_if_neither_author_and_comment_attributes_are_set_to_deleted_.yml +90 -0
- data/spec/cassettes/RedditKit_Comment/should_return_replies.yml +90 -0
- data/spec/cassettes/authenticated_client.yml +87 -0
- data/spec/redditkit/base_spec.rb +45 -0
- data/spec/redditkit/client/account_spec.rb +50 -0
- data/spec/redditkit/client/apps_spec.rb +58 -0
- data/spec/redditkit/client/captcha_spec.rb +30 -0
- data/spec/redditkit/client/comments_spec.rb +40 -0
- data/spec/redditkit/client/flair_spec.rb +92 -0
- data/spec/redditkit/client/links_spec.rb +103 -0
- data/spec/redditkit/client/miscellaneous_spec.rb +40 -0
- data/spec/redditkit/client/moderation_spec.rb +141 -0
- data/spec/redditkit/client/multireddits_spec.rb +158 -0
- data/spec/redditkit/client/private_messages_spec.rb +51 -0
- data/spec/redditkit/client/search_spec.rb +25 -0
- data/spec/redditkit/client/subreddits_spec.rb +83 -0
- data/spec/redditkit/client/users_spec.rb +92 -0
- data/spec/redditkit/client/voting_spec.rb +99 -0
- data/spec/redditkit/client/wiki_spec.rb +40 -0
- data/spec/redditkit/client_spec.rb +46 -0
- data/spec/redditkit/comment_spec.rb +26 -0
- data/spec/redditkit/creatable_spec.rb +24 -0
- data/spec/redditkit/error_spec.rb +61 -0
- data/spec/redditkit/link_spec.rb +33 -0
- data/spec/redditkit/multireddit_spec.rb +27 -0
- data/spec/redditkit/paginated_response_spec.rb +23 -0
- data/spec/redditkit/thing_spec.rb +18 -0
- data/spec/redditkit/votable_spec.rb +52 -0
- data/spec/redditkit_spec.rb +21 -0
- data/spec/spec_helper.rb +124 -0
- metadata +390 -0
@@ -0,0 +1,100 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/r/programming/about.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:28 GMT
|
29
|
+
Content-Length:
|
30
|
+
- '6741'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
body:
|
34
|
+
encoding: UTF-8
|
35
|
+
string: "{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
36
|
+
null, \"id\": \"2fwo\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
37
|
+
\"display_name\": \"programming\", \"header_img\": \"http://static.reddit.com/reddit_programming.png\",
|
38
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><a
|
39
|
+
href=\\\"/r/programming\\\">/r/programming</a> is a reddit for discussion
|
40
|
+
and news about <a href=\\\"http://en.wikipedia.org/wiki/Computer_programming\\\">computer
|
41
|
+
programming</a></p>\\n\\n<hr/>\\n\\n<p><strong>Guidelines</strong></p>\\n\\n<ul>\\n<li><p>Please
|
42
|
+
try to keep submissions on topic and of high quality.</p></li>\\n<li><p>Just
|
43
|
+
because it has a computer in it doesn&#39;t make it programming.</p></li>\\n<li><p>Memes
|
44
|
+
and image macros are not acceptable forms of content.</p></li>\\n<li><p>If
|
45
|
+
there is no code in your link, it probably doesn&#39;t belong here.</p></li>\\n<li><p>App
|
46
|
+
demos should include code and/or architecture discussion.</p></li>\\n<li><p>Please
|
47
|
+
follow proper <a href=\\\"http://www.reddit.com/help/reddiquette\\\">reddiquette</a>.</p></li>\\n</ul>\\n\\n<hr/>\\n\\n<p><strong>Info</strong></p>\\n\\n<ul>\\n<li><p>Do
|
48
|
+
you have a question? Check out <a href=\\\"http://www.reddit.com/r/learnprogramming\\\">/r/learnprogramming</a>,
|
49
|
+
<a href=\\\"http://www.reddit.com/r/cscareerquestions\\\">/r/cscareerquestions</a>,
|
50
|
+
or <a href=\\\"http://www.stackoverflow.com\\\">stackoverflow</a>.</p></li>\\n<li><p>For
|
51
|
+
posting job listings, please visit <a href=\\\"http://www.reddit.com/r/forhire\\\">/r/forhire</a>
|
52
|
+
or <a href=\\\"http://www.reddit.com/r/jobbit\\\">/r/jobbit</a>.</p></li>\\n<li><p>Check
|
53
|
+
out our <a href=\\\"http://www.reddit.com/r/programming/wiki/faq\\\">faq</a>.
|
54
|
+
\ It could use some updating.</p></li>\\n<li><p>If
|
55
|
+
you&#39;re an all-star hacker (or even just beginning), why not join the
|
56
|
+
discussion at <a href=\\\"http://www.reddit.com/r/redditdev\\\">/r/redditdev</a>
|
57
|
+
and steal our <a href=\\\"https://github.com/reddit/reddit/wiki\\\">reddit
|
58
|
+
code</a>!</p></li>\\n</ul>\\n\\n<hr/>\\n\\n<p><strong>Related
|
59
|
+
reddits</strong></p>\\n\\n<p><a href=\\\"http://www.reddit.com/r/technology\\\">/r/technology</a></p>\\n\\n<p><a
|
60
|
+
href=\\\"http://www.reddit.com/r/learnprogramming\\\">/r/learnprogramming</a></p>\\n\\n<p><a
|
61
|
+
href=\\\"http://www.reddit.com/r/coding\\\">/r/coding</a></p>\\n\\n<p><a
|
62
|
+
href=\\\"http://www.reddit.com/r/compsci\\\">/r/compsci</a></p>\\n\\n<p><a
|
63
|
+
href=\\\"http://www.reddit.com/r/dailyprogrammer\\\">/r/dailyprogrammer</a></p>\\n\\n<p><a
|
64
|
+
href=\\\"http://www.reddit.com/r/netsec\\\">/r/netsec</a></p>\\n\\n<p><a
|
65
|
+
href=\\\"http://www.reddit.com/r/webdev\\\">/r/webdev</a></p>\\n\\n<p><a
|
66
|
+
href=\\\"http://www.reddit.com/r/web_design\\\">/r/web_design</a></p>\\n\\n<p><a
|
67
|
+
href=\\\"http://www.reddit.com/r/gamedev\\\">/r/gamedev</a></p>\\n\\n<p><a
|
68
|
+
href=\\\"http://www.reddit.com/r/cscareerquestions\\\">/r/cscareerquestions</a></p>\\n\\n<p><a
|
69
|
+
href=\\\"http://www.reddit.com/r/reverseengineering\\\">/r/reverseengineering</a></p>\\n\\n<p><a
|
70
|
+
href=\\\"http://www.reddit.com/r/startups\\\">/r/startups</a></p>\\n\\n<p><a
|
71
|
+
href=\\\"http://www.reddit.com/r/techsupport\\\">/r/techsupport</a></p>\\n\\n<p><strong><a
|
72
|
+
href=\\\"http://www.reddit.com/r/programming/wiki/faq#wiki_what_language_reddits_are_there.3F\\\">Specific
|
73
|
+
languages</a></strong></p>\\n</div><!-- SC_ON -->\",
|
74
|
+
\"title\": \"programming\", \"over18\": false, \"user_is_moderator\": null,
|
75
|
+
\"header_title\": null, \"description\": \"/r/programming is a reddit for
|
76
|
+
discussion and news about [computer programming](http://en.wikipedia.org/wiki/Computer_programming)\\n\\n****\\n**Guidelines**\\n\\n*
|
77
|
+
Please try to keep submissions on topic and of high quality.\\n\\n* Just because
|
78
|
+
it has a computer in it doesn't make it programming.\\n\\n* Memes and image
|
79
|
+
macros are not acceptable forms of content.\\n\\n* If there is no code in
|
80
|
+
your link, it probably doesn't belong here.\\n\\n* App demos should include
|
81
|
+
code and/or architecture discussion.\\n\\n* Please follow proper [reddiquette](http://www.reddit.com/help/reddiquette).\\n\\n****\\n**Info**\\n\\n*
|
82
|
+
Do you have a question? Check out [/r/learnprogramming](http://www.reddit.com/r/learnprogramming),
|
83
|
+
[/r/cscareerquestions](http://www.reddit.com/r/cscareerquestions), or [stackoverflow](http://www.stackoverflow.com).\\n\\n*
|
84
|
+
For posting job listings, please visit [/r/forhire](http://www.reddit.com/r/forhire)
|
85
|
+
or [/r/jobbit](http://www.reddit.com/r/jobbit).\\n\\n* Check out our [faq](http://www.reddit.com/r/programming/wiki/faq).
|
86
|
+
\ It could use some updating.\\n\\n* If you're an all-star hacker (or even
|
87
|
+
just beginning), why not join the discussion at [/r/redditdev](http://www.reddit.com/r/redditdev)
|
88
|
+
and steal our [reddit code](https://github.com/reddit/reddit/wiki)!\\n\\n****\\n**Related
|
89
|
+
reddits**\\n\\n[/r/technology](http://www.reddit.com/r/technology)\\n\\n[/r/learnprogramming](http://www.reddit.com/r/learnprogramming)\\n\\n[/r/coding](http://www.reddit.com/r/coding)\\n\\n[/r/compsci](http://www.reddit.com/r/compsci)\\n\\n[/r/dailyprogrammer](http://www.reddit.com/r/dailyprogrammer)\\n\\n[/r/netsec](http://www.reddit.com/r/netsec)\\n\\n[/r/webdev](http://www.reddit.com/r/webdev)\\n\\n[/r/web_design](http://www.reddit.com/r/web_design)\\n\\n[/r/gamedev](http://www.reddit.com/r/gamedev)\\n\\n[/r/cscareerquestions](http://www.reddit.com/r/cscareerquestions)\\n\\n[/r/reverseengineering](http://www.reddit.com/r/reverseengineering)\\n\\n[/r/startups](http://www.reddit.com/r/startups)\\n\\n[/r/techsupport](http://www.reddit.com/r/techsupport)\\n\\n**[Specific
|
90
|
+
languages](http://www.reddit.com/r/programming/wiki/faq#wiki_what_language_reddits_are_there.3F)**\",
|
91
|
+
\"submit_link_label\": null, \"accounts_active\": 705, \"spam_comments\":
|
92
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
93
|
+
477447, \"submit_text_label\": null, \"name\": \"t5_2fwo\", \"created\": 1141150769.0,
|
94
|
+
\"url\": \"/r/programming/\", \"created_utc\": 1141150769.0, \"user_is_contributor\":
|
95
|
+
null, \"public_traffic\": false, \"public_description\": \"Computer Programming\",
|
96
|
+
\"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
|
97
|
+
\"link\", \"user_is_subscriber\": null}}"
|
98
|
+
http_version:
|
99
|
+
recorded_at: Sun, 10 Nov 2013 22:38:27 GMT
|
100
|
+
recorded_with: VCR 2.6.0
|
@@ -0,0 +1,505 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/reddits/.json?limit=3
|
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:24 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\": \"<!-- SC_OFF --><div
|
38
|
+
class=\\\"md\\\"><p>Got a cool halloween costume? Post it to <a
|
39
|
+
href=\\\"/r/halloweencostume\\\">/r/halloweencostume</a> !</p>\\n</div><!--
|
40
|
+
SC_ON -->\", \"user_is_banned\": null, \"id\": \"2qh0u\", \"submit_text\":
|
41
|
+
\"Got a cool halloween costume? Post it to /r/halloweencostume !\", \"spam_selfposts\":
|
42
|
+
\"high\", \"display_name\": \"pics\", \"header_img\": \"http://a.thumbs.redditmedia.com/CsJN7DRRk2BQ2eQB.png\",
|
43
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>A
|
44
|
+
place to share photographs and pictures. Feel free to post your own, but please
|
45
|
+
<strong>read the rules first</strong> (see below), and note that
|
46
|
+
we are <em>not a catch-all</em> for general images (of screenshots,
|
47
|
+
comics, etc.)</p>\\n\\n<h1>Spoiler code</h1>\\n\\n<p>Please
|
48
|
+
mark spoilers like this:<br/>\\n<code>[text here](/spoiler)</code></p>\\n\\n<p>Hover
|
49
|
+
over to <a href=\\\"/spoiler\\\">read</a>.</p>\\n\\n<h1>Rules</h1>\\n\\n<ol>\\n<li><p><strong>No
|
50
|
+
screenshots, or pictures with added or superimposed text.</strong> <em>This
|
51
|
+
includes <a href=\\\"http://en.wikipedia.org/wiki/Image_macro\\\">image
|
52
|
+
macros</a>, comics, infographics and most diagrams. Text (e.g. a URL)
|
53
|
+
serving to credit the original author is exempt.</em></p></li>\\n<li><p><strong>No
|
54
|
+
nudity, porn or gore.</strong> <em>Other NSFW content must be
|
55
|
+
tagged.</em></p></li>\\n<li><p><strong>No
|
56
|
+
personal information.</strong> <em>This includes anything hosted
|
57
|
+
on Facebook&#39;s servers, as they can be traced to the original account
|
58
|
+
holder. Stalking &amp; harassment will not be tolerated.</em> <strong><em>No
|
59
|
+
missing-persons requests!</em></strong></p></li>\\n<li><p><strong>No
|
60
|
+
post titles soliciting votes</strong> <em>(e.g. &quot;upvote
|
61
|
+
this&quot;).</em></p></li>\\n<li><p><strong>No
|
62
|
+
DAE, &quot;[FIXED]&quot; or &quot;cake day&quot; posts, nor
|
63
|
+
posts addressed to a specific redditor.</strong> <em>&quot;[FIXED]&quot;
|
64
|
+
posts should be added as a comment to the original image.</em></p></li>\\n<li><p><strong>Submissions
|
65
|
+
must link directly to a specific image file or to a website with minimal ads.</strong>
|
66
|
+
<em>We do not allow blog hosting of images (&quot;blogspam&quot;),
|
67
|
+
but links to albums on image hosting websites are okay. URL shorteners are
|
68
|
+
prohibited.</em></p></li>\\n<li><p><strong>No
|
69
|
+
animated images.</strong> <em>Please submit them to <a href=\\\"/r/gif\\\">/r/gif</a>,
|
70
|
+
<a href=\\\"/r/gifs\\\">/r/gifs</a>, or <a href=\\\"/r/reactiongifs\\\">/r/reactiongifs</a>
|
71
|
+
instead.</em></p></li>\\n</ol>\\n\\n<ul>\\n<li><p>If
|
72
|
+
your submission appears to be filtered but <strong>definitely</strong>
|
73
|
+
meets the above rules, <a href=\\\"/message/compose?to=%23pics\\\">please
|
74
|
+
send us a message</a> with a link to the <strong>comments section</strong>
|
75
|
+
of your post (not a direct link to the image). <strong>Don&#39;t
|
76
|
+
delete it</strong> as that just makes the filter hate you! </p></li>\\n<li><p>If
|
77
|
+
you come across any rule violations, please report the submission or <a
|
78
|
+
href=\\\"http://www.reddit.com/message/compose?to=%23pics\\\">message the
|
79
|
+
mods</a> and one of us will remove it!</p></li>\\n<li><p>Please
|
80
|
+
note: serial reposters may be filtered</p></li>\\n</ul>\\n\\n<p>Please
|
81
|
+
also try to come up with <strong>original post titles</strong>.
|
82
|
+
Submissions that use certain clich\\u00e9s/memes will be automatically tagged
|
83
|
+
with a warning.</p>\\n\\n<h1>Links</h1>\\n\\n<p>If
|
84
|
+
your post doesn&#39;t meet the above rules, consider submitting it on
|
85
|
+
one of these other subreddits:</p>\\n\\n<table><thead>\\n<tr>\\n<th
|
86
|
+
align=\\\"left\\\">Comics</th>\\n<th align=\\\"left\\\">&#0160;</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
87
|
+
align=\\\"left\\\"><a href=\\\"/r/comics\\\">/r/comics</a></td>\\n<td
|
88
|
+
align=\\\"left\\\"><a href=\\\"/r/webcomics\\\">/r/webcomics</a></td>\\n</tr>\\n<tr>\\n<td
|
89
|
+
align=\\\"left\\\"><a href=\\\"/r/vertical\\\">/r/vertical</a></td>\\n<td
|
90
|
+
align=\\\"left\\\"><a href=\\\"/r/fffffffuuuuuuuuuuuu/\\\">/r/f7u12</a></td>\\n</tr>\\n<tr>\\n<td
|
91
|
+
align=\\\"left\\\"><a href=\\\"/r/ragenovels\\\">/r/ragenovels</a></td>\\n<td
|
92
|
+
align=\\\"left\\\"><a href=\\\"/r/AdviceAtheists\\\">/r/AdviceAtheists</a></td>\\n</tr>\\n<tr>\\n<td
|
93
|
+
align=\\\"left\\\"><a href=\\\"/r/comicbookart\\\">/r/comicbookart</a></td>\\n<td
|
94
|
+
align=\\\"left\\\"></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><strong>Image
|
95
|
+
macros</strong></td>\\n<td align=\\\"left\\\"><strong>Screenshots/text</strong></td>\\n</tr>\\n<tr>\\n<td
|
96
|
+
align=\\\"left\\\"><a href=\\\"/r/lolcats\\\">/r/lolcats</a></td>\\n<td
|
97
|
+
align=\\\"left\\\"><a href=\\\"/r/screenshots\\\">/r/screenshots</a></td>\\n</tr>\\n<tr>\\n<td
|
98
|
+
align=\\\"left\\\"><a href=\\\"/r/AdviceAnimals\\\">/r/AdviceAnimals</a></td>\\n<td
|
99
|
+
align=\\\"left\\\"><a href=\\\"/r/desktops\\\">/r/desktops</a></td>\\n</tr>\\n<tr>\\n<td
|
100
|
+
align=\\\"left\\\"><a href=\\\"/r/Demotivational\\\">/r/Demotivational</a></td>\\n<td
|
101
|
+
align=\\\"left\\\"><a href=\\\"/r/facepalm\\\">/r/facepalm</a>
|
102
|
+
(Facebook)</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
103
|
+
href=\\\"/r/reactiongifs\\\">/r/reactiongifs</a></td>\\n<td
|
104
|
+
align=\\\"left\\\"><a href=\\\"/r/DesktopDetective\\\">/r/DesktopDetective</a></td>\\n</tr>\\n<tr>\\n<td
|
105
|
+
align=\\\"left\\\"><a href=\\\"/r/memes\\\">/r/memes</a></td>\\n<td
|
106
|
+
align=\\\"left\\\"></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><strong>Wallpaper</strong></td>\\n<td
|
107
|
+
align=\\\"left\\\"><strong>Animals</strong></td>\\n</tr>\\n<tr>\\n<td
|
108
|
+
align=\\\"left\\\"><a href=\\\"/r/wallpaper\\\">/r/wallpaper</a></td>\\n<td
|
109
|
+
align=\\\"left\\\"><a href=\\\"/r/aww\\\">/r/aww</a></td>\\n</tr>\\n<tr>\\n<td
|
110
|
+
align=\\\"left\\\"><a href=\\\"/r/wallpapers\\\">/r/wallpapers</a></td>\\n<td
|
111
|
+
align=\\\"left\\\"><a href=\\\"/r/cats\\\">/r/cats</a></td>\\n</tr>\\n<tr>\\n<td
|
112
|
+
align=\\\"left\\\"><a href=\\\"http://www.reddit.com/r/earthporn+villageporn+cityporn+spaceporn+waterporn+abandonedporn+animalporn+humanporn+botanicalporn+adrenalineporn+destructionporn+movieposterporn+albumartporn+machineporn+newsporn+geekporn+bookporn+mapporn+adporn+designporn+roomporn+militaryporn+historyporn+quotesporn+skyporn+fireporn+infrastructureporn+macroporn+instrumentporn+climbingporn+architectureporn+artporn+cemeteryporn+carporn+fractalporn+exposureporn+gunporn+culinaryporn+dessertporn+agricultureporn+boatporn+geologyporn+futureporn+winterporn+metalporn+microporn+streetartporn+autumnporn\\\">The
|
113
|
+
SFWPorn Network</a></td>\\n<td align=\\\"left\\\"><a
|
114
|
+
href=\\\"/r/TrollingAnimals\\\">/r/TrollingAnimals</a></td>\\n</tr>\\n<tr>\\n<td
|
115
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
116
|
+
href=\\\"/r/deadpets\\\">/r/deadpets</a></td>\\n</tr>\\n<tr>\\n<td
|
117
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
118
|
+
href=\\\"/r/birdpics\\\">/r/birdpics</a></td>\\n</tr>\\n<tr>\\n<td
|
119
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
120
|
+
href=\\\"/r/foxes\\\">/r/foxes</a></td>\\n</tr>\\n<tr>\\n<td
|
121
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
122
|
+
href=\\\"/r/dogpictures\\\">/r/dogpictures</a></td>\\n</tr>\\n<tr>\\n<td
|
123
|
+
align=\\\"left\\\"><strong>Photography</strong></td>\\n<td
|
124
|
+
align=\\\"left\\\"><strong>Low-moderated pics</strong></td>\\n</tr>\\n<tr>\\n<td
|
125
|
+
align=\\\"left\\\"><a href=\\\"/r/photography\\\">/r/photography</a></td>\\n<td
|
126
|
+
align=\\\"left\\\"><a href=\\\"/r/AnythingGoesPics\\\">/r/AnythingGoesPics</a></td>\\n</tr>\\n<tr>\\n<td
|
127
|
+
align=\\\"left\\\"><a href=\\\"/r/photocritique\\\">/r/photocritique</a></td>\\n<td
|
128
|
+
align=\\\"left\\\"><a href=\\\"/r/images\\\">/r/images</a></td>\\n</tr>\\n<tr>\\n<td
|
129
|
+
align=\\\"left\\\"><a href=\\\"/r/HDR\\\">/r/HDR</a></td>\\n<td
|
130
|
+
align=\\\"left\\\"><a href=\\\"/r/misc\\\">/r/misc</a></td>\\n</tr>\\n<tr>\\n<td
|
131
|
+
align=\\\"left\\\"><a href=\\\"/r/windowshots\\\">/r/windowshots</a></td>\\n<td
|
132
|
+
align=\\\"left\\\"><a href=\\\"/r/redditdotcom\\\">/r/redditdotcom</a></td>\\n</tr>\\n<tr>\\n<td
|
133
|
+
align=\\\"left\\\"><a href=\\\"/r/PictureChallenge\\\">/r/PictureChallenge</a></td>\\n<td
|
134
|
+
align=\\\"left\\\"></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><strong>GIFs/Misc.</strong></td>\\n<td
|
135
|
+
align=\\\"left\\\"><strong>New reddits</strong></td>\\n</tr>\\n<tr>\\n<td
|
136
|
+
align=\\\"left\\\"><a href=\\\"/r/reactiongifs\\\">/r/reactiongifs</a></td>\\n<td
|
137
|
+
align=\\\"left\\\"><a href=\\\"/r/britpics\\\">/r/britpics</a></td>\\n</tr>\\n<tr>\\n<td
|
138
|
+
align=\\\"left\\\"><a href=\\\"/r/gifs\\\">/r/gifs</a></td>\\n<td
|
139
|
+
align=\\\"left\\\"><a href=\\\"http://www.reddit.com/user/karmicviolence/m/imaginaryexpanded\\\">Imaginary
|
140
|
+
Network</a></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
141
|
+
href=\\\"/r/dataisbeautiful\\\">/r/dataisbeautiful</a></td>\\n<td
|
142
|
+
align=\\\"left\\\"><a href=\\\"/r/thennnow\\\">/r/thennnow</a></td>\\n</tr>\\n<tr>\\n<td
|
143
|
+
align=\\\"left\\\"><a href=\\\"/r/picrequests\\\">/r/picrequests</a></td>\\n<td
|
144
|
+
align=\\\"left\\\"><a href=\\\"/r/SpecArt\\\">/r/SpecArt</a></td>\\n</tr>\\n<tr>\\n<td
|
145
|
+
align=\\\"left\\\"><a href=\\\"/r/doodles\\\">/r/doodles</a></td>\\n<td
|
146
|
+
align=\\\"left\\\"><a href=\\\"/r/IncredibleIndia\\\">/r/IncredibleIndia</a>
|
147
|
+
.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
148
|
+
href=\\\"/r/NewAmericanCitizen\\\">/r/NewAmericanCitizen</a></td>\\n<td
|
149
|
+
align=\\\"left\\\"><a href=\\\"/r/timelinecovers\\\">/r/timelinecovers</a></td>\\n</tr>\\n<tr>\\n<td
|
150
|
+
align=\\\"left\\\"><a href=\\\"/r/ProgressPics\\\">/r/ProgressPics</a></td>\\n<td
|
151
|
+
align=\\\"left\\\"><a href=\\\"/r/MemesIRL\\\">/r/MemesIRL</a></td>\\n</tr>\\n<tr>\\n<td
|
152
|
+
align=\\\"left\\\"><a href=\\\"/r/ModeratorDuck/wiki/pics\\\">(<em>More</em>)</a></td>\\n<td
|
153
|
+
align=\\\"left\\\"><a href=\\\"/r/OldSchoolCool\\\">/r/OldSchoolCool</a></td>\\n</tr>\\n<tr>\\n<td
|
154
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
155
|
+
href=\\\"/r/photoshopbattles\\\">/r/photoshopbattles</a></td>\\n</tr>\\n<tr>\\n<td
|
156
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
157
|
+
href=\\\"/r/PastAndPresentPics\\\">/r/PastAndPresentPics</a></td>\\n</tr>\\n</tbody></table>\\n\\n<p>Also
|
158
|
+
check out <a href=\\\"http://irc.reddit.com\\\">http://irc.reddit.com</a></p>\\n</div><!--
|
159
|
+
SC_ON -->\", \"title\": \"/r/Pics\", \"over18\": false, \"user_is_moderator\":
|
160
|
+
null, \"header_title\": \"Logo by corvuskorax\", \"description\": \"A place
|
161
|
+
to share photographs and pictures. Feel free to post your own, but please
|
162
|
+
**read the rules first** (see below), and note that we are *not a catch-all*
|
163
|
+
for general images (of screenshots, comics, etc.)\\n\\n#Spoiler code#\\n\\nPlease
|
164
|
+
mark spoilers like this: \\n`[text here](/spoiler)`\\n\\nHover over to [read](/spoiler).\\n\\n#Rules#\\n\\n1.
|
165
|
+
**No screenshots, or pictures with added or superimposed text.** *This includes
|
166
|
+
[image macros](http://en.wikipedia.org/wiki/Image_macro), comics, infographics
|
167
|
+
and most diagrams. Text (e.g. a URL) serving to credit the original author
|
168
|
+
is exempt.*\\n\\n1. **No nudity, porn or gore.** *Other NSFW content must
|
169
|
+
be tagged.*\\n\\n1. **No personal information.** *This includes anything hosted
|
170
|
+
on Facebook's servers, as they can be traced to the original account holder.
|
171
|
+
Stalking & harassment will not be tolerated.* ***No missing-persons requests!***\\n\\n1.
|
172
|
+
**No post titles soliciting votes** *(e.g. \\\"upvote this\\\").*\\n\\n1.
|
173
|
+
**No DAE, \\\"[FIXED]\\\" or \\\"cake day\\\" posts, nor posts addressed to
|
174
|
+
a specific redditor.** *\\\"[FIXED]\\\" posts should be added as a comment
|
175
|
+
to the original image.*\\n\\n1. **Submissions must link directly to a specific
|
176
|
+
image file or to a website with minimal ads.** *We do not allow blog hosting
|
177
|
+
of images (\\\"blogspam\\\"), but links to albums on image hosting websites
|
178
|
+
are okay. URL shorteners are prohibited.*\\n\\n1. **No animated images.**
|
179
|
+
*Please submit them to /r/gif, /r/gifs, or /r/reactiongifs instead.*\\n\\n*
|
180
|
+
If your submission appears to be filtered but **definitely** meets the above
|
181
|
+
rules, [please send us a message](/message/compose?to=%23pics) with a link
|
182
|
+
to the **comments section** of your post (not a direct link to the image).
|
183
|
+
**Don't delete it** as that just makes the filter hate you! \\n\\n* If you
|
184
|
+
come across any rule violations, please report the submission or [message
|
185
|
+
the mods](http://www.reddit.com/message/compose?to=%23pics) and one of us
|
186
|
+
will remove it!\\n\\n* Please note: serial reposters may be filtered\\n\\nPlease
|
187
|
+
also try to come up with **original post titles**. Submissions that use certain
|
188
|
+
clich\\u00e9s/memes will be automatically tagged with a warning.\\n\\n#Links#\\nIf
|
189
|
+
your post doesn't meet the above rules, consider submitting it on one of these
|
190
|
+
other subreddits:\\n\\nComics | &#0160;\\n:---|:---\\n/r/comics | /r/webcomics\\n/r/vertical
|
191
|
+
| [/r/f7u12](/r/fffffffuuuuuuuuuuuu/)\\n/r/ragenovels | /r/AdviceAtheists
|
192
|
+
\\n/r/comicbookart | \\n**Image macros**|**Screenshots/text**\\n/r/lolcats
|
193
|
+
| /r/screenshots\\n/r/AdviceAnimals | /r/desktops\\n/r/Demotivational | /r/facepalm
|
194
|
+
(Facebook)\\n/r/reactiongifs | /r/DesktopDetective\\n/r/memes | \\n**Wallpaper**|**Animals**\\n/r/wallpaper
|
195
|
+
| /r/aww\\n/r/wallpapers | /r/cats\\n[The SFWPorn Network](http://www.reddit.com/r/earthporn+villageporn+cityporn+spaceporn+waterporn+abandonedporn+animalporn+humanporn+botanicalporn+adrenalineporn+destructionporn+movieposterporn+albumartporn+machineporn+newsporn+geekporn+bookporn+mapporn+adporn+designporn+roomporn+militaryporn+historyporn+quotesporn+skyporn+fireporn+infrastructureporn+macroporn+instrumentporn+climbingporn+architectureporn+artporn+cemeteryporn+carporn+fractalporn+exposureporn+gunporn+culinaryporn+dessertporn+agricultureporn+boatporn+geologyporn+futureporn+winterporn+metalporn+microporn+streetartporn+autumnporn)
|
196
|
+
| /r/TrollingAnimals\\n&#0160; | /r/deadpets\\n&#0160; | /r/birdpics\\n&#0160;
|
197
|
+
| /r/foxes\\n&#0160; | /r/dogpictures\\n**Photography**|**Low-moderated
|
198
|
+
pics**\\n/r/photography | /r/AnythingGoesPics\\n/r/photocritique | /r/images\\n/r/HDR
|
199
|
+
| /r/misc\\n/r/windowshots | /r/redditdotcom\\n/r/PictureChallenge |\\n**GIFs/Misc.**|**New
|
200
|
+
reddits**\\n/r/reactiongifs | /r/britpics \\n/r/gifs | [Imaginary Network](http://www.reddit.com/user/karmicviolence/m/imaginaryexpanded)\\n/r/dataisbeautiful
|
201
|
+
| /r/thennnow\\n/r/picrequests | /r/SpecArt\\n/r/doodles | /r/IncredibleIndia
|
202
|
+
.\\n/r/NewAmericanCitizen | /r/timelinecovers\\n/r/ProgressPics | /r/MemesIRL
|
203
|
+
\\n[(*More*)](/r/ModeratorDuck/wiki/pics) | /r/OldSchoolCool\\n&#0160;
|
204
|
+
| /r/photoshopbattles\\n&#0160; | /r/PastAndPresentPics\\n\\nAlso check
|
205
|
+
out http://irc.reddit.com\\n \", \"submit_link_label\": null, \"accounts_active\":
|
206
|
+
null, \"spam_comments\": \"high\", \"spam_links\": \"high\", \"header_size\":
|
207
|
+
[160, 64], \"subscribers\": 4620979, \"submit_text_label\": null, \"name\":
|
208
|
+
\"t5_2qh0u\", \"created\": 1201221069.0, \"url\": \"/r/pics/\", \"created_utc\":
|
209
|
+
1201221069.0, \"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
|
210
|
+
\"A place to share interesting photographs and pictures.\", \"comment_score_hide_mins\":
|
211
|
+
60, \"subreddit_type\": \"public\", \"submission_type\": \"link\", \"user_is_subscriber\":
|
212
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
213
|
+
null, \"id\": \"2qh33\", \"submit_text\": \"\", \"spam_selfposts\": \"low\",
|
214
|
+
\"display_name\": \"funny\", \"header_img\": \"http://f.thumbs.redditmedia.com/CzqvfNUiQGzmMIOw.png\",
|
215
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><strong>Welcome
|
216
|
+
to r/Funny:</strong></p>\\n\\n<p>You may only post if you
|
217
|
+
are funny. </p>\\n\\n<hr/>\\n\\n<h1>Rules</h1>\\n\\n<p><em>hover
|
218
|
+
for details</em></p>\\n\\n<table><thead>\\n<tr>\\n<th
|
219
|
+
align=\\\"left\\\"></th>\\n<th align=\\\"left\\\"></th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
220
|
+
align=\\\"left\\\">1. No reactiongifs or HIFW posts</td>\\n<td
|
221
|
+
align=\\\"left\\\">How I Feel When posts belong in <a href=\\\"/r/HIFW\\\">/r/HIFW</a>.
|
222
|
+
Reaction gifs belong in <a href=\\\"/r/reactiongifs\\\">/r/reactiongifs</a>.</td>\\n</tr>\\n<tr>\\n<td
|
223
|
+
align=\\\"left\\\">2. No posts with their sole purpose being to communicate
|
224
|
+
with another redditor.</td>\\n<td align=\\\"left\\\"><a href=\\\"http://www.reddit.com/lq3uv/\\\">Click
|
225
|
+
for an Example.</a>. This includes asking for upvotes.</td>\\n</tr>\\n<tr>\\n<td
|
226
|
+
align=\\\"left\\\">3. No Posts for the specific point of it being your
|
227
|
+
reddit birthday.</td>\\n<td align=\\\"left\\\">Cake day posts
|
228
|
+
are not allowed.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\">4.
|
229
|
+
Posts which result in harassment of any individual, subreddit, or other entity
|
230
|
+
may be removed at the moderators&#39; discretion.</td>\\n<td
|
231
|
+
align=\\\"left\\\">Posts with titles such as &quot;I got banned from
|
232
|
+
/r/___&quot; or &quot;This got removed from /r/___&quot; are not
|
233
|
+
allowed.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\">5.
|
234
|
+
No Politics</td>\\n<td align=\\\"left\\\">Anything involving politics
|
235
|
+
or a political figure. Try <a href=\\\"/r/politicalhumor\\\">/r/politicalhumor</a>
|
236
|
+
instead.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\">6.
|
237
|
+
No Pictures of just text</td>\\n<td align=\\\"left\\\">Make a
|
238
|
+
self post instead. <a href=\\\"http://i.imgur.com/2cPuY8C.jpg\\\">Example</a></td>\\n</tr>\\n<tr>\\n<td
|
239
|
+
align=\\\"left\\\">7. No DAE posts</td>\\n<td align=\\\"left\\\">Go
|
240
|
+
to <a href=\\\"/r/doesanybodyelse\\\">/r/doesanybodyelse</a></td>\\n</tr>\\n<tr>\\n<td
|
241
|
+
align=\\\"left\\\">8. No Links to tumblr</td>\\n<td align=\\\"left\\\">Direct
|
242
|
+
links to images hosted on tumblr (ex. 24.media.tumblr.com/img.jpg) are allowed.</td>\\n</tr>\\n<tr>\\n<td
|
243
|
+
align=\\\"left\\\">9. No URL shorteners</td>\\n<td align=\\\"left\\\">No
|
244
|
+
link shorteners (or HugeURL) in either post links or comments. They will be
|
245
|
+
deleted regardless of intent.</td>\\n</tr>\\n<tr>\\n<td
|
246
|
+
align=\\\"left\\\">10. No gore or porn (including sexually graphic images).</td>\\n<td
|
247
|
+
align=\\\"left\\\">Other NSFW content must be tagged as such</td>\\n</tr>\\n<tr>\\n<td
|
248
|
+
align=\\\"left\\\">11. No personal information.</td>\\n<td align=\\\"left\\\">This
|
249
|
+
includes anything hosted on Facebook&#39;s servers, as they can be traced
|
250
|
+
to the original account holder.</td>\\n</tr>\\n<tr>\\n<td
|
251
|
+
align=\\\"left\\\">12. No memes, rage comics, demotivationals, eCards,
|
252
|
+
or standupshots</td>\\n<td align=\\\"left\\\">Memes belong in
|
253
|
+
<a href=\\\"/r/adviceanimals\\\">/r/adviceanimals</a>, rage comics
|
254
|
+
go to <a href=\\\"/r/fffffffuuuuuuuuuuuu\\\">/r/fffffffuuuuuuuuuuuu</a>,
|
255
|
+
demotivationals go to <a href=\\\"http://www.reddit.com/r/Demotivational\\\">/r/Demotivational</a>,
|
256
|
+
submit eCards to <a href=\\\"http://www.reddit.com/r/ecards\\\">/r/ecards</a>,
|
257
|
+
and standupshots go to <a href=\\\"/r/standupshots\\\">/r/standupshots</a></td>\\n</tr>\\n<tr>\\n<td
|
258
|
+
align=\\\"left\\\">13. Do not rehost webcomics</td>\\n<td align=\\\"left\\\">Rehosted
|
259
|
+
webcomics will be removed. Please submit a link to the original comic&#39;s
|
260
|
+
site and preferably an imgur link in the comments. Do not post a link to the
|
261
|
+
comic image, it must be linked to the page of the comic. <a href=\\\"http://www.reddit.com/kqwwx/\\\">(*)</a>
|
262
|
+
<a href=\\\"http://www.reddit.com/kwmk3\\\">(*)</a></td>\\n</tr>\\n<tr>\\n<td
|
263
|
+
align=\\\"left\\\">14. No SMS or Social Media Content (including Reddit)</td>\\n<td
|
264
|
+
align=\\\"left\\\">This includes direct linking to reddit threads, reddit
|
265
|
+
comments, other subreddits, facebook profiles, twitter profiles, tweets, embedded
|
266
|
+
tweets, and screenshots of the above, including text messages, omegle, snapchat,
|
267
|
+
and others. This also includes any other sites that may be considered social
|
268
|
+
network sites. Please read the <a href=\\\"http://www.reddit.com/1785g0\\\">announcement.</a></td>\\n</tr>\\n</tbody></table>\\n\\n<p>Want
|
269
|
+
to see <a href=\\\"/r/funny\\\">/r/funny</a> with these posts?
|
270
|
+
<a href=\\\"http://www.reddit.com/r/funny+facepalm+facebookwins+retorted+tumblr+twitter+texts+4chan+omegle+cleverbot+yahooanswers+screenshots+politicalhumor+demotivational+ecards+bestof+defaultgems+HIFW+MFW+reactiongifs+fffffffuuuuuuuuuuuu\\\">Click
|
271
|
+
here!</a></p>\\n\\n<hr/>\\n\\n<table><thead>\\n<tr>\\n<th></th>\\n<th></th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td>What
|
272
|
+
do I do if I see a post that breaks the rules?</td>\\n<td>Click
|
273
|
+
on the report button, and <a href=\\\"/message/compose?to=%23funny\\\">send
|
274
|
+
us a message</a> with a link to the comments of the post.</td>\\n</tr>\\n<tr>\\n<td>What
|
275
|
+
should I do if I don&#39;t see my post in the new queue?</td>\\n<td>If
|
276
|
+
your submission isn&#39;t showing up, please don&#39;t just delete
|
277
|
+
it as that makes the filter hate you! Instead please <a href=\\\"/message/compose?to=%23funny\\\">send
|
278
|
+
us a message</a> with a link to the post. We&#39;ll unban it and
|
279
|
+
it should get better. Please allow 10 minutes for the post to appear before
|
280
|
+
messaging moderators</td>\\n</tr>\\n</tbody></table>\\n\\n<hr/>\\n\\n<p>Looking
|
281
|
+
for something else? Visit our friends!</p>\\n\\n<ul>\\n<li><a
|
282
|
+
href=\\\"http://www.reddit.com/r/humor\\\">humor</a> for more in-depth
|
283
|
+
stuff</li>\\n<li><a href=\\\"/r/tumblr\\\">tumblr</a>
|
284
|
+
- for tumblr screenshots</li>\\n<li><a href=\\\"/r/NSFWFunny\\\">NSFWFunny</a><br/></li>\\n<li><a
|
285
|
+
href=\\\"/r/jokes\\\">jokes</a></li>\\n<li><a href=\\\"/r/comics\\\">comics</a></li>\\n<li><a
|
286
|
+
href=\\\"/r/punny\\\">punny</a></li>\\n<li><a href=\\\"/r/verypunny\\\">Very
|
287
|
+
Punny</a></li>\\n<li><a href=\\\"/r/lolcats\\\">lolcats</a></li>\\n<li><a
|
288
|
+
href=\\\"/r/wheredidthesodago\\\">Wheredidthesodago?</a></li>\\n<li><a
|
289
|
+
href=\\\"/r/lol\\\">lol</a></li>\\n<li><a href=\\\"/r/facepalm\\\">Facepalm</a>
|
290
|
+
- Facebook fails</li>\\n<li><a href=\\\"/r/reactiongifs\\\">ReactionGifs</a></li>\\n<li><a
|
291
|
+
href=\\\"/r/shittyaskscience\\\">ShittyAskScience</a></li>\\n<li><a
|
292
|
+
href=\\\"/r/TrollingAnimals\\\">TrollingAnimals</a></li>\\n<li><a
|
293
|
+
href=\\\"/r/ragenovels/\\\">Rage Novels</a></li>\\n<li><a
|
294
|
+
href=\\\"http://www.reddit.com/r/Demotivational\\\">Demotivational</a></li>\\n<li><a
|
295
|
+
href=\\\"/r/screenshots\\\">Screenshots</a></li>\\n<li><a
|
296
|
+
href=\\\"/r/texts\\\">Texts</a></li>\\n<li><a href=\\\"/r/nononono\\\">nononono</a></li>\\n<li><a
|
297
|
+
href=\\\"/r/disagreeable\\\">Disagreeable</a></li>\\n<li><a
|
298
|
+
href=\\\"/r/gifs\\\">gifs</a></li>\\n<li><a href=\\\"/r/ExpectationVsReality/\\\">&quot;how
|
299
|
+
I think I am vs. how I actually am&quot;</a></li>\\n<li><a
|
300
|
+
href=\\\"http://www.reddit.com/r/tifu\\\">Today I F*cked Up</a></li>\\n<li><a
|
301
|
+
href=\\\"http://www.reddit.com/r/photoshopbattles\\\">Photoshop Battles</a></li>\\n<li><a
|
302
|
+
href=\\\"/r/cleanjokes\\\">Clean Jokes</a></li>\\n<li><a
|
303
|
+
href=\\\"/r/meanjokes\\\">Mean Jokes</a></li>\\n<li><a
|
304
|
+
href=\\\"/r/funniestvideos\\\">FunniestVideos</a></li>\\n<li><a
|
305
|
+
href=\\\"/r/funnycommercials\\\">Funny Commercials</a></li>\\n<li><a
|
306
|
+
href=\\\"/r/captioned\\\">Captions</a></li>\\n<li><a
|
307
|
+
href=\\\"/r/standupshots\\\">Standup Shots</a></li>\\n<li><a
|
308
|
+
href=\\\"/r/AnimalsBeingJerks\\\">Animals Being Jerks</a></li>\\n<li><a
|
309
|
+
href=\\\"/r/Unexpected\\\">Unexpected</a></li>\\n<li><a
|
310
|
+
href=\\\"/r/makemeagif\\\">MakeMeAGIF</a></li>\\n<li><a
|
311
|
+
href=\\\"/r/accidentalcomedy\\\">accidentalcomedy</a></li>\\n<li><a
|
312
|
+
href=\\\"/r/misc/\\\">misc</a> for anything else</li>\\n<li><a
|
313
|
+
href=\\\"/r/redditdotcom\\\">RedditDotCom</a> for anything else</li>\\n</ul>\\n\\n<hr/>\\n\\n<p><em>Posts
|
314
|
+
that specifically break Reddit&#39;s rules will be removed</em></p>\\n\\n<hr/>\\n\\n<p><sup><sup>CSS</sup></sup>
|
315
|
+
<sup><sup>-</sup></sup> <sup><sup>BritishEnglishPolice,</sup></sup>
|
316
|
+
<sup><sup>Paradox,</sup></sup> <sup><sup>GuitarFreak,</sup></sup>
|
317
|
+
<sup><sup>Airmandan</sup></sup> <sup><sup>&amp;</sup></sup>
|
318
|
+
<sup><sup>Co</sup></sup> <sup><sup>\\u00a92013</sup></sup></p>\\n</div><!--
|
319
|
+
SC_ON -->\", \"title\": \"funny\", \"over18\": false, \"user_is_moderator\":
|
320
|
+
null, \"header_title\": \"Brought to you by Team Coco\\u2122\", \"description\":
|
321
|
+
\"**Welcome to r/Funny:**\\n\\nYou may only post if you are funny. \\n\\n-----\\n\\n#
|
322
|
+
Rules\\n*hover for details*\\n\\n|||\\n|:------|:---|\\n|1. No reactiongifs
|
323
|
+
or HIFW posts|How I Feel When posts belong in [/r/HIFW](/r/HIFW). Reaction
|
324
|
+
gifs belong in [/r/reactiongifs](/r/reactiongifs).|\\n|2. No posts with their
|
325
|
+
sole purpose being to communicate with another redditor.| [Click for an Example.](http://www.reddit.com/lq3uv/).
|
326
|
+
This includes asking for upvotes.|\\n|3. No Posts for the specific point of
|
327
|
+
it being your reddit birthday.|Cake day posts are not allowed.|\\n|4. Posts
|
328
|
+
which result in harassment of any individual, subreddit, or other entity may
|
329
|
+
be removed at the moderators' discretion.|Posts with titles such as \\\"I
|
330
|
+
got banned from \\\\/r/\\\\_\\\\_\\\\_\\\" or \\\"This got removed from \\\\/r/\\\\_\\\\_\\\\_\\\"
|
331
|
+
are not allowed.|\\n|5. No Politics|Anything involving politics or a political
|
332
|
+
figure. Try [/r/politicalhumor](/r/politicalhumor) instead.|\\n|6. No Pictures
|
333
|
+
of just text|Make a self post instead. [Example](http://i.imgur.com/2cPuY8C.jpg)|\\n|7.
|
334
|
+
No DAE posts|Go to [/r/doesanybodyelse](/r/doesanybodyelse)|\\n|8. No Links
|
335
|
+
to tumblr|Direct links to images hosted on tumblr (ex. 24.media.tumblr.com/img.jpg)
|
336
|
+
are allowed.|\\n|9. No URL shorteners|No link shorteners (or HugeURL) in either
|
337
|
+
post links or comments. They will be deleted regardless of intent.|\\n|10.
|
338
|
+
No gore or porn (including sexually graphic images).|Other NSFW content must
|
339
|
+
be tagged as such|\\n|11. No personal information.|This includes anything
|
340
|
+
hosted on Facebook's servers, as they can be traced to the original account
|
341
|
+
holder.|\\n|12. No memes, rage comics, demotivationals, eCards, or standupshots|Memes
|
342
|
+
belong in [/r/adviceanimals](/r/adviceanimals), rage comics go to [/r/fffffffuuuuuuuuuuuu](/r/fffffffuuuuuuuuuuuu),
|
343
|
+
demotivationals go to [/r/Demotivational](http://www.reddit.com/r/Demotivational),
|
344
|
+
submit eCards to [/r/ecards](http://www.reddit.com/r/ecards), and standupshots
|
345
|
+
go to [/r/standupshots](/r/standupshots)\\n|13. Do not rehost webcomics|Rehosted
|
346
|
+
webcomics will be removed. Please submit a link to the original comic's site
|
347
|
+
and preferably an imgur link in the comments. Do not post a link to the comic
|
348
|
+
image, it must be linked to the page of the comic. [(*)](http://www.reddit.com/kqwwx/)
|
349
|
+
[(*)](http://www.reddit.com/kwmk3)|\\n|14. No SMS or Social Media Content
|
350
|
+
(including Reddit)|This includes direct linking to reddit threads, reddit
|
351
|
+
comments, other subreddits, facebook profiles, twitter profiles, tweets, embedded
|
352
|
+
tweets, and screenshots of the above, including text messages, omegle, snapchat,
|
353
|
+
and others. This also includes any other sites that may be considered social
|
354
|
+
network sites. Please read the [announcement.](http://www.reddit.com/1785g0)|\\n\\nWant
|
355
|
+
to see /r/funny with these posts? [Click here!](http://www.reddit.com/r/funny+facepalm+facebookwins+retorted+tumblr+twitter+texts+4chan+omegle+cleverbot+yahooanswers+screenshots+politicalhumor+demotivational+ecards+bestof+defaultgems+HIFW+MFW+reactiongifs+fffffffuuuuuuuuuuuu)\\n\\n------\\n\\n|||\\n|-|-|\\n|What
|
356
|
+
do I do if I see a post that breaks the rules?|Click on the report button,
|
357
|
+
and [send us a message](/message/compose?to=%23funny) with a link to the comments
|
358
|
+
of the post.|\\n|What should I do if I don't see my post in the new queue?|If
|
359
|
+
your submission isn't showing up, please don't just delete it as that makes
|
360
|
+
the filter hate you! Instead please [send us a message](/message/compose?to=%23funny)
|
361
|
+
with a link to the post. We'll unban it and it should get better. Please allow
|
362
|
+
10 minutes for the post to appear before messaging moderators|\\n\\n-----\\n\\nLooking
|
363
|
+
for something else? Visit our friends!\\n\\n+ [humor](http://www.reddit.com/r/humor)
|
364
|
+
for more in-depth stuff\\n+ [tumblr](/r/tumblr) - for tumblr screenshots\\n+
|
365
|
+
[NSFWFunny](/r/NSFWFunny) \\n+ [jokes](/r/jokes)\\n+ [comics](/r/comics)\\n+
|
366
|
+
[punny](/r/punny)\\n+ [Very Punny](/r/verypunny)\\n+ [lolcats](/r/lolcats)\\n+
|
367
|
+
[Wheredidthesodago?](/r/wheredidthesodago)\\n+ [lol](/r/lol)\\n+ [Facepalm](/r/facepalm)
|
368
|
+
- Facebook fails\\n+ [ReactionGifs](/r/reactiongifs)\\n+ [ShittyAskScience](/r/shittyaskscience)\\n+
|
369
|
+
[TrollingAnimals](/r/TrollingAnimals)\\n+ [Rage Novels](/r/ragenovels/)\\n+
|
370
|
+
[Demotivational](http://www.reddit.com/r/Demotivational)\\n+ [Screenshots](/r/screenshots)\\n+
|
371
|
+
[Texts](/r/texts)\\n+ [nononono](/r/nononono)\\n+ [Disagreeable](/r/disagreeable)\\n+
|
372
|
+
[gifs](/r/gifs)\\n+ [\\\"how I think I am vs. how I actually am\\\"](/r/ExpectationVsReality/)\\n+
|
373
|
+
[Today I F*cked Up](http://www.reddit.com/r/tifu)\\n+ [Photoshop Battles](http://www.reddit.com/r/photoshopbattles)\\n+
|
374
|
+
[Clean Jokes](/r/cleanjokes)\\n+ [Mean Jokes](/r/meanjokes)\\n+ [FunniestVideos](/r/funniestvideos)\\n+
|
375
|
+
[Funny Commercials](/r/funnycommercials)\\n+ [Captions](/r/captioned)\\n+
|
376
|
+
[Standup Shots](/r/standupshots)\\n+ [Animals Being Jerks](/r/AnimalsBeingJerks)\\n+
|
377
|
+
[Unexpected](/r/Unexpected)\\n+ [MakeMeAGIF](/r/makemeagif)\\n+ [accidentalcomedy](/r/accidentalcomedy)\\n+
|
378
|
+
[misc](/r/misc/) for anything else\\n+ [RedditDotCom](/r/redditdotcom) for
|
379
|
+
anything else\\n\\n----\\n\\n*Posts that specifically break Reddit's rules
|
380
|
+
will be removed*\\n\\n----\\n^^CSS ^^- ^^BritishEnglishPolice, ^^Paradox,
|
381
|
+
^^GuitarFreak, ^^Airmandan ^^& ^^Co ^^\\u00a92013\", \"submit_link_label\":
|
382
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
383
|
+
\"high\", \"header_size\": [160, 64], \"subscribers\": 4704841, \"submit_text_label\":
|
384
|
+
null, \"name\": \"t5_2qh33\", \"created\": 1201246556.0, \"url\": \"/r/funny/\",
|
385
|
+
\"created_utc\": 1201242956.0, \"user_is_contributor\": null, \"public_traffic\":
|
386
|
+
true, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
387
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
388
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
389
|
+
null, \"id\": \"2qh03\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
390
|
+
\"display_name\": \"gaming\", \"header_img\": \"http://c.thumbs.redditmedia.com/apyFD_COiL6gt3BP.png\",
|
391
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><h2><strong><a
|
392
|
+
href=\\\"http://www.reddit.com/r/gaming/comments/utoql/scammed_by_someone_on_rgaming_what_to_do_what_not/\\\">Beware
|
393
|
+
of trading scammers!</a></strong></h2>\\n\\n<p>A subreddit
|
394
|
+
for anything related to games (but not <a href=\\\"http://www.reddit.com/r/sports\\\">sports</a>).</p>\\n\\n<p>&quot;Related&quot;
|
395
|
+
means that <strong>posts must contain gaming-related content in the
|
396
|
+
link/post body, not just a &quot;forced&quot; connection via the title
|
397
|
+
or a caption added to the content.</strong></p>\\n\\n<p><a
|
398
|
+
href=\\\"http://steamcommunity.com/groups/reddit\\\">reddit Steam group</a></p>\\n\\n<h1>Community
|
399
|
+
Rules</h1>\\n\\n<ol>\\n<li><p><strong>Submissions
|
400
|
+
must be directly gaming-related.</strong> <a href=\\\"http://www.reddit.com/r/gaming/comments/1gnlvh/mod_post_clarification_on_rule_1/\\\">Memes
|
401
|
+
are allowed as long as both the image and the text are gaming related.</a>
|
402
|
+
Something that &quot;reminds you of a game&quot;, or &quot;looks
|
403
|
+
like something from a game&quot; is not an allowable submission; similarly,
|
404
|
+
reaction GIFs are not allowed as submissions.</p></li>\\n<li><p>Following
|
405
|
+
<a href=\\\"http://www.reddit.com/help/reddiquette\\\">Reddiquette</a>
|
406
|
+
is encouraged. Following the <a href=\\\"http://www.reddit.com/rules\\\">Rules
|
407
|
+
of Reddit</a> is required.</p></li>\\n<li><p>No
|
408
|
+
general URL shorteners (bitly, tinyurl, etc). Single-site URL shorteners (such
|
409
|
+
as youtu.be or fav.me) are allowed.</p></li>\\n<li><p>No
|
410
|
+
product requests or giveaways, including game keys. Enabling or attempting
|
411
|
+
to enable piracy <a href=\\\"http://www.reddit.com/r/gaming/comments/m1pry/a_friendly_reminder_to_rgaming_talking_about/\\\">will
|
412
|
+
result in a ban</a>.</p></li>\\n<li><p>NSFW
|
413
|
+
submissions and comments must be labeled as such.</p></li>\\n<li><p>Spoilers
|
414
|
+
must be posted using the following formatting:<br/>\\n<code>[X
|
415
|
+
Kills Y](/spoiler)</code><br/>\\nResult: <a href=\\\"/spoiler\\\">X
|
416
|
+
Kills Y</a>.<br/>\\nTo mark a spoiler as relevant to a specific
|
417
|
+
game/topic, use the alternate formatting:<br/>\\n<code>[Player
|
418
|
+
1 wins](/spoiler &quot;Pong&quot;)</code><br/>\\nResult:<br/>\\n<a
|
419
|
+
href=\\\"/spoiler\\\" title=\\\"Pong\\\">Player 1 wins</a><br/>\\n<em>Report
|
420
|
+
posts containing spoilers not using the above method</em></p></li>\\n<li><p>Submit
|
421
|
+
the source of the content. No hotlinked or re-hosted comics (unless the author
|
422
|
+
specifically allows it). Submit the page on the author&#39;s site containing
|
423
|
+
the comic.</p></li>\\n<li><p>No personal websites
|
424
|
+
or YouTube channels. No referral or affiliate links.</p></li>\\n<li><p>No
|
425
|
+
Kickstarter, Steam Greenlight, et al. &quot;reminder&quot; posts.
|
426
|
+
Submissions about new projects or major updates to existing ones are allowed.</p></li>\\n<li><p>Posts
|
427
|
+
and comments, whether in jest or with malice, that consist of racist, sexist,
|
428
|
+
or homophobic content, will be removed, regardless of popularity or relevance.</p></li>\\n</ol>\\n\\n<h1>Important
|
429
|
+
Notes</h1>\\n\\n<p>If your submission does not immediately appear
|
430
|
+
in the link listing, <strong>do not delete it.</strong> Wait 5
|
431
|
+
minutes to give AutoModerator a chance to look at it; it approves most submissions
|
432
|
+
automatically. If it hasn&#39;t shown up <em>after more than 5 minutes</em>,
|
433
|
+
simply <a href=\\\"http://www.reddit.com/message/compose?to=%23gaming\\\">message
|
434
|
+
the moderators</a> and ask us to let it through.</p>\\n\\n<p>The
|
435
|
+
moderators of <a href=\\\"/r/gaming\\\">/r/gaming</a> reserve
|
436
|
+
the right to remove any &quot;bandwagon&quot; posts. This includes
|
437
|
+
&quot;No, THIS is the best <em>__&quot;, &quot;FIXED&quot;,
|
438
|
+
&quot;I see your _</em>_ and raise you ____&quot; and other
|
439
|
+
types of reply posts. If you feel like you have a response to an existing
|
440
|
+
post, reply in the comments section to avoid having your post removed.</p>\\n\\n<h1>Other
|
441
|
+
Gaming Subreddits</h1>\\n\\n<ul>\\n<li><p><a href=\\\"http://www.reddit.com/r/Games/\\\">/r/Games</a>
|
442
|
+
- Informative content</p></li>\\n<li><p><a href=\\\"http://www.reddit.com/r/gamernews\\\">/r/gamernews</a>
|
443
|
+
- News only</p></li>\\n<li><p><a href=\\\"http://www.reddit.com/r/truegaming\\\">/r/truegaming</a>
|
444
|
+
- Discussions only</p></li>\\n<li><p><a href=\\\"http://www.reddit.com/r/gaming/wiki/faq\\\">Comprehensive
|
445
|
+
list of gaming subreddits</a></p></li>\\n</ul>\\n\\n<h6><strong>Hey!
|
446
|
+
Listen!</strong> For clarification on rule 1 <a href=\\\"http://www.reddit.com/r/gaming/comments/1gnlvh/mod_post_clarification_on_rule_1/\\\"><strong>Click
|
447
|
+
Here</strong></a>.</h6>\\n</div><!-- SC_ON -->\",
|
448
|
+
\"title\": \"gaming.reddit: what's new in gaming\", \"over18\": false, \"user_is_moderator\":
|
449
|
+
null, \"header_title\": \"Your Karma will define you... - http://redd.it/1lw4fg
|
450
|
+
(That's a one then L in the url)\", \"description\": \"**[Beware of trading
|
451
|
+
scammers!](http://www.reddit.com/r/gaming/comments/utoql/scammed_by_someone_on_rgaming_what_to_do_what_not/)**\\n--\\nA
|
452
|
+
subreddit for anything related to games (but not [sports](http://www.reddit.com/r/sports)).\\n\\n\\\"Related\\\"
|
453
|
+
means that **posts must contain gaming-related content in the link/post body,
|
454
|
+
not just a \\\"forced\\\" connection via the title or a caption added to the
|
455
|
+
content.**\\n\\n[reddit Steam group](http://steamcommunity.com/groups/reddit)\\n\\n#
|
456
|
+
Community Rules\\n\\n1. **Submissions must be directly gaming-related.** [Memes
|
457
|
+
are allowed as long as both the image and the text are gaming related.](http://www.reddit.com/r/gaming/comments/1gnlvh/mod_post_clarification_on_rule_1/)
|
458
|
+
Something that \\\"reminds you of a game\\\", or \\\"looks like something
|
459
|
+
from a game\\\" is not an allowable submission; similarly, reaction GIFs are
|
460
|
+
not allowed as submissions.\\n\\n1. Following [Reddiquette](http://www.reddit.com/help/reddiquette)
|
461
|
+
is encouraged. Following the [Rules of Reddit](http://www.reddit.com/rules)
|
462
|
+
is required.\\n\\n1. No general URL shorteners (bitly, tinyurl, etc). Single-site
|
463
|
+
URL shorteners (such as youtu.be or fav.me) are allowed.\\n\\n1. No product
|
464
|
+
requests or giveaways, including game keys. Enabling or attempting to enable
|
465
|
+
piracy [will result in a ban](http://www.reddit.com/r/gaming/comments/m1pry/a_friendly_reminder_to_rgaming_talking_about/).\\n\\n1.
|
466
|
+
NSFW submissions and comments must be labeled as such.\\n\\n1. Spoilers must
|
467
|
+
be posted using the following formatting: \\n`[X Kills Y](/spoiler)` \\nResult:
|
468
|
+
[X Kills Y](/spoiler). \\nTo mark a spoiler as relevant to a specific game/topic,
|
469
|
+
use the alternate formatting: \\n`[Player 1 wins](/spoiler \\\"Pong\\\")`
|
470
|
+
\ \\nResult: \\n[Player 1 wins](/spoiler \\\"Pong\\\") \\n*Report posts
|
471
|
+
containing spoilers not using the above method*\\n\\n1. Submit the source
|
472
|
+
of the content. No hotlinked or re-hosted comics (unless the author specifically
|
473
|
+
allows it). Submit the page on the author's site containing the comic.\\n\\n1.
|
474
|
+
No personal websites or YouTube channels. No referral or affiliate links.\\n\\n1.
|
475
|
+
No Kickstarter, Steam Greenlight, et al. \\\"reminder\\\" posts. Submissions
|
476
|
+
about new projects or major updates to existing ones are allowed.\\n\\n1.
|
477
|
+
Posts and comments, whether in jest or with malice, that consist of racist,
|
478
|
+
sexist, or homophobic content, will be removed, regardless of popularity or
|
479
|
+
relevance.\\n\\n#Important Notes\\n\\nIf your submission does not immediately
|
480
|
+
appear in the link listing, **do not delete it.** Wait 5 minutes to give AutoModerator
|
481
|
+
a chance to look at it; it approves most submissions automatically. If it
|
482
|
+
hasn't shown up *after more than 5 minutes*, simply [message the moderators](http://www.reddit.com/message/compose?to=%23gaming)
|
483
|
+
and ask us to let it through.\\n\\nThe moderators of /r/gaming reserve the
|
484
|
+
right to remove any \\\"bandwagon\\\" posts. This includes \\\"No, THIS is
|
485
|
+
the best ___\\\", \\\"FIXED\\\", \\\"I see your ___ and raise you ____\\\"
|
486
|
+
and other types of reply posts. If you feel like you have a response to an
|
487
|
+
existing post, reply in the comments section to avoid having your post removed.\\n\\n#
|
488
|
+
Other Gaming Subreddits\\n\\n* [/r/Games](http://www.reddit.com/r/Games/)
|
489
|
+
- Informative content\\n\\n* [/r/gamernews](http://www.reddit.com/r/gamernews)
|
490
|
+
- News only\\n\\n* [/r/truegaming](http://www.reddit.com/r/truegaming) - Discussions
|
491
|
+
only\\n\\n* [Comprehensive list of gaming subreddits](http://www.reddit.com/r/gaming/wiki/faq)\\n\\n######
|
492
|
+
**Hey! Listen!** For clarification on rule 1 [**Click Here**](http://www.reddit.com/r/gaming/comments/1gnlvh/mod_post_clarification_on_rule_1/).\",
|
493
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
494
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": [165, 66], \"subscribers\":
|
495
|
+
3973785, \"submit_text_label\": null, \"name\": \"t5_2qh03\", \"created\":
|
496
|
+
1190058205.0, \"url\": \"/r/gaming/\", \"created_utc\": 1190054605.0, \"user_is_contributor\":
|
497
|
+
null, \"public_traffic\": false, \"public_description\": \"A subreddit for
|
498
|
+
(almost) anything related to games - video games, board games, card games,
|
499
|
+
etc. (but not [sports](http://www.reddit.com/r/sports)).\\n\\nFor more informative
|
500
|
+
gaming content such as news and articles, please visit /r/Games.\", \"comment_score_hide_mins\":
|
501
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
502
|
+
null}}], \"after\": \"t5_2qh03\", \"before\": null}}"
|
503
|
+
http_version:
|
504
|
+
recorded_at: Sun, 10 Nov 2013 22:38:23 GMT
|
505
|
+
recorded_with: VCR 2.6.0
|