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,58 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/subreddits/mine/contributor.json
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.8
|
12
|
+
Cookie:
|
13
|
+
- reddit_session=20332937,2013-11-10T11:35:59,2077074c26ccd8ec123c996b77eeb7afb6090af9
|
14
|
+
X-Modhash:
|
15
|
+
- 36zuxndsdf695692a68e32384990478663dadfc30f0a1dd959
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
Accept:
|
19
|
+
- "*/*"
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 200
|
23
|
+
message: OK
|
24
|
+
headers:
|
25
|
+
Content-Type:
|
26
|
+
- application/json; charset=UTF-8
|
27
|
+
Cache-Control:
|
28
|
+
- no-cache
|
29
|
+
Pragma:
|
30
|
+
- no-cache
|
31
|
+
Server:
|
32
|
+
- "'; DROP TABLE servertypes; --"
|
33
|
+
Vary:
|
34
|
+
- accept-encoding
|
35
|
+
Date:
|
36
|
+
- Sun, 10 Nov 2013 22:38:26 GMT
|
37
|
+
Content-Length:
|
38
|
+
- '922'
|
39
|
+
Connection:
|
40
|
+
- keep-alive
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"58jjoxumpc64240e8f4386fb7493c15cf3f9f2fc545d191112\",
|
44
|
+
\"children\": [{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
45
|
+
false, \"id\": \"2wy5o\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
46
|
+
\"display_name\": \"RedditKit\", \"header_img\": null, \"description_html\":
|
47
|
+
null, \"title\": \"RedditKit Testing\", \"over18\": false, \"user_is_moderator\":
|
48
|
+
true, \"header_title\": null, \"description\": \"\", \"submit_link_label\":
|
49
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
50
|
+
\"high\", \"header_size\": null, \"subscribers\": 2, \"submit_text_label\":
|
51
|
+
null, \"name\": \"t5_2wy5o\", \"created\": 1366069132.0, \"url\": \"/r/RedditKit/\",
|
52
|
+
\"created_utc\": 1366065532.0, \"user_is_contributor\": true, \"public_traffic\":
|
53
|
+
false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
54
|
+
\"private\", \"submission_type\": \"any\", \"user_is_subscriber\": false}}],
|
55
|
+
\"after\": null, \"before\": null}}"
|
56
|
+
http_version:
|
57
|
+
recorded_at: Sun, 10 Nov 2013 22:38:24 GMT
|
58
|
+
recorded_with: VCR 2.6.0
|
@@ -0,0 +1,3469 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/subreddits/mine/.json
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.8
|
12
|
+
Cookie:
|
13
|
+
- reddit_session=20332937,2013-11-10T11:35:59,2077074c26ccd8ec123c996b77eeb7afb6090af9
|
14
|
+
X-Modhash:
|
15
|
+
- 36zuxndsdf695692a68e32384990478663dadfc30f0a1dd959
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
Accept:
|
19
|
+
- "*/*"
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 200
|
23
|
+
message: OK
|
24
|
+
headers:
|
25
|
+
Content-Type:
|
26
|
+
- application/json; charset=UTF-8
|
27
|
+
Cache-Control:
|
28
|
+
- no-cache
|
29
|
+
Pragma:
|
30
|
+
- no-cache
|
31
|
+
Server:
|
32
|
+
- "'; DROP TABLE servertypes; --"
|
33
|
+
Vary:
|
34
|
+
- accept-encoding
|
35
|
+
Date:
|
36
|
+
- Sun, 10 Nov 2013 22:38:25 GMT
|
37
|
+
Transfer-Encoding:
|
38
|
+
- chunked
|
39
|
+
Connection:
|
40
|
+
- Transfer-Encoding
|
41
|
+
- keep-alive
|
42
|
+
body:
|
43
|
+
encoding: UTF-8
|
44
|
+
string: "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"voz69xzzy84696bb0f32a69ecf763c3aaa494d8fc4d3fd4465\",
|
45
|
+
\"children\": [{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
46
|
+
false, \"id\": \"2qh33\", \"submit_text\": \"\", \"spam_selfposts\": \"low\",
|
47
|
+
\"display_name\": \"funny\", \"header_img\": \"http://f.thumbs.redditmedia.com/CzqvfNUiQGzmMIOw.png\",
|
48
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><strong>Welcome
|
49
|
+
to r/Funny:</strong></p>\\n\\n<p>You may only post if you
|
50
|
+
are funny. </p>\\n\\n<hr/>\\n\\n<h1>Rules</h1>\\n\\n<p><em>hover
|
51
|
+
for details</em></p>\\n\\n<table><thead>\\n<tr>\\n<th
|
52
|
+
align=\\\"left\\\"></th>\\n<th align=\\\"left\\\"></th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
53
|
+
align=\\\"left\\\">1. No reactiongifs or HIFW posts</td>\\n<td
|
54
|
+
align=\\\"left\\\">How I Feel When posts belong in <a href=\\\"/r/HIFW\\\">/r/HIFW</a>.
|
55
|
+
Reaction gifs belong in <a href=\\\"/r/reactiongifs\\\">/r/reactiongifs</a>.</td>\\n</tr>\\n<tr>\\n<td
|
56
|
+
align=\\\"left\\\">2. No posts with their sole purpose being to communicate
|
57
|
+
with another redditor.</td>\\n<td align=\\\"left\\\"><a href=\\\"http://www.reddit.com/lq3uv/\\\">Click
|
58
|
+
for an Example.</a>. This includes asking for upvotes.</td>\\n</tr>\\n<tr>\\n<td
|
59
|
+
align=\\\"left\\\">3. No Posts for the specific point of it being your
|
60
|
+
reddit birthday.</td>\\n<td align=\\\"left\\\">Cake day posts
|
61
|
+
are not allowed.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\">4.
|
62
|
+
Posts which result in harassment of any individual, subreddit, or other entity
|
63
|
+
may be removed at the moderators&#39; discretion.</td>\\n<td
|
64
|
+
align=\\\"left\\\">Posts with titles such as &quot;I got banned from
|
65
|
+
/r/___&quot; or &quot;This got removed from /r/___&quot; are not
|
66
|
+
allowed.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\">5.
|
67
|
+
No Politics</td>\\n<td align=\\\"left\\\">Anything involving politics
|
68
|
+
or a political figure. Try <a href=\\\"/r/politicalhumor\\\">/r/politicalhumor</a>
|
69
|
+
instead.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\">6.
|
70
|
+
No Pictures of just text</td>\\n<td align=\\\"left\\\">Make a
|
71
|
+
self post instead. <a href=\\\"http://i.imgur.com/2cPuY8C.jpg\\\">Example</a></td>\\n</tr>\\n<tr>\\n<td
|
72
|
+
align=\\\"left\\\">7. No DAE posts</td>\\n<td align=\\\"left\\\">Go
|
73
|
+
to <a href=\\\"/r/doesanybodyelse\\\">/r/doesanybodyelse</a></td>\\n</tr>\\n<tr>\\n<td
|
74
|
+
align=\\\"left\\\">8. No Links to tumblr</td>\\n<td align=\\\"left\\\">Direct
|
75
|
+
links to images hosted on tumblr (ex. 24.media.tumblr.com/img.jpg) are allowed.</td>\\n</tr>\\n<tr>\\n<td
|
76
|
+
align=\\\"left\\\">9. No URL shorteners</td>\\n<td align=\\\"left\\\">No
|
77
|
+
link shorteners (or HugeURL) in either post links or comments. They will be
|
78
|
+
deleted regardless of intent.</td>\\n</tr>\\n<tr>\\n<td
|
79
|
+
align=\\\"left\\\">10. No gore or porn (including sexually graphic images).</td>\\n<td
|
80
|
+
align=\\\"left\\\">Other NSFW content must be tagged as such</td>\\n</tr>\\n<tr>\\n<td
|
81
|
+
align=\\\"left\\\">11. No personal information.</td>\\n<td align=\\\"left\\\">This
|
82
|
+
includes anything hosted on Facebook&#39;s servers, as they can be traced
|
83
|
+
to the original account holder.</td>\\n</tr>\\n<tr>\\n<td
|
84
|
+
align=\\\"left\\\">12. No memes, rage comics, demotivationals, eCards,
|
85
|
+
or standupshots</td>\\n<td align=\\\"left\\\">Memes belong in
|
86
|
+
<a href=\\\"/r/adviceanimals\\\">/r/adviceanimals</a>, rage comics
|
87
|
+
go to <a href=\\\"/r/fffffffuuuuuuuuuuuu\\\">/r/fffffffuuuuuuuuuuuu</a>,
|
88
|
+
demotivationals go to <a href=\\\"http://www.reddit.com/r/Demotivational\\\">/r/Demotivational</a>,
|
89
|
+
submit eCards to <a href=\\\"http://www.reddit.com/r/ecards\\\">/r/ecards</a>,
|
90
|
+
and standupshots go to <a href=\\\"/r/standupshots\\\">/r/standupshots</a></td>\\n</tr>\\n<tr>\\n<td
|
91
|
+
align=\\\"left\\\">13. Do not rehost webcomics</td>\\n<td align=\\\"left\\\">Rehosted
|
92
|
+
webcomics will be removed. Please submit a link to the original comic&#39;s
|
93
|
+
site and preferably an imgur link in the comments. Do not post a link to the
|
94
|
+
comic image, it must be linked to the page of the comic. <a href=\\\"http://www.reddit.com/kqwwx/\\\">(*)</a>
|
95
|
+
<a href=\\\"http://www.reddit.com/kwmk3\\\">(*)</a></td>\\n</tr>\\n<tr>\\n<td
|
96
|
+
align=\\\"left\\\">14. No SMS or Social Media Content (including Reddit)</td>\\n<td
|
97
|
+
align=\\\"left\\\">This includes direct linking to reddit threads, reddit
|
98
|
+
comments, other subreddits, facebook profiles, twitter profiles, tweets, embedded
|
99
|
+
tweets, and screenshots of the above, including text messages, omegle, snapchat,
|
100
|
+
and others. This also includes any other sites that may be considered social
|
101
|
+
network sites. Please read the <a href=\\\"http://www.reddit.com/1785g0\\\">announcement.</a></td>\\n</tr>\\n</tbody></table>\\n\\n<p>Want
|
102
|
+
to see <a href=\\\"/r/funny\\\">/r/funny</a> with these posts?
|
103
|
+
<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
|
104
|
+
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
|
105
|
+
do I do if I see a post that breaks the rules?</td>\\n<td>Click
|
106
|
+
on the report button, and <a href=\\\"/message/compose?to=%23funny\\\">send
|
107
|
+
us a message</a> with a link to the comments of the post.</td>\\n</tr>\\n<tr>\\n<td>What
|
108
|
+
should I do if I don&#39;t see my post in the new queue?</td>\\n<td>If
|
109
|
+
your submission isn&#39;t showing up, please don&#39;t just delete
|
110
|
+
it as that makes the filter hate you! Instead please <a href=\\\"/message/compose?to=%23funny\\\">send
|
111
|
+
us a message</a> with a link to the post. We&#39;ll unban it and
|
112
|
+
it should get better. Please allow 10 minutes for the post to appear before
|
113
|
+
messaging moderators</td>\\n</tr>\\n</tbody></table>\\n\\n<hr/>\\n\\n<p>Looking
|
114
|
+
for something else? Visit our friends!</p>\\n\\n<ul>\\n<li><a
|
115
|
+
href=\\\"http://www.reddit.com/r/humor\\\">humor</a> for more in-depth
|
116
|
+
stuff</li>\\n<li><a href=\\\"/r/tumblr\\\">tumblr</a>
|
117
|
+
- for tumblr screenshots</li>\\n<li><a href=\\\"/r/NSFWFunny\\\">NSFWFunny</a><br/></li>\\n<li><a
|
118
|
+
href=\\\"/r/jokes\\\">jokes</a></li>\\n<li><a href=\\\"/r/comics\\\">comics</a></li>\\n<li><a
|
119
|
+
href=\\\"/r/punny\\\">punny</a></li>\\n<li><a href=\\\"/r/verypunny\\\">Very
|
120
|
+
Punny</a></li>\\n<li><a href=\\\"/r/lolcats\\\">lolcats</a></li>\\n<li><a
|
121
|
+
href=\\\"/r/wheredidthesodago\\\">Wheredidthesodago?</a></li>\\n<li><a
|
122
|
+
href=\\\"/r/lol\\\">lol</a></li>\\n<li><a href=\\\"/r/facepalm\\\">Facepalm</a>
|
123
|
+
- Facebook fails</li>\\n<li><a href=\\\"/r/reactiongifs\\\">ReactionGifs</a></li>\\n<li><a
|
124
|
+
href=\\\"/r/shittyaskscience\\\">ShittyAskScience</a></li>\\n<li><a
|
125
|
+
href=\\\"/r/TrollingAnimals\\\">TrollingAnimals</a></li>\\n<li><a
|
126
|
+
href=\\\"/r/ragenovels/\\\">Rage Novels</a></li>\\n<li><a
|
127
|
+
href=\\\"http://www.reddit.com/r/Demotivational\\\">Demotivational</a></li>\\n<li><a
|
128
|
+
href=\\\"/r/screenshots\\\">Screenshots</a></li>\\n<li><a
|
129
|
+
href=\\\"/r/texts\\\">Texts</a></li>\\n<li><a href=\\\"/r/nononono\\\">nononono</a></li>\\n<li><a
|
130
|
+
href=\\\"/r/disagreeable\\\">Disagreeable</a></li>\\n<li><a
|
131
|
+
href=\\\"/r/gifs\\\">gifs</a></li>\\n<li><a href=\\\"/r/ExpectationVsReality/\\\">&quot;how
|
132
|
+
I think I am vs. how I actually am&quot;</a></li>\\n<li><a
|
133
|
+
href=\\\"http://www.reddit.com/r/tifu\\\">Today I F*cked Up</a></li>\\n<li><a
|
134
|
+
href=\\\"http://www.reddit.com/r/photoshopbattles\\\">Photoshop Battles</a></li>\\n<li><a
|
135
|
+
href=\\\"/r/cleanjokes\\\">Clean Jokes</a></li>\\n<li><a
|
136
|
+
href=\\\"/r/meanjokes\\\">Mean Jokes</a></li>\\n<li><a
|
137
|
+
href=\\\"/r/funniestvideos\\\">FunniestVideos</a></li>\\n<li><a
|
138
|
+
href=\\\"/r/funnycommercials\\\">Funny Commercials</a></li>\\n<li><a
|
139
|
+
href=\\\"/r/captioned\\\">Captions</a></li>\\n<li><a
|
140
|
+
href=\\\"/r/standupshots\\\">Standup Shots</a></li>\\n<li><a
|
141
|
+
href=\\\"/r/AnimalsBeingJerks\\\">Animals Being Jerks</a></li>\\n<li><a
|
142
|
+
href=\\\"/r/Unexpected\\\">Unexpected</a></li>\\n<li><a
|
143
|
+
href=\\\"/r/makemeagif\\\">MakeMeAGIF</a></li>\\n<li><a
|
144
|
+
href=\\\"/r/accidentalcomedy\\\">accidentalcomedy</a></li>\\n<li><a
|
145
|
+
href=\\\"/r/misc/\\\">misc</a> for anything else</li>\\n<li><a
|
146
|
+
href=\\\"/r/redditdotcom\\\">RedditDotCom</a> for anything else</li>\\n</ul>\\n\\n<hr/>\\n\\n<p><em>Posts
|
147
|
+
that specifically break Reddit&#39;s rules will be removed</em></p>\\n\\n<hr/>\\n\\n<p><sup><sup>CSS</sup></sup>
|
148
|
+
<sup><sup>-</sup></sup> <sup><sup>BritishEnglishPolice,</sup></sup>
|
149
|
+
<sup><sup>Paradox,</sup></sup> <sup><sup>GuitarFreak,</sup></sup>
|
150
|
+
<sup><sup>Airmandan</sup></sup> <sup><sup>&amp;</sup></sup>
|
151
|
+
<sup><sup>Co</sup></sup> <sup><sup>\\u00a92013</sup></sup></p>\\n</div><!--
|
152
|
+
SC_ON -->\", \"title\": \"funny\", \"over18\": false, \"user_is_moderator\":
|
153
|
+
false, \"header_title\": \"Brought to you by Team Coco\\u2122\", \"description\":
|
154
|
+
\"**Welcome to r/Funny:**\\n\\nYou may only post if you are funny. \\n\\n-----\\n\\n#
|
155
|
+
Rules\\n*hover for details*\\n\\n|||\\n|:------|:---|\\n|1. No reactiongifs
|
156
|
+
or HIFW posts|How I Feel When posts belong in [/r/HIFW](/r/HIFW). Reaction
|
157
|
+
gifs belong in [/r/reactiongifs](/r/reactiongifs).|\\n|2. No posts with their
|
158
|
+
sole purpose being to communicate with another redditor.| [Click for an Example.](http://www.reddit.com/lq3uv/).
|
159
|
+
This includes asking for upvotes.|\\n|3. No Posts for the specific point of
|
160
|
+
it being your reddit birthday.|Cake day posts are not allowed.|\\n|4. Posts
|
161
|
+
which result in harassment of any individual, subreddit, or other entity may
|
162
|
+
be removed at the moderators' discretion.|Posts with titles such as \\\"I
|
163
|
+
got banned from \\\\/r/\\\\_\\\\_\\\\_\\\" or \\\"This got removed from \\\\/r/\\\\_\\\\_\\\\_\\\"
|
164
|
+
are not allowed.|\\n|5. No Politics|Anything involving politics or a political
|
165
|
+
figure. Try [/r/politicalhumor](/r/politicalhumor) instead.|\\n|6. No Pictures
|
166
|
+
of just text|Make a self post instead. [Example](http://i.imgur.com/2cPuY8C.jpg)|\\n|7.
|
167
|
+
No DAE posts|Go to [/r/doesanybodyelse](/r/doesanybodyelse)|\\n|8. No Links
|
168
|
+
to tumblr|Direct links to images hosted on tumblr (ex. 24.media.tumblr.com/img.jpg)
|
169
|
+
are allowed.|\\n|9. No URL shorteners|No link shorteners (or HugeURL) in either
|
170
|
+
post links or comments. They will be deleted regardless of intent.|\\n|10.
|
171
|
+
No gore or porn (including sexually graphic images).|Other NSFW content must
|
172
|
+
be tagged as such|\\n|11. No personal information.|This includes anything
|
173
|
+
hosted on Facebook's servers, as they can be traced to the original account
|
174
|
+
holder.|\\n|12. No memes, rage comics, demotivationals, eCards, or standupshots|Memes
|
175
|
+
belong in [/r/adviceanimals](/r/adviceanimals), rage comics go to [/r/fffffffuuuuuuuuuuuu](/r/fffffffuuuuuuuuuuuu),
|
176
|
+
demotivationals go to [/r/Demotivational](http://www.reddit.com/r/Demotivational),
|
177
|
+
submit eCards to [/r/ecards](http://www.reddit.com/r/ecards), and standupshots
|
178
|
+
go to [/r/standupshots](/r/standupshots)\\n|13. Do not rehost webcomics|Rehosted
|
179
|
+
webcomics will be removed. Please submit a link to the original comic's site
|
180
|
+
and preferably an imgur link in the comments. Do not post a link to the comic
|
181
|
+
image, it must be linked to the page of the comic. [(*)](http://www.reddit.com/kqwwx/)
|
182
|
+
[(*)](http://www.reddit.com/kwmk3)|\\n|14. No SMS or Social Media Content
|
183
|
+
(including Reddit)|This includes direct linking to reddit threads, reddit
|
184
|
+
comments, other subreddits, facebook profiles, twitter profiles, tweets, embedded
|
185
|
+
tweets, and screenshots of the above, including text messages, omegle, snapchat,
|
186
|
+
and others. This also includes any other sites that may be considered social
|
187
|
+
network sites. Please read the [announcement.](http://www.reddit.com/1785g0)|\\n\\nWant
|
188
|
+
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
|
189
|
+
do I do if I see a post that breaks the rules?|Click on the report button,
|
190
|
+
and [send us a message](/message/compose?to=%23funny) with a link to the comments
|
191
|
+
of the post.|\\n|What should I do if I don't see my post in the new queue?|If
|
192
|
+
your submission isn't showing up, please don't just delete it as that makes
|
193
|
+
the filter hate you! Instead please [send us a message](/message/compose?to=%23funny)
|
194
|
+
with a link to the post. We'll unban it and it should get better. Please allow
|
195
|
+
10 minutes for the post to appear before messaging moderators|\\n\\n-----\\n\\nLooking
|
196
|
+
for something else? Visit our friends!\\n\\n+ [humor](http://www.reddit.com/r/humor)
|
197
|
+
for more in-depth stuff\\n+ [tumblr](/r/tumblr) - for tumblr screenshots\\n+
|
198
|
+
[NSFWFunny](/r/NSFWFunny) \\n+ [jokes](/r/jokes)\\n+ [comics](/r/comics)\\n+
|
199
|
+
[punny](/r/punny)\\n+ [Very Punny](/r/verypunny)\\n+ [lolcats](/r/lolcats)\\n+
|
200
|
+
[Wheredidthesodago?](/r/wheredidthesodago)\\n+ [lol](/r/lol)\\n+ [Facepalm](/r/facepalm)
|
201
|
+
- Facebook fails\\n+ [ReactionGifs](/r/reactiongifs)\\n+ [ShittyAskScience](/r/shittyaskscience)\\n+
|
202
|
+
[TrollingAnimals](/r/TrollingAnimals)\\n+ [Rage Novels](/r/ragenovels/)\\n+
|
203
|
+
[Demotivational](http://www.reddit.com/r/Demotivational)\\n+ [Screenshots](/r/screenshots)\\n+
|
204
|
+
[Texts](/r/texts)\\n+ [nononono](/r/nononono)\\n+ [Disagreeable](/r/disagreeable)\\n+
|
205
|
+
[gifs](/r/gifs)\\n+ [\\\"how I think I am vs. how I actually am\\\"](/r/ExpectationVsReality/)\\n+
|
206
|
+
[Today I F*cked Up](http://www.reddit.com/r/tifu)\\n+ [Photoshop Battles](http://www.reddit.com/r/photoshopbattles)\\n+
|
207
|
+
[Clean Jokes](/r/cleanjokes)\\n+ [Mean Jokes](/r/meanjokes)\\n+ [FunniestVideos](/r/funniestvideos)\\n+
|
208
|
+
[Funny Commercials](/r/funnycommercials)\\n+ [Captions](/r/captioned)\\n+
|
209
|
+
[Standup Shots](/r/standupshots)\\n+ [Animals Being Jerks](/r/AnimalsBeingJerks)\\n+
|
210
|
+
[Unexpected](/r/Unexpected)\\n+ [MakeMeAGIF](/r/makemeagif)\\n+ [accidentalcomedy](/r/accidentalcomedy)\\n+
|
211
|
+
[misc](/r/misc/) for anything else\\n+ [RedditDotCom](/r/redditdotcom) for
|
212
|
+
anything else\\n\\n----\\n\\n*Posts that specifically break Reddit's rules
|
213
|
+
will be removed*\\n\\n----\\n^^CSS ^^- ^^BritishEnglishPolice, ^^Paradox,
|
214
|
+
^^GuitarFreak, ^^Airmandan ^^& ^^Co ^^\\u00a92013\", \"submit_link_label\":
|
215
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
216
|
+
\"high\", \"header_size\": [160, 64], \"subscribers\": 4704841, \"submit_text_label\":
|
217
|
+
null, \"name\": \"t5_2qh33\", \"created\": 1201246556.0, \"url\": \"/r/funny/\",
|
218
|
+
\"created_utc\": 1201242956.0, \"user_is_contributor\": false, \"public_traffic\":
|
219
|
+
true, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
220
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": true}},
|
221
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
222
|
+
false, \"id\": \"2r0ij\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
223
|
+
\"display_name\": \"announcements\", \"header_img\": null, \"description_html\":
|
224
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>The most important
|
225
|
+
Items from blog.reddit.com will be posted here (mainly, functionality changes).
|
226
|
+
See also <a href=\\\"http://reddit.com/r/blog\\\">/r/blog</a>.</p>\\n</div><!--
|
227
|
+
SC_ON -->\", \"title\": \"Official Reddit announcements\", \"over18\":
|
228
|
+
false, \"user_is_moderator\": false, \"header_title\": \"\", \"description\":
|
229
|
+
\"The most important Items from blog.reddit.com will be posted here (mainly,
|
230
|
+
functionality changes). See also [/r/blog](http://reddit.com/r/blog).\", \"submit_link_label\":
|
231
|
+
\"\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
232
|
+
\"high\", \"header_size\": null, \"subscribers\": 4654246, \"submit_text_label\":
|
233
|
+
\"\", \"name\": \"t5_2r0ij\", \"created\": 1245259701.0, \"url\": \"/r/announcements/\",
|
234
|
+
\"created_utc\": 1245256101.0, \"user_is_contributor\": false, \"public_traffic\":
|
235
|
+
false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
236
|
+
\"restricted\", \"submission_type\": \"any\", \"user_is_subscriber\": true}},
|
237
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF --><div
|
238
|
+
class=\\\"md\\\"><p>Got a cool halloween costume? Post it to <a
|
239
|
+
href=\\\"/r/halloweencostume\\\">/r/halloweencostume</a> !</p>\\n</div><!--
|
240
|
+
SC_ON -->\", \"user_is_banned\": false, \"id\": \"2qh0u\", \"submit_text\":
|
241
|
+
\"Got a cool halloween costume? Post it to /r/halloweencostume !\", \"spam_selfposts\":
|
242
|
+
\"high\", \"display_name\": \"pics\", \"header_img\": \"http://a.thumbs.redditmedia.com/CsJN7DRRk2BQ2eQB.png\",
|
243
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>A
|
244
|
+
place to share photographs and pictures. Feel free to post your own, but please
|
245
|
+
<strong>read the rules first</strong> (see below), and note that
|
246
|
+
we are <em>not a catch-all</em> for general images (of screenshots,
|
247
|
+
comics, etc.)</p>\\n\\n<h1>Spoiler code</h1>\\n\\n<p>Please
|
248
|
+
mark spoilers like this:<br/>\\n<code>[text here](/spoiler)</code></p>\\n\\n<p>Hover
|
249
|
+
over to <a href=\\\"/spoiler\\\">read</a>.</p>\\n\\n<h1>Rules</h1>\\n\\n<ol>\\n<li><p><strong>No
|
250
|
+
screenshots, or pictures with added or superimposed text.</strong> <em>This
|
251
|
+
includes <a href=\\\"http://en.wikipedia.org/wiki/Image_macro\\\">image
|
252
|
+
macros</a>, comics, infographics and most diagrams. Text (e.g. a URL)
|
253
|
+
serving to credit the original author is exempt.</em></p></li>\\n<li><p><strong>No
|
254
|
+
nudity, porn or gore.</strong> <em>Other NSFW content must be
|
255
|
+
tagged.</em></p></li>\\n<li><p><strong>No
|
256
|
+
personal information.</strong> <em>This includes anything hosted
|
257
|
+
on Facebook&#39;s servers, as they can be traced to the original account
|
258
|
+
holder. Stalking &amp; harassment will not be tolerated.</em> <strong><em>No
|
259
|
+
missing-persons requests!</em></strong></p></li>\\n<li><p><strong>No
|
260
|
+
post titles soliciting votes</strong> <em>(e.g. &quot;upvote
|
261
|
+
this&quot;).</em></p></li>\\n<li><p><strong>No
|
262
|
+
DAE, &quot;[FIXED]&quot; or &quot;cake day&quot; posts, nor
|
263
|
+
posts addressed to a specific redditor.</strong> <em>&quot;[FIXED]&quot;
|
264
|
+
posts should be added as a comment to the original image.</em></p></li>\\n<li><p><strong>Submissions
|
265
|
+
must link directly to a specific image file or to a website with minimal ads.</strong>
|
266
|
+
<em>We do not allow blog hosting of images (&quot;blogspam&quot;),
|
267
|
+
but links to albums on image hosting websites are okay. URL shorteners are
|
268
|
+
prohibited.</em></p></li>\\n<li><p><strong>No
|
269
|
+
animated images.</strong> <em>Please submit them to <a href=\\\"/r/gif\\\">/r/gif</a>,
|
270
|
+
<a href=\\\"/r/gifs\\\">/r/gifs</a>, or <a href=\\\"/r/reactiongifs\\\">/r/reactiongifs</a>
|
271
|
+
instead.</em></p></li>\\n</ol>\\n\\n<ul>\\n<li><p>If
|
272
|
+
your submission appears to be filtered but <strong>definitely</strong>
|
273
|
+
meets the above rules, <a href=\\\"/message/compose?to=%23pics\\\">please
|
274
|
+
send us a message</a> with a link to the <strong>comments section</strong>
|
275
|
+
of your post (not a direct link to the image). <strong>Don&#39;t
|
276
|
+
delete it</strong> as that just makes the filter hate you! </p></li>\\n<li><p>If
|
277
|
+
you come across any rule violations, please report the submission or <a
|
278
|
+
href=\\\"http://www.reddit.com/message/compose?to=%23pics\\\">message the
|
279
|
+
mods</a> and one of us will remove it!</p></li>\\n<li><p>Please
|
280
|
+
note: serial reposters may be filtered</p></li>\\n</ul>\\n\\n<p>Please
|
281
|
+
also try to come up with <strong>original post titles</strong>.
|
282
|
+
Submissions that use certain clich\\u00e9s/memes will be automatically tagged
|
283
|
+
with a warning.</p>\\n\\n<h1>Links</h1>\\n\\n<p>If
|
284
|
+
your post doesn&#39;t meet the above rules, consider submitting it on
|
285
|
+
one of these other subreddits:</p>\\n\\n<table><thead>\\n<tr>\\n<th
|
286
|
+
align=\\\"left\\\">Comics</th>\\n<th align=\\\"left\\\">&#0160;</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
287
|
+
align=\\\"left\\\"><a href=\\\"/r/comics\\\">/r/comics</a></td>\\n<td
|
288
|
+
align=\\\"left\\\"><a href=\\\"/r/webcomics\\\">/r/webcomics</a></td>\\n</tr>\\n<tr>\\n<td
|
289
|
+
align=\\\"left\\\"><a href=\\\"/r/vertical\\\">/r/vertical</a></td>\\n<td
|
290
|
+
align=\\\"left\\\"><a href=\\\"/r/fffffffuuuuuuuuuuuu/\\\">/r/f7u12</a></td>\\n</tr>\\n<tr>\\n<td
|
291
|
+
align=\\\"left\\\"><a href=\\\"/r/ragenovels\\\">/r/ragenovels</a></td>\\n<td
|
292
|
+
align=\\\"left\\\"><a href=\\\"/r/AdviceAtheists\\\">/r/AdviceAtheists</a></td>\\n</tr>\\n<tr>\\n<td
|
293
|
+
align=\\\"left\\\"><a href=\\\"/r/comicbookart\\\">/r/comicbookart</a></td>\\n<td
|
294
|
+
align=\\\"left\\\"></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><strong>Image
|
295
|
+
macros</strong></td>\\n<td align=\\\"left\\\"><strong>Screenshots/text</strong></td>\\n</tr>\\n<tr>\\n<td
|
296
|
+
align=\\\"left\\\"><a href=\\\"/r/lolcats\\\">/r/lolcats</a></td>\\n<td
|
297
|
+
align=\\\"left\\\"><a href=\\\"/r/screenshots\\\">/r/screenshots</a></td>\\n</tr>\\n<tr>\\n<td
|
298
|
+
align=\\\"left\\\"><a href=\\\"/r/AdviceAnimals\\\">/r/AdviceAnimals</a></td>\\n<td
|
299
|
+
align=\\\"left\\\"><a href=\\\"/r/desktops\\\">/r/desktops</a></td>\\n</tr>\\n<tr>\\n<td
|
300
|
+
align=\\\"left\\\"><a href=\\\"/r/Demotivational\\\">/r/Demotivational</a></td>\\n<td
|
301
|
+
align=\\\"left\\\"><a href=\\\"/r/facepalm\\\">/r/facepalm</a>
|
302
|
+
(Facebook)</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
303
|
+
href=\\\"/r/reactiongifs\\\">/r/reactiongifs</a></td>\\n<td
|
304
|
+
align=\\\"left\\\"><a href=\\\"/r/DesktopDetective\\\">/r/DesktopDetective</a></td>\\n</tr>\\n<tr>\\n<td
|
305
|
+
align=\\\"left\\\"><a href=\\\"/r/memes\\\">/r/memes</a></td>\\n<td
|
306
|
+
align=\\\"left\\\"></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><strong>Wallpaper</strong></td>\\n<td
|
307
|
+
align=\\\"left\\\"><strong>Animals</strong></td>\\n</tr>\\n<tr>\\n<td
|
308
|
+
align=\\\"left\\\"><a href=\\\"/r/wallpaper\\\">/r/wallpaper</a></td>\\n<td
|
309
|
+
align=\\\"left\\\"><a href=\\\"/r/aww\\\">/r/aww</a></td>\\n</tr>\\n<tr>\\n<td
|
310
|
+
align=\\\"left\\\"><a href=\\\"/r/wallpapers\\\">/r/wallpapers</a></td>\\n<td
|
311
|
+
align=\\\"left\\\"><a href=\\\"/r/cats\\\">/r/cats</a></td>\\n</tr>\\n<tr>\\n<td
|
312
|
+
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
|
313
|
+
SFWPorn Network</a></td>\\n<td align=\\\"left\\\"><a
|
314
|
+
href=\\\"/r/TrollingAnimals\\\">/r/TrollingAnimals</a></td>\\n</tr>\\n<tr>\\n<td
|
315
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
316
|
+
href=\\\"/r/deadpets\\\">/r/deadpets</a></td>\\n</tr>\\n<tr>\\n<td
|
317
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
318
|
+
href=\\\"/r/birdpics\\\">/r/birdpics</a></td>\\n</tr>\\n<tr>\\n<td
|
319
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
320
|
+
href=\\\"/r/foxes\\\">/r/foxes</a></td>\\n</tr>\\n<tr>\\n<td
|
321
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
322
|
+
href=\\\"/r/dogpictures\\\">/r/dogpictures</a></td>\\n</tr>\\n<tr>\\n<td
|
323
|
+
align=\\\"left\\\"><strong>Photography</strong></td>\\n<td
|
324
|
+
align=\\\"left\\\"><strong>Low-moderated pics</strong></td>\\n</tr>\\n<tr>\\n<td
|
325
|
+
align=\\\"left\\\"><a href=\\\"/r/photography\\\">/r/photography</a></td>\\n<td
|
326
|
+
align=\\\"left\\\"><a href=\\\"/r/AnythingGoesPics\\\">/r/AnythingGoesPics</a></td>\\n</tr>\\n<tr>\\n<td
|
327
|
+
align=\\\"left\\\"><a href=\\\"/r/photocritique\\\">/r/photocritique</a></td>\\n<td
|
328
|
+
align=\\\"left\\\"><a href=\\\"/r/images\\\">/r/images</a></td>\\n</tr>\\n<tr>\\n<td
|
329
|
+
align=\\\"left\\\"><a href=\\\"/r/HDR\\\">/r/HDR</a></td>\\n<td
|
330
|
+
align=\\\"left\\\"><a href=\\\"/r/misc\\\">/r/misc</a></td>\\n</tr>\\n<tr>\\n<td
|
331
|
+
align=\\\"left\\\"><a href=\\\"/r/windowshots\\\">/r/windowshots</a></td>\\n<td
|
332
|
+
align=\\\"left\\\"><a href=\\\"/r/redditdotcom\\\">/r/redditdotcom</a></td>\\n</tr>\\n<tr>\\n<td
|
333
|
+
align=\\\"left\\\"><a href=\\\"/r/PictureChallenge\\\">/r/PictureChallenge</a></td>\\n<td
|
334
|
+
align=\\\"left\\\"></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><strong>GIFs/Misc.</strong></td>\\n<td
|
335
|
+
align=\\\"left\\\"><strong>New reddits</strong></td>\\n</tr>\\n<tr>\\n<td
|
336
|
+
align=\\\"left\\\"><a href=\\\"/r/reactiongifs\\\">/r/reactiongifs</a></td>\\n<td
|
337
|
+
align=\\\"left\\\"><a href=\\\"/r/britpics\\\">/r/britpics</a></td>\\n</tr>\\n<tr>\\n<td
|
338
|
+
align=\\\"left\\\"><a href=\\\"/r/gifs\\\">/r/gifs</a></td>\\n<td
|
339
|
+
align=\\\"left\\\"><a href=\\\"http://www.reddit.com/user/karmicviolence/m/imaginaryexpanded\\\">Imaginary
|
340
|
+
Network</a></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
341
|
+
href=\\\"/r/dataisbeautiful\\\">/r/dataisbeautiful</a></td>\\n<td
|
342
|
+
align=\\\"left\\\"><a href=\\\"/r/thennnow\\\">/r/thennnow</a></td>\\n</tr>\\n<tr>\\n<td
|
343
|
+
align=\\\"left\\\"><a href=\\\"/r/picrequests\\\">/r/picrequests</a></td>\\n<td
|
344
|
+
align=\\\"left\\\"><a href=\\\"/r/SpecArt\\\">/r/SpecArt</a></td>\\n</tr>\\n<tr>\\n<td
|
345
|
+
align=\\\"left\\\"><a href=\\\"/r/doodles\\\">/r/doodles</a></td>\\n<td
|
346
|
+
align=\\\"left\\\"><a href=\\\"/r/IncredibleIndia\\\">/r/IncredibleIndia</a>
|
347
|
+
.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
348
|
+
href=\\\"/r/NewAmericanCitizen\\\">/r/NewAmericanCitizen</a></td>\\n<td
|
349
|
+
align=\\\"left\\\"><a href=\\\"/r/timelinecovers\\\">/r/timelinecovers</a></td>\\n</tr>\\n<tr>\\n<td
|
350
|
+
align=\\\"left\\\"><a href=\\\"/r/ProgressPics\\\">/r/ProgressPics</a></td>\\n<td
|
351
|
+
align=\\\"left\\\"><a href=\\\"/r/MemesIRL\\\">/r/MemesIRL</a></td>\\n</tr>\\n<tr>\\n<td
|
352
|
+
align=\\\"left\\\"><a href=\\\"/r/ModeratorDuck/wiki/pics\\\">(<em>More</em>)</a></td>\\n<td
|
353
|
+
align=\\\"left\\\"><a href=\\\"/r/OldSchoolCool\\\">/r/OldSchoolCool</a></td>\\n</tr>\\n<tr>\\n<td
|
354
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
355
|
+
href=\\\"/r/photoshopbattles\\\">/r/photoshopbattles</a></td>\\n</tr>\\n<tr>\\n<td
|
356
|
+
align=\\\"left\\\">&#0160;</td>\\n<td align=\\\"left\\\"><a
|
357
|
+
href=\\\"/r/PastAndPresentPics\\\">/r/PastAndPresentPics</a></td>\\n</tr>\\n</tbody></table>\\n\\n<p>Also
|
358
|
+
check out <a href=\\\"http://irc.reddit.com\\\">http://irc.reddit.com</a></p>\\n</div><!--
|
359
|
+
SC_ON -->\", \"title\": \"/r/Pics\", \"over18\": false, \"user_is_moderator\":
|
360
|
+
false, \"header_title\": \"Logo by corvuskorax\", \"description\": \"A place
|
361
|
+
to share photographs and pictures. Feel free to post your own, but please
|
362
|
+
**read the rules first** (see below), and note that we are *not a catch-all*
|
363
|
+
for general images (of screenshots, comics, etc.)\\n\\n#Spoiler code#\\n\\nPlease
|
364
|
+
mark spoilers like this: \\n`[text here](/spoiler)`\\n\\nHover over to [read](/spoiler).\\n\\n#Rules#\\n\\n1.
|
365
|
+
**No screenshots, or pictures with added or superimposed text.** *This includes
|
366
|
+
[image macros](http://en.wikipedia.org/wiki/Image_macro), comics, infographics
|
367
|
+
and most diagrams. Text (e.g. a URL) serving to credit the original author
|
368
|
+
is exempt.*\\n\\n1. **No nudity, porn or gore.** *Other NSFW content must
|
369
|
+
be tagged.*\\n\\n1. **No personal information.** *This includes anything hosted
|
370
|
+
on Facebook's servers, as they can be traced to the original account holder.
|
371
|
+
Stalking & harassment will not be tolerated.* ***No missing-persons requests!***\\n\\n1.
|
372
|
+
**No post titles soliciting votes** *(e.g. \\\"upvote this\\\").*\\n\\n1.
|
373
|
+
**No DAE, \\\"[FIXED]\\\" or \\\"cake day\\\" posts, nor posts addressed to
|
374
|
+
a specific redditor.** *\\\"[FIXED]\\\" posts should be added as a comment
|
375
|
+
to the original image.*\\n\\n1. **Submissions must link directly to a specific
|
376
|
+
image file or to a website with minimal ads.** *We do not allow blog hosting
|
377
|
+
of images (\\\"blogspam\\\"), but links to albums on image hosting websites
|
378
|
+
are okay. URL shorteners are prohibited.*\\n\\n1. **No animated images.**
|
379
|
+
*Please submit them to /r/gif, /r/gifs, or /r/reactiongifs instead.*\\n\\n*
|
380
|
+
If your submission appears to be filtered but **definitely** meets the above
|
381
|
+
rules, [please send us a message](/message/compose?to=%23pics) with a link
|
382
|
+
to the **comments section** of your post (not a direct link to the image).
|
383
|
+
**Don't delete it** as that just makes the filter hate you! \\n\\n* If you
|
384
|
+
come across any rule violations, please report the submission or [message
|
385
|
+
the mods](http://www.reddit.com/message/compose?to=%23pics) and one of us
|
386
|
+
will remove it!\\n\\n* Please note: serial reposters may be filtered\\n\\nPlease
|
387
|
+
also try to come up with **original post titles**. Submissions that use certain
|
388
|
+
clich\\u00e9s/memes will be automatically tagged with a warning.\\n\\n#Links#\\nIf
|
389
|
+
your post doesn't meet the above rules, consider submitting it on one of these
|
390
|
+
other subreddits:\\n\\nComics | &#0160;\\n:---|:---\\n/r/comics | /r/webcomics\\n/r/vertical
|
391
|
+
| [/r/f7u12](/r/fffffffuuuuuuuuuuuu/)\\n/r/ragenovels | /r/AdviceAtheists
|
392
|
+
\\n/r/comicbookart | \\n**Image macros**|**Screenshots/text**\\n/r/lolcats
|
393
|
+
| /r/screenshots\\n/r/AdviceAnimals | /r/desktops\\n/r/Demotivational | /r/facepalm
|
394
|
+
(Facebook)\\n/r/reactiongifs | /r/DesktopDetective\\n/r/memes | \\n**Wallpaper**|**Animals**\\n/r/wallpaper
|
395
|
+
| /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)
|
396
|
+
| /r/TrollingAnimals\\n&#0160; | /r/deadpets\\n&#0160; | /r/birdpics\\n&#0160;
|
397
|
+
| /r/foxes\\n&#0160; | /r/dogpictures\\n**Photography**|**Low-moderated
|
398
|
+
pics**\\n/r/photography | /r/AnythingGoesPics\\n/r/photocritique | /r/images\\n/r/HDR
|
399
|
+
| /r/misc\\n/r/windowshots | /r/redditdotcom\\n/r/PictureChallenge |\\n**GIFs/Misc.**|**New
|
400
|
+
reddits**\\n/r/reactiongifs | /r/britpics \\n/r/gifs | [Imaginary Network](http://www.reddit.com/user/karmicviolence/m/imaginaryexpanded)\\n/r/dataisbeautiful
|
401
|
+
| /r/thennnow\\n/r/picrequests | /r/SpecArt\\n/r/doodles | /r/IncredibleIndia
|
402
|
+
.\\n/r/NewAmericanCitizen | /r/timelinecovers\\n/r/ProgressPics | /r/MemesIRL
|
403
|
+
\\n[(*More*)](/r/ModeratorDuck/wiki/pics) | /r/OldSchoolCool\\n&#0160;
|
404
|
+
| /r/photoshopbattles\\n&#0160; | /r/PastAndPresentPics\\n\\nAlso check
|
405
|
+
out http://irc.reddit.com\\n \", \"submit_link_label\": null, \"accounts_active\":
|
406
|
+
null, \"spam_comments\": \"high\", \"spam_links\": \"high\", \"header_size\":
|
407
|
+
[160, 64], \"subscribers\": 4620979, \"submit_text_label\": null, \"name\":
|
408
|
+
\"t5_2qh0u\", \"created\": 1201221069.0, \"url\": \"/r/pics/\", \"created_utc\":
|
409
|
+
1201221069.0, \"user_is_contributor\": false, \"public_traffic\": false, \"public_description\":
|
410
|
+
\"A place to share interesting photographs and pictures.\", \"comment_score_hide_mins\":
|
411
|
+
60, \"subreddit_type\": \"public\", \"submission_type\": \"link\", \"user_is_subscriber\":
|
412
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
413
|
+
--><div class=\\\"md\\\"><p><a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index#wiki_rules\\\"><strong>Please
|
414
|
+
read the rules</strong></a> before posting. If your post is
|
415
|
+
removed, please read the removal message thoroughly and note any links or
|
416
|
+
referrals contained within the message.</p>\\n\\n<hr/>\\n\\n<p><strong>Rule
|
417
|
+
1</strong></p>\\n\\n<ul>\\n<li>Must have clear and
|
418
|
+
direct question in the title.</li>\\n<li>Own answer goes in the
|
419
|
+
comments, NOT the text box.</li>\\n</ul>\\n\\n<hr/>\\n\\n<p><strong>Rule
|
420
|
+
2</strong></p>\\n\\n<ul>\\n<li>Must be open-ended,
|
421
|
+
discussion-inspiring question.</li>\\n</ul>\\n\\n<hr/>\\n\\n<p><strong>Rule
|
422
|
+
3</strong></p>\\n\\n<ul>\\n<li>No surveys, polls,
|
423
|
+
yes/no or either/or questions.</li>\\n</ul>\\n\\n<hr/>\\n\\n<p><strong>Rule
|
424
|
+
4</strong></p>\\n\\n<ul>\\n<li>Posting or seeking
|
425
|
+
Personal Info will result in a ban without prior warning.</li>\\n</ul>\\n\\n<hr/>\\n\\n<p><strong>Rule
|
426
|
+
5</strong></p>\\n\\n<ul>\\n<li>No soapboxing, or attempts
|
427
|
+
to promote or defame a person or entity.</li>\\n<li>No rhetorical,
|
428
|
+
or loaded questions.</li>\\n</ul>\\n\\n<hr/>\\n\\n<p><strong>Rule
|
429
|
+
6</strong></p>\\n\\n<ul>\\n<li>No seeking legal, medical,
|
430
|
+
or mental health consult.</li>\\n</ul>\\n\\n<hr/>\\n\\n<p><strong>Rule
|
431
|
+
7</strong></p>\\n\\n<ul>\\n<li>No solicitation of
|
432
|
+
goods/services/favors/assistance/etc.</li>\\n</ul>\\n\\n<hr/>\\n\\n<p><strong>Rule
|
433
|
+
8</strong></p>\\n\\n<ul>\\n<li>Obscene or inflammatory
|
434
|
+
content is subject to removal.</li>\\n</ul>\\n\\n<hr/>\\n\\n<p>If
|
435
|
+
you have any questions, feel free to consult the mods before posting.</p>\\n</div><!--
|
436
|
+
SC_ON -->\", \"user_is_banned\": false, \"id\": \"2qh1i\", \"submit_text\":
|
437
|
+
\"[**Please read the rules**](http://www.reddit.com/r/AskReddit/wiki/index#wiki_rules)
|
438
|
+
\ before posting. If your post is removed, please read the removal message
|
439
|
+
thoroughly and note any links or referrals contained within the message.\\n\\n---\\n**Rule
|
440
|
+
1**\\n\\n* Must have clear and direct question in the title.\\n* Own answer
|
441
|
+
goes in the comments, NOT the text box.\\n\\n---\\n**Rule 2**\\n\\n* Must
|
442
|
+
be open-ended, discussion-inspiring question.\\n\\n---\\n\\n**Rule 3**\\n\\n*
|
443
|
+
No surveys, polls, yes/no or either/or questions.\\n\\n---\\n\\n**Rule 4**\\n\\n*
|
444
|
+
Posting or seeking Personal Info will result in a ban without prior warning.\\n\\n---\\n\\n**Rule
|
445
|
+
5**\\n\\n* No soapboxing, or attempts to promote or defame a person or entity.\\n*
|
446
|
+
No rhetorical, or loaded questions.\\n\\n---\\n\\n**Rule 6**\\n\\n* No seeking
|
447
|
+
legal, medical, or mental health consult.\\n\\n---\\n\\n**Rule 7**\\n\\n*
|
448
|
+
No solicitation of goods/services/favors/assistance/etc.\\n\\n---\\n\\n**Rule
|
449
|
+
8**\\n\\n* Obscene or inflammatory content is subject to removal.\\n\\n---\\n\\nIf
|
450
|
+
you have any questions, feel free to consult the mods before posting.\", \"spam_selfposts\":
|
451
|
+
\"high\", \"display_name\": \"AskReddit\", \"header_img\": \"http://c.thumbs.redditmedia.com/ckbE4tDmf6xcPaVz.png\",
|
452
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><hr/>\\n\\n<p><strong>Why
|
453
|
+
are comment scores hidden? <a href=\\\"http://www.reddit.com/r/AskReddit/wiki/mod_announcements#wiki_hidden_comment_scores\\\">Click
|
454
|
+
to find out.</a></strong> The current delay is -- <strong>60</strong>
|
455
|
+
-- minutes</p>\\n\\n<hr/>\\n\\n<p><strong>Use a <a
|
456
|
+
href=\\\"/r/AskReddit/search?q=flair%3Aserious&amp;sort=new&amp;restrict_sr=on&amp;t=all\\\">[Serious]</a>
|
457
|
+
post tag to designate your post as a serious, on-topic-only thread</strong>.
|
458
|
+
\ <a href=\\\"http://www.reddit.com/r/AskReddit/wiki/mod_announcements#wiki_.5Bserious.5D_post_tags\\\"><strong>[Learn
|
459
|
+
More]</strong></a></p>\\n\\n<hr/>\\n\\n<p><strong>Do
|
460
|
+
you have ideas or feedback for Askreddit? Submit to <a href=\\\"/r/Ideasforaskreddit\\\">/r/Ideasforaskreddit</a>.</strong></p>\\n\\n<hr/>\\n\\n<p><strong>Check
|
461
|
+
out our <a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index\\\">Wiki
|
462
|
+
\ page for the rules and other info.</a></strong></p>\\n\\n<hr/>\\n\\n<ul>\\n<li><p>1)
|
463
|
+
<strong>You must post a clear and direct question, and only the question,
|
464
|
+
in your title.</strong> Any context or clarification should be posted
|
465
|
+
in the text box. <strong>Your own answer to the question should go in
|
466
|
+
the comments</strong> as a reply to your own post. [<a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_1-\\\">More</a>]</p></li>\\n<li><p>2)
|
467
|
+
<strong>Askreddit is for open-ended, discussion-inspiring questions.</strong>
|
468
|
+
Questions with a single correct answer do not generate open discussion and
|
469
|
+
will be removed. Any post asking for advice should be generic and not specific
|
470
|
+
to your situation alone. [<a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_2-\\\">More</a>]</p></li>\\n<li><p>3)
|
471
|
+
<strong>Please do not post poll-type, survey, or yes/no questions.</strong>
|
472
|
+
&quot;Does anybody else?&quot; questions, and posts like \\u201chighest
|
473
|
+
vote wins\\u201d or of similar nature will also be removed. [<a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_3-\\\">More</a>]</p></li>\\n<li><p>4)
|
474
|
+
<strong>Posting, or seeking, any identifying personal information will
|
475
|
+
result in a ban without a prior warning</strong>. This includes for
|
476
|
+
yourself or other people, and refers to, but is not limited to, phone numbers,
|
477
|
+
email addresses, facebook or other social media accounts. [<a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_4-\\\">More</a>]</p></li>\\n<li><p>5)
|
478
|
+
<strong>Askreddit is not your soapbox, personal army, or advertising
|
479
|
+
platform.</strong> Posts attempting to promote a specific agenda of
|
480
|
+
yours or anyone else, to gain publicity, promote a cause or charity drive,
|
481
|
+
or to publicly shame a person or entity will be removed. Rhetorical and loaded
|
482
|
+
questions will also be removed. [<a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_5-\\\">More</a>]</p></li>\\n<li><p>6)
|
483
|
+
<strong>Questions seeking professional advice are inappropriate for
|
484
|
+
this subreddit and will be removed.</strong> This includes but is not
|
485
|
+
limited to medical, legal, mental health and financial advice. If you think
|
486
|
+
that you need professional support, please contact a professional in your
|
487
|
+
area. [<a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_6-\\\">More</a>]</p></li>\\n<li><p>7)
|
488
|
+
<strong>Soliciting money, goods, services, or favors are not allowed.</strong>
|
489
|
+
They will be removed. [<a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_7-\\\">More</a>]</p></li>\\n<li><p>8)
|
490
|
+
<strong>Posts or comments with offensive pictures or language are subject
|
491
|
+
to removal at the discretion of the moderators.</strong> We are not
|
492
|
+
here to police behavior, but content solely intended to inflame or offend
|
493
|
+
will not be allowed. [<a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_8-\\\">More</a>]</p></li>\\n<li><p>9)
|
494
|
+
<strong>Comment replies consisting solely of images will be removed.</strong>
|
495
|
+
[<a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_9-\\\">More</a>]</p></li>\\n<li><p>10)
|
496
|
+
If you think your post has disappeared, see spam or an inappropriate post,
|
497
|
+
please do not hesitate to <a href=\\\"http://www.reddit.com/message/compose?to=%2Fr%2FAskReddit\\\">contact
|
498
|
+
the mods</a>, we&#39;re happy to help. [<a href=\\\"http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_10-\\\">More</a>]</p></li>\\n</ul>\\n\\n<hr/>\\n\\n<p>Interested
|
499
|
+
in the amount of traffic <a href=\\\"/r/AskReddit\\\">/r/AskReddit</a>
|
500
|
+
receives daily/monthly? Check out our <a href=\\\"http://www.reddit.com/r/AskReddit/about/traffic\\\">traffic
|
501
|
+
stats here</a>!</p>\\n\\n<hr/>\\n\\n<p><strong>We
|
502
|
+
have spoiler tags, please use them!</strong> \\n[Text you want visible](#s
|
503
|
+
&quot;Text you want hidden&quot;)</p>\\n\\n<p>Looks <a
|
504
|
+
href=\\\"#s\\\" title=\\\"should work on all platforms\\\">like this</a></p>\\n\\n<hr/>\\n\\n<blockquote>\\n<blockquote>\\n<p><strong>Other
|
505
|
+
reddits you may like</strong></p>\\n\\n<table><thead>\\n<tr>\\n<th
|
506
|
+
align=\\\"left\\\">&gt;Related</th>\\n<th align=\\\"left\\\">Subreddits</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
507
|
+
align=\\\"left\\\"><a href=\\\"http://www.reddit.com/user/AskReddit_Multis/m/ask_gender\\\">Ask
|
508
|
+
Gender</a></td>\\n<td align=\\\"left\\\"><a href=\\\"http://www.reddit.com/user/AskReddit_Multis/m/ask_others\\\">Ask
|
509
|
+
Others</a></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
510
|
+
href=\\\"/r/findareddit\\\">Find a Reddit</a></td>\\n<td
|
511
|
+
align=\\\"left\\\"><a href=\\\"http://www.reddit.com/subreddits/search\\\">Subreddit
|
512
|
+
Search</a></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
513
|
+
href=\\\"http://www.reddit.com/user/AskReddit_Multis/m/meta_subreddits\\\">Meta
|
514
|
+
Subs</a></td>\\n<td align=\\\"left\\\"><a href=\\\"http://www.reddit.com/user/AskReddit_Multis/m/what_is_this___\\\">What
|
515
|
+
is this ___ </a></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
516
|
+
href=\\\"http://www.reddit.com/user/AskReddit_Multis/m/tech\\\">Tech</a></td>\\n<td
|
517
|
+
align=\\\"left\\\"><a href=\\\"http://www.reddit.com/user/AskReddit_Multis/m/reddit_support\\\">Reddit
|
518
|
+
Support</a></td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
519
|
+
href=\\\"http://www.reddit.com/user/AskReddit_Multis/m/dating_relationships\\\">Dating
|
520
|
+
&amp; Relationships</a></td>\\n<td align=\\\"left\\\"><a
|
521
|
+
href=\\\"http://www.reddit.com/user/AskReddit_Multis/m/offers_assistance\\\">Offers
|
522
|
+
&amp; Assistance</a></td>\\n</tr>\\n<tr>\\n<td
|
523
|
+
align=\\\"left\\\"><a href=\\\"/r/tipofmytongue\\\">Tip of my Tongue</a></td>\\n<td
|
524
|
+
align=\\\"left\\\"><a href=\\\"http://www.reddit.com/user/AskReddit_Multis/m/self_oriented\\\">Self-Oriented</a></td>\\n</tr>\\n</tbody></table>\\n</blockquote>\\n</blockquote>\\n\\n<hr/>\\n\\n<p><a
|
525
|
+
href=\\\"http://www.reddit.com/help/reddiquette\\\">Ever read the <strong>reddiquette</strong>?
|
526
|
+
\ Take a peek!</a></p>\\n\\n<hr/>\\n\\n<h6><a href=\\\"http://webchat.freenode.net/?channels=#askreddit\\\">Join
|
527
|
+
us in the AskReddit IRC!</a></h6>\\n</div><!-- SC_ON
|
528
|
+
-->\", \"title\": \"Ask Reddit...\", \"over18\": false, \"user_is_moderator\":
|
529
|
+
false, \"header_title\": \"Ass Credit\", \"description\": \"---------\\n**Why
|
530
|
+
are comment scores hidden? [Click to find out.](http://www.reddit.com/r/AskReddit/wiki/mod_announcements#wiki_hidden_comment_scores)**
|
531
|
+
\ The current delay is -- **60** -- minutes\\n\\n--------\\n\\n**Use a [[Serious]](/r/AskReddit/search?q=flair%3Aserious&sort=new&restrict_sr=on&t=all)
|
532
|
+
post tag to designate your post as a serious, on-topic-only thread**. [**[Learn
|
533
|
+
More]**](http://www.reddit.com/r/AskReddit/wiki/mod_announcements#wiki_.5Bserious.5D_post_tags)\\n\\n-----------\\n\\n**Do
|
534
|
+
you have ideas or feedback for Askreddit? Submit to /r/Ideasforaskreddit.**\\n\\n-----------\\n\\n**Check
|
535
|
+
out our [Wiki page for the rules and other info.](http://www.reddit.com/r/AskReddit/wiki/index)**\\n\\n-----------\\n\\n*
|
536
|
+
1) **You must post a clear and direct question, and only the question, in
|
537
|
+
your title.** Any context or clarification should be posted in the text box.
|
538
|
+
**Your own answer to the question should go in the comments** as a reply to
|
539
|
+
your own post. [[More](http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_1-)]\\n\\n*
|
540
|
+
2) **Askreddit is for open-ended, discussion-inspiring questions.** Questions
|
541
|
+
with a single correct answer do not generate open discussion and will be removed.
|
542
|
+
Any post asking for advice should be generic and not specific to your situation
|
543
|
+
alone. [[More](http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_2-)]\\n\\n*
|
544
|
+
3) **Please do not post poll-type, survey, or yes/no questions.** \\\"Does
|
545
|
+
anybody else?\\\" questions, and posts like \\u201chighest vote wins\\u201d
|
546
|
+
or of similar nature will also be removed. [[More](http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_3-)]\\n\\n*
|
547
|
+
4) **Posting, or seeking, any identifying personal information will result
|
548
|
+
in a ban without a prior warning**. This includes for yourself or other people,
|
549
|
+
and refers to, but is not limited to, phone numbers, email addresses, facebook
|
550
|
+
or other social media accounts. [[More](http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_4-)]\\n\\n*
|
551
|
+
5) **Askreddit is not your soapbox, personal army, or advertising platform.**
|
552
|
+
Posts attempting to promote a specific agenda of yours or anyone else, to
|
553
|
+
gain publicity, promote a cause or charity drive, or to publicly shame a person
|
554
|
+
or entity will be removed. Rhetorical and loaded questions will also be removed.
|
555
|
+
[[More](http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_5-)]\\n\\n*
|
556
|
+
6) **Questions seeking professional advice are inappropriate for this subreddit
|
557
|
+
and will be removed.** This includes but is not limited to medical, legal,
|
558
|
+
mental health and financial advice. If you think that you need professional
|
559
|
+
support, please contact a professional in your area. [[More](http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_6-)]\\n\\n*
|
560
|
+
7) **Soliciting money, goods, services, or favors are not allowed.** They
|
561
|
+
will be removed. [[More](http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_7-)]\\n\\n*
|
562
|
+
8) **Posts or comments with offensive pictures or language are subject to
|
563
|
+
removal at the discretion of the moderators.** We are not here to police behavior,
|
564
|
+
but content solely intended to inflame or offend will not be allowed. [[More](http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_8-)]\\n\\n*
|
565
|
+
9) **Comment replies consisting solely of images will be removed.** [[More](http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_9-)]\\n\\n*
|
566
|
+
10) If you think your post has disappeared, see spam or an inappropriate post,
|
567
|
+
please do not hesitate to [contact the mods](http://www.reddit.com/message/compose?to=%2Fr%2FAskReddit),
|
568
|
+
we're happy to help. [[More](http://www.reddit.com/r/AskReddit/wiki/index#wiki_-rule_10-)]\\n\\n----------\\n\\nInterested
|
569
|
+
in the amount of traffic /r/AskReddit receives daily/monthly? Check out our
|
570
|
+
[traffic stats here](http://www.reddit.com/r/AskReddit/about/traffic)!\\n\\n-----------\\n\\n**We
|
571
|
+
have spoiler tags, please use them!** \\n\\\\[Text you want visible](#s \\\"Text
|
572
|
+
you want hidden\\\")\\n\\nLooks [like this](#s \\\"should work on all platforms\\\")\\n\\n----------\\n\\n>>
|
573
|
+
**Other reddits you may like**\\n>>>Related| Subreddits\\n:--|:--\\n[Ask
|
574
|
+
Gender](http://www.reddit.com/user/AskReddit_Multis/m/ask_gender) | [Ask Others](http://www.reddit.com/user/AskReddit_Multis/m/ask_others)\\n[Find
|
575
|
+
a Reddit](/r/findareddit) | [Subreddit Search](http://www.reddit.com/subreddits/search)\\n[Meta
|
576
|
+
Subs](http://www.reddit.com/user/AskReddit_Multis/m/meta_subreddits) | [What
|
577
|
+
is this ___ ](http://www.reddit.com/user/AskReddit_Multis/m/what_is_this___)\\n[Tech](http://www.reddit.com/user/AskReddit_Multis/m/tech)
|
578
|
+
| [Reddit Support](http://www.reddit.com/user/AskReddit_Multis/m/reddit_support)\\n[Dating
|
579
|
+
& Relationships](http://www.reddit.com/user/AskReddit_Multis/m/dating_relationships)
|
580
|
+
| [Offers & Assistance](http://www.reddit.com/user/AskReddit_Multis/m/offers_assistance)\\n[Tip
|
581
|
+
of my Tongue](/r/tipofmytongue) | [Self-Oriented](http://www.reddit.com/user/AskReddit_Multis/m/self_oriented)\\n\\n____________\\n\\n[Ever
|
582
|
+
read the **reddiquette**? Take a peek!](http://www.reddit.com/help/reddiquette)\\n\\n--------------\\n\\n######[Join
|
583
|
+
us in the AskReddit IRC!](http://webchat.freenode.net/?channels=#askreddit)\",
|
584
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
585
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": [125, 42], \"subscribers\":
|
586
|
+
4478024, \"submit_text_label\": \"Ask a question!\", \"name\": \"t5_2qh1i\",
|
587
|
+
\"created\": 1201236735.0, \"url\": \"/r/AskReddit/\", \"created_utc\": 1201233135.0,
|
588
|
+
\"user_is_contributor\": false, \"public_traffic\": true, \"public_description\":
|
589
|
+
\"/r/AskReddit is the place to be to ask thought-provoking questions.\", \"comment_score_hide_mins\":
|
590
|
+
60, \"subreddit_type\": \"public\", \"submission_type\": \"self\", \"user_is_subscriber\":
|
591
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
592
|
+
false, \"id\": \"2qh49\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
593
|
+
\"display_name\": \"blog\", \"header_img\": null, \"description_html\": \"<!--
|
594
|
+
SC_OFF --><div class=\\\"md\\\"><p>Items from <a href=\\\"http://blog.reddit.com\\\">blog.reddit.com</a>
|
595
|
+
that are about the community or otherwise not directly related to functionality
|
596
|
+
changes will be posted here. </p>\\n\\n<p>See also:</p>\\n\\n<ul>\\n<li><a
|
597
|
+
href=\\\"http://reddit.com/r/announcements\\\">/r/announcements</a><br/></li>\\n<li><a
|
598
|
+
href=\\\"http://reddit.com/r/changelog\\\">/r/changelog</a><br/></li>\\n</ul>\\n\\n<p><a
|
599
|
+
href=\\\"http://www.reddit.com/r/RedditVideos/comments/bn9on/list_of_reddit_ama_video_interviews/\\\">List
|
600
|
+
of reddit video interviews</a></p>\\n</div><!-- SC_ON
|
601
|
+
-->\", \"title\": \"The official reddit blog\", \"over18\": false, \"user_is_moderator\":
|
602
|
+
false, \"header_title\": null, \"description\": \"Items from [blog.reddit.com](http://blog.reddit.com)
|
603
|
+
that are about the community or otherwise not directly related to functionality
|
604
|
+
changes will be posted here. \\n\\nSee also:\\n \\n * [/r/announcements](http://reddit.com/r/announcements)
|
605
|
+
\ \\n * [/r/changelog](http://reddit.com/r/changelog) \\n\\n\\n[List of
|
606
|
+
reddit video interviews](http://www.reddit.com/r/RedditVideos/comments/bn9on/list_of_reddit_ama_video_interviews/)\",
|
607
|
+
\"submit_link_label\": \"\", \"accounts_active\": null, \"spam_comments\":
|
608
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
609
|
+
4365633, \"submit_text_label\": \"\", \"name\": \"t5_2qh49\", \"created\":
|
610
|
+
1201244604.0, \"url\": \"/r/blog/\", \"created_utc\": 1201244604.0, \"user_is_contributor\":
|
611
|
+
false, \"public_traffic\": false, \"public_description\": \"\", \"comment_score_hide_mins\":
|
612
|
+
0, \"subreddit_type\": \"restricted\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
613
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
614
|
+
--><div class=\\\"md\\\"><p>Please <strong>do not</strong>
|
615
|
+
submit any article more recent than two months, <strong>even if it&#39;s
|
616
|
+
not news!</strong></p>\\n\\n<p>Also keep your post title
|
617
|
+
objective and make sure your source fully supports it (so no personal opinions
|
618
|
+
at all!)</p>\\n\\n<p>See <a href=\\\"http://www.reddit.com/r/todayilearned/about/sidebar\\\">here</a>
|
619
|
+
for all of the TIL rules.</p>\\n</div><!-- SC_ON -->\",
|
620
|
+
\"user_is_banned\": false, \"id\": \"2qqjc\", \"submit_text\": \"Please **do
|
621
|
+
not** submit any article more recent than two months, **even if it's not
|
622
|
+
news!**\\n\\nAlso keep your post title objective and make sure your source
|
623
|
+
fully supports it (so no personal opinions at all!)\\n\\nSee [here](http://www.reddit.com/r/todayilearned/about/sidebar)
|
624
|
+
for all of the TIL rules.\", \"spam_selfposts\": \"high\", \"display_name\":
|
625
|
+
\"todayilearned\", \"header_img\": \"http://b.thumbs.redditmedia.com/K2YUxXbD4oVZS00C.png\",
|
626
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><ul>\\n<li><p>You
|
627
|
+
learn something new every day; what did <em>you</em> learn today?</p></li>\\n<li><p>Submit
|
628
|
+
interesting and <strong>specific facts</strong> that you just
|
629
|
+
found out (not broad information you looked up, TodayILearned is not <a
|
630
|
+
href=\\\"/r/wikipedia\\\">/r/wikipedia</a>).</p></li>\\n</ul>\\n\\n<h1>Posting
|
631
|
+
rules</h1>\\n\\n<ol>\\n<li><p>Submissions must be
|
632
|
+
verifiable<em>. Please link directly to a reliable source that supports
|
633
|
+
the claim in your post title.</em> Images alone do not count as valid
|
634
|
+
references. <em>Videos are fine so long as they come from reputable
|
635
|
+
sources (e.g. BBC, Discovery, etc).</em></p></li>\\n<li><p>No
|
636
|
+
personal opinions, <em>anecdotes or subjective statements (e.g &quot;TIL
|
637
|
+
xyz is a great movie&quot;).</em></p></li>\\n<li><p>No
|
638
|
+
news or recent sources. <em>News and any sources (blog, article, press
|
639
|
+
release, video, etc.) more recent than two months are not allowed.</em></p></li>\\n<li><p>Nothing
|
640
|
+
related to recent politics.</p></li>\\n<li><p>No misleading
|
641
|
+
claims<em>. Posts that omit essential information, or present unrelated
|
642
|
+
facts in a way that suggest a connection will be removed.</em></p></li>\\n<li><p><em>Rephrase
|
643
|
+
your post title if the following are not met:</em></p>\\n\\n<ol>\\n<li><em>Titles
|
644
|
+
must begin with &quot;TIL ...&quot;</em></li>\\n<li><em>Make
|
645
|
+
them descriptive, concise and specific (e.g.</em> not <em>&quot;TIL
|
646
|
+
something interesting about bacon&quot;).</em></li>\\n<li><em>Titles</em>
|
647
|
+
must be able to stand on their own <em>without requiring readers to
|
648
|
+
click on a link. Starting your title with a why/what/who/where/how modifier
|
649
|
+
should be unnecessary.</em></li>\\n<li><em>&quot;TIL
|
650
|
+
about ...&quot; and other broad posts don&#39;t belong on TIL. Try
|
651
|
+
<a href=\\\"/r/Wikipedia\\\">/r/Wikipedia</a>, etc. instead, or
|
652
|
+
be more specific (and avoid the word &quot;about&quot;).</em></li>\\n<li><em>&quot;TIL
|
653
|
+
how to ...&quot; posts belong on</em> <strong><a href=\\\"/r/HowTo\\\">/r/HowTo</a>.</strong></li>\\n</ol></li>\\n<li><p><em>No
|
654
|
+
trivial or obvious facts (e.g. &quot;TIL the sky is blue&quot;), or
|
655
|
+
facts that appeal only to a narrow audience, specifically</em> no software/website
|
656
|
+
tips <em>(e.g. &quot;TIL you can click on widgets in WidgetMaker
|
657
|
+
1.22&quot;).</em></p></li>\\n<li><p>All
|
658
|
+
NSFW links must be tagged <em>(including comments).</em></p></li>\\n</ol>\\n\\n<p>(<a
|
659
|
+
href=\\\"http://www.reddit.com/help/faq#WhydoesredditneedmoderationCantyoujustletthevotersdecide\\\">Why
|
660
|
+
we need rules</a> and the <a href=\\\"http://www.reddit.com/r/todayilearned/wiki/faq\\\">TIL
|
661
|
+
FAQ</a>)</p>\\n\\n<h1>Additional info</h1>\\n\\n<ul>\\n<li><p>If
|
662
|
+
your post does not appear in the <a href=\\\"http://www.reddit.com/r/todayilearned/new/\\\">new
|
663
|
+
queue</a> and you think it meets the above rules, please <strong><a
|
664
|
+
href=\\\"http://www.reddit.com/message/compose?to=%23todayilearned\\\">contact
|
665
|
+
the moderators</a></strong> (include a link to your <em>reddit.com</em>
|
666
|
+
post, not your story).</p></li>\\n<li><p>Please report
|
667
|
+
spam, inaccurate or otherwise inappropriate posts by <a href=\\\"http://www.reddit.com/message/compose?to=%23todayilearned\\\">messaging
|
668
|
+
the moderators</a>, as this helps us remove them more promptly!</p></li>\\n</ul>\\n\\n<h1>Etiquette</h1>\\n\\n<p>We
|
669
|
+
ask that you <em>please</em> do the following:</p>\\n\\n<ol>\\n<li><p><em>avoid
|
670
|
+
mobile versions of websites (e.g. <a href=\\\"http://m.wikipedia.org\\\">m.wikipedia.org</a>)</em></p></li>\\n<li><p><em>link
|
671
|
+
to the appropriate heading when referencing an article (particularly on Wikipedia)</em></p></li>\\n<li><p><em>link
|
672
|
+
to the appropriate start time when referencing videos (e.g. <a href=\\\"http://youtubetime.com/\\\">on
|
673
|
+
YouTube</a>)</em></p></li>\\n<li><p><em>add
|
674
|
+
[PDF] or [NSFW] tags to your posts, as necessary.</em></p></li>\\n<li><p><em>Please
|
675
|
+
avoid reposting TILs that have already made the front page in the past</em></p></li>\\n</ol>\\n\\n<p><a
|
676
|
+
href=\\\"#space\\\"></a></p>\\n\\n<p>Please also read
|
677
|
+
the site-wide <a href=\\\"http://www.reddit.com/help/reddiquette\\\">Reddiquette</a>.</p>\\n\\n<hr/>\\n\\n<p><strong>Talk
|
678
|
+
with us on IRC</strong>: #todayIlearned on irc.freenode.org, or just
|
679
|
+
<a href=\\\"http://webchat.freenode.net?channels=todayilearned&amp;ulo=d4/\\\">click
|
680
|
+
here</a>.</p>\\n\\n<ul>\\n<li>To adapt this style
|
681
|
+
to your own subreddit, message <a href=\\\"/u/legweed\\\">/u/legweed</a>!
|
682
|
+
Thanks legweed!</li>\\n</ul>\\n\\n<hr/>\\n\\n<ul>\\n<li><em>You
|
683
|
+
are loved.</em></li>\\n</ul>\\n\\n<p><a href=\\\"#/RES_SR_Config/NightModeCompatible\\\"></a></p>\\n</div><!--
|
684
|
+
SC_ON -->\", \"title\": \"Today I Learned (TIL)\", \"over18\": false, \"user_is_moderator\":
|
685
|
+
false, \"header_title\": \"TIL: 4 Million Learnerers! \", \"description\":
|
686
|
+
\"* You learn something new every day; what did *you* learn today?\\n \\n*
|
687
|
+
Submit interesting and **specific facts** that you just found out (not broad
|
688
|
+
information you looked up, TodayILearned is not [/r/wikipedia](/r/wikipedia)).\\n
|
689
|
+
\\n#Posting rules#\\n \\n1. Submissions must be verifiable*. Please link directly
|
690
|
+
to a reliable source that supports the claim in your post title.* Images alone
|
691
|
+
do not count as valid references. *Videos are fine so long as they come from
|
692
|
+
reputable sources (e.g. BBC, Discovery, etc).*\\n \\n1. No personal opinions,
|
693
|
+
*anecdotes or subjective statements (e.g \\\"TIL xyz is a great movie\\\").*\\n\\n1.
|
694
|
+
No news or recent sources. *News and any sources (blog, article, press release,
|
695
|
+
video, etc.) more recent than two months are not allowed.*\\n \\n1. Nothing
|
696
|
+
related to recent politics.\\n \\n1. No misleading claims*. Posts that omit
|
697
|
+
essential information, or present unrelated facts in a way that suggest a
|
698
|
+
connection will be removed.*\\n \\n1. *Rephrase your post title if the following
|
699
|
+
are not met:*\\n 1. *Titles must begin with \\\"TIL ...\\\"*\\n 1. *Make
|
700
|
+
them descriptive, concise and specific (e.g.* not *\\\"TIL something interesting
|
701
|
+
about bacon\\\").*\\n 1. *Titles* must be able to stand on their own *without
|
702
|
+
requiring readers to click on a link. Starting your title with a why/what/who/where/how
|
703
|
+
modifier should be unnecessary.*\\n 1. *\\\"TIL about ...\\\" and other
|
704
|
+
broad posts don't belong on TIL. Try /r/Wikipedia, etc. instead, or be more
|
705
|
+
specific (and avoid the word \\\"about\\\").*\\n 1. *\\\"TIL how to ...\\\"
|
706
|
+
posts belong on* **/r/HowTo.**\\n1. *No trivial or obvious facts (e.g. \\\"TIL
|
707
|
+
the sky is blue\\\"), or facts that appeal only to a narrow audience, specifically*
|
708
|
+
no software/website tips *(e.g. \\\"TIL you can click on widgets in WidgetMaker
|
709
|
+
1.22\\\").*\\n1. All NSFW links must be tagged *(including comments).*\\n
|
710
|
+
\\n([Why we need rules](http://www.reddit.com/help/faq#WhydoesredditneedmoderationCantyoujustletthevotersdecide)
|
711
|
+
and the [TIL FAQ](http://www.reddit.com/r/todayilearned/wiki/faq))\\n \\n#Additional
|
712
|
+
info#\\n \\n* If your post does not appear in the [new queue](http://www.reddit.com/r/todayilearned/new/)
|
713
|
+
and you think it meets the above rules, please **[contact the moderators](http://www.reddit.com/message/compose?to=%23todayilearned)**
|
714
|
+
(include a link to your *reddit.com* post, not your story).\\n \\n* Please
|
715
|
+
report spam, inaccurate or otherwise inappropriate posts by [messaging the
|
716
|
+
moderators](http://www.reddit.com/message/compose?to=%23todayilearned), as
|
717
|
+
this helps us remove them more promptly!\\n \\n#Etiquette#\\n \\nWe ask that
|
718
|
+
you *please* do the following:\\n\\n1. *avoid mobile versions of websites
|
719
|
+
(e.g. [m.wikipedia.org](http://m.wikipedia.org))*\\n \\n1. *link to the appropriate
|
720
|
+
heading when referencing an article (particularly on Wikipedia)*\\n \\n1.
|
721
|
+
*link to the appropriate start time when referencing videos (e.g. [on YouTube](http://youtubetime.com/))*\\n
|
722
|
+
\\n1. *add [PDF] or [NSFW] tags to your posts, as necessary.*\\n\\n1. *Please
|
723
|
+
avoid reposting TILs that have already made the front page in the past*\\n\\n\\n[](#space)\\n\\nPlease
|
724
|
+
also read the site-wide [Reddiquette](http://www.reddit.com/help/reddiquette).\\n
|
725
|
+
\\n---\\n \\n**Talk with us on IRC**: #todayIlearned on irc.freenode.org,
|
726
|
+
or just [click here](http://webchat.freenode.net?channels=todayilearned&ulo=d4/).\\n
|
727
|
+
\\n* To adapt this style to your own subreddit, message /u/legweed! Thanks
|
728
|
+
legweed!\\n\\n---\\n\\n* *You are loved.*\\n\\n[](#/RES_SR_Config/NightModeCompatible)\",
|
729
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
730
|
+
\"high\", \"spam_links\": \"high\", \"header_size\": [125, 47], \"subscribers\":
|
731
|
+
4347570, \"submit_text_label\": null, \"name\": \"t5_2qqjc\", \"created\":
|
732
|
+
1230446819.0, \"url\": \"/r/todayilearned/\", \"created_utc\": 1230446819.0,
|
733
|
+
\"user_is_contributor\": false, \"public_traffic\": false, \"public_description\":
|
734
|
+
\"You learn something new every day; what did you learn today?\\n\\nSubmit
|
735
|
+
interesting and specific facts about something that you just found out here.\",
|
736
|
+
\"comment_score_hide_mins\": 60, \"subreddit_type\": \"public\", \"submission_type\":
|
737
|
+
\"link\", \"user_is_subscriber\": true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
738
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><h6><a href=\\\"#h6-red\\\"></a></h6>\\n\\n<blockquote>\\n<h1>Disallowed
|
739
|
+
submissions</h1>\\n\\n<ul>\\n<li>Editorialized titles</li>\\n<li>Feature
|
740
|
+
stories</li>\\n<li>US internal news/US politics</li>\\n<li>Editorials,
|
741
|
+
opinion, analysis</li>\\n<li>Non-English articles</li>\\n<li>Raw
|
742
|
+
images and videos</li>\\n<li>Blogspam (if stolen content/direct
|
743
|
+
copy)</li>\\n<li>Old news articles</li>\\n</ul>\\n</blockquote>\\n</div><!--
|
744
|
+
SC_ON -->\", \"user_is_banned\": false, \"id\": \"2qh13\", \"submit_text\":
|
745
|
+
\"###### [](#h6-red)\\n># Disallowed submissions\\n>\\n>* Editorialized
|
746
|
+
titles\\n>* Feature stories\\n>* US internal news/US politics\\n>*
|
747
|
+
Editorials, opinion, analysis\\n>* Non-English articles\\n>* Raw images
|
748
|
+
and videos\\n>* Blogspam (if stolen content/direct copy)\\n>* Old news
|
749
|
+
articles\", \"spam_selfposts\": \"low\", \"display_name\": \"worldnews\",
|
750
|
+
\"header_img\": \"http://b.thumbs.redditmedia.com/YzmqrJoj0eux65dU.png\",
|
751
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>IRC
|
752
|
+
channel: <a href=\\\"https://kiwiirc.com/client/irc.snoonet.org/worldnews\\\">#worldnews
|
753
|
+
on irc.snoonet.org</a></p>\\n\\n<p><a href=\\\"http://www.reddit.com/r/worldnews/comments/gilded\\\">See
|
754
|
+
gilded /r/worldnews comments</a></p>\\n\\n<h4><a href=\\\"#h4-green\\\"></a></h4>\\n\\n<blockquote>\\n<h1>Welcome!</h1>\\n\\n<ul>\\n<li><a
|
755
|
+
href=\\\"/r/worldnews\\\">/r/worldnews</a> is for major news from
|
756
|
+
around the world except US-internal news / US politics</li>\\n</ul>\\n</blockquote>\\n\\n<h6><a
|
757
|
+
href=\\\"#h6-red\\\"></a></h6>\\n\\n<blockquote>\\n<h1>Disallowed
|
758
|
+
submissions</h1>\\n\\n<ul>\\n<li>Editorialized titles</li>\\n<li>Feature
|
759
|
+
stories</li>\\n<li>US internal news/US politics</li>\\n<li>Editorials,
|
760
|
+
opinion, analysis</li>\\n<li>Non-English articles</li>\\n<li>Raw
|
761
|
+
images and videos</li>\\n<li>Petitions, advocacy, surveys</li>\\n<li>All
|
762
|
+
caps titles</li>\\n<li>Blogspam (if stolen content/direct copy)</li>\\n<li>Twitter</li>\\n<li>Old
|
763
|
+
news (\\u22652 weeks old) articles</li>\\n</ul>\\n</blockquote>\\n\\n<h6><a
|
764
|
+
href=\\\"#h6-red\\\"></a></h6>\\n\\n<blockquote>\\n<h1>Disallowed
|
765
|
+
comments</h1>\\n\\n<ul>\\n<li>Racism</li>\\n<li>Sexism</li>\\n<li>Homophobia</li>\\n<li>Other
|
766
|
+
offensive content</li>\\n<li>Unlabeled NSFW images/videos</li>\\n<li>Memes/GIFs</li>\\n</ul>\\n</blockquote>\\n\\n<p><strong>Repeat
|
767
|
+
offenders may be banned</strong></p>\\n\\n<h5><a href=\\\"#h5-blue\\\"></a></h5>\\n\\n<blockquote>\\n<h1>Other
|
768
|
+
subreddits</h1>\\n\\n<p><em>Similar subjects:</em></p>\\n\\n<ul>\\n<li><a
|
769
|
+
href=\\\"/r/News\\\">/r/News</a></li>\\n<li><a href=\\\"/r/Politics\\\">/r/Politics</a>
|
770
|
+
<em>US politics only</em></li>\\n<li><a href=\\\"/r/PoliticalDiscussion\\\">/r/PoliticalDiscussion</a></li>\\n<li><a
|
771
|
+
href=\\\"/r/WorldPolitics\\\">/r/WorldPolitics</a></li>\\n<li><a
|
772
|
+
href=\\\"/r/WorldEvents\\\">/r/WorldEvents</a></li>\\n<li><a
|
773
|
+
href=\\\"/r/GeoPolitics\\\">/r/GeoPolitics</a></li>\\n<li><a
|
774
|
+
href=\\\"/r/InternationalPolitics\\\">/r/InternationalPolitics</a></li>\\n<li><a
|
775
|
+
href=\\\"/r/InternationalBusiness\\\">/r/InternationalBusiness</a></li>\\n<li><a
|
776
|
+
href=\\\"/r/Business\\\">/r/Business</a></li>\\n<li><a
|
777
|
+
href=\\\"/r/Economics\\\">/r/Economics</a></li>\\n<li><a
|
778
|
+
href=\\\"/r/Environment\\\">/r/Environment</a></li>\\n<li><a
|
779
|
+
href=\\\"/r/History\\\">/r/History</a></li>\\n<li><a
|
780
|
+
href=\\\"/r/WikiLeaks\\\">/r/WikiLeaks</a></li>\\n<li><a
|
781
|
+
href=\\\"/r/HumanRights\\\">/r/HumanRights</a></li>\\n<li><a
|
782
|
+
href=\\\"/r/NSALeaks\\\">/r/NSALeaks</a> - <strong>NEW!</strong></li>\\n</ul>\\n\\n<p><em>National
|
783
|
+
&amp; regional subreddits:</em></p>\\n\\n<ul>\\n<li><a
|
784
|
+
href=\\\"/r/Afghanistan\\\">/r/Afghanistan</a></li>\\n<li><a
|
785
|
+
href=\\\"/r/Africa\\\">/r/Africa</a></li>\\n<li><a
|
786
|
+
href=\\\"/r/Australia\\\">/r/Australia</a></li>\\n<li><a
|
787
|
+
href=\\\"/r/Canada\\\">/r/Canada</a></li>\\n<li><a
|
788
|
+
href=\\\"/r/Europe\\\">/r/Europe</a> </li>\\n<li><a
|
789
|
+
href=\\\"/r/India\\\">/r/India</a></li>\\n<li><a href=\\\"/r/Iran\\\">/r/Iran</a></li>\\n<li><a
|
790
|
+
href=\\\"/r/Israel\\\">/r/Israel</a></li>\\n<li><a
|
791
|
+
href=\\\"/r/LevantineWar\\\">/r/LevantineWar</a></li>\\n<li><a
|
792
|
+
href=\\\"/r/Mexico\\\">/r/Mexico</a></li>\\n<li><a
|
793
|
+
href=\\\"/r/MiddleEastNews\\\">/r/MiddleEastNews</a></li>\\n<li><a
|
794
|
+
href=\\\"/r/MideastPeace\\\">/r/MideastPeace</a></li>\\n<li><a
|
795
|
+
href=\\\"/r/NorthKoreaNews\\\">/r/NorthKoreaNews</a></li>\\n<li><a
|
796
|
+
href=\\\"/r/Pakistan\\\">/r/Pakistan</a></li>\\n<li><a
|
797
|
+
href=\\\"/r/Palestine\\\">/r/Palestine</a> </li>\\n<li><a
|
798
|
+
href=\\\"/r/Syria\\\">/r/Syria</a></li>\\n<li><a href=\\\"/r/SyrianCivilWar\\\">/r/SyrianCivilWar</a></li>\\n<li><a
|
799
|
+
href=\\\"/r/SyrianUprising\\\">/r/SyrianUprising</a></li>\\n<li><a
|
800
|
+
href=\\\"/r/UnitedKingdom\\\">/r/UnitedKingdom</a> </li>\\n<li><a
|
801
|
+
href=\\\"/r/UKPolitics\\\">/r/UKPolitics</a> </li>\\n<li>(US)
|
802
|
+
<a href=\\\"/r/Politics\\\">/r/Politics</a> <em>US politics</em></li>\\n</ul>\\n</blockquote>\\n\\n<p>Follow
|
803
|
+
us on <a href=\\\"https://twitter.com/redditworldnews\\\">Twitter</a></p>\\n</div><!--
|
804
|
+
SC_ON -->\", \"title\": \"World News\", \"over18\": false, \"user_is_moderator\":
|
805
|
+
false, \"header_title\": \"News from Planet Earth\", \"description\": \"IRC
|
806
|
+
channel: [#worldnews on irc.snoonet.org](https://kiwiirc.com/client/irc.snoonet.org/worldnews)\\n\\n[See
|
807
|
+
gilded /r/worldnews comments](http://www.reddit.com/r/worldnews/comments/gilded)\\n\\n####
|
808
|
+
[](#h4-green)\\n># Welcome!\\n>\\n>* /r/worldnews is for major news
|
809
|
+
from around the world except US-internal news / US politics\\n\\n\\n######
|
810
|
+
[](#h6-red)\\n># Disallowed submissions\\n>\\n>* Editorialized titles\\n>*
|
811
|
+
Feature stories\\n>* US internal news/US politics\\n>* Editorials, opinion,
|
812
|
+
analysis\\n>* Non-English articles\\n>* Raw images and videos\\n>*
|
813
|
+
Petitions, advocacy, surveys\\n>* All caps titles\\n>* Blogspam (if
|
814
|
+
stolen content/direct copy)\\n>* Twitter\\n>* Old news (\\u22652 weeks
|
815
|
+
old) articles\\n\\n###### [](#h6-red)\\n># Disallowed comments\\n>\\n>*
|
816
|
+
Racism\\n>* Sexism\\n>* Homophobia\\n>* Other offensive content\\n>*
|
817
|
+
Unlabeled NSFW images/videos\\n>* Memes/GIFs\\n\\n**Repeat offenders may
|
818
|
+
be banned**\\n\\n\\n##### [](#h5-blue)\\n># Other subreddits\\n> *Similar
|
819
|
+
subjects:*\\n> \\n> * /r/News\\n> * /r/Politics *US politics only*\\n>
|
820
|
+
* /r/PoliticalDiscussion\\n> * /r/WorldPolitics\\n> * /r/WorldEvents\\n>
|
821
|
+
* /r/GeoPolitics\\n> * /r/InternationalPolitics\\n> * /r/InternationalBusiness\\n>
|
822
|
+
* /r/Business\\n> * /r/Economics\\n> * /r/Environment\\n> * /r/History\\n>
|
823
|
+
* /r/WikiLeaks\\n> * /r/HumanRights\\n> * /r/NSALeaks - **NEW!**\\n>
|
824
|
+
\\n> *National & regional subreddits:*\\n> \\n> * /r/Afghanistan\\n>
|
825
|
+
* /r/Africa\\n> * /r/Australia\\n> * /r/Canada\\n> * /r/Europe \\n>
|
826
|
+
* /r/India\\n> * /r/Iran\\n> * /r/Israel\\n> * /r/LevantineWar\\n>
|
827
|
+
* /r/Mexico\\n> * /r/MiddleEastNews\\n> * /r/MideastPeace\\n> * /r/NorthKoreaNews\\n>
|
828
|
+
* /r/Pakistan\\n> * /r/Palestine \\n> * /r/Syria\\n> * /r/SyrianCivilWar\\n>
|
829
|
+
* /r/SyrianUprising\\n> * /r/UnitedKingdom \\n> * /r/UKPolitics \\n>
|
830
|
+
* (US) /r/Politics *US politics*\\n\\nFollow us on [Twitter](https://twitter.com/redditworldnews)\",
|
831
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
832
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": [138, 50], \"subscribers\":
|
833
|
+
4286688, \"submit_text_label\": null, \"name\": \"t5_2qh13\", \"created\":
|
834
|
+
1201234719.0, \"url\": \"/r/worldnews/\", \"created_utc\": 1201231119.0, \"user_is_contributor\":
|
835
|
+
false, \"public_traffic\": true, \"public_description\": \"A place for major
|
836
|
+
news from around the world, excluding US-internal news.\\n\", \"comment_score_hide_mins\":
|
837
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"link\", \"user_is_subscriber\":
|
838
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
839
|
+
false, \"id\": \"mouw\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
840
|
+
\"display_name\": \"science\", \"header_img\": \"http://d.thumbs.redditmedia.com/4FRTjW0es3g_xxa-.png\",
|
841
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><h6><strong>Submit
|
842
|
+
Questions to <a href=\\\"/r/askscience\\\">AskScience</a></strong>|
|
843
|
+
<strong><a href=\\\"http://www.reddit.com/r/science/comments/1pmv3w/verified_user_account_program_in_rscience/\\\">Get
|
844
|
+
Flair in /r/Science</a></strong></h6>\\n\\n<h3>Filter
|
845
|
+
by Field (Click to Filter)</h3>\\n\\n<table><thead>\\n<tr>\\n<th
|
846
|
+
align=\\\"left\\\">Title</th>\\n<th align=\\\"right\\\">Description</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
847
|
+
align=\\\"left\\\"><a href=\\\"/r/science/search?q=flair%3A%27Physics%27&amp;sort=new&amp;restrict_sr=on\\\">Physics</a></td>\\n<td
|
848
|
+
align=\\\"right\\\">Theoretical Physics, Experimental Physics, High-energy
|
849
|
+
Physics, Solid-State Physics, Fluid Dynamics, Relativity, Quantum Physics,
|
850
|
+
Plasma Physics</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
851
|
+
href=\\\"/r/science/search?q=flair%3A%27Astro%27&amp;sort=new&amp;restrict_sr=on\\\">Astronomy</a></td>\\n<td
|
852
|
+
align=\\\"right\\\">Astronomy, Astrophysics, Cosmology, Planetary Formation</td>\\n</tr>\\n<tr>\\n<td
|
853
|
+
align=\\\"left\\\"><a href=\\\"/r/science/search?q=flair%3A%27Chem%27&amp;sort=new&amp;restrict_sr=on\\\">Chemistry</a></td>\\n<td
|
854
|
+
align=\\\"right\\\">Chemistry, Organic Chemistry, Polymers, Biochemistry</td>\\n</tr>\\n<tr>\\n<td
|
855
|
+
align=\\\"left\\\"><a href=\\\"/r/science/search?q=flair%3A%27Bio%27&amp;sort=new&amp;restrict_sr=on\\\">Biology</a></td>\\n<td
|
856
|
+
align=\\\"right\\\">Biology, Evolution, Morphology, Ecology, Synthetic
|
857
|
+
Biology, Microbiology, Cellular Biology, Molecular Biology</td>\\n</tr>\\n<tr>\\n<td
|
858
|
+
align=\\\"left\\\"><a href=\\\"/r/science/search?q=flair%3A%27Env%27&amp;sort=new&amp;restrict_sr=on\\\">Environment</a></td>\\n<td
|
859
|
+
align=\\\"right\\\">Earth Science, Atmospheric Science, Oceanography, Earth
|
860
|
+
System Science, Climatology</td>\\n</tr>\\n<tr>\\n<td
|
861
|
+
align=\\\"left\\\"><a href=\\\"/r/science/search?q=flair%3A%27Med%27&amp;sort=new&amp;restrict_sr=on\\\">Medicine</a></td>\\n<td
|
862
|
+
align=\\\"right\\\">Medicine, Oncology, Dentistry, Physiology, Epidemiology,
|
863
|
+
Infectious Disease, Pharmacy</td>\\n</tr>\\n<tr>\\n<td
|
864
|
+
align=\\\"left\\\"><a href=\\\"/r/science/search?q=flair%3A%27Neuro%27&amp;sort=new&amp;restrict_sr=on\\\">Neuroscience</a></td>\\n<td
|
865
|
+
align=\\\"right\\\">Neuroscience, Neurology, Neurochemistry, Cognitive
|
866
|
+
Neuroscience</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
867
|
+
href=\\\"/r/science/search?q=flair%3A%27Psych%27&amp;sort=new&amp;restrict_sr=on\\\">Psychology</a></td>\\n<td
|
868
|
+
align=\\\"right\\\">Psychology, Cognitive Psychology, Developmental Psychology,
|
869
|
+
Abnormal, Social Psychology</td>\\n</tr>\\n<tr>\\n<td
|
870
|
+
align=\\\"left\\\"><a href=\\\"/r/science/search?q=flair%3A%27Soc%27&amp;sort=new&amp;restrict_sr=on\\\">Social
|
871
|
+
Sciences</a></td>\\n<td align=\\\"right\\\">Social Science,
|
872
|
+
Political Science, Economics, Archaeology, Anthropology, Linguistics</td>\\n</tr>\\n<tr>\\n<td
|
873
|
+
align=\\\"left\\\"><a href=\\\"/r/science/search?q=flair%3A%27Compsci%27&amp;sort=new&amp;restrict_sr=on\\\">Computer
|
874
|
+
Sci</a></td>\\n<td align=\\\"right\\\">Computing, Artificial
|
875
|
+
Intelligence, Machine Learning, Computability</td>\\n</tr>\\n<tr>\\n<td
|
876
|
+
align=\\\"left\\\"><a href=\\\"/r/science/search?q=flair%3A%27Math%27&amp;sort=new&amp;restrict_sr=on\\\">Mathematics</a></td>\\n<td
|
877
|
+
align=\\\"right\\\">Mathematics, Statistics, Number Theory, Calculus, Algebra</td>\\n</tr>\\n<tr>\\n<td
|
878
|
+
align=\\\"left\\\"><a href=\\\"/r/science/search?q=flair%3A%27Eng%27&amp;sort=new&amp;restrict_sr=on\\\">Engineering</a></td>\\n<td
|
879
|
+
align=\\\"right\\\">Mechanical Engineering, Electrical Engineering, Structural
|
880
|
+
Engineering, Computer Engineering, Aerospace Engineering</td>\\n</tr>\\n<tr>\\n<td
|
881
|
+
align=\\\"left\\\"><a href=\\\"/r/science/search?q=flair%3A%27geo%27&amp;sort=new&amp;restrict_sr=on\\\">Geology</a></td>\\n<td
|
882
|
+
align=\\\"right\\\">Geology, Petrology, Hydrology, Paleontology. Geophysics,
|
883
|
+
Volcanology, Seismology</td>\\n</tr>\\n</tbody></table>\\n\\n<hr/>\\n\\n<p>Please
|
884
|
+
ensure that your submission to r/science is :</p>\\n\\n<ol>\\n<li>a
|
885
|
+
direct link to or a summary of <strong>peer reviewed research</strong>
|
886
|
+
with appropriate citations. If the article itself does not link to these sources,
|
887
|
+
please include a link in a comment. <strong>Summaries of summaries are
|
888
|
+
not allowed.</strong></li>\\n<li><p>based on <strong>recent
|
889
|
+
scientific research</strong>. The research linked to should be within
|
890
|
+
the past 6 months (or so).</p></li>\\n<li><p><strong>not
|
891
|
+
editorialized, sensationalized, or biased</strong>. This includes both
|
892
|
+
the submission and its title.</p></li>\\n<li><p><strong>not
|
893
|
+
blogspam, an image, video or an infographic</strong>.</p></li>\\n<li><p><strong>not
|
894
|
+
a repost</strong>. If an alternate report based on the same research
|
895
|
+
has been submitted, please submit your article as a comment to one of the
|
896
|
+
current submissions.</p></li>\\n</ol>\\n\\n<p>Please
|
897
|
+
ensure that your comment on an r/science thread is :</p>\\n\\n<ol>\\n<li><p><strong>on-topic
|
898
|
+
and relevant</strong> to the submission. </p></li>\\n<li><p><strong>not
|
899
|
+
a joke, meme, or off-topic</strong>, these will be removed.</p></li>\\n<li><p>not
|
900
|
+
hateful, offensive, spam, or otherwise unacceptable.</p>\\n\\n<ol>\\n<li>Follow
|
901
|
+
<a href=\\\"http://code.reddit.com/wiki/help/reddiquette\\\"><strong>reddiquette
|
902
|
+
!</strong></a></li>\\n</ol></li>\\n</ol>\\n\\n<p>Please
|
903
|
+
use the <strong>report button</strong> to inform the moderators
|
904
|
+
about inappropriate submissions or comments.</p>\\n\\n<p>Bots
|
905
|
+
and novelty accounts will be banned.</p>\\n\\n<p>Submissions on
|
906
|
+
topics such as science education, science policy, and educational videos will
|
907
|
+
be considered by relevance and quality; but should be submitted to more specialized
|
908
|
+
subreddits.</p>\\n\\n<p>If you feel your submission was mistakenly
|
909
|
+
caught by the spam filter or removed, message the moderators. <strong>Please
|
910
|
+
include a permalink to your submission.</strong></p>\\n</div><!--
|
911
|
+
SC_ON -->\", \"title\": \"science\", \"over18\": false, \"user_is_moderator\":
|
912
|
+
false, \"header_title\": \"Reddit.com\", \"description\": \"###### **Submit
|
913
|
+
Questions to [AskScience](/r/askscience)**| **[Get Flair in /r/Science](http://www.reddit.com/r/science/comments/1pmv3w/verified_user_account_program_in_rscience/)**\\n######
|
914
|
+
\\n\\n\\n### Filter by Field (Click to Filter)\\n\\n\\nTitle|Description\\n:--|--:\\n[Physics](/r/science/search?q=flair%3A%27Physics%27&sort=new&restrict_sr=on)|Theoretical
|
915
|
+
Physics, Experimental Physics, High-energy Physics, Solid-State Physics, Fluid
|
916
|
+
Dynamics, Relativity, Quantum Physics, Plasma Physics \\n[Astronomy](/r/science/search?q=flair%3A%27Astro%27&sort=new&restrict_sr=on)|Astronomy,
|
917
|
+
Astrophysics, Cosmology, Planetary Formation \\n[Chemistry](/r/science/search?q=flair%3A%27Chem%27&sort=new&restrict_sr=on)|Chemistry,
|
918
|
+
Organic Chemistry, Polymers, Biochemistry\\n[Biology](/r/science/search?q=flair%3A%27Bio%27&sort=new&restrict_sr=on)|Biology,
|
919
|
+
Evolution, Morphology, Ecology, Synthetic Biology, Microbiology, Cellular
|
920
|
+
Biology, Molecular Biology \\n[Environment](/r/science/search?q=flair%3A%27Env%27&sort=new&restrict_sr=on)|Earth
|
921
|
+
Science, Atmospheric Science, Oceanography, Earth System Science, Climatology
|
922
|
+
\\n[Medicine](/r/science/search?q=flair%3A%27Med%27&sort=new&restrict_sr=on)|Medicine,
|
923
|
+
Oncology, Dentistry, Physiology, Epidemiology, Infectious Disease, Pharmacy\\n[Neuroscience](/r/science/search?q=flair%3A%27Neuro%27&sort=new&restrict_sr=on)|Neuroscience,
|
924
|
+
Neurology, Neurochemistry, Cognitive Neuroscience \\n[Psychology](/r/science/search?q=flair%3A%27Psych%27&sort=new&restrict_sr=on)|Psychology,
|
925
|
+
Cognitive Psychology, Developmental Psychology, Abnormal, Social Psychology\\n[Social
|
926
|
+
Sciences](/r/science/search?q=flair%3A%27Soc%27&sort=new&restrict_sr=on)|Social
|
927
|
+
Science, Political Science, Economics, Archaeology, Anthropology, Linguistics
|
928
|
+
\ \\n[Computer Sci](/r/science/search?q=flair%3A%27Compsci%27&sort=new&restrict_sr=on)|Computing,
|
929
|
+
Artificial Intelligence, Machine Learning, Computability \\n [Mathematics](/r/science/search?q=flair%3A%27Math%27&sort=new&restrict_sr=on)|Mathematics,
|
930
|
+
Statistics, Number Theory, Calculus, Algebra\\n[Engineering](/r/science/search?q=flair%3A%27Eng%27&sort=new&restrict_sr=on)|Mechanical
|
931
|
+
Engineering, Electrical Engineering, Structural Engineering, Computer Engineering,
|
932
|
+
Aerospace Engineering\\n[Geology](/r/science/search?q=flair%3A%27geo%27&sort=new&restrict_sr=on)|Geology,
|
933
|
+
Petrology, Hydrology, Paleontology. Geophysics, Volcanology, Seismology \\n---\\n\\n\\nPlease
|
934
|
+
ensure that your submission to r/science is :\\n\\n 1. a direct link to or
|
935
|
+
a summary of **peer reviewed research** with appropriate citations. If the
|
936
|
+
article itself does not link to these sources, please include a link in a
|
937
|
+
comment. **Summaries of summaries are not allowed.**\\n 2. based on **recent
|
938
|
+
scientific research**. The research linked to should be within the past 6
|
939
|
+
months (or so).\\n\\n 3. **not editorialized, sensationalized, or biased**.
|
940
|
+
This includes both the submission and its title.\\n\\n 4. **not blogspam,
|
941
|
+
an image, video or an infographic**.\\n\\n 5. **not a repost**. If an alternate
|
942
|
+
report based on the same research has been submitted, please submit your article
|
943
|
+
as a comment to one of the current submissions.\\n\\nPlease ensure that your
|
944
|
+
comment on an r/science thread is :\\n\\n 1. **on-topic and relevant** to
|
945
|
+
the submission. \\n\\n 2. **not a joke, meme, or off-topic**, these will be
|
946
|
+
removed.\\n\\n 3. not hateful, offensive, spam, or otherwise unacceptable.\\n\\n3.
|
947
|
+
Follow [**reddiquette !**](http://code.reddit.com/wiki/help/reddiquette)\\n\\nPlease
|
948
|
+
use the **report button** to inform the moderators about inappropriate submissions
|
949
|
+
or comments.\\n\\nBots and novelty accounts will be banned.\\n\\nSubmissions
|
950
|
+
on topics such as science education, science policy, and educational videos
|
951
|
+
will be considered by relevance and quality; but should be submitted to more
|
952
|
+
specialized subreddits.\\n\\nIf you feel your submission was mistakenly caught
|
953
|
+
by the spam filter or removed, message the moderators. **Please include a
|
954
|
+
permalink to your submission.**\", \"submit_link_label\": null, \"accounts_active\":
|
955
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
956
|
+
[35, 35], \"subscribers\": 4232166, \"submit_text_label\": null, \"name\":
|
957
|
+
\"t5_mouw\", \"created\": 1161183266.0, \"url\": \"/r/science/\", \"created_utc\":
|
958
|
+
1161179666.0, \"user_is_contributor\": false, \"public_traffic\": false, \"public_description\":
|
959
|
+
\"The Science subreddit is a place to share new findings. Read about the latest
|
960
|
+
advances in astronomy, biology, medicine, physics and the social sciences.
|
961
|
+
Find and submit the best writeup on the web about a discovery, and make sure
|
962
|
+
it cites its sources.\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
963
|
+
\"public\", \"submission_type\": \"link\", \"user_is_subscriber\": true}},
|
964
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF --><div
|
965
|
+
class=\\\"md\\\"><p><strong>All requests</strong> require
|
966
|
+
5 questions and, if the requested person is a public figure, their contact
|
967
|
+
information.</p>\\n\\n<p><strong>All AMAs</strong>
|
968
|
+
require proof. Here&#39;s <a href=\\\"http://www.reddit.com/r/IAmA/wiki/index#wiki_3._what_constitutes_.22proof.22.3F\\\">a
|
969
|
+
handy guide</a> to providing proof if you aren&#39;t sure what to
|
970
|
+
do.</p>\\n</div><!-- SC_ON -->\", \"user_is_banned\": false,
|
971
|
+
\"id\": \"2qzb6\", \"submit_text\": \"**All requests** require 5 questions
|
972
|
+
and, if the requested person is a public figure, their contact information.\\n\\n**All
|
973
|
+
AMAs** require proof. Here's [a handy guide]\\n(http://www.reddit.com/r/IAmA/wiki/index#wiki_3._what_constitutes_.22proof.22.3F)
|
974
|
+
to providing proof if you aren't sure what to do.\", \"spam_selfposts\": null,
|
975
|
+
\"display_name\": \"IAmA\", \"header_img\": \"http://d.thumbs.redditmedia.com/3hldoKUAjllXPW8i.png\",
|
976
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><a
|
977
|
+
href=\\\"http://bit.ly/13jc56o\\\">Submit an AMA</a></p>\\n\\n<p><a
|
978
|
+
href=\\\"http://bit.ly/169aKkW\\\">Submit a Request</a></p>\\n\\n<p><a
|
979
|
+
href=\\\"http://nr.reddit.com/r/iama\\\">Hide AMA Requests</a></p>\\n\\n<h3>Follow
|
980
|
+
us on Twitter! <a href=\\\"http://goo.gl/kqOwT\\\">@reddit_AMA</a>
|
981
|
+
| Please check out our <a href=\\\"http://goo.gl/KC0FO\\\">Rules and
|
982
|
+
FAQs</a>.</h3>\\n\\n<h4><a href=\\\"#h4-green\\\"></a></h4>\\n\\n<blockquote>\\n<h1>AMAs
|
983
|
+
should be about:</h1>\\n\\n<ul>\\n<li>Something uncommon
|
984
|
+
that plays a central role in your life, or</li>\\n<li>A truly
|
985
|
+
interesting and unique event.</li>\\n<li><a href=\\\"http://goo.gl/PJa2j\\\">Explanation
|
986
|
+
and examples of this rule can be found here</a></li>\\n</ul>\\n</blockquote>\\n\\n<hr/>\\n\\n<h6><a
|
987
|
+
href=\\\"#h6-red\\\"></a></h6>\\n\\n<blockquote>\\n<h1>All
|
988
|
+
AMAs require proof.</h1>\\n\\n<ul>\\n<li>Proof should be
|
989
|
+
included in the text of the post when you start your AMA. If it must remain
|
990
|
+
confidential, you can <a href=\\\"http://goo.gl/QPM7x\\\">message it
|
991
|
+
to the moderators</a> and we can verify you.</li>\\n<li><a
|
992
|
+
href=\\\"http://goo.gl/TtNhm\\\">See here for tips concerning proof and
|
993
|
+
examples</a></li>\\n</ul>\\n</blockquote>\\n\\n<hr/>\\n\\n<h4><a
|
994
|
+
href=\\\"#h4-green\\\"></a></h4>\\n\\n<blockquote>\\n<h1>Request
|
995
|
+
threads</h1>\\n\\n<ul>\\n<li>Requests must be reasonable
|
996
|
+
and realistic. All requests must have 5 questions for the person being requested.
|
997
|
+
</li>\\n<li><strong>Requests for celebrities must contain
|
998
|
+
their public contact info in the body of the request.</strong></li>\\n<li><a
|
999
|
+
href=\\\"http://goo.gl/duMoL\\\">See here for more information about requests</a></li>\\n</ul>\\n</blockquote>\\n\\n<hr/>\\n\\n<h5><a
|
1000
|
+
href=\\\"#h5-yellow\\\"></a></h5>\\n\\n<blockquote>\\n<h1>Useful
|
1001
|
+
Links!</h1>\\n\\n<ul>\\n<li><a href=\\\"http://goo.gl/uZCws\\\"><strong>Step-by-step
|
1002
|
+
guide to doing an AMA</strong></a> </li>\\n<li><a
|
1003
|
+
href=\\\"/r/iama/about/traffic\\\">Our Traffic and Visitor Stats</a></li>\\n<li><a
|
1004
|
+
href=\\\"http://goo.gl/iSxJZ\\\">Related subreddits</a></li>\\n<li><a
|
1005
|
+
href=\\\"http://goo.gl/zU6PQ\\\">Follow us on Twitter!</a></li>\\n<li><a
|
1006
|
+
href=\\\"http://goo.gl/aLSNO\\\">AMA Schedule Viewer App [iOS]</a></li>\\n</ul>\\n</blockquote>\\n\\n<hr/>\\n\\n<h5><a
|
1007
|
+
href=\\\"#h5-yellow\\\"></a></h5>\\n\\n<blockquote>\\n<h1><a
|
1008
|
+
href=\\\"http://www.reddit.com/r/IAmA/wiki/index#wiki_4._how_do_i_get_on_the_calendar.3F\\\">Upcoming
|
1009
|
+
AMAs</a></h1>\\n\\n<ul>\\n<li><strong>AMAs are
|
1010
|
+
scheduled in Eastern Standard Time (GMT-5:00).</strong></li>\\n<li><strong><a
|
1011
|
+
href=\\\"http://goo.gl/r0VuI\\\">Google Calendar [Link]</a></strong></li>\\n<li>Please
|
1012
|
+
don&#39;t post announcements about upcoming AMAs in this subreddit - it
|
1013
|
+
confuses the users!</li>\\n<li><a href=\\\"http://goo.gl/gzvSa\\\"><strong>Click
|
1014
|
+
here</strong></a> to request being added to our calendar.</li>\\n</ul>\\n</blockquote>\\n\\n<hr/>\\n\\n<table><thead>\\n<tr>\\n<th
|
1015
|
+
align=\\\"center\\\">Date</th>\\n<th align=\\\"center\\\">Time</th>\\n<th
|
1016
|
+
align=\\\"center\\\">Person</th>\\n<th align=\\\"center\\\">Description</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
1017
|
+
align=\\\"center\\\">10 Nov</td>\\n<td align=\\\"center\\\">3pm</td>\\n<td
|
1018
|
+
align=\\\"center\\\">Matana Roberts</td>\\n<td align=\\\"center\\\">Saxophonist
|
1019
|
+
&amp; Composer</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">10
|
1020
|
+
Nov</td>\\n<td align=\\\"center\\\">11pm</td>\\n<td align=\\\"center\\\">Adam
|
1021
|
+
Gnade</td>\\n<td align=\\\"center\\\">Author, Musician.</td>\\n</tr>\\n<tr>\\n<td
|
1022
|
+
align=\\\"center\\\">11 Nov</td>\\n<td align=\\\"center\\\">12:30pm</td>\\n<td
|
1023
|
+
align=\\\"center\\\">John Ratzenberger</td>\\n<td align=\\\"center\\\">Actor
|
1024
|
+
- Cheers, Empire Strikes Back, Pixar</td>\\n</tr>\\n<tr>\\n<td
|
1025
|
+
align=\\\"center\\\">11 Nov</td>\\n<td align=\\\"center\\\">1pm</td>\\n<td
|
1026
|
+
align=\\\"center\\\">Bear Grylls</td>\\n<td align=\\\"center\\\">Adventurer.
|
1027
|
+
Host, <em>Escape From Hell</em></td>\\n</tr>\\n<tr>\\n<td
|
1028
|
+
align=\\\"center\\\">11 Nov</td>\\n<td align=\\\"center\\\">2pm</td>\\n<td
|
1029
|
+
align=\\\"center\\\">Chris Elliott, Jason Woliner &amp; Andrew Weinberg</td>\\n<td
|
1030
|
+
align=\\\"center\\\">Star and Director of Eagleheart</td>\\n</tr>\\n<tr>\\n<td
|
1031
|
+
align=\\\"center\\\">11 Nov</td>\\n<td align=\\\"center\\\">5:30pm</td>\\n<td
|
1032
|
+
align=\\\"center\\\">Ladar Levison</td>\\n<td align=\\\"center\\\">Lavabit</td>\\n</tr>\\n<tr>\\n<td
|
1033
|
+
align=\\\"center\\\">12 Nov</td>\\n<td align=\\\"center\\\">12pm</td>\\n<td
|
1034
|
+
align=\\\"center\\\">Florence Reed</td>\\n<td align=\\\"center\\\">Founder
|
1035
|
+
and President of Sustainable Harvest International</td>\\n</tr>\\n<tr>\\n<td
|
1036
|
+
align=\\\"center\\\">12 Nov</td>\\n<td align=\\\"center\\\">1pm</td>\\n<td
|
1037
|
+
align=\\\"center\\\">Sarah Kliff</td>\\n<td align=\\\"center\\\">Blogger
|
1038
|
+
for the Washington Post</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">12
|
1039
|
+
Nov</td>\\n<td align=\\\"center\\\">2pm</td>\\n<td align=\\\"center\\\">Andrew
|
1040
|
+
Zimmern</td>\\n<td align=\\\"center\\\">Television Personality,
|
1041
|
+
Chef, Food Writer, and Teacher</td>\\n</tr>\\n<tr>\\n<td
|
1042
|
+
align=\\\"center\\\">12 Nov</td>\\n<td align=\\\"center\\\">3pm</td>\\n<td
|
1043
|
+
align=\\\"center\\\">Matt Apuzzo</td>\\n<td align=\\\"center\\\">Investigative
|
1044
|
+
Reporter, Associated Press</td>\\n</tr>\\n<tr>\\n<td
|
1045
|
+
align=\\\"center\\\">12 Nov</td>\\n<td align=\\\"center\\\">8pm</td>\\n<td
|
1046
|
+
align=\\\"center\\\">Borgore &amp; Waka Flocka</td>\\n<td
|
1047
|
+
align=\\\"center\\\">Musician / Artists</td>\\n</tr>\\n<tr>\\n<td
|
1048
|
+
align=\\\"center\\\">12 Nov</td>\\n<td align=\\\"center\\\">9pm</td>\\n<td
|
1049
|
+
align=\\\"center\\\">Amber Sym</td>\\n<td align=\\\"center\\\">Playboy
|
1050
|
+
model, actress, and horror hostess</td>\\n</tr>\\n<tr>\\n<td
|
1051
|
+
align=\\\"center\\\">13 Nov</td>\\n<td align=\\\"center\\\">10am</td>\\n<td
|
1052
|
+
align=\\\"center\\\">Cards Against Humanity</td>\\n<td align=\\\"center\\\">Politically
|
1053
|
+
incorrect card game</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">13
|
1054
|
+
Nov</td>\\n<td align=\\\"center\\\">12pm</td>\\n<td align=\\\"center\\\">IronE
|
1055
|
+
Singleton</td>\\n<td align=\\\"center\\\">Actor, Author, Writer,
|
1056
|
+
Lyricist</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">13
|
1057
|
+
Nov</td>\\n<td align=\\\"center\\\">1pm</td>\\n<td align=\\\"center\\\">Robert
|
1058
|
+
Edsel</td>\\n<td align=\\\"center\\\">Author and lead, <em>Monuments
|
1059
|
+
Men Foundation</em></td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">13
|
1060
|
+
Nov</td>\\n<td align=\\\"center\\\">1pm</td>\\n<td align=\\\"center\\\">Ayah
|
1061
|
+
Bdeir</td>\\n<td align=\\\"center\\\">Senior TED fellow, CEO &amp;
|
1062
|
+
Founder: littleBits</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">13
|
1063
|
+
Nov</td>\\n<td align=\\\"center\\\">3pm</td>\\n<td align=\\\"center\\\">Jack
|
1064
|
+
Quinn &amp; John Feehery</td>\\n<td align=\\\"center\\\">D.C.
|
1065
|
+
Super Lobbyists</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">13
|
1066
|
+
Nov</td>\\n<td align=\\\"center\\\">4pm</td>\\n<td align=\\\"center\\\">Developers
|
1067
|
+
Team</td>\\n<td align=\\\"center\\\">Rocksmith 2014</td>\\n</tr>\\n<tr>\\n<td
|
1068
|
+
align=\\\"center\\\">13 Nov</td>\\n<td align=\\\"center\\\">4pm</td>\\n<td
|
1069
|
+
align=\\\"center\\\">Jerry Saltz</td>\\n<td align=\\\"center\\\">Senior
|
1070
|
+
Art Critic, New York Magazine</td>\\n</tr>\\n<tr>\\n<td
|
1071
|
+
align=\\\"center\\\">13 Nov</td>\\n<td align=\\\"center\\\">7:30pm</td>\\n<td
|
1072
|
+
align=\\\"center\\\">Jon Lovitz</td>\\n<td align=\\\"center\\\">Comedian
|
1073
|
+
&amp; Actor</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">14
|
1074
|
+
Nov</td>\\n<td align=\\\"center\\\">12pm</td>\\n<td align=\\\"center\\\">Mark
|
1075
|
+
Protosevich</td>\\n<td align=\\\"center\\\">Screenwriter, OLDBOY</td>\\n</tr>\\n<tr>\\n<td
|
1076
|
+
align=\\\"center\\\">14 Nov</td>\\n<td align=\\\"center\\\">12pm</td>\\n<td
|
1077
|
+
align=\\\"center\\\">Andy Dunn</td>\\n<td align=\\\"center\\\">Founder
|
1078
|
+
&amp; CEO: Bonobos</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">14
|
1079
|
+
Nov</td>\\n<td align=\\\"center\\\">12:30pm</td>\\n<td
|
1080
|
+
align=\\\"center\\\">Amy Webb</td>\\n<td align=\\\"center\\\">Author,
|
1081
|
+
digital strategist</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">14
|
1082
|
+
Nov</td>\\n<td align=\\\"center\\\">2pm</td>\\n<td align=\\\"center\\\">Dallas
|
1083
|
+
Middaugh &amp; Ben Applegate</td>\\n<td align=\\\"center\\\">Kodansha
|
1084
|
+
Comics</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">14
|
1085
|
+
Nov</td>\\n<td align=\\\"center\\\">3pm</td>\\n<td align=\\\"center\\\">Jason
|
1086
|
+
Butler</td>\\n<td align=\\\"center\\\">Frontman for LetLive</td>\\n</tr>\\n<tr>\\n<td
|
1087
|
+
align=\\\"center\\\">14 Nov</td>\\n<td align=\\\"center\\\">7pm</td>\\n<td
|
1088
|
+
align=\\\"center\\\">Andrew WK</td>\\n<td align=\\\"center\\\">Musician,
|
1089
|
+
entertainer, motivational speaker</td>\\n</tr>\\n<tr>\\n<td
|
1090
|
+
align=\\\"center\\\">15 Nov</td>\\n<td align=\\\"center\\\">12pm</td>\\n<td
|
1091
|
+
align=\\\"center\\\">Steve Hofstetter</td>\\n<td align=\\\"center\\\">TV
|
1092
|
+
Comedian &amp; Writer: Collegehumor</td>\\n</tr>\\n<tr>\\n<td
|
1093
|
+
align=\\\"center\\\">15 Nov</td>\\n<td align=\\\"center\\\">1pm</td>\\n<td
|
1094
|
+
align=\\\"center\\\">Mark Horvath</td>\\n<td align=\\\"center\\\">Founder,
|
1095
|
+
Invisible People</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">15
|
1096
|
+
Nov</td>\\n<td align=\\\"center\\\">3pm</td>\\n<td align=\\\"center\\\">Drew
|
1097
|
+
Carey</td>\\n<td align=\\\"center\\\">Actor, Comedian, Sports
|
1098
|
+
Executive, Game Show Host</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">15
|
1099
|
+
Nov</td>\\n<td align=\\\"center\\\">3pm</td>\\n<td align=\\\"center\\\">Peaches</td>\\n<td
|
1100
|
+
align=\\\"center\\\">Musician</td>\\n</tr>\\n<tr>\\n<td
|
1101
|
+
align=\\\"center\\\">15 Nov</td>\\n<td align=\\\"center\\\">7pm</td>\\n<td
|
1102
|
+
align=\\\"center\\\">John Nese</td>\\n<td align=\\\"center\\\">Soda
|
1103
|
+
Expert</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">16
|
1104
|
+
Nov</td>\\n<td align=\\\"center\\\">12pm</td>\\n<td align=\\\"center\\\">Elliot
|
1105
|
+
Grove</td>\\n<td align=\\\"center\\\">Founder of Raindance Film
|
1106
|
+
Festival</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">18
|
1107
|
+
Nov</td>\\n<td align=\\\"center\\\">2pm</td>\\n<td align=\\\"center\\\">Adam
|
1108
|
+
Green</td>\\n<td align=\\\"center\\\">Filmmaker</td>\\n</tr>\\n<tr>\\n<td
|
1109
|
+
align=\\\"center\\\">18 Nov</td>\\n<td align=\\\"center\\\">4pm</td>\\n<td
|
1110
|
+
align=\\\"center\\\">Adam Devine</td>\\n<td align=\\\"center\\\">Comedian,
|
1111
|
+
Workaholics</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">18
|
1112
|
+
Nov</td>\\n<td align=\\\"center\\\">5pm</td>\\n<td align=\\\"center\\\">Richard
|
1113
|
+
Rawlings and Aaron Kaufman</td>\\n<td align=\\\"center\\\">Discovery\\u2019s
|
1114
|
+
Fast N\\u2019 Loud</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">18
|
1115
|
+
Nov</td>\\n<td align=\\\"center\\\">7pm</td>\\n<td align=\\\"center\\\">Dr
|
1116
|
+
Karl Kruszelnicki</td>\\n<td align=\\\"center\\\">Australian Science
|
1117
|
+
Personality</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">19
|
1118
|
+
Nov</td>\\n<td align=\\\"center\\\">1pm</td>\\n<td align=\\\"center\\\">America&#39;s
|
1119
|
+
Test Kitchen</td>\\n<td align=\\\"center\\\">Thanksgiving themed
|
1120
|
+
AMA</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">20
|
1121
|
+
Nov</td>\\n<td align=\\\"center\\\">11am</td>\\n<td align=\\\"center\\\">Scott
|
1122
|
+
P. Harris</td>\\n<td align=\\\"center\\\">Documentary: Being Ginger</td>\\n</tr>\\n<tr>\\n<td
|
1123
|
+
align=\\\"center\\\">20 Nov</td>\\n<td align=\\\"center\\\">3pm</td>\\n<td
|
1124
|
+
align=\\\"center\\\">Pete Holmes</td>\\n<td align=\\\"center\\\">Comedian,
|
1125
|
+
Podcaster &amp; TV Host</td>\\n</tr>\\n<tr>\\n<td
|
1126
|
+
align=\\\"center\\\">20 Nov</td>\\n<td align=\\\"center\\\">7:30pm</td>\\n<td
|
1127
|
+
align=\\\"center\\\">Blu Mar Ten</td>\\n<td align=\\\"center\\\">Drum
|
1128
|
+
and bass music producers</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">22
|
1129
|
+
Nov</td>\\n<td align=\\\"center\\\">2pm</td>\\n<td align=\\\"center\\\">Bruce
|
1130
|
+
Schneier</td>\\n<td align=\\\"center\\\">Security Technologist
|
1131
|
+
&amp; Author</td>\\n</tr>\\n<tr>\\n<td align=\\\"center\\\">22
|
1132
|
+
Nov</td>\\n<td align=\\\"center\\\">3pm</td>\\n<td align=\\\"center\\\">Rob
|
1133
|
+
Delaney</td>\\n<td align=\\\"center\\\">Comedian &amp; Author</td>\\n</tr>\\n</tbody></table>\\n</div><!--
|
1134
|
+
SC_ON -->\", \"title\": \"I Am A, where the mundane becomes fascinating
|
1135
|
+
and the outrageous suddenly seems normal.\", \"over18\": false, \"user_is_moderator\":
|
1136
|
+
false, \"header_title\": null, \"description\": \"[Submit an AMA](http://bit.ly/13jc56o)\\n\\n[Submit
|
1137
|
+
a Request](http://bit.ly/169aKkW)\\n\\n[Hide AMA Requests](http://nr.reddit.com/r/iama)\\n\\n###Follow
|
1138
|
+
us on Twitter! [@reddit_AMA](http://goo.gl/kqOwT) | Please check out our [Rules
|
1139
|
+
and FAQs](http://goo.gl/KC0FO).\\n\\n#### [](#h4-green) \\n>#AMAs should
|
1140
|
+
be about:\\n>* Something uncommon that plays a central role in your life,
|
1141
|
+
or\\n>* A truly interesting and unique event.\\n>* [Explanation and
|
1142
|
+
examples of this rule can be found here](http://goo.gl/PJa2j)\\n\\n---\\n\\n######
|
1143
|
+
[](#h6-red) \\n># All AMAs require proof. \\n>* Proof should be included
|
1144
|
+
in the text of the post when you start your AMA. If it must remain confidential,
|
1145
|
+
you can [message it to the moderators](http://goo.gl/QPM7x) and we can verify
|
1146
|
+
you.\\n>* [See here for tips concerning proof and examples](http://goo.gl/TtNhm)\\n\\n---\\n\\n####
|
1147
|
+
[](#h4-green)\\n># Request threads\\n>* Requests must be reasonable
|
1148
|
+
and realistic. All requests must have 5 questions for the person being requested.
|
1149
|
+
\\n>* **Requests for celebrities must contain their public contact info
|
1150
|
+
in the body of the request.**\\n>* [See here for more information about
|
1151
|
+
requests](http://goo.gl/duMoL)\\n\\n---\\n\\n##### [](#h5-yellow)\\n>#
|
1152
|
+
Useful Links!\\n>* [**Step-by-step guide to doing an AMA**](http://goo.gl/uZCws)
|
1153
|
+
\\n>* [Our Traffic and Visitor Stats](/r/iama/about/traffic)\\n>* [Related
|
1154
|
+
subreddits](http://goo.gl/iSxJZ)\\n>* [Follow us on Twitter!](http://goo.gl/zU6PQ)\\n>*
|
1155
|
+
[AMA Schedule Viewer App [iOS]](http://goo.gl/aLSNO)\\n\\n---\\n\\n##### [](#h5-yellow)\\n>#[Upcoming
|
1156
|
+
AMAs](http://www.reddit.com/r/IAmA/wiki/index#wiki_4._how_do_i_get_on_the_calendar.3F)\\n>*
|
1157
|
+
**AMAs are scheduled in Eastern Standard Time (GMT-5:00).**\\n>* **[Google
|
1158
|
+
Calendar [Link]](http://goo.gl/r0VuI)**\\n>* Please don't post announcements
|
1159
|
+
about upcoming AMAs in this subreddit - it confuses the users!\\n>* [**Click
|
1160
|
+
here**](http://goo.gl/gzvSa) to request being added to our calendar.\\n\\n---\\n\\nDate|Time|Person|Description\\n:-:|:-:|:-:|:-:\\n10
|
1161
|
+
Nov|3pm|Matana Roberts|Saxophonist & Composer \\n10 Nov|11pm|Adam Gnade|Author,
|
1162
|
+
Musician. \\n11 Nov|12:30pm|John Ratzenberger|Actor - Cheers, Empire Strikes
|
1163
|
+
Back, Pixar\\n11 Nov|1pm|Bear Grylls|Adventurer. Host, *Escape From Hell*\\n11
|
1164
|
+
Nov|2pm|Chris Elliott, Jason Woliner & Andrew Weinberg|Star and Director
|
1165
|
+
of Eagleheart\\n11 Nov|5:30pm|Ladar Levison|Lavabit\\n12 Nov|12pm|Florence
|
1166
|
+
Reed|Founder and President of Sustainable Harvest International\\n12 Nov|1pm|Sarah
|
1167
|
+
Kliff|Blogger for the Washington Post\\n12 Nov|2pm|Andrew Zimmern|Television
|
1168
|
+
Personality, Chef, Food Writer, and Teacher\\n12 Nov|3pm|Matt Apuzzo|Investigative
|
1169
|
+
Reporter, Associated Press\\n12 Nov|8pm|Borgore & Waka Flocka|Musician
|
1170
|
+
/ Artists\\n12 Nov|9pm|Amber Sym|Playboy model, actress, and horror hostess\\n13
|
1171
|
+
Nov|10am|Cards Against Humanity|Politically incorrect card game\\n13 Nov|12pm|IronE
|
1172
|
+
Singleton|Actor, Author, Writer, Lyricist\\n13 Nov|1pm|Robert Edsel|Author
|
1173
|
+
and lead, *Monuments Men Foundation*\\n13 Nov|1pm|Ayah Bdeir|Senior TED fellow,
|
1174
|
+
CEO & Founder: littleBits\\n13 Nov|3pm|Jack Quinn & John Feehery|D.C.
|
1175
|
+
Super Lobbyists\\n13 Nov|4pm|Developers Team|Rocksmith 2014 \\n13 Nov|4pm|Jerry
|
1176
|
+
Saltz|Senior Art Critic, New York Magazine\\n13 Nov|7:30pm|Jon Lovitz|Comedian
|
1177
|
+
& Actor\\n14 Nov|12pm|Mark Protosevich|Screenwriter, OLDBOY\\n14 Nov|12pm|Andy
|
1178
|
+
Dunn|Founder & CEO: Bonobos\\n14 Nov|12:30pm|Amy Webb|Author, digital
|
1179
|
+
strategist\\n14 Nov|2pm|Dallas Middaugh & Ben Applegate|Kodansha Comics\\n14
|
1180
|
+
Nov|3pm|Jason Butler|Frontman for LetLive\\n14 Nov|7pm|Andrew WK |Musician,
|
1181
|
+
entertainer, motivational speaker\\n15 Nov|12pm|Steve Hofstetter|TV Comedian
|
1182
|
+
& Writer: Collegehumor \\n15 Nov|1pm|Mark Horvath |Founder, Invisible
|
1183
|
+
People \\n15 Nov|3pm|Drew Carey|Actor, Comedian, Sports Executive, Game Show
|
1184
|
+
Host\\n15 Nov|3pm|Peaches|Musician \\n15 Nov|7pm|John Nese|Soda Expert\\n16
|
1185
|
+
Nov|12pm|Elliot Grove|Founder of Raindance Film Festival\\n18 Nov|2pm|Adam
|
1186
|
+
Green|Filmmaker\\n18 Nov|4pm|Adam Devine|Comedian, Workaholics\\n18 Nov|5pm|Richard
|
1187
|
+
Rawlings and Aaron Kaufman|Discovery\\u2019s Fast N\\u2019 Loud\\n18 Nov|7pm|Dr
|
1188
|
+
Karl Kruszelnicki|Australian Science Personality\\n19 Nov|1pm|America's Test
|
1189
|
+
Kitchen|Thanksgiving themed AMA\\n20 Nov|11am|Scott P. Harris|Documentary:
|
1190
|
+
Being Ginger\\n20 Nov|3pm|Pete Holmes|Comedian, Podcaster & TV Host\\n20
|
1191
|
+
Nov|7:30pm|Blu Mar Ten|Drum and bass music producers\\n22 Nov|2pm|Bruce Schneier|Security
|
1192
|
+
Technologist & Author\\n22 Nov|3pm| Rob Delaney|Comedian & Author\\n\",
|
1193
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
1194
|
+
null, \"spam_links\": null, \"header_size\": [340, 42], \"subscribers\": 4181757,
|
1195
|
+
\"submit_text_label\": null, \"name\": \"t5_2qzb6\", \"created\": 1243472165.0,
|
1196
|
+
\"url\": \"/r/IAmA/\", \"created_utc\": 1243468565.0, \"user_is_contributor\":
|
1197
|
+
false, \"public_traffic\": true, \"public_description\": \"IAmA stands for
|
1198
|
+
\\\"I am a\\\", and AMA means \\\"Ask me Anything\\\". This is the home to
|
1199
|
+
interviews, from the extraordinary to the mundane. We have several scheduled
|
1200
|
+
celeb AMAs, as well as a near-constant stream of AMAs from regular redditors,
|
1201
|
+
just like you!\", \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\",
|
1202
|
+
\"submission_type\": \"self\", \"user_is_subscriber\": true}}, {\"kind\":
|
1203
|
+
\"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\": false,
|
1204
|
+
\"id\": \"2qh61\", \"submit_text\": \"\", \"spam_selfposts\": \"high\", \"display_name\":
|
1205
|
+
\"WTF\", \"header_img\": \"http://a.thumbs.redditmedia.com/9-otGAB9h3_x8HXl.png\",
|
1206
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><blockquote>\\n<h6><a
|
1207
|
+
href=\\\"http://www.reddit.com/r/wtf/about/sidebar\\\"><strong>READ
|
1208
|
+
THE RULES.</strong> <strong><em>No Screenshots!</em></strong></a></h6>\\n</blockquote>\\n\\n<h1><strong>All
|
1209
|
+
(&amp; only) things that make you say WTF.</strong></h1>\\n\\n<hr/>\\n\\n<p><strong>RULES</strong></p>\\n\\n<p><em>hover
|
1210
|
+
for details</em></p>\\n\\n<table><thead>\\n<tr>\\n<th
|
1211
|
+
align=\\\"left\\\"></th>\\n<th align=\\\"left\\\"></th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
1212
|
+
align=\\\"left\\\">1. <strong>No Screenshots!</strong></td>\\n<td
|
1213
|
+
align=\\\"left\\\">For example, screenshots of Facebook, Youtube, &amp;
|
1214
|
+
4chan aren&#39;t allowed.</td>\\n</tr>\\n<tr>\\n<td
|
1215
|
+
align=\\\"left\\\">2. No Personal Information.</td>\\n<td align=\\\"left\\\">All
|
1216
|
+
<a href=\\\"http://blog.reddit.com/2011/05/reddit-we-need-to-talk.html\\\">personal
|
1217
|
+
information</a> will be removed, <a href=\\\"http://www.reddit.com/help/faq#Ispostingpersonalinformationok\\\">offenders
|
1218
|
+
banned</a>. This includes links to Facebook &amp; posts which link
|
1219
|
+
to images hosted on Facebook&#39;s servers. Anything hosted on Facebook&#39;s
|
1220
|
+
servers can be traced to the original account holder.</td>\\n</tr>\\n<tr>\\n<td
|
1221
|
+
align=\\\"left\\\">3. No Calls for Public Outcry.</td>\\n<td align=\\\"left\\\">This
|
1222
|
+
includes posts which may incite activism. Reddit is not your personal army.</td>\\n</tr>\\n<tr>\\n<td
|
1223
|
+
align=\\\"left\\\">4. No Politics.</td>\\n<td align=\\\"left\\\">Neither
|
1224
|
+
posts with political implications, nor politics of any kind are allowed, especially
|
1225
|
+
US politics. To see the original post outlining this rule, click <a href=\\\"http://www.reddit.com/r/WTF/comments/eysc5/do_not_post_any_politics_to_rwtf_period_no/\\\">here</a>.</td>\\n</tr>\\n<tr>\\n<td
|
1226
|
+
align=\\\"left\\\">5. NSFW posts must be tagged.</td>\\n<td align=\\\"left\\\">If
|
1227
|
+
they haven&#39;t been marked, they will be removed.</td>\\n</tr>\\n<tr>\\n<td
|
1228
|
+
align=\\\"left\\\">6. No Superimposed Text.</td>\\n<td align=\\\"left\\\">This
|
1229
|
+
includes Captioned Images, Memes, &amp; Demotivational Posters.</td>\\n</tr>\\n<tr>\\n<td
|
1230
|
+
align=\\\"left\\\">7. No Comics.</td>\\n<td align=\\\"left\\\">This
|
1231
|
+
includes rage &amp; web comics. Do not hotlink or re-host a comic(s) you
|
1232
|
+
didn&#39;t make.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\">8.
|
1233
|
+
No Begging for Upvotes.</td>\\n<td align=\\\"left\\\">No post
|
1234
|
+
titles soliciting karma (e.g. &quot;upvote this&quot;, or &quot;cakeday&quot;.)</td>\\n</tr>\\n<tr>\\n<td
|
1235
|
+
align=\\\"left\\\">9. No Links to Reddit.</td>\\n<td align=\\\"left\\\">This
|
1236
|
+
also includes screenshots of Reddit.</td>\\n</tr>\\n<tr>\\n<td
|
1237
|
+
align=\\\"left\\\">10. Gore and Porn are not by default WTF.</td>\\n<td
|
1238
|
+
align=\\\"left\\\">They are both allowed here, however please consider
|
1239
|
+
posting the more extreme stuff to <a href=\\\"/r/spacedicks\\\">/r/spacedicks</a>.</td>\\n</tr>\\n</tbody></table>\\n\\n<hr/>\\n\\n<p>If
|
1240
|
+
you have any questions about the rules, if you&#39;re confused about why
|
1241
|
+
your post was removed, or if your idea for a post is acceptable; <strong>Please
|
1242
|
+
Read the <a href=\\\"http://www.reddit.com/r/WTF/comments/15wnze/guide_to_wtf/\\\">&#39;Guide
|
1243
|
+
to WTF&#39;</a> &amp; our <a href=\\\"http://www.reddit.com/r/WTF/comments/178q99/moderator_announcement/\\\">Moderator
|
1244
|
+
Announcement</a></strong> before contacting us.</p>\\n\\n<hr/>\\n\\n<p>Thanks
|
1245
|
+
to <a href=\\\"/u/theNYEHHH\\\">theNYEHHH</a> for the new 4M logo.\\nThanks
|
1246
|
+
to <a href=\\\"http://www.reddit.com/r/pics/comments/blmey/\\\">licenseplate</a>
|
1247
|
+
and <a href=\\\"http://www.reddit.com/r/WTF/comments/aist7/hey_reddit_im_the_guy_who_drew_that_pic_of_his/\\\">humansmartbomb</a>
|
1248
|
+
for the previous logos.</p>\\n\\n<hr/>\\n\\n<p>Shout Outs:</p>\\n\\n<p><a
|
1249
|
+
href=\\\"/r/awwwtf\\\">/r/awwwtf</a></p>\\n\\n<p><a
|
1250
|
+
href=\\\"/r/creepy\\\">/r/creepy</a> </p>\\n\\n<p><a
|
1251
|
+
href=\\\"/r/creepy_gif\\\">/r/creepy_gif</a></p>\\n\\n<p><a
|
1252
|
+
href=\\\"/r/cringe\\\">/r/cringe</a></p>\\n\\n<p><a
|
1253
|
+
href=\\\"/r/cringepics\\\">/r/cringepics</a></p>\\n\\n<p><a
|
1254
|
+
href=\\\"/r/rage\\\">/r/rage</a></p>\\n\\n<p><a href=\\\"/r/hoarding\\\">/r/hoarding</a></p>\\n\\n<p><a
|
1255
|
+
href=\\\"/r/Im14andthisisWTF\\\">/r/Im14andthisisWTF</a></p>\\n\\n<p><a
|
1256
|
+
href=\\\"/r/mildlyinteresting\\\">/r/mildlyinteresting</a></p>\\n\\n<p><a
|
1257
|
+
href=\\\"/r/MorbidReality\\\">/r/MorbidReality</a></p>\\n\\n<p><a
|
1258
|
+
href=\\\"/r/NSFW_WTF\\\">/r/NSFW_WTF</a></p>\\n\\n<p><a
|
1259
|
+
href=\\\"/r/sfw_wtf\\\">/r/sfw_wtf</a></p>\\n\\n<p><a
|
1260
|
+
href=\\\"/r/Weird\\\">/r/Weird</a></p>\\n\\n<p><a
|
1261
|
+
href=\\\"/r/WTFart\\\">/r/WTFart</a></p>\\n\\n<p><a
|
1262
|
+
href=\\\"/r/WTFdidIjustread\\\">/r/WTFdidIjustread</a></p>\\n\\n<p><a
|
1263
|
+
href=\\\"/r/FiftyFifty\\\">/r/FiftyFifty</a></p>\\n\\n<p><a
|
1264
|
+
href=\\\"/r/popping\\\">/r/popping</a></p>\\n\\n<hr/>\\n\\n<p><strong>The
|
1265
|
+
moderators of <a href=\\\"/r/WTF\\\">/r/WTF</a> reserve the right
|
1266
|
+
to moderate posts and comments at their discretion, with regard to their perception
|
1267
|
+
of the suitability of said posts and comments for this subreddit.</strong>
|
1268
|
+
Thank you for your understanding.</p>\\n\\n<hr/>\\n\\n<p>If
|
1269
|
+
you have any questions, comments, or concerns about <a href=\\\"/r/WTF\\\">/r/WTF</a>
|
1270
|
+
you can contact us by clicking the &#39;<a href=\\\"http://www.reddit.com/message/compose?to=%2Fr%2FWTF\\\">message
|
1271
|
+
the moderators</a>&#39; link, located on the lower right hand side
|
1272
|
+
of the page. However, before you do that please check and make sure that your
|
1273
|
+
questions or concerns haven&#39;t already been <a href=\\\"http://www.reddit.com/r/InternetAMA/comments/1950b4/we_are_the_moderators_of_rwtf_ask_us_anything/\\\">answered
|
1274
|
+
here</a>. </p>\\n</div><!-- SC_ON -->\", \"title\":
|
1275
|
+
\"WTF?!\", \"over18\": false, \"user_is_moderator\": false, \"header_title\":
|
1276
|
+
\"The antenna broke\", \"description\": \">###### [**READ THE RULES.**
|
1277
|
+
***No Screenshots!***](http://www.reddit.com/r/wtf/about/sidebar)\\n\\n# **All
|
1278
|
+
(& only) things that make you say WTF.**\\n\\n----\\n\\n**RULES**\\n\\n*hover
|
1279
|
+
for details*\\n\\n|||\\n|:---|:---|\\n|1. **No Screenshots!**|For example,
|
1280
|
+
screenshots of Facebook, Youtube, & 4chan aren't allowed.|\\n|2. No Personal
|
1281
|
+
Information.|All [personal information](http://blog.reddit.com/2011/05/reddit-we-need-to-talk.html)
|
1282
|
+
will be removed, [offenders banned](http://www.reddit.com/help/faq#Ispostingpersonalinformationok).
|
1283
|
+
This includes links to Facebook & posts which link to images hosted on
|
1284
|
+
Facebook's servers. Anything hosted on Facebook's servers can be traced to
|
1285
|
+
the original account holder.\\n|3. No Calls for Public Outcry.|This includes
|
1286
|
+
posts which may incite activism. Reddit is not your personal army. \\n|4.
|
1287
|
+
No Politics.|Neither posts with political implications, nor politics of any
|
1288
|
+
kind are allowed, especially US politics. To see the original post outlining
|
1289
|
+
this rule, click [here](http://www.reddit.com/r/WTF/comments/eysc5/do_not_post_any_politics_to_rwtf_period_no/).\\n|5.
|
1290
|
+
NSFW posts must be tagged.|If they haven't been marked, they will be removed.\\n|6.
|
1291
|
+
No Superimposed Text.|This includes Captioned Images, Memes, & Demotivational
|
1292
|
+
Posters.\\n|7. No Comics.|This includes rage & web comics. Do not hotlink
|
1293
|
+
or re-host a comic(s) you didn't make.\\n|8. No Begging for Upvotes.|No post
|
1294
|
+
titles soliciting karma (e.g. \\\"upvote this\\\", or \\\"cakeday\\\".)\\n|9.
|
1295
|
+
No Links to Reddit.|This also includes screenshots of Reddit.\\n|10. Gore
|
1296
|
+
and Porn are not by default WTF.|They are both allowed here, however please
|
1297
|
+
consider posting the more extreme stuff to /r/spacedicks.\\n\\n----\\n\\n
|
1298
|
+
If you have any questions about the rules, if you're confused about why your
|
1299
|
+
post was removed, or if your idea for a post is acceptable; **Please Read
|
1300
|
+
the ['Guide to WTF'](http://www.reddit.com/r/WTF/comments/15wnze/guide_to_wtf/)
|
1301
|
+
& our [Moderator Announcement](http://www.reddit.com/r/WTF/comments/178q99/moderator_announcement/)**
|
1302
|
+
before contacting us.\\n\\n----\\nThanks to [theNYEHHH](/u/theNYEHHH) for
|
1303
|
+
the new 4M logo.\\nThanks to [licenseplate](http://www.reddit.com/r/pics/comments/blmey/)
|
1304
|
+
and [humansmartbomb](http://www.reddit.com/r/WTF/comments/aist7/hey_reddit_im_the_guy_who_drew_that_pic_of_his/)
|
1305
|
+
for the previous logos.\\n\\n----\\nShout Outs:\\n\\n/r/awwwtf\\n\\n/r/creepy
|
1306
|
+
\ \\n\\n/r/creepy_gif\\n\\n/r/cringe\\n\\n/r/cringepics\\n\\n/r/rage\\n\\n/r/hoarding\\n\\n/r/Im14andthisisWTF\\n\\n/r/mildlyinteresting\\n\\n/r/MorbidReality\\n\\n/r/NSFW_WTF\\n\\n/r/sfw_wtf\\n\\n/r/Weird\\n\\n/r/WTFart\\n\\n/r/WTFdidIjustread\\n\\n/r/FiftyFifty\\n\\n/r/popping\\n\\n-------------\\n\\n**The
|
1307
|
+
moderators of /r/WTF reserve the right to moderate posts and comments at their
|
1308
|
+
discretion, with regard to their perception of the suitability of said posts
|
1309
|
+
and comments for this subreddit.** Thank you for your understanding.\\n\\n-------------\\n\\nIf
|
1310
|
+
you have any questions, comments, or concerns about /r/WTF you can contact
|
1311
|
+
us by clicking the '[message the moderators](http://www.reddit.com/message/compose?to=%2Fr%2FWTF)'
|
1312
|
+
link, located on the lower right hand side of the page. However, before you
|
1313
|
+
do that please check and make sure that your questions or concerns haven't
|
1314
|
+
already been [answered here](http://www.reddit.com/r/InternetAMA/comments/1950b4/we_are_the_moderators_of_rwtf_ask_us_anything/).
|
1315
|
+
\", \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
1316
|
+
\"high\", \"spam_links\": \"high\", \"header_size\": [150, 100], \"subscribers\":
|
1317
|
+
4091513, \"submit_text_label\": null, \"name\": \"t5_2qh61\", \"created\":
|
1318
|
+
1201268659.0, \"url\": \"/r/WTF/\", \"created_utc\": 1201268659.0, \"user_is_contributor\":
|
1319
|
+
false, \"public_traffic\": false, \"public_description\": \"Things that make
|
1320
|
+
you say \\\"What the Fuck\\\".\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
1321
|
+
\"public\", \"submission_type\": \"link\", \"user_is_subscriber\": true}},
|
1322
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF --><div
|
1323
|
+
class=\\\"md\\\"><p>Please read <a href=\\\"http://www.reddit.com/r/technology/about/sidebar\\\">the
|
1324
|
+
/r/Technology sidebar</a> for a list of our rules and guidelines. </p>\\n\\n<p>Please
|
1325
|
+
remember:</p>\\n\\n<ul>\\n<li>we do not allow image and
|
1326
|
+
video submissions. </li>\\n<li>Political stories should be submitted
|
1327
|
+
to <a href=\\\"/r/Politics\\\">/r/Politics</a>, <a href=\\\"/r/News\\\">/r/News</a>
|
1328
|
+
or a similar subreddit. </li>\\n<li>Petitions &amp; fundraisers
|
1329
|
+
(such as kickstarter) links are not allowed. </li>\\n</ul>\\n\\n<p>If
|
1330
|
+
you still have questions after reading our sidebar, then please <a href=\\\"http://www.reddit.com/message/compose?to=%2Fr%2Ftechnology\\\">ask
|
1331
|
+
the mods</a>, and we&#39;ll let you know if we would allow the submission
|
1332
|
+
(or not). </p>\\n\\n<p>Thank you. </p>\\n</div><!--
|
1333
|
+
SC_ON -->\", \"user_is_banned\": false, \"id\": \"2qh16\", \"submit_text\":
|
1334
|
+
\"Please read [the /r/Technology sidebar](http://www.reddit.com/r/technology/about/sidebar)
|
1335
|
+
for a list of our rules and guidelines. \\n\\nPlease remember:\\n\\n* we
|
1336
|
+
do not allow image and video submissions. \\n* Political stories should be
|
1337
|
+
submitted to /r/Politics, /r/News or a similar subreddit. \\n* Petitions &
|
1338
|
+
\ fundraisers (such as kickstarter) links are not allowed. \\n\\nIf you still
|
1339
|
+
have questions after reading our sidebar, then please [ask the mods](http://www.reddit.com/message/compose?to=%2Fr%2Ftechnology),
|
1340
|
+
and we'll let you know if we would allow the submission (or not). \\n\\nThank
|
1341
|
+
you. \", \"spam_selfposts\": \"high\", \"display_name\": \"technology\", \"header_img\":
|
1342
|
+
\"http://e.thumbs.redditmedia.com/jhQ1MsQrkbfSSyod.png\", \"description_html\":
|
1343
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p><strong>Please
|
1344
|
+
read the rules and guidelines before posting:</strong></p>\\n\\n<ul>\\n<li>Posts
|
1345
|
+
should be on technology (news, updates, political policy, etc).</li>\\n<li>Image
|
1346
|
+
and video submissions are not allowed</li>\\n<li>No personal information
|
1347
|
+
/ no facebook links.</li>\\n<li>Try not to editorialize the title
|
1348
|
+
(modify so as to change meaning significantly / or use a misleading title).</li>\\n<li>URL
|
1349
|
+
shorteners, spam / excessive submissions from the same domain(s) are not permitted.</li>\\n<li>Kickstarter
|
1350
|
+
or other fundraiser content? use <a href=\\\"/r/kickstarter\\\">/r/kickstarter</a>
|
1351
|
+
</li>\\n<li>Petitions are not allowed. Please try <a href=\\\"/r/petition\\\">/r/petition</a>
|
1352
|
+
or other more appropriate subreddits</li>\\n<li>Please try and
|
1353
|
+
post things directly political to <a href=\\\"/r/Politics\\\">/r/Politics</a>
|
1354
|
+
or <a href=\\\"/r/News\\\">/r/News</a>. Thank you. </li>\\n<li><a
|
1355
|
+
href=\\\"http://www.reddit.com/help/reddiquette\\\">Usual reddit guidelines
|
1356
|
+
apply</a></li>\\n</ul>\\n\\n<p>Post not showing in
|
1357
|
+
<a href=\\\"/r/Technology/new\\\">new</a> section? Then please
|
1358
|
+
<a href=\\\"http://www.reddit.com/message/compose?to=%2Fr%2Ftechnology&amp;subject=I%20think%20my%20post%20is%20in%20the%20spam%20filter%20&amp;message=%20I%20think%20my%20post%20is%20in%20the%20spam%20filter:%0D%0D%5BInsert%20permalink%20to%20the%20comments%20section%20here%5D%0D%0Dthank%20you%20and%20have%20a%20nice%20day.\\\">message
|
1359
|
+
the moderators</a>.</p>\\n\\n<hr/>\\n\\n<p><strong>Tech
|
1360
|
+
support questions? Use:</strong></p>\\n\\n<ul>\\n<li><a
|
1361
|
+
href=\\\"/r/BuildaPC\\\">/r/BuildaPC</a> </li>\\n<li><a
|
1362
|
+
href=\\\"/r/24Hoursupport\\\">/r/24Hoursupport</a></li>\\n<li><a
|
1363
|
+
href=\\\"/r/TechSupport\\\">/r/TechSupport</a> </li>\\n<li><a
|
1364
|
+
href=\\\"/r/AppleHelp\\\">/r/AppleHelp</a></li>\\n<li><a
|
1365
|
+
href=\\\"/r/Linux4Noobs\\\">/r/Linux4Noobs</a></li>\\n</ul>\\n\\n<hr/>\\n\\n<ul>\\n<li>New
|
1366
|
+
to reddit? need help using reddit in general? try <a href=\\\"/r/Help\\\">/r/Help</a>.
|
1367
|
+
</li>\\n</ul>\\n\\n<hr/>\\n\\n<h2>Related subreddits</h2>\\n\\n<ul>\\n<li><a
|
1368
|
+
href=\\\"/r/artificial\\\">/r/AI</a></li>\\n<li><a
|
1369
|
+
href=\\\"/r/AmazingTechnology\\\">/r/AmazingTechnology</a><br/></li>\\n<li><a
|
1370
|
+
href=\\\"/r/Android\\\">/r/Android</a></li>\\n<li><a
|
1371
|
+
href=\\\"/r/Apple\\\">/r/Apple</a><br/></li>\\n<li><a
|
1372
|
+
href=\\\"/r/AskTechnology\\\">/r/AskTechnology</a><br/></li>\\n<li><a
|
1373
|
+
href=\\\"/r/Automate\\\">/r/Automate</a></li>\\n<li><a
|
1374
|
+
href=\\\"/r/Bitcoin\\\">/r/Bitcoin</a></li>\\n<li><a
|
1375
|
+
href=\\\"/r/Chrome\\\">/r/Chrome</a><br/></li>\\n<li><a
|
1376
|
+
href=\\\"/r/CompSci\\\">/r/CompSci</a></li>\\n<li><a
|
1377
|
+
href=\\\"/r/Computing\\\">/r/Computing</a></li>\\n<li><a
|
1378
|
+
href=\\\"/r/CyberLaws\\\">/r/CyberLaws</a></li>\\n<li><a
|
1379
|
+
href=\\\"/r/Engineering\\\">/r/Engineering</a></li>\\n<li><a
|
1380
|
+
href=\\\"/r/Firefox\\\">/r/Firefox</a></li>\\n<li><a
|
1381
|
+
href=\\\"/r/Futurology\\\">/r/Futurology</a></li>\\n<li><a
|
1382
|
+
href=\\\"/r/Gadgets\\\">/r/Gadgets</a> </li>\\n<li><a
|
1383
|
+
href=\\\"/r/Geek\\\">/r/Geek</a></li>\\n<li><a href=\\\"/r/Google\\\">/r/Google</a>
|
1384
|
+
</li>\\n<li><a href=\\\"/r/GoogleGlass\\\">/r/GoogleGlass</a><br/></li>\\n<li><a
|
1385
|
+
href=\\\"/r/Hardware\\\">/r/Hardware</a></li>\\n<li><a
|
1386
|
+
href=\\\"/r/ImaginaryTechnology\\\">/r/ImaginaryTechnology</a></li>\\n<li><a
|
1387
|
+
href=\\\"/r/ipv6\\\">/r/ipv6</a></li>\\n<li><a href=\\\"/r/Kickstarter\\\">/r/Kickstarter</a></li>\\n<li><a
|
1388
|
+
href=\\\"/r/Linux\\\">/r/Linux</a> </li>\\n<li><a
|
1389
|
+
href=\\\"/r/Microsoft\\\">/r/Microsoft</a></li>\\n<li><a
|
1390
|
+
href=\\\"/r/mobile\\\">/r/mobile</a></li>\\n<li><a
|
1391
|
+
href=\\\"/r/NetSec\\\">/r/NetSec</a> </li>\\n<li><a
|
1392
|
+
href=\\\"/r/Privacy\\\">/r/Privacy</a> </li>\\n<li><a
|
1393
|
+
href=\\\"/r/Programming\\\">/r/Programming</a> </li>\\n<li><a
|
1394
|
+
href=\\\"/r/RenewableEnergy\\\">/r/RenewableEnergy</a></li>\\n<li><a
|
1395
|
+
href=\\\"/r/Software\\\">/r/Software</a></li>\\n<li><a
|
1396
|
+
href=\\\"/r/Startups\\\">/r/Startups</a></li>\\n<li><a
|
1397
|
+
href=\\\"/r/Tech\\\">/r/Tech</a></li>\\n<li><a href=\\\"/r/Techsupportgore\\\">/r/Techsupportgore</a></li>\\n<li><a
|
1398
|
+
href=\\\"/r/TechNewsToday\\\">/r/TechNewsToday</a> - <strong>New</strong></li>\\n<li><a
|
1399
|
+
href=\\\"/r/Windows\\\">/r/Windows</a></li>\\n<li><a
|
1400
|
+
href=\\\"/r/WindowsPhone\\\">/r/WindowsPhone</a></li>\\n</ul>\\n\\n<hr/>\\n\\n<ul>\\n<li><strong><a
|
1401
|
+
href=\\\"/r/misc\\\">/r/misc</a></strong> - for everything
|
1402
|
+
else</li>\\n<li><a href=\\\"/r/AnythingGoesNews\\\">/r/AnythingGoesNews</a>
|
1403
|
+
</li>\\n<li><a href=\\\"/r/Offbeat\\\">/r/Offbeat</a></li>\\n<li><a
|
1404
|
+
href=\\\"/r/Pics\\\">/r/Pics</a> - Pics go here</li>\\n<li><a
|
1405
|
+
href=\\\"/r/AskReddit\\\">/r/AskReddit</a> - post a question for
|
1406
|
+
the reddit community.</li>\\n<li><a href=\\\"/r/DAE\\\">/r/DAE</a>
|
1407
|
+
- &quot;Does anybody else&quot; type questions.</li>\\n<li><a
|
1408
|
+
href=\\\"/r/ScreenShots\\\">/r/ScreenShots</a> - Screenshots go here.</li>\\n</ul>\\n\\n<hr/>\\n\\n<ul>\\n<li><a
|
1409
|
+
href=\\\"http://www.reddit.com/r/technology/wiki/techscipodcasts\\\">Good
|
1410
|
+
Technology and Science Podcasts</a></li>\\n</ul>\\n\\n<hr/>\\n\\n<p>Other
|
1411
|
+
nice places include:</p>\\n\\n<ul>\\n<li><a href=\\\"/r/nonprofit\\\">Visit
|
1412
|
+
reddit nonprofit</a></li>\\n<li><a href=\\\"/r/ThankYou\\\">r/ThankYou</a></li>\\n<li><a
|
1413
|
+
href=\\\"http://www.reddit.com/r/tldr\\\">r/TL:DR</a></li>\\n<li><a
|
1414
|
+
href=\\\"http://fah-web.stanford.edu/cgi-bin/main.py?qtype=teampage&amp;teamnum=50959\\\">Team
|
1415
|
+
reddit</a> on <a href=\\\"http://folding.stanford.edu/\\\">folding@home</a></li>\\n<li><a
|
1416
|
+
href=\\\"/r/Science\\\">r/Science</a></li>\\n</ul>\\n\\n<hr/>\\n\\n<p>Follow
|
1417
|
+
us at <a href=\\\"http://twitter.com/reddittech\\\"></a></p>\\n</div><!--
|
1418
|
+
SC_ON -->\", \"title\": \"Technology \", \"over18\": false, \"user_is_moderator\":
|
1419
|
+
false, \"header_title\": \"Credit to heckytorr for the logo.\", \"description\":
|
1420
|
+
\"**Please read the rules and guidelines before posting:**\\n\\n- Posts should
|
1421
|
+
be on technology (news, updates, political policy, etc).\\n- Image and video
|
1422
|
+
submissions are not allowed\\n- No personal information / no facebook links.\\n-
|
1423
|
+
Try not to editorialize the title (modify so as to change meaning significantly
|
1424
|
+
/ or use a misleading title).\\n- URL shorteners, spam / excessive submissions
|
1425
|
+
from the same domain(s) are not permitted.\\n- Kickstarter or other fundraiser
|
1426
|
+
content? use /r/kickstarter \\n- Petitions are not allowed. Please try /r/petition
|
1427
|
+
or other more appropriate subreddits\\n- Please try and post things directly
|
1428
|
+
political to /r/Politics or /r/News. Thank you. \\n- [Usual reddit guidelines
|
1429
|
+
apply](http://www.reddit.com/help/reddiquette)\\n\\nPost not showing in [new](/r/Technology/new)
|
1430
|
+
section? Then please [message the moderators](http://www.reddit.com/message/compose?to=%2Fr%2Ftechnology&subject=I%20think%20my%20post%20is%20in%20the%20spam%20filter%20&message=%20I%20think%20my%20post%20is%20in%20the%20spam%20filter:%0D%0D[Insert%20permalink%20to%20the%20comments%20section%20here]%0D%0Dthank%20you%20and%20have%20a%20nice%20day.).\\n\\n----\\n\\n\\n**Tech
|
1431
|
+
support questions? Use:**\\n\\n* /r/BuildaPC \\n* /r/24Hoursupport\\n* /r/TechSupport
|
1432
|
+
\\n* /r/AppleHelp\\n* /r/Linux4Noobs\\n\\n------\\n\\n* New to reddit? need
|
1433
|
+
help using reddit in general? try /r/Help. \\n\\n-----\\n\\n## Related subreddits\\n\\n*
|
1434
|
+
[/r/AI](/r/artificial)\\n* /r/AmazingTechnology \\n* /r/Android\\n* /r/Apple
|
1435
|
+
\ \\n* /r/AskTechnology \\n* /r/Automate\\n* /r/Bitcoin\\n* /r/Chrome \\n*
|
1436
|
+
/r/CompSci\\n* /r/Computing\\n* /r/CyberLaws\\n* /r/Engineering\\n* /r/Firefox\\n*
|
1437
|
+
/r/Futurology\\n* /r/Gadgets \\n* /r/Geek\\n* /r/Google \\n* /r/GoogleGlass
|
1438
|
+
\ \\n* /r/Hardware\\n* /r/ImaginaryTechnology\\n* /r/ipv6\\n* /r/Kickstarter\\n*
|
1439
|
+
/r/Linux \\n* /r/Microsoft\\n* /r/mobile\\n* /r/NetSec \\n* /r/Privacy \\n*
|
1440
|
+
/r/Programming \\n* /r/RenewableEnergy\\n* /r/Software\\n* /r/Startups\\n*
|
1441
|
+
/r/Tech\\n* /r/Techsupportgore\\n* /r/TechNewsToday - **New**\\n* /r/Windows\\n*
|
1442
|
+
/r/WindowsPhone\\n\\n----\\n\\n* **/r/misc** - for everything else\\n* /r/AnythingGoesNews
|
1443
|
+
\\n* /r/Offbeat\\n* /r/Pics - Pics go here\\n* /r/AskReddit - post a question
|
1444
|
+
for the reddit community.\\n* /r/DAE - \\\"Does anybody else\\\" type questions.\\n*
|
1445
|
+
/r/ScreenShots - Screenshots go here.\\n\\n----\\n\\n* [Good Technology and
|
1446
|
+
Science Podcasts](http://www.reddit.com/r/technology/wiki/techscipodcasts)\\n\\n----\\n\\nOther
|
1447
|
+
nice places include:\\n\\n* [Visit reddit nonprofit](/r/nonprofit)\\n* [r/ThankYou](/r/ThankYou)\\n*
|
1448
|
+
[r/TL:DR](http://www.reddit.com/r/tldr)\\n* [Team reddit](http://fah-web.stanford.edu/cgi-bin/main.py?qtype=teampage&teamnum=50959)
|
1449
|
+
on [folding@home](http://folding.stanford.edu/)\\n* [r/Science](/r/Science)\\n\\n----\\n\\nFollow
|
1450
|
+
us at [](http://twitter.com/reddittech)\", \"submit_link_label\": null, \"accounts_active\":
|
1451
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
1452
|
+
[200, 77], \"subscribers\": 3992633, \"submit_text_label\": null, \"name\":
|
1453
|
+
\"t5_2qh16\", \"created\": 1201235275.0, \"url\": \"/r/technology/\", \"created_utc\":
|
1454
|
+
1201231675.0, \"user_is_contributor\": false, \"public_traffic\": false, \"public_description\":
|
1455
|
+
\"News stories related to technology\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
1456
|
+
\"public\", \"submission_type\": \"link\", \"user_is_subscriber\": true}},
|
1457
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
1458
|
+
false, \"id\": \"2qh03\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
1459
|
+
\"display_name\": \"gaming\", \"header_img\": \"http://c.thumbs.redditmedia.com/apyFD_COiL6gt3BP.png\",
|
1460
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><h2><strong><a
|
1461
|
+
href=\\\"http://www.reddit.com/r/gaming/comments/utoql/scammed_by_someone_on_rgaming_what_to_do_what_not/\\\">Beware
|
1462
|
+
of trading scammers!</a></strong></h2>\\n\\n<p>A subreddit
|
1463
|
+
for anything related to games (but not <a href=\\\"http://www.reddit.com/r/sports\\\">sports</a>).</p>\\n\\n<p>&quot;Related&quot;
|
1464
|
+
means that <strong>posts must contain gaming-related content in the
|
1465
|
+
link/post body, not just a &quot;forced&quot; connection via the title
|
1466
|
+
or a caption added to the content.</strong></p>\\n\\n<p><a
|
1467
|
+
href=\\\"http://steamcommunity.com/groups/reddit\\\">reddit Steam group</a></p>\\n\\n<h1>Community
|
1468
|
+
Rules</h1>\\n\\n<ol>\\n<li><p><strong>Submissions
|
1469
|
+
must be directly gaming-related.</strong> <a href=\\\"http://www.reddit.com/r/gaming/comments/1gnlvh/mod_post_clarification_on_rule_1/\\\">Memes
|
1470
|
+
are allowed as long as both the image and the text are gaming related.</a>
|
1471
|
+
Something that &quot;reminds you of a game&quot;, or &quot;looks
|
1472
|
+
like something from a game&quot; is not an allowable submission; similarly,
|
1473
|
+
reaction GIFs are not allowed as submissions.</p></li>\\n<li><p>Following
|
1474
|
+
<a href=\\\"http://www.reddit.com/help/reddiquette\\\">Reddiquette</a>
|
1475
|
+
is encouraged. Following the <a href=\\\"http://www.reddit.com/rules\\\">Rules
|
1476
|
+
of Reddit</a> is required.</p></li>\\n<li><p>No
|
1477
|
+
general URL shorteners (bitly, tinyurl, etc). Single-site URL shorteners (such
|
1478
|
+
as youtu.be or fav.me) are allowed.</p></li>\\n<li><p>No
|
1479
|
+
product requests or giveaways, including game keys. Enabling or attempting
|
1480
|
+
to enable piracy <a href=\\\"http://www.reddit.com/r/gaming/comments/m1pry/a_friendly_reminder_to_rgaming_talking_about/\\\">will
|
1481
|
+
result in a ban</a>.</p></li>\\n<li><p>NSFW
|
1482
|
+
submissions and comments must be labeled as such.</p></li>\\n<li><p>Spoilers
|
1483
|
+
must be posted using the following formatting:<br/>\\n<code>[X
|
1484
|
+
Kills Y](/spoiler)</code><br/>\\nResult: <a href=\\\"/spoiler\\\">X
|
1485
|
+
Kills Y</a>.<br/>\\nTo mark a spoiler as relevant to a specific
|
1486
|
+
game/topic, use the alternate formatting:<br/>\\n<code>[Player
|
1487
|
+
1 wins](/spoiler &quot;Pong&quot;)</code><br/>\\nResult:<br/>\\n<a
|
1488
|
+
href=\\\"/spoiler\\\" title=\\\"Pong\\\">Player 1 wins</a><br/>\\n<em>Report
|
1489
|
+
posts containing spoilers not using the above method</em></p></li>\\n<li><p>Submit
|
1490
|
+
the source of the content. No hotlinked or re-hosted comics (unless the author
|
1491
|
+
specifically allows it). Submit the page on the author&#39;s site containing
|
1492
|
+
the comic.</p></li>\\n<li><p>No personal websites
|
1493
|
+
or YouTube channels. No referral or affiliate links.</p></li>\\n<li><p>No
|
1494
|
+
Kickstarter, Steam Greenlight, et al. &quot;reminder&quot; posts.
|
1495
|
+
Submissions about new projects or major updates to existing ones are allowed.</p></li>\\n<li><p>Posts
|
1496
|
+
and comments, whether in jest or with malice, that consist of racist, sexist,
|
1497
|
+
or homophobic content, will be removed, regardless of popularity or relevance.</p></li>\\n</ol>\\n\\n<h1>Important
|
1498
|
+
Notes</h1>\\n\\n<p>If your submission does not immediately appear
|
1499
|
+
in the link listing, <strong>do not delete it.</strong> Wait 5
|
1500
|
+
minutes to give AutoModerator a chance to look at it; it approves most submissions
|
1501
|
+
automatically. If it hasn&#39;t shown up <em>after more than 5 minutes</em>,
|
1502
|
+
simply <a href=\\\"http://www.reddit.com/message/compose?to=%23gaming\\\">message
|
1503
|
+
the moderators</a> and ask us to let it through.</p>\\n\\n<p>The
|
1504
|
+
moderators of <a href=\\\"/r/gaming\\\">/r/gaming</a> reserve
|
1505
|
+
the right to remove any &quot;bandwagon&quot; posts. This includes
|
1506
|
+
&quot;No, THIS is the best <em>__&quot;, &quot;FIXED&quot;,
|
1507
|
+
&quot;I see your _</em>_ and raise you ____&quot; and other
|
1508
|
+
types of reply posts. If you feel like you have a response to an existing
|
1509
|
+
post, reply in the comments section to avoid having your post removed.</p>\\n\\n<h1>Other
|
1510
|
+
Gaming Subreddits</h1>\\n\\n<ul>\\n<li><p><a href=\\\"http://www.reddit.com/r/Games/\\\">/r/Games</a>
|
1511
|
+
- Informative content</p></li>\\n<li><p><a href=\\\"http://www.reddit.com/r/gamernews\\\">/r/gamernews</a>
|
1512
|
+
- News only</p></li>\\n<li><p><a href=\\\"http://www.reddit.com/r/truegaming\\\">/r/truegaming</a>
|
1513
|
+
- Discussions only</p></li>\\n<li><p><a href=\\\"http://www.reddit.com/r/gaming/wiki/faq\\\">Comprehensive
|
1514
|
+
list of gaming subreddits</a></p></li>\\n</ul>\\n\\n<h6><strong>Hey!
|
1515
|
+
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
|
1516
|
+
Here</strong></a>.</h6>\\n</div><!-- SC_ON -->\",
|
1517
|
+
\"title\": \"gaming.reddit: what's new in gaming\", \"over18\": false, \"user_is_moderator\":
|
1518
|
+
false, \"header_title\": \"Your Karma will define you... - http://redd.it/1lw4fg
|
1519
|
+
(That's a one then L in the url)\", \"description\": \"**[Beware of trading
|
1520
|
+
scammers!](http://www.reddit.com/r/gaming/comments/utoql/scammed_by_someone_on_rgaming_what_to_do_what_not/)**\\n--\\nA
|
1521
|
+
subreddit for anything related to games (but not [sports](http://www.reddit.com/r/sports)).\\n\\n\\\"Related\\\"
|
1522
|
+
means that **posts must contain gaming-related content in the link/post body,
|
1523
|
+
not just a \\\"forced\\\" connection via the title or a caption added to the
|
1524
|
+
content.**\\n\\n[reddit Steam group](http://steamcommunity.com/groups/reddit)\\n\\n#
|
1525
|
+
Community Rules\\n\\n1. **Submissions must be directly gaming-related.** [Memes
|
1526
|
+
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/)
|
1527
|
+
Something that \\\"reminds you of a game\\\", or \\\"looks like something
|
1528
|
+
from a game\\\" is not an allowable submission; similarly, reaction GIFs are
|
1529
|
+
not allowed as submissions.\\n\\n1. Following [Reddiquette](http://www.reddit.com/help/reddiquette)
|
1530
|
+
is encouraged. Following the [Rules of Reddit](http://www.reddit.com/rules)
|
1531
|
+
is required.\\n\\n1. No general URL shorteners (bitly, tinyurl, etc). Single-site
|
1532
|
+
URL shorteners (such as youtu.be or fav.me) are allowed.\\n\\n1. No product
|
1533
|
+
requests or giveaways, including game keys. Enabling or attempting to enable
|
1534
|
+
piracy [will result in a ban](http://www.reddit.com/r/gaming/comments/m1pry/a_friendly_reminder_to_rgaming_talking_about/).\\n\\n1.
|
1535
|
+
NSFW submissions and comments must be labeled as such.\\n\\n1. Spoilers must
|
1536
|
+
be posted using the following formatting: \\n`[X Kills Y](/spoiler)` \\nResult:
|
1537
|
+
[X Kills Y](/spoiler). \\nTo mark a spoiler as relevant to a specific game/topic,
|
1538
|
+
use the alternate formatting: \\n`[Player 1 wins](/spoiler \\\"Pong\\\")`
|
1539
|
+
\ \\nResult: \\n[Player 1 wins](/spoiler \\\"Pong\\\") \\n*Report posts
|
1540
|
+
containing spoilers not using the above method*\\n\\n1. Submit the source
|
1541
|
+
of the content. No hotlinked or re-hosted comics (unless the author specifically
|
1542
|
+
allows it). Submit the page on the author's site containing the comic.\\n\\n1.
|
1543
|
+
No personal websites or YouTube channels. No referral or affiliate links.\\n\\n1.
|
1544
|
+
No Kickstarter, Steam Greenlight, et al. \\\"reminder\\\" posts. Submissions
|
1545
|
+
about new projects or major updates to existing ones are allowed.\\n\\n1.
|
1546
|
+
Posts and comments, whether in jest or with malice, that consist of racist,
|
1547
|
+
sexist, or homophobic content, will be removed, regardless of popularity or
|
1548
|
+
relevance.\\n\\n#Important Notes\\n\\nIf your submission does not immediately
|
1549
|
+
appear in the link listing, **do not delete it.** Wait 5 minutes to give AutoModerator
|
1550
|
+
a chance to look at it; it approves most submissions automatically. If it
|
1551
|
+
hasn't shown up *after more than 5 minutes*, simply [message the moderators](http://www.reddit.com/message/compose?to=%23gaming)
|
1552
|
+
and ask us to let it through.\\n\\nThe moderators of /r/gaming reserve the
|
1553
|
+
right to remove any \\\"bandwagon\\\" posts. This includes \\\"No, THIS is
|
1554
|
+
the best ___\\\", \\\"FIXED\\\", \\\"I see your ___ and raise you ____\\\"
|
1555
|
+
and other types of reply posts. If you feel like you have a response to an
|
1556
|
+
existing post, reply in the comments section to avoid having your post removed.\\n\\n#
|
1557
|
+
Other Gaming Subreddits\\n\\n* [/r/Games](http://www.reddit.com/r/Games/)
|
1558
|
+
- Informative content\\n\\n* [/r/gamernews](http://www.reddit.com/r/gamernews)
|
1559
|
+
- News only\\n\\n* [/r/truegaming](http://www.reddit.com/r/truegaming) - Discussions
|
1560
|
+
only\\n\\n* [Comprehensive list of gaming subreddits](http://www.reddit.com/r/gaming/wiki/faq)\\n\\n######
|
1561
|
+
**Hey! Listen!** For clarification on rule 1 [**Click Here**](http://www.reddit.com/r/gaming/comments/1gnlvh/mod_post_clarification_on_rule_1/).\",
|
1562
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
1563
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": [165, 66], \"subscribers\":
|
1564
|
+
3973785, \"submit_text_label\": null, \"name\": \"t5_2qh03\", \"created\":
|
1565
|
+
1190058205.0, \"url\": \"/r/gaming/\", \"created_utc\": 1190054605.0, \"user_is_contributor\":
|
1566
|
+
false, \"public_traffic\": false, \"public_description\": \"A subreddit for
|
1567
|
+
(almost) anything related to games - video games, board games, card games,
|
1568
|
+
etc. (but not [sports](http://www.reddit.com/r/sports)).\\n\\nFor more informative
|
1569
|
+
gaming content such as news and articles, please visit /r/Games.\", \"comment_score_hide_mins\":
|
1570
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
1571
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
1572
|
+
--><div class=\\\"md\\\"><p>Please post political videos on
|
1573
|
+
<a href=\\\"/r/politics\\\">/r/politics</a> instead, and note
|
1574
|
+
that repeatedly submitting content from your YouTube channel may <strong>get
|
1575
|
+
it banned</strong>.</p>\\n</div><!-- SC_ON -->\",
|
1576
|
+
\"user_is_banned\": false, \"id\": \"2qh1e\", \"submit_text\": \"Please post
|
1577
|
+
political videos on /r/politics instead, and note that repeatedly submitting
|
1578
|
+
content from your YouTube channel may **get it banned**.\", \"spam_selfposts\":
|
1579
|
+
\"high\", \"display_name\": \"videos\", \"header_img\": \"http://e.thumbs.redditmedia.com/agD0P4t8RNDUA29d.png\",
|
1580
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>A
|
1581
|
+
great place for video content of all kinds. Direct links to major video sites
|
1582
|
+
are preferred (e.g. YouTube, Vimeo, etc.)</p>\\n\\n<h1>Rules</h1>\\n\\n<ol>\\n<li><p>No
|
1583
|
+
politics. <em>Political videos (including ones related to current political
|
1584
|
+
figures) should be submitted to <a href=\\\"http://www.reddit.com/r/politics\\\">r/politics</a>,
|
1585
|
+
<a href=\\\"http://www.reddit.com/r/worldpolitics\\\">r/worldpolitics</a>,
|
1586
|
+
etc.</em></p></li>\\n<li><p>No personal information
|
1587
|
+
<em>such as names, Facebook pages, phone numbers, addresses, etc. This
|
1588
|
+
is grounds for an immediate (and likely permanent) ban, so consider this a
|
1589
|
+
warning.</em></p></li>\\n<li><p>No witch-hunting
|
1590
|
+
<em>or incitement to witch hunt. This means no demanding &quot;Reddit
|
1591
|
+
justice&quot; in any way in post titles or comments.</em></p></li>\\n<li><p>No
|
1592
|
+
police brutality/violence videos. <em>Consider posting to a different
|
1593
|
+
subreddit, like <a href=\\\"/r/Bad_Cop_No_Donut\\\">/r/Bad_Cop_No_Donut</a>
|
1594
|
+
or elsewhere.</em></p></li>\\n<li><p>No blogspam
|
1595
|
+
or URL shorteners. <em>Please post direct links.</em></p></li>\\n<li><p>No
|
1596
|
+
porn or gore. <em>There are many other subreddits for such content.</em></p></li>\\n<li><p>No
|
1597
|
+
DAE posts or solicitation of votes or views.</p></li>\\n</ol>\\n\\n<p>If
|
1598
|
+
your submission does not appear in the <a href=\\\"http://www.reddit.com/r/videos/new/\\\">new
|
1599
|
+
queue</a>, please <a href=\\\"http://www.reddit.com/message/compose?to=%23videos\\\">contact
|
1600
|
+
us</a> (be sure to <strong>include a link to the Reddit post (i.e.
|
1601
|
+
comments section), not the content you are linking</strong>). Simply
|
1602
|
+
deleting your post may cause the spam filter to catch future ones.</p>\\n\\n<p>Also,
|
1603
|
+
please <a href=\\\"http://www.reddit.com/message/compose?to=%23videos\\\">contact
|
1604
|
+
us</a> regarding spam, political or any other inappropriate videos,
|
1605
|
+
as this helps us remove them more quickly!</p>\\n\\n<h1>Recommended
|
1606
|
+
subreddits</h1>\\n\\n<ul>\\n<li><p>Need more? Check
|
1607
|
+
out <a href=\\\"/r/video\\\">/r/video</a> and <a href=\\\"/r/YouTube\\\">/r/YouTube</a></p></li>\\n<li><p>Like
|
1608
|
+
movie trailers? check out <a href=\\\"/r/trailers\\\">/r/trailers</a></p></li>\\n<li><p>Wish
|
1609
|
+
you could channel surf through the best videos on reddit? Try <a href=\\\"http://reddit.tv\\\">reddit.tv</a></p></li>\\n<li><p>Missed
|
1610
|
+
the best of Reddit yesterday? Catch the daily recap and best links at <a
|
1611
|
+
href=\\\"/r/tldr\\\">/r/tldr</a></p></li>\\n<li><p>Bored
|
1612
|
+
of Reddit in the modern era? Check out <a href=\\\"/r/RedditThroughHistory\\\">/r/RedditThroughHistory!</a></p></li>\\n<li><p><a
|
1613
|
+
href=\\\"/r/unnecessarycensorship\\\">Unnecessary Censorship</a></p></li>\\n</ul>\\n\\n<hr/>\\n\\n<h3>Please
|
1614
|
+
no posting of personal info such as Facebook, Twitter, etc.</h3>\\n</div><!--
|
1615
|
+
SC_ON -->\", \"title\": \"Videos\", \"over18\": false, \"user_is_moderator\":
|
1616
|
+
false, \"header_title\": \"hi\", \"description\": \"A great place for video
|
1617
|
+
content of all kinds. Direct links to major video sites are preferred (e.g.
|
1618
|
+
YouTube, Vimeo, etc.)\\n\\n#Rules#\\n\\n1. No politics. *Political videos
|
1619
|
+
(including ones related to current political figures) should be submitted
|
1620
|
+
to [r/politics](http://www.reddit.com/r/politics), [r/worldpolitics](http://www.reddit.com/r/worldpolitics),
|
1621
|
+
etc.*\\n\\n1. No personal information *such as names, Facebook pages, phone
|
1622
|
+
numbers, addresses, etc. This is grounds for an immediate (and likely permanent)
|
1623
|
+
ban, so consider this a warning.*\\n\\n1. No witch-hunting *or incitement
|
1624
|
+
to witch hunt. This means no demanding \\\"Reddit justice\\\" in any way in
|
1625
|
+
post titles or comments.*\\n\\n1. No police brutality/violence videos. *Consider
|
1626
|
+
posting to a different subreddit, like /r/Bad_Cop_No_Donut or elsewhere.*\\n\\n1.
|
1627
|
+
\ No blogspam or URL shorteners. *Please post direct links.*\\n\\n1. No porn
|
1628
|
+
or gore. *There are many other subreddits for such content.*\\n\\n1. No DAE
|
1629
|
+
posts or solicitation of votes or views.\\n\\nIf your submission does not
|
1630
|
+
appear in the [new queue](http://www.reddit.com/r/videos/new/), please [contact
|
1631
|
+
us](http://www.reddit.com/message/compose?to=%23videos) (be sure to **include
|
1632
|
+
a link to the Reddit post (i.e. comments section), not the content you are
|
1633
|
+
linking**). Simply deleting your post may cause the spam filter to catch future
|
1634
|
+
ones.\\n\\nAlso, please [contact us](http://www.reddit.com/message/compose?to=%23videos)
|
1635
|
+
regarding spam, political or any other inappropriate videos, as this helps
|
1636
|
+
us remove them more quickly!\\n\\n#Recommended subreddits#\\n\\n* Need more?
|
1637
|
+
Check out [/r/video](/r/video) and /r/YouTube\\n\\n* Like movie trailers?
|
1638
|
+
check out [/r/trailers](/r/trailers)\\n\\n* Wish you could channel surf through
|
1639
|
+
the best videos on reddit? Try [reddit.tv](http://reddit.tv)\\n\\n* Missed
|
1640
|
+
the best of Reddit yesterday? Catch the daily recap and best links at [/r/tldr](/r/tldr)\\n\\n*
|
1641
|
+
Bored of Reddit in the modern era? Check out [/r/RedditThroughHistory!](/r/RedditThroughHistory)\\n\\n*
|
1642
|
+
[Unnecessary Censorship](/r/unnecessarycensorship)\\n\\n----\\n\\n### Please
|
1643
|
+
no posting of personal info such as Facebook, Twitter, etc. \", \"submit_link_label\":
|
1644
|
+
null, \"accounts_active\": null, \"spam_comments\": \"high\", \"spam_links\":
|
1645
|
+
\"high\", \"header_size\": [123, 55], \"subscribers\": 3965775, \"submit_text_label\":
|
1646
|
+
null, \"name\": \"t5_2qh1e\", \"created\": 1201232236.0, \"url\": \"/r/videos/\",
|
1647
|
+
\"created_utc\": 1201232236.0, \"user_is_contributor\": false, \"public_traffic\":
|
1648
|
+
false, \"public_description\": \"A great place for video content of all kinds.
|
1649
|
+
Direct links to major video sites are preferred (e.g. YouTube, Vimeo, etc.)\",
|
1650
|
+
\"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
|
1651
|
+
\"link\", \"user_is_subscriber\": true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
1652
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><ul>\\n<li>Remember,
|
1653
|
+
we only allow comment submissions from the non-default subeddits.<br/></li>\\n<li>Please
|
1654
|
+
search <a href=\\\"/r/Bestof\\\">/r/Bestof</a> before submitting.
|
1655
|
+
\ Repeat submissions will be mercilessly removed.<br/></li>\\n<li>See
|
1656
|
+
<a href=\\\"http://www.reddit.com/r/bestof/about/sidebar\\\">our sidebar</a>
|
1657
|
+
for our rules and guidelines.<br/></li>\\n<li><a href=\\\"http://www.reddit.com/wiki/reddiquette\\\">Reddiquette</a>
|
1658
|
+
is to be observed and followed at all times.<br/></li>\\n</ul>\\n</div><!--
|
1659
|
+
SC_ON -->\", \"user_is_banned\": false, \"id\": \"2qh3v\", \"submit_text\":
|
1660
|
+
\"* Remember, we only allow comment submissions from the non-default subeddits.
|
1661
|
+
\ \\n* Please search /r/Bestof before submitting. Repeat submissions will
|
1662
|
+
be mercilessly removed. \\n* See [our sidebar](http://www.reddit.com/r/bestof/about/sidebar)
|
1663
|
+
for our rules and guidelines. \\n* [Reddiquette](http://www.reddit.com/wiki/reddiquette)
|
1664
|
+
is to be observed and followed at all times. \\n\", \"spam_selfposts\": \"high\",
|
1665
|
+
\"display_name\": \"bestof\", \"header_img\": \"http://f.thumbs.redditmedia.com/D4JHWBFLf4tNl8K_.png\",
|
1666
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>This
|
1667
|
+
subreddit features the very best hidden gems that reddit has to offer!</p>\\n\\n<h1>Bestof&#39;s
|
1668
|
+
Rules</h1>\\n\\n<p><strong>Please read these before submitting
|
1669
|
+
your gem!</strong></p>\\n\\n<p>Hover for details</p>\\n\\n<table><thead>\\n<tr>\\n<th
|
1670
|
+
align=\\\"left\\\"></th>\\n<th align=\\\"left\\\"></th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
1671
|
+
align=\\\"left\\\">1. This subreddit accepts links from the reddit.com
|
1672
|
+
domain <em>only.</em></td>\\n<td align=\\\"left\\\">All
|
1673
|
+
others <em>will</em> be removed on sight. Mercilessly.</td>\\n</tr>\\n<tr>\\n<td
|
1674
|
+
align=\\\"left\\\">2. Comments from the <a href=\\\"http://blog.reddit.com/2013/07/new-default-subreddits-omgomgomg.html\\\">default
|
1675
|
+
subreddits</a> are not allowed.</td>\\n<td align=\\\"left\\\">Please
|
1676
|
+
<a href=\\\"http://www.reddit.com/r/defaultgems/submit\\\">click here</a>
|
1677
|
+
to submit to <a href=\\\"/r/defaultgems\\\">/r/defaultgems</a>
|
1678
|
+
instead. Certain subreddits may also be blocked.</td>\\n</tr>\\n<tr>\\n<td
|
1679
|
+
align=\\\"left\\\">3. Links to entire subreddits, user pages, or entire
|
1680
|
+
submissions (self post or otherwise) will be removed.</td>\\n<td
|
1681
|
+
align=\\\"left\\\">Single comments only, please; there will be no exceptions
|
1682
|
+
made.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\">4.
|
1683
|
+
Do not link to your own comments please.</td>\\n<td align=\\\"left\\\">Self
|
1684
|
+
posts will be removed on sight <em>unless</em> they are discussions
|
1685
|
+
based on this subreddit and this one only.</td>\\n</tr>\\n<tr>\\n<td
|
1686
|
+
align=\\\"left\\\">5. Provide Context!</td>\\n<td align=\\\"left\\\">If
|
1687
|
+
the comment you&#39;re linking to requires some context, just add &quot;?context=10&quot;
|
1688
|
+
to the URL. For a detailed explanation on <em>why</em> this is
|
1689
|
+
important, <a href=\\\"http://www.reddit.com/r/bestof/comments/ohqy0/rbestof_lets_talk_context/\\\">please
|
1690
|
+
see this thread.</a></td>\\n</tr>\\n<tr>\\n<td
|
1691
|
+
align=\\\"left\\\">6. Please don&#39;t include the subreddit name in
|
1692
|
+
your submission title.</td>\\n<td align=\\\"left\\\">Our moderation
|
1693
|
+
bot includes that information automatically, and doing so only makes the tag
|
1694
|
+
show up twice.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\">7.
|
1695
|
+
Bad novelty accounts will be banned.</td>\\n<td align=\\\"left\\\">You&#39;re
|
1696
|
+
bad, and you should feel bad.</td>\\n</tr>\\n<tr>\\n<td
|
1697
|
+
align=\\\"left\\\">8. This is a curated space.</td>\\n<td align=\\\"left\\\">The
|
1698
|
+
moderators reserve the right to remove posts and comments at their own discretion.</td>\\n</tr>\\n</tbody></table>\\n\\n<h1>Some
|
1699
|
+
relevant subreddits</h1>\\n\\n<table><thead>\\n<tr>\\n<th
|
1700
|
+
align=\\\"left\\\"></th>\\n<th align=\\\"left\\\"></th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
1701
|
+
align=\\\"left\\\"><a href=\\\"/r/bestofTLDR\\\">/r/bestofTLDR</a></td>\\n<td
|
1702
|
+
align=\\\"left\\\">The best TL;DRs of reddit.</td>\\n</tr>\\n<tr>\\n<td
|
1703
|
+
align=\\\"left\\\"><a href=\\\"/r/DailyDot\\\">/r/DailyDot</a></td>\\n<td
|
1704
|
+
align=\\\"left\\\">For when you want to catch up on all the reddit that
|
1705
|
+
you missed while you were sleeping, eating, vacationing, or otherwise AFK.</td>\\n</tr>\\n<tr>\\n<td
|
1706
|
+
align=\\\"left\\\"><a href=\\\"/r/DefaultGems\\\">/r/DefaultGems</a></td>\\n<td
|
1707
|
+
align=\\\"left\\\">For the very best gems that the default reddits have
|
1708
|
+
to offer!</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
1709
|
+
href=\\\"/r/DepthHub\\\">/r/DepthHub</a></td>\\n<td align=\\\"left\\\">For
|
1710
|
+
the best in-depth conversations to be found on reddit.</td>\\n</tr>\\n<tr>\\n<td
|
1711
|
+
align=\\\"left\\\"><a href=\\\"/r/Help\\\">/r/Help</a></td>\\n<td
|
1712
|
+
align=\\\"left\\\">For help with reddit.</td>\\n</tr>\\n<tr>\\n<td
|
1713
|
+
align=\\\"left\\\"><a href=\\\"/r/MetaHub\\\">/r/MetaHub</a></td>\\n<td
|
1714
|
+
align=\\\"left\\\">For the best meta discussion to be found on reddit.</td>\\n</tr>\\n<tr>\\n<td
|
1715
|
+
align=\\\"left\\\"><a href=\\\"/r/ModHelp\\\">/r/ModHelp</a></td>\\n<td
|
1716
|
+
align=\\\"left\\\">For help with modding on reddit.</td>\\n</tr>\\n<tr>\\n<td
|
1717
|
+
align=\\\"left\\\"><a href=\\\"/r/MuseumOfReddit\\\">/r/MuseumOfReddit</a></td>\\n<td
|
1718
|
+
align=\\\"left\\\">Historic Posts and Comments</td>\\n</tr>\\n<tr>\\n<td
|
1719
|
+
align=\\\"left\\\"><a href=\\\"/r/NewReddits\\\">/r/NewReddits</a></td>\\n<td
|
1720
|
+
align=\\\"left\\\">For the best (and worst) new reddits!</td>\\n</tr>\\n<tr>\\n<td
|
1721
|
+
align=\\\"left\\\"><a href=\\\"/r/RedditorOfTheDay\\\">/r/RedditorOfTheDay</a></td>\\n<td
|
1722
|
+
align=\\\"left\\\">For all you need to know (and maybe more) about a featured
|
1723
|
+
redditor.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
1724
|
+
href=\\\"/r/SubredditOfTheDay\\\">/r/SubredditOfTheDay</a></td>\\n<td
|
1725
|
+
align=\\\"left\\\">For a daily feature on a subreddit you&#39;ve probably
|
1726
|
+
never heard of before.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
1727
|
+
href=\\\"/r/ThankYou\\\">/r/ThankYou</a></td>\\n<td align=\\\"left\\\">For
|
1728
|
+
when a certain redditor needs a good, hard thanking.</td>\\n</tr>\\n<tr>\\n<td
|
1729
|
+
align=\\\"left\\\"><a href=\\\"/r/TheoryOfReddit\\\">/r/TheoryOfReddit</a></td>\\n<td
|
1730
|
+
align=\\\"left\\\">For inquiring into what makes the Reddit community work
|
1731
|
+
and what we in the community can do to help make it better.</td>\\n</tr>\\n<tr>\\n<td
|
1732
|
+
align=\\\"left\\\"><a href=\\\"/r/VeryPunny\\\">/r/VeryPunny</a></td>\\n<td
|
1733
|
+
align=\\\"left\\\">For the best (and worst) pun threads on reddit.</td>\\n</tr>\\n<tr>\\n<td
|
1734
|
+
align=\\\"left\\\"><a href=\\\"/r/WorstOf\\\">/r/WorstOf</a></td>\\n<td
|
1735
|
+
align=\\\"left\\\">For the best (and worst) trolls to be found on reddit.</td>\\n</tr>\\n<tr>\\n<td
|
1736
|
+
align=\\\"left\\\"><a href=\\\"/r/weeklyreddit\\\">/r/weeklyreddit</a></td>\\n<td
|
1737
|
+
align=\\\"left\\\">For new and interesting subreddit discovery.</td>\\n</tr>\\n<tr>\\n<td
|
1738
|
+
align=\\\"left\\\"><a href=\\\"/r/YouGotTold\\\">/r/YouGotTold</a></td>\\n<td
|
1739
|
+
align=\\\"left\\\">Collection of fine retorts</td>\\n</tr>\\n</tbody></table>\\n\\n<p><em>Please
|
1740
|
+
tag all NSFW posts as such.</em></p>\\n\\n<p><em>If
|
1741
|
+
you&#39;re having trouble finding your submission, please feel free to
|
1742
|
+
<a href=\\\"http://www.reddit.com/message/compose?to=%23bestof\\\">message
|
1743
|
+
the moderators.</a> Make sure to provide us with a link to the post
|
1744
|
+
in question and as long it meets all of the criteria, it will be set free!</em></p>\\n</div><!--
|
1745
|
+
SC_ON -->\", \"title\": \"best of reddit\", \"over18\": false, \"user_is_moderator\":
|
1746
|
+
false, \"header_title\": null, \"description\": \"This subreddit features
|
1747
|
+
the very best hidden gems that reddit has to offer!\\n\\n#Bestof's Rules\\n\\n**Please
|
1748
|
+
read these before submitting your gem!**\\n\\nHover for details\\n\\n|||\\n|:------|:-----|\\n|1.
|
1749
|
+
This subreddit accepts links from the reddit.com domain *only.* | All others
|
1750
|
+
*will* be removed on sight. Mercilessly.|\\n|2. Comments from the [default
|
1751
|
+
subreddits](http://blog.reddit.com/2013/07/new-default-subreddits-omgomgomg.html)
|
1752
|
+
are not allowed. | Please [click here](http://www.reddit.com/r/defaultgems/submit)
|
1753
|
+
to submit to /r/defaultgems instead. Certain subreddits may also be blocked.
|
1754
|
+
\ |\\n|3. Links to entire subreddits, user pages, or entire submissions (self
|
1755
|
+
post or otherwise) will be removed. | Single comments only, please; there
|
1756
|
+
will be no exceptions made.|\\n|4. Do not link to your own comments please.
|
1757
|
+
| Self posts will be removed on sight *unless* they are discussions based
|
1758
|
+
on this subreddit and this one only. |\\n|5. Provide Context! | If the comment
|
1759
|
+
you're linking to requires some context, just add \\\"?context=10\\\" to the
|
1760
|
+
URL. For a detailed explanation on *why* this is important, [please see this
|
1761
|
+
thread.](http://www.reddit.com/r/bestof/comments/ohqy0/rbestof_lets_talk_context/)
|
1762
|
+
|\\n|6. Please don't include the subreddit name in your submission title.
|
1763
|
+
| Our moderation bot includes that information automatically, and doing so
|
1764
|
+
only makes the tag show up twice. |\\n|7. Bad novelty accounts will be banned.
|
1765
|
+
| You're bad, and you should feel bad. |\\n|8. This is a curated space. |
|
1766
|
+
The moderators reserve the right to remove posts and comments at their own
|
1767
|
+
discretion. |\\n\\n#Some relevant subreddits\\n\\n|||\\n|:------|:-----|\\n|/r/bestofTLDR
|
1768
|
+
| The best TL;DRs of reddit. |\\n|/r/DailyDot | For when you want to catch
|
1769
|
+
up on all the reddit that you missed while you were sleeping, eating, vacationing,
|
1770
|
+
or otherwise AFK. |\\n|/r/DefaultGems | For the very best gems that the default
|
1771
|
+
reddits have to offer! |\\n|/r/DepthHub | For the best in-depth conversations
|
1772
|
+
to be found on reddit. |\\n|/r/Help | For help with reddit. |\\n|/r/MetaHub
|
1773
|
+
| For the best meta discussion to be found on reddit. |\\n|/r/ModHelp | For
|
1774
|
+
help with modding on reddit. |\\n|/r/MuseumOfReddit | Historic Posts and Comments
|
1775
|
+
|\\n|/r/NewReddits | For the best (and worst) new reddits! |\\n|/r/RedditorOfTheDay
|
1776
|
+
| For all you need to know (and maybe more) about a featured redditor. |\\n|/r/SubredditOfTheDay
|
1777
|
+
| For a daily feature on a subreddit you've probably never heard of before.
|
1778
|
+
\ |\\n|/r/ThankYou | For when a certain redditor needs a good, hard thanking.
|
1779
|
+
|\\n|/r/TheoryOfReddit | For inquiring into what makes the Reddit community
|
1780
|
+
work and what we in the community can do to help make it better. |\\n|/r/VeryPunny
|
1781
|
+
| For the best (and worst) pun threads on reddit. |\\n|/r/WorstOf | For the
|
1782
|
+
best (and worst) trolls to be found on reddit. |\\n|/r/weeklyreddit | For
|
1783
|
+
new and interesting subreddit discovery. |\\n|/r/YouGotTold | Collection of
|
1784
|
+
fine retorts |\\n\\n \\n*Please tag all NSFW posts as such.*\\n\\n*If you're
|
1785
|
+
having trouble finding your submission, please feel free to [message the moderators.](http://www.reddit.com/message/compose?to=%23bestof)
|
1786
|
+
Make sure to provide us with a link to the post in question and as long it
|
1787
|
+
meets all of the criteria, it will be set free!*\", \"submit_link_label\":
|
1788
|
+
null, \"accounts_active\": null, \"spam_comments\": \"high\", \"spam_links\":
|
1789
|
+
\"high\", \"header_size\": [150, 40], \"subscribers\": 3587772, \"submit_text_label\":
|
1790
|
+
null, \"name\": \"t5_2qh3v\", \"created\": 1201243996.0, \"url\": \"/r/bestof/\",
|
1791
|
+
\"created_utc\": 1201243996.0, \"user_is_contributor\": false, \"public_traffic\":
|
1792
|
+
false, \"public_description\": \"The very best hidden gems on reddit.\", \"comment_score_hide_mins\":
|
1793
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"link\", \"user_is_subscriber\":
|
1794
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
1795
|
+
false, \"id\": \"2qh3s\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
1796
|
+
\"display_name\": \"movies\", \"header_img\": \"http://d.thumbs.redditmedia.com/cIr_NqII_b7EEzj9.png\",
|
1797
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><h6><a
|
1798
|
+
href=\\\"/blank\\\"></a></h6>\\n\\n<h5><a href=\\\"/blank\\\"></a></h5>\\n\\n<h5><a
|
1799
|
+
href=\\\"/blank\\\"></a></h5>\\n\\n<ul>\\n<li><strong>&gt;</strong>\\n\\n<ul>\\n<li>
|
1800
|
+
Official Discussion: <a href=\\\"http://redd.it/1pnuw3\\\">Ender&#39;s
|
1801
|
+
Game</a></li>\\n<li> Official Discussion: <a href=\\\"http://redd.it/1posz1\\\">12
|
1802
|
+
Years a Slave</a></li>\\n<li> New Blu-Ray Releases: <a
|
1803
|
+
href=\\\"http://redd.it/1pwet9\\\">Nov 5</a></li>\\n<li>
|
1804
|
+
<a href=\\\"http://www.reddit.com/r/movies/wiki/index#wiki_rules\\\">Rules</a></li>\\n<li>
|
1805
|
+
<a href=\\\"http://www.reddit.com/z7i70\\\">Movie FAQ</a></li>\\n<li>
|
1806
|
+
<a href=\\\"http://www.reddit.com/r/movies/wiki/index#wiki_useful_links\\\">Useful
|
1807
|
+
Links</a></li>\\n</ul></li>\\n</ul>\\n\\n<hr/>\\n\\n<h1>SUBREDDIT
|
1808
|
+
RULES:</h1>\\n\\n<p><em>Hover for Details</em></p>\\n\\n<table><thead>\\n<tr>\\n<th
|
1809
|
+
align=\\\"left\\\"></th>\\n<th align=\\\"left\\\"></th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
1810
|
+
align=\\\"left\\\"><strong>No Ambiguous Titles</strong></td>\\n<td
|
1811
|
+
align=\\\"left\\\">Don&#39;t make a submission that begs us to click
|
1812
|
+
on the link, we should know the subject &amp; content without having to
|
1813
|
+
click. Name the movie or actor. Think twice about using the word &quot;this&quot;
|
1814
|
+
without explaining what it is.</td>\\n</tr>\\n<tr>\\n<td
|
1815
|
+
align=\\\"left\\\"><strong>No Piracy Discussion</strong></td>\\n<td
|
1816
|
+
align=\\\"left\\\">Do not advertise, promote, post or comment about illegal
|
1817
|
+
filesharing of movies or any other media here. This includes links to illegally
|
1818
|
+
uploaded youtube movies or streaming sites which may result in a ban.</td>\\n</tr>\\n<tr>\\n<td
|
1819
|
+
align=\\\"left\\\"><strong>Don&#39;t Advertise in the Submission
|
1820
|
+
Title</strong></td>\\n<td align=\\\"left\\\">Keep the website&#39;s
|
1821
|
+
name out of the title of the submission</td>\\n</tr>\\n<tr>\\n<td
|
1822
|
+
align=\\\"left\\\"><strong>Don&#39;t Put Reviews in the Title</strong></td>\\n<td
|
1823
|
+
align=\\\"left\\\">Do not provide your own editorial, a critic&#39;s
|
1824
|
+
summary, the Rotten Tomatoes score, or any other opinion regarding a movie
|
1825
|
+
in the submission title.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><strong>Is
|
1826
|
+
This The Best Place for Your Post?</strong></td>\\n<td align=\\\"left\\\">Did
|
1827
|
+
you make, or are you making a short film or movie? Please submit to <a
|
1828
|
+
href=\\\"/r/filmmakers\\\">/r/filmmakers</a> or <a href=\\\"/r/kickstarter\\\">/r/kickstarter</a>
|
1829
|
+
- Found an image behind the scenes of a movie? Please submit to <a href=\\\"/r/pics\\\">/r/pics</a>
|
1830
|
+
or <a href=\\\"/r/moviesinthemaking\\\">/r/moviesinthemaking</a>
|
1831
|
+
- Have a single still frame of something without an interesting story behind
|
1832
|
+
it? Submit to <a href=\\\"/r/pics\\\">/r/pics</a> - Found a cool
|
1833
|
+
alternate poster of a movie you like? Please submit to <a href=\\\"/r/movieposterporn\\\">/r/movieposterporn</a>.</td>\\n</tr>\\n<tr>\\n<td
|
1834
|
+
align=\\\"left\\\"><strong>Memes Must Be About Pre-1960 Movies</strong></td>\\n<td
|
1835
|
+
align=\\\"left\\\">Include the movie title in the submission title, and
|
1836
|
+
label SPOILERS if appropriate.</td>\\n</tr>\\n<tr>\\n<td
|
1837
|
+
align=\\\"left\\\"><strong>When in Doubt, Make a Self Post.</strong></td>\\n<td
|
1838
|
+
align=\\\"left\\\">If you are sharing your opinion or asking a question,
|
1839
|
+
do not submit a link to external content. Instead, make it a self-post.</td>\\n</tr>\\n<tr>\\n<td
|
1840
|
+
align=\\\"left\\\"><strong>Circlejerk Topics</strong></td>\\n<td
|
1841
|
+
align=\\\"left\\\"><a href=\\\"http://www.reddit.com/r/movies/comments/yg8ix/new_guidelines_regarding_circlejerk_topics/\\\">Certain
|
1842
|
+
types of redundant submissions regarding popular subjects will be removed.</a></td>\\n</tr>\\n<tr>\\n<td
|
1843
|
+
align=\\\"left\\\"><strong>Play Nice</strong></td>\\n<td
|
1844
|
+
align=\\\"left\\\">Flame wars, racism, &amp; homophobic remarks are
|
1845
|
+
prohibited. May result in an instant ban. The same goes for any discriminatory
|
1846
|
+
language!</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><strong>Misinformation
|
1847
|
+
is Prohibited</strong></td>\\n<td align=\\\"left\\\">Spoof/parody
|
1848
|
+
news isn&#39;t allowed. Misleading submission titles will be removed.
|
1849
|
+
Inaccurate information/poor citations/imdb trivia or wikipedia links will
|
1850
|
+
be removed.</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><strong>Mods
|
1851
|
+
Have the Final Say</strong></td>\\n<td align=\\\"left\\\">If
|
1852
|
+
a post or comment is removed by a moderator, even if it doesn&#39;t seem
|
1853
|
+
to violate any of the other rules, it remains removed. There is an X factor
|
1854
|
+
that we maintain.</td>\\n</tr>\\n</tbody></table>\\n\\n<hr/>\\n\\n<h1>USE
|
1855
|
+
SPOILER TAGS</h1>\\n\\n<p>For leaked info about upcoming movies,
|
1856
|
+
twist endings, or anything else spoileresque, please use the following method:\\n
|
1857
|
+
[](#s &quot;Darth Vader is Yoda&#39;s Father&quot;)</p>\\n</div><!--
|
1858
|
+
SC_ON -->\", \"title\": \"Movie News & Discussion\", \"over18\": false,
|
1859
|
+
\"user_is_moderator\": false, \"header_title\": \"Movies!\", \"description\":
|
1860
|
+
\"######[](/blank)\\n#####[](/blank)\\n#####[](/blank)\\n* **>**\\n *
|
1861
|
+
\ Official Discussion: [Ender's Game](http://redd.it/1pnuw3)\\n * Official
|
1862
|
+
Discussion: [12 Years a Slave](http://redd.it/1posz1)\\n * New Blu-Ray
|
1863
|
+
Releases: [Nov 5](http://redd.it/1pwet9)\\n * [Rules](http://www.reddit.com/r/movies/wiki/index#wiki_rules)\\n
|
1864
|
+
\ * [Movie FAQ](http://www.reddit.com/z7i70)\\n * [Useful Links](http://www.reddit.com/r/movies/wiki/index#wiki_useful_links)\\n\\n\\n----\\n\\n\\n\\n\\n#SUBREDDIT
|
1865
|
+
RULES:\\n\\n*Hover for Details*\\n\\n|||\\n|:------|:---|\\n|**No Ambiguous
|
1866
|
+
Titles**|Don't make a submission that begs us to click on the link, we should
|
1867
|
+
know the subject & content without having to click. Name the movie or
|
1868
|
+
actor. Think twice about using the word \\\"this\\\" without explaining what
|
1869
|
+
it is.|\\n|**No Piracy Discussion**|Do not advertise, promote, post or comment
|
1870
|
+
about illegal filesharing of movies or any other media here. This includes
|
1871
|
+
links to illegally uploaded youtube movies or streaming sites which may result
|
1872
|
+
in a ban.|\\n|**Don't Advertise in the Submission Title**|Keep the website's
|
1873
|
+
name out of the title of the submission|\\n|**Don't Put Reviews in the Title**|Do
|
1874
|
+
not provide your own editorial, a critic's summary, the Rotten Tomatoes score,
|
1875
|
+
or any other opinion regarding a movie in the submission title.|\\n|**Is This
|
1876
|
+
The Best Place for Your Post?**|Did you make, or are you making a short film
|
1877
|
+
or movie? Please submit to /r/filmmakers or /r/kickstarter - Found an image
|
1878
|
+
behind the scenes of a movie? Please submit to /r/pics or /r/moviesinthemaking
|
1879
|
+
- Have a single still frame of something without an interesting story behind
|
1880
|
+
it? Submit to /r/pics - Found a cool alternate poster of a movie you like?
|
1881
|
+
Please submit to /r/movieposterporn.|\\n|**Memes Must Be About Pre-1960 Movies**|Include
|
1882
|
+
the movie title in the submission title, and label SPOILERS if appropriate.|\\n|**When
|
1883
|
+
in Doubt, Make a Self Post.**|If you are sharing your opinion or asking a
|
1884
|
+
question, do not submit a link to external content. Instead, make it a self-post.|\\n|**Circlejerk
|
1885
|
+
Topics**|[Certain types of redundant submissions regarding popular subjects
|
1886
|
+
will be removed.](http://www.reddit.com/r/movies/comments/yg8ix/new_guidelines_regarding_circlejerk_topics/)|\\n|**Play
|
1887
|
+
Nice**|Flame wars, racism, & homophobic remarks are prohibited. May result
|
1888
|
+
in an instant ban. The same goes for any discriminatory language!|\\n|**Misinformation
|
1889
|
+
is Prohibited**|Spoof/parody news isn't allowed. Misleading submission titles
|
1890
|
+
will be removed. Inaccurate information/poor citations/imdb trivia or wikipedia
|
1891
|
+
links will be removed.|\\n|**Mods Have the Final Say**|If a post or comment
|
1892
|
+
is removed by a moderator, even if it doesn't seem to violate any of the other
|
1893
|
+
rules, it remains removed. There is an X factor that we maintain.|\\n\\n\\n----\\n\\n#USE
|
1894
|
+
SPOILER TAGS\\n\\nFor leaked info about upcoming movies, twist endings, or
|
1895
|
+
anything else spoileresque, please use the following method:\\n \\\\[](#s
|
1896
|
+
\\\"Darth Vader is Yoda's Father\\\")\", \"submit_link_label\": null, \"accounts_active\":
|
1897
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
1898
|
+
[55, 63], \"subscribers\": 3499577, \"submit_text_label\": null, \"name\":
|
1899
|
+
\"t5_2qh3s\", \"created\": 1201247550.0, \"url\": \"/r/movies/\", \"created_utc\":
|
1900
|
+
1201243950.0, \"user_is_contributor\": false, \"public_traffic\": true, \"public_description\":
|
1901
|
+
\"News and Discussion about Major Feature Films\", \"comment_score_hide_mins\":
|
1902
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
1903
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
1904
|
+
--><div class=\\\"md\\\"><ul>\\n<li>No images.</li>\\n<li>Fridays
|
1905
|
+
are Self-Post only.</li>\\n<li>If you want to have an AMA, <a
|
1906
|
+
href=\\\"https://www.google.com/calendar/embed?src=862j1mhva8srfdkldcpf3thvv8%40group.calendar.google.com\\\">check
|
1907
|
+
the calender</a> for a free date and <a href=\\\"mailto://raerth@gmail.com\\\">message
|
1908
|
+
the mods</a> to set you up!</li>\\n<li>Have fun.</li>\\n</ul>\\n</div><!--
|
1909
|
+
SC_ON -->\", \"user_is_banned\": false, \"id\": \"2qh1u\", \"submit_text\":
|
1910
|
+
\"* No images.\\n* Fridays are Self-Post only.\\n* If you want to have an
|
1911
|
+
AMA, [check the calender](https://www.google.com/calendar/embed?src=862j1mhva8srfdkldcpf3thvv8%40group.calendar.google.com)
|
1912
|
+
for a free date and [message the mods](mailto://raerth@gmail.com) to set you
|
1913
|
+
up!\\n* Have fun.\", \"spam_selfposts\": \"high\", \"display_name\": \"Music\",
|
1914
|
+
\"header_img\": \"http://b.thumbs.redditmedia.com/UYGDPGmEQqamzWSI.png\",
|
1915
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><blockquote>\\n<p>Menu</p>\\n\\n<ul>\\n<li>Info</li>\\n<li><a
|
1916
|
+
href=\\\"/r/Music/faq#SubmissionRules\\\">Rules</a></li>\\n<li><a
|
1917
|
+
href=\\\"/r/Music/faq#rMusicFAQ\\\">FAQ</a></li>\\n<li><a
|
1918
|
+
href=\\\"/r/Music/faq#MusicSubredditoftheWeek\\\">MSotW</a></li>\\n</ul>\\n\\n<ul>\\n<li>Music
|
1919
|
+
Subreddits</li>\\n<li><a href=\\\"/r/ListenToThis\\\">/r/ListenToThis</a></li>\\n<li><a
|
1920
|
+
href=\\\"/r/WeAreTheMusicMakers\\\">/r/WeAreTheMusicMakers</a></li>\\n<li><a
|
1921
|
+
href=\\\"/r/RadioReddit\\\">/r/RadioReddit</a></li>\\n<li><a
|
1922
|
+
href=\\\"/r/Dubstep\\\">/r/Dubstep</a></li>\\n<li><a
|
1923
|
+
href=\\\"/r/Guitar\\\">/r/Guitar</a></li>\\n<li><a
|
1924
|
+
href=\\\"/r/ElectronicMusic\\\">/r/ElectronicMusic</a></li>\\n<li><a
|
1925
|
+
href=\\\"/r/Metal\\\">/r/Metal</a></li>\\n<li><a href=\\\"/r/HipHopHeads\\\">/r/HipHopHeads</a></li>\\n<li><a
|
1926
|
+
href=\\\"/r/ClassicalMusic\\\">/r/ClassicalMusic</a></li>\\n<li><a
|
1927
|
+
href=\\\"/r/Trance\\\">/r/Trance</a></li>\\n<li><a
|
1928
|
+
href=\\\"/r/DnB\\\">/r/DnB</a></li>\\n<li><a href=\\\"/r/Jazz\\\">/r/Jazz</a></li>\\n<li><a
|
1929
|
+
href=\\\"/r/Mashups\\\">/r/Mashups</a></li>\\n<li><a
|
1930
|
+
href=\\\"/r/MusicNews\\\">/r/MusicNews</a></li>\\n<li><a
|
1931
|
+
href=\\\"/r/composer\\\">/r/composer</a></li>\\n<li><a
|
1932
|
+
href=\\\"/r/Music/wiki/musicsubreddits\\\">Full List of Music Subreddits</a></li>\\n</ul>\\n\\n<ul>\\n<li>Social</li>\\n<li><a
|
1933
|
+
href=\\\"http://webchat.snoonet.org/music\\\">Chatroom</a></li>\\n<li><a
|
1934
|
+
href=\\\"http://last.fm/group/Reddit\\\">Last.fm group</a></li>\\n<li><a
|
1935
|
+
href=\\\"http://twitter.com/redditMusic\\\">Twitter</a></li>\\n</ul>\\n\\n<ul>\\n<li>Listen</li>\\n<li><a
|
1936
|
+
href=\\\"http://www.reddit.tv/#/r/music\\\">reddit.tv</a></li>\\n<li><a
|
1937
|
+
href=\\\"http://radd.it/r/Music?only=music\\\">radd.it</a></li>\\n<li><a
|
1938
|
+
href=\\\"http://radioreddit.com/listen\\\">radio reddit</a></li>\\n<li><a
|
1939
|
+
href=\\\"http://www.redditunes.com/?r=music\\\">redditunes</a></li>\\n<li><a
|
1940
|
+
href=\\\"http://redditplayer.phoenixforgotten.com/?r=music\\\">redditplayer</a></li>\\n<li><a
|
1941
|
+
href=\\\"http://www.scrolldit.com/?r=Music\\\">scrolldit</a></li>\\n<li><a
|
1942
|
+
href=\\\"http://alienstream.com/\\\">alienstream</a></li>\\n</ul>\\n</blockquote>\\n\\n<h3>Announcement:
|
1943
|
+
<a href=\\\"http://www.reddit.com/r/Music/comments/1qb4gs/hi_i_am_benny_blanco_you_have_heard_my_songs_on/\\\">Hi\\u2026
|
1944
|
+
I am Benny Blanco. You have heard my songs on the radio. You probably hate
|
1945
|
+
them. My mom loves them. AMA</a></h3>\\n\\n<hr/>\\n\\n<p><a
|
1946
|
+
href=\\\"/r/Music/faq#0\\\"></a></p>\\n\\n<h4>News</h4>\\n\\n<ul>\\n<li>Want
|
1947
|
+
to discover new music? <a href=\\\"/r/listentothis+listentous+radioreddit+truemusic+under10k+unheardof+futurefunkairlines+soundsvintage+indiewok+futurebeats+republicofmusic+headbangtothis\\\">Click
|
1948
|
+
here</a> </li>\\n<li><a href=\\\"/urt9z\\\">Come join
|
1949
|
+
the official turntable.fm room!</a></li>\\n<li>IRC: Server:
|
1950
|
+
Snoonet.org Channel: #Music <a href=\\\"http://webchat.snoonet.org/music\\\">Web</a></li>\\n</ul>\\n\\n<h4>Upcoming
|
1951
|
+
AMAs</h4>\\n\\n<ul>\\n<li><p><a href=\\\"https://www.google.com/calendar/embed?src=862j1mhva8srfdkldcpf3thvv8%40group.calendar.google.com\\\"><strong>View
|
1952
|
+
AMA Calender</strong></a></p></li>\\n<li><p>10th
|
1953
|
+
Nov - <strong>Benny Blanco</strong></p></li>\\n<li><p>TBC
|
1954
|
+
- <strong>Bootsy Collins</strong></p></li>\\n<li><p>TBC
|
1955
|
+
- <strong>Razor Sharp</strong></p></li>\\n<li><p>TBC
|
1956
|
+
- <strong>Frankie Waddy</strong> </p></li>\\n<li><p>TBC
|
1957
|
+
- <strong>Mudbone Cooper</strong></p></li>\\n<li><p>TBC
|
1958
|
+
- <strong>Jason Newsted</strong></p></li>\\n</ul>\\n\\n<p><strong>To
|
1959
|
+
arrange an AMA <a href=\\\"mailto://raerth@gmail.com\\\">send us an
|
1960
|
+
email.</a></strong></p>\\n\\n<h4>Guidelines</h4>\\n\\n<p><a
|
1961
|
+
href=\\\"/r/Music/wiki\\\"></a> </p>\\n\\n<p><a href=\\\"/r/Music/wiki/index#wiki_submission_rules\\\">/r/Music
|
1962
|
+
Posting Rules</a></p>\\n\\n<ol>\\n<li><p><strong>No
|
1963
|
+
Images</strong><br/>\\nInstead post to <a href=\\\"/r/MusicPics+AlbumArtPorn+InstrumentPorn+BandPorn+MetalMemes+LookWhoIMet+Pics+concertporn\\\">one
|
1964
|
+
of these subreddits</a>. </p></li>\\n<li><p><strong>Fridays
|
1965
|
+
are Self-Post only</strong><br/>\\nSelf-Posts that only contain
|
1966
|
+
a link will be removed. Friday is for interesting discussions, not YouTube
|
1967
|
+
links. </p></li>\\n<li><p><strong>/r/Music
|
1968
|
+
is not American Idol</strong><br/>\\nDo not post your own music
|
1969
|
+
with titles that try and gain upvotes through sympathy. Your music should
|
1970
|
+
stand on its own. If you have an interesting story behind the music, you can
|
1971
|
+
add this in comments or self-post text.</p>\\n\\n<p><strong>Good
|
1972
|
+
Example</strong>: &quot;<em>This is a song I made</em>&quot;<br/>\\n<strong>Bad
|
1973
|
+
Example</strong>: &quot;<em>I am homeless and recorded this
|
1974
|
+
song with my last nickels</em>&quot;<br/>\\n<strong>Good
|
1975
|
+
Example</strong>: &quot;<em>Here is a song I made for a charity</em>&quot;<br/>\\n<strong>Bad
|
1976
|
+
Example</strong>: &quot;<em>Please upvote this song I made
|
1977
|
+
for starving orphans</em>&quot; </p></li>\\n</ol>\\n\\n<hr/>\\n\\n<ul>\\n<li>Made
|
1978
|
+
a tune? Have a band? See <a href=\\\"http://www.reddit.com/r/Music/comments/lsey3/find_subreddits_for_redditormade_music_promote/\\\">here</a>
|
1979
|
+
before posting.</li>\\n<li>Artist - Title [genre] description</li>\\n<li><a
|
1980
|
+
href=\\\"/r/Music/wiki/musicsubreddits\\\">Almighty List of Music subreddits</a></li>\\n<li><a
|
1981
|
+
href=\\\"/help/reddiquette\\\">Reddiquette</a></li>\\n<li>Please
|
1982
|
+
report <em>only</em> <a href=\\\"http://code.reddit.com/wiki/help/faq#Whatconstitutesspam\\\">blatant
|
1983
|
+
advertising</a></li>\\n<li>What is that song ? <a href=\\\"/r/tipofmytongue\\\">/r/tipofmytongue</a></li>\\n</ul>\\n\\n<hr/>\\n\\n<p><a
|
1984
|
+
href=\\\"http://webchat.snoonet.org/?channels=music\\\" title=\\\"IRC channel\\\"></a>\\n<a
|
1985
|
+
href=\\\"http://twitter.com/redditMusic\\\" title=\\\"Top /r/Music links via
|
1986
|
+
twitter\\\"></a>\\n<a href=\\\"http://redditplayer.phoenixforgotten.com/\\\"
|
1987
|
+
title=\\\"Subreddit playlister\\\"></a>\\n<a href=\\\"http://www.reddit.tv/#/r/music\\\"
|
1988
|
+
title=\\\"/r/Music player\\\"></a>\\n<a href=\\\"http://last.fm/group/Reddit\\\"
|
1989
|
+
title=\\\"/r/Music Last.fm group\\\"></a>\\n<a href=\\\"http://last.fm/group/Metal+redditors\\\"
|
1990
|
+
title=\\\"/r/Metal Last.fm group\\\"></a></p>\\n\\n<h4>Friends</h4>\\n\\n<p><a
|
1991
|
+
href=\\\"/r/WeAreTheMusicMakers\\\" title=\\\"Music composition, production
|
1992
|
+
and theory\\\"></a></p>\\n\\n<p><a href=\\\"/r/ListenToThis\\\"
|
1993
|
+
title=\\\"Bringing the often unheard and neglected to new ears.\\\"></a></p>\\n\\n<p><a
|
1994
|
+
href=\\\"/r/RadioReddit\\\" title=\\\"Original music by redditors\\\"></a></p>\\n\\n<table><thead>\\n<tr>\\n<th
|
1995
|
+
align=\\\"left\\\">Popular</th>\\n<th align=\\\"center\\\">music</th>\\n<th
|
1996
|
+
align=\\\"right\\\">subreddits</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
1997
|
+
align=\\\"left\\\"><a href=\\\"/r/dubstep\\\">Dubstep</a></td>\\n<td
|
1998
|
+
align=\\\"center\\\"><a href=\\\"/r/Guitar\\\">Guitar</a></td>\\n<td
|
1999
|
+
align=\\\"right\\\"><a href=\\\"/r/electronicmusic\\\">Electronic</a></td>\\n</tr>\\n<tr>\\n<td
|
2000
|
+
align=\\\"left\\\"><a href=\\\"/r/Metal\\\">Metal</a></td>\\n<td
|
2001
|
+
align=\\\"center\\\"><a href=\\\"/r/hiphopheads\\\">HipHopHeads</a></td>\\n<td
|
2002
|
+
align=\\\"right\\\"><a href=\\\"/r/Classicalmusic\\\">Classical</a></td>\\n</tr>\\n<tr>\\n<td
|
2003
|
+
align=\\\"left\\\"><a href=\\\"/r/trance\\\">Trance</a></td>\\n<td
|
2004
|
+
align=\\\"center\\\"><a href=\\\"/r/dnb\\\">DnB</a></td>\\n<td
|
2005
|
+
align=\\\"right\\\"><a href=\\\"/r/jazz\\\">Jazz</a></td>\\n</tr>\\n<tr>\\n<td
|
2006
|
+
align=\\\"left\\\"><a href=\\\"/r/mashups\\\">Mashups</a></td>\\n<td
|
2007
|
+
align=\\\"center\\\"><a href=\\\"/r/vinyl\\\">Vinyl</a></td>\\n<td
|
2008
|
+
align=\\\"right\\\"><a href=\\\"/r/musictheory\\\">Music Theory</a></td>\\n</tr>\\n<tr>\\n<td
|
2009
|
+
align=\\\"left\\\"><a href=\\\"/r/ifyoulikeblank\\\">IfYouLikeBlank</a></td>\\n<td
|
2010
|
+
align=\\\"center\\\"><a href=\\\"/r/radiohead\\\">Radiohead</a></td>\\n<td
|
2011
|
+
align=\\\"right\\\"><a href=\\\"/r/electrohouse\\\">ElectroHouse</a></td>\\n</tr>\\n<tr>\\n<td
|
2012
|
+
align=\\\"left\\\"><a href=\\\"/r/groovesharkPlaylists\\\">GrooveShark</a></td>\\n<td
|
2013
|
+
align=\\\"center\\\"><a href=\\\"/r/gamemusic\\\">Game Music</a></td>\\n<td
|
2014
|
+
align=\\\"right\\\"><a href=\\\"/r/learnmusic\\\">Learn Music</a></td>\\n</tr>\\n<tr>\\n<td
|
2015
|
+
align=\\\"left\\\"><a href=\\\"/r/guitarlessons\\\">GuitarLessons</a></td>\\n<td
|
2016
|
+
align=\\\"center\\\"><a href=\\\"/r/punk\\\">Punk</a></td>\\n<td
|
2017
|
+
align=\\\"right\\\"><a href=\\\"/r/treemusic\\\">Tree Music</a></td>\\n</tr>\\n<tr>\\n<td
|
2018
|
+
align=\\\"left\\\"><a href=\\\"/r/coversongs\\\">Cover Songs</a></td>\\n<td
|
2019
|
+
align=\\\"center\\\"><a href=\\\"/r/Bass\\\">Bass</a></td>\\n<td
|
2020
|
+
align=\\\"right\\\"><a href=\\\"/r/Music/wiki/musicsubreddits\\\"><strong>EVEN
|
2021
|
+
MORE!</strong></a></td>\\n</tr>\\n</tbody></table>\\n</div><!--
|
2022
|
+
SC_ON -->\", \"title\": \"Music\", \"over18\": false, \"user_is_moderator\":
|
2023
|
+
false, \"header_title\": \"/r/Music - the same YouTube links every day!\",
|
2024
|
+
\"description\": \">Menu\\n\\n>* Info\\n* [Rules](/r/Music/faq#SubmissionRules)\\n*
|
2025
|
+
[FAQ](/r/Music/faq#rMusicFAQ)\\n* [MSotW](/r/Music/faq#MusicSubredditoftheWeek)\\n\\n>#\\n\\n>*
|
2026
|
+
Music Subreddits\\n* /r/ListenToThis\\n* /r/WeAreTheMusicMakers\\n* /r/RadioReddit\\n*
|
2027
|
+
/r/Dubstep\\n* /r/Guitar\\n* /r/ElectronicMusic\\n* /r/Metal\\n* /r/HipHopHeads\\n*
|
2028
|
+
/r/ClassicalMusic\\n* /r/Trance\\n* /r/DnB\\n* /r/Jazz\\n* /r/Mashups\\n*
|
2029
|
+
/r/MusicNews\\n* /r/composer\\n* [Full List of Music Subreddits](/r/Music/wiki/musicsubreddits)\\n\\n>#\\n\\n>*
|
2030
|
+
Social\\n* [Chatroom](http://webchat.snoonet.org/music)\\n* [Last.fm group](http://last.fm/group/Reddit)\\n*
|
2031
|
+
[Twitter](http://twitter.com/redditMusic)\\n\\n>#\\n\\n>* Listen\\n*
|
2032
|
+
[reddit.tv](http://www.reddit.tv/#/r/music)\\n* [radd.it](http://radd.it/r/Music?only=music)\\n*
|
2033
|
+
[radio reddit](http://radioreddit.com/listen)\\n* [redditunes](http://www.redditunes.com/?r=music)\\n*
|
2034
|
+
[redditplayer](http://redditplayer.phoenixforgotten.com/?r=music)\\n* [scrolldit](http://www.scrolldit.com/?r=Music)\\n*
|
2035
|
+
[alienstream](http://alienstream.com/)\\n\\n###Announcement: [Hi\\u2026 I
|
2036
|
+
am Benny Blanco. You have heard my songs on the radio. You probably hate them.
|
2037
|
+
My mom loves them. AMA](http://www.reddit.com/r/Music/comments/1qb4gs/hi_i_am_benny_blanco_you_have_heard_my_songs_on/)\\n\\n***\\n\\n[](/r/Music/faq#0)\\n\\n####News\\n\\n*
|
2038
|
+
Want to discover new music? [Click here](/r/listentothis+listentous+radioreddit+truemusic+under10k+unheardof+futurefunkairlines+soundsvintage+indiewok+futurebeats+republicofmusic+headbangtothis)
|
2039
|
+
\\n* [Come join the official turntable.fm room!](/urt9z)\\n* IRC: Server:
|
2040
|
+
Snoonet.org Channel: #Music [Web](http://webchat.snoonet.org/music)\\n\\n####Upcoming
|
2041
|
+
AMAs\\n\\n* [**View AMA Calender**](https://www.google.com/calendar/embed?src=862j1mhva8srfdkldcpf3thvv8%40group.calendar.google.com)\\n
|
2042
|
+
\ \\n* 10th Nov - **Benny Blanco**\\n* TBC - **Bootsy Collins**\\n* TBC
|
2043
|
+
- **Razor Sharp**\\n* TBC - **Frankie Waddy** \\n* TBC - **Mudbone Cooper**\\n*
|
2044
|
+
TBC - **Jason Newsted**\\n\\n**To arrange an AMA [send us an email.](mailto://raerth@gmail.com)**\\n\\n####Guidelines\\n\\n[](/r/Music/wiki)
|
2045
|
+
\\n\\n[/r/Music Posting Rules](/r/Music/wiki/index#wiki_submission_rules)\\n\\n1.
|
2046
|
+
**No Images** \\n Instead post to [one of these subreddits](/r/MusicPics+AlbumArtPorn+InstrumentPorn+BandPorn+MetalMemes+LookWhoIMet+Pics+concertporn).
|
2047
|
+
\ \\n\\n2. **Fridays are Self-Post only** \\n Self-Posts that only
|
2048
|
+
contain a link will be removed. Friday is for interesting discussions, not
|
2049
|
+
YouTube links. \\n\\n3. **\\\\/r/Music is not American Idol** \\n Do
|
2050
|
+
not post your own music with titles that try and gain upvotes through sympathy.
|
2051
|
+
Your music should stand on its own. If you have an interesting story behind
|
2052
|
+
the music, you can add this in comments or self-post text.\\n\\n **Good
|
2053
|
+
Example**: \\\"*This is a song I made*\\\" \\n **Bad Example**: \\\"*I
|
2054
|
+
am homeless and recorded this song with my last nickels*\\\" \\n **Good
|
2055
|
+
Example**: \\\"*Here is a song I made for a charity*\\\" \\n **Bad Example**:
|
2056
|
+
\\\"*Please upvote this song I made for starving orphans*\\\" \\n\\n***\\n*
|
2057
|
+
Made a tune? Have a band? See [here](http://www.reddit.com/r/Music/comments/lsey3/find_subreddits_for_redditormade_music_promote/)
|
2058
|
+
before posting.\\n* Artist - Title [genre] description\\n* [Almighty List
|
2059
|
+
of Music subreddits](/r/Music/wiki/musicsubreddits)\\n* [Reddiquette](/help/reddiquette)\\n*
|
2060
|
+
Please report *only* [blatant advertising](http://code.reddit.com/wiki/help/faq#Whatconstitutesspam)\\n*
|
2061
|
+
What is that song ? [/r/tipofmytongue](/r/tipofmytongue)\\n\\n***\\n\\n[](http://webchat.snoonet.org/?channels=music
|
2062
|
+
\\\"IRC channel\\\")\\n[](http://twitter.com/redditMusic \\\"Top /r/Music
|
2063
|
+
links via twitter\\\")\\n[](http://redditplayer.phoenixforgotten.com/ \\\"Subreddit
|
2064
|
+
playlister\\\")\\n[](http://www.reddit.tv/#/r/music \\\"/r/Music player\\\")\\n[](http://last.fm/group/Reddit
|
2065
|
+
\\\"/r/Music Last.fm group\\\")\\n[](http://last.fm/group/Metal+redditors
|
2066
|
+
\\\"/r/Metal Last.fm group\\\")\\n\\n\\n####Friends\\n\\n[](/r/WeAreTheMusicMakers
|
2067
|
+
\\\"Music composition, production and theory\\\")\\n\\n[](/r/ListenToThis
|
2068
|
+
\\\"Bringing the often unheard and neglected to new ears.\\\")\\n\\n[](/r/RadioReddit
|
2069
|
+
\\\"Original music by redditors\\\")\\n\\nPopular | music | subreddits\\n:--|:--:|--:\\n[Dubstep](/r/dubstep)|[Guitar](/r/Guitar)|[Electronic](/r/electronicmusic)\\n[Metal](/r/Metal)|[HipHopHeads](/r/hiphopheads)|[Classical](/r/Classicalmusic)\\n[Trance](/r/trance)|[DnB](/r/dnb)|[Jazz](/r/jazz)\\n[Mashups](/r/mashups)|[Vinyl](/r/vinyl)|[Music
|
2070
|
+
Theory](/r/musictheory)\\n[IfYouLikeBlank](/r/ifyoulikeblank)|[Radiohead](/r/radiohead)|[ElectroHouse](/r/electrohouse)\\n[GrooveShark](/r/groovesharkPlaylists)|[Game
|
2071
|
+
Music](/r/gamemusic)|[Learn Music](/r/learnmusic)\\n[GuitarLessons](/r/guitarlessons)|[Punk](/r/punk)|[Tree
|
2072
|
+
Music](/r/treemusic)\\n[Cover Songs](/r/coversongs)|[Bass](/r/Bass)|[**EVEN
|
2073
|
+
MORE!**](/r/Music/wiki/musicsubreddits)\", \"submit_link_label\": null, \"accounts_active\":
|
2074
|
+
null, \"spam_comments\": \"high\", \"spam_links\": \"high\", \"header_size\":
|
2075
|
+
[120, 40], \"subscribers\": 3408198, \"submit_text_label\": null, \"name\":
|
2076
|
+
\"t5_2qh1u\", \"created\": 1201235432.0, \"url\": \"/r/Music/\", \"created_utc\":
|
2077
|
+
1201235432.0, \"user_is_contributor\": false, \"public_traffic\": false, \"public_description\":
|
2078
|
+
\"The musical community of reddit.\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
2079
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": true}},
|
2080
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
2081
|
+
false, \"id\": \"2qh1o\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
2082
|
+
\"display_name\": \"aww\", \"header_img\": \"http://f.thumbs.redditmedia.com/9sVTq84v-16n0MBM.png\",
|
2083
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Things
|
2084
|
+
that make you go AWW! -- like puppies, and bunnies, and so on...</p>\\n\\n<p>Feel
|
2085
|
+
free to post pictures, videos and stories of cute things.</p>\\n\\n<h1>Rules</h1>\\n\\n<ol>\\n<li><p>No
|
2086
|
+
&quot;sad&quot; content, <em>such as pics of animals that have
|
2087
|
+
passed away (try <a href=\\\"/r/petloss\\\">/r/petloss</a>) or
|
2088
|
+
sob stories (e.g. found him in a dumpster).</em></p></li>\\n<li><p>No
|
2089
|
+
comics or captioned pictures <em>(try <a href=\\\"/r/lolcats\\\">/r/lolcats</a>).</em></p></li>\\n<li><p>No
|
2090
|
+
slurs or harassing comments.</p></li>\\n<li><p>No
|
2091
|
+
content linking to personal social sites <em>(Facebook, Twitter, etc.)</em></p></li>\\n<li><p>No
|
2092
|
+
NSFW content.</p></li>\\n<li><p>No posts asking for
|
2093
|
+
donations, sponsorship or adoptions <em>(try <a href=\\\"/r/care\\\">/r/care</a>
|
2094
|
+
or <a href=\\\"/r/assistance\\\">/r/assistance</a>).</em></p></li>\\n<li><p>No
|
2095
|
+
post titles asking for upvotes or approval, <em>such as &quot;any
|
2096
|
+
love for...&quot;, &quot;what does <a href=\\\"/r/aww\\\">/r/aww</a>
|
2097
|
+
think of...&quot;, or &quot;this didn&#39;t get much love on...&quot;,
|
2098
|
+
or &quot;karma machine&quot;.</em></p></li>\\n<li><p>No
|
2099
|
+
comments or posts from bots.</p></li>\\n</ol>\\n\\n<p>We
|
2100
|
+
also ask that you abide by the <a href=\\\"http://www.reddit.com/help/reddiquette\\\">Reddiquette</a>,
|
2101
|
+
and that you post original content whenever possible or attribute original
|
2102
|
+
content creators.</p>\\n\\n<h1>Related reddits</h1>\\n\\n<ul>\\n<li><a
|
2103
|
+
href=\\\"/r/AdorableArt\\\">Adorable Art</a></li>\\n<li><a
|
2104
|
+
href=\\\"/r/animalgifs\\\">Animal Gifs</a></li>\\n<li><a
|
2105
|
+
href=\\\"/r/animalsbeingderps\\\">Animals Being Derps</a></li>\\n<li><a
|
2106
|
+
href=\\\"/r/aww_gifs\\\">Aww Gifs</a></li>\\n<li><a
|
2107
|
+
href=\\\"/r/awwducational\\\">Awwducational</a></li>\\n<li><a
|
2108
|
+
href=\\\"/r/awwnverts\\\">Awwnverts</a></li>\\n<li><a
|
2109
|
+
href=\\\"/r/birdpics\\\">Bird Pics</a></li>\\n<li><a
|
2110
|
+
href=\\\"/r/CaptiveWildlife\\\">Captive Wildlife</a></li>\\n<li><a
|
2111
|
+
href=\\\"/r/cats\\\">Cats</a></li>\\n<li><a href=\\\"/r/catpictures\\\">Cat
|
2112
|
+
Pictures</a></li>\\n<li><a href=\\\"/r/catvideos\\\">Cat
|
2113
|
+
Videos</a></li>\\n<li><a href=\\\"/r/cute\\\">Cute</a></li>\\n<li><a
|
2114
|
+
href=\\\"/r/cutekids\\\">Cute Kids</a></li>\\n<li><a
|
2115
|
+
href=\\\"/r/dogpictures\\\">Dog Pictures</a></li>\\n<li><a
|
2116
|
+
href=\\\"/r/dogswearinghats\\\">Dogs Wearing Hats</a></li>\\n<li><a
|
2117
|
+
href=\\\"/r/foxes\\\">Foxes</a></li>\\n<li><a href=\\\"/r/guineapigs\\\">Guinea
|
2118
|
+
Pigs</a></li>\\n<li><a href=\\\"/r/gentlemanimals\\\">Gentle
|
2119
|
+
Animals</a></li>\\n<li><a href=\\\"/r/hardcoreaww\\\">Hardcore
|
2120
|
+
Aww</a></li>\\n<li><a href=\\\"/r/photoshawwp\\\">Photoshawwp</a></li>\\n<li><a
|
2121
|
+
href=\\\"http://www.reddit.com/r/AnimalReddits/wiki/faq\\\">Reddit&#39;s
|
2122
|
+
Animal Kingdom</a></li>\\n<li><a href=\\\"/r/redpandas\\\">Red
|
2123
|
+
Pandas</a></li>\\n<li><a href=\\\"/r/sloths\\\">Sloths</a></li>\\n<li>
|
2124
|
+
<a href=\\\"/r/upliftingnews\\\">UpliftingNews</a></li>\\n<li>
|
2125
|
+
<a href=\\\"/r/Koalas\\\">Koalas</a></li>\\n<li> <a
|
2126
|
+
href=\\\"/r/LGBTaww\\\">LGBTaww</a></li>\\n<li> <a
|
2127
|
+
href=\\\"/r/delightfullychubby\\\">Delightfully Chubby</a></li>\\n<li>
|
2128
|
+
<a href=\\\"/r/rabbits\\\">Rabbits</a></li>\\n<li>
|
2129
|
+
<a href=\\\"/r/parrots\\\">Parrots</a></li>\\n<li>
|
2130
|
+
<a href=\\\"/r/animalfashionadvice\\\">Pets in Clothes</a></li>\\n<li>
|
2131
|
+
<a href=\\\"/r/puppies\\\">Puppies</a></li>\\n</ul>\\n\\n<hr/>\\n\\n<p>Please
|
2132
|
+
<a href=\\\"http://www.petsmartcharities.org/spay-neuter/locator/\\\">spay
|
2133
|
+
and neuter</a> your animals! While your newborn animals are cute, failing
|
2134
|
+
to do this allows your little darlings to add to the population of homeless
|
2135
|
+
pets. Adopt pets from your <a href=\\\"http://adopt.pschar.org/\\\">local
|
2136
|
+
animal rescues</a>, there are plenty of animals just waiting for a home.</p>\\n</div><!--
|
2137
|
+
SC_ON -->\", \"title\": \"The cutest things on the internet!\", \"over18\":
|
2138
|
+
false, \"user_is_moderator\": false, \"header_title\": \"Logo inspired by
|
2139
|
+
/u/HerpDeDerpy\", \"description\": \"Things that make you go AWW! -- like
|
2140
|
+
puppies, and bunnies, and so on...\\n\\nFeel free to post pictures, videos
|
2141
|
+
and stories of cute things.\\n\\n# Rules\\n\\n1. No \\\"sad\\\" content, *such
|
2142
|
+
as pics of animals that have passed away (try /r/petloss) or sob stories (e.g.
|
2143
|
+
found him in a dumpster).*\\n\\n1. No comics or captioned pictures *(try /r/lolcats).*\\n\\n1.
|
2144
|
+
No slurs or harassing comments.\\n\\n1. No content linking to personal social
|
2145
|
+
sites *(Facebook, Twitter, etc.)*\\n\\n1. No NSFW content.\\n\\n1. No posts
|
2146
|
+
asking for donations, sponsorship or adoptions *(try /r/care or /r/assistance).*\\n\\n1.
|
2147
|
+
No post titles asking for upvotes or approval, *such as \\\"any love for...\\\",
|
2148
|
+
\\\"what does /r/aww think of...\\\", or \\\"this didn't get much love on...\\\",
|
2149
|
+
or \\\"karma machine\\\".*\\n\\n1. No comments or posts from bots.\\n\\nWe
|
2150
|
+
also ask that you abide by the [Reddiquette](http://www.reddit.com/help/reddiquette),
|
2151
|
+
and that you post original content whenever possible or attribute original
|
2152
|
+
content creators.\\n\\n\\n#Related reddits\\n\\n* [Adorable Art](/r/AdorableArt)\\n*
|
2153
|
+
[Animal Gifs](/r/animalgifs)\\n* [Animals Being Derps](/r/animalsbeingderps)\\n*
|
2154
|
+
[Aww Gifs](/r/aww_gifs)\\n* [Awwducational](/r/awwducational)\\n* [Awwnverts](/r/awwnverts)\\n*
|
2155
|
+
[Bird Pics](/r/birdpics)\\n* [Captive Wildlife](/r/CaptiveWildlife)\\n* [Cats](/r/cats)\\n*
|
2156
|
+
[Cat Pictures](/r/catpictures)\\n* [Cat Videos](/r/catvideos)\\n* [Cute](/r/cute)\\n*
|
2157
|
+
[Cute Kids](/r/cutekids)\\n* [Dog Pictures](/r/dogpictures)\\n* [Dogs Wearing
|
2158
|
+
Hats](/r/dogswearinghats)\\n* [Foxes](/r/foxes)\\n* [Guinea Pigs](/r/guineapigs)\\n*
|
2159
|
+
[Gentle Animals](/r/gentlemanimals)\\n* [Hardcore Aww] (/r/hardcoreaww)\\n*
|
2160
|
+
[Photoshawwp](/r/photoshawwp)\\n* [Reddit's Animal Kingdom](http://www.reddit.com/r/AnimalReddits/wiki/faq)\\n*
|
2161
|
+
[Red Pandas](/r/redpandas)\\n* [Sloths](/r/sloths)\\n* [UpliftingNews](/r/upliftingnews)\\n*
|
2162
|
+
\ [Koalas](/r/Koalas)\\n* [LGBTaww](/r/LGBTaww)\\n* [Delightfully Chubby](/r/delightfullychubby)\\n*
|
2163
|
+
\ [Rabbits](/r/rabbits)\\n* [Parrots](/r/parrots)\\n* [Pets in Clothes](/r/animalfashionadvice)\\n*
|
2164
|
+
\ [Puppies](/r/puppies)\\n\\n---\\n\\nPlease [spay and neuter](http://www.petsmartcharities.org/spay-neuter/locator/)
|
2165
|
+
your animals! While your newborn animals are cute, failing to do this allows
|
2166
|
+
your little darlings to add to the population of homeless pets. Adopt pets
|
2167
|
+
from your [local animal rescues](http://adopt.pschar.org/), there are plenty
|
2168
|
+
of animals just waiting for a home.\\n\\n \", \"submit_link_label\": null,
|
2169
|
+
\"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"high\",
|
2170
|
+
\"header_size\": [299, 100], \"subscribers\": 3301026, \"submit_text_label\":
|
2171
|
+
null, \"name\": \"t5_2qh1o\", \"created\": 1201237622.0, \"url\": \"/r/aww/\",
|
2172
|
+
\"created_utc\": 1201234022.0, \"user_is_contributor\": false, \"public_traffic\":
|
2173
|
+
false, \"public_description\": \"Things that make you go AWW! Like puppies.
|
2174
|
+
And bunnies... and so on...\\n\\nA place for really cute pictures, videos
|
2175
|
+
and stories!\", \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\",
|
2176
|
+
\"submission_type\": \"any\", \"user_is_subscriber\": true}}, {\"kind\": \"t5\",
|
2177
|
+
\"data\": {\"submit_text_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Check
|
2178
|
+
the rules before submitting a macro:</p>\\n\\n<ul>\\n<li><p>No
|
2179
|
+
reposts.</p></li>\\n<li><p>Two line setup (&quot;I
|
2180
|
+
should buy a boat&quot; meme &amp; Gandalf meme excluded from the
|
2181
|
+
two-line setup).</p></li>\\n<li><p>No <a href=\\\"/r/verticals\\\">verticals</a>
|
2182
|
+
nor <a href=\\\"http://www.reddit.com/r/batmanslap\\\">batman slapping
|
2183
|
+
comics</a>. Adviceanimals in a vertical are OK.</p></li>\\n<li><p>Don&#39;t
|
2184
|
+
post photos of <a href=\\\"/r/reallife\\\">memes in the real life</a>.</p></li>\\n<li><p>Don&#39;t
|
2185
|
+
make memes with pics of people you know IRL. Ever.</p></li>\\n<li><p>No
|
2186
|
+
hate speech.</p></li>\\n<li><p>No witch-hunting.</p></li>\\n<li><p>Link
|
2187
|
+
directly to your image.</p></li>\\n</ul>\\n</div><!--
|
2188
|
+
SC_ON -->\", \"user_is_banned\": false, \"id\": \"2s7tt\", \"submit_text\":
|
2189
|
+
\"Check the rules before submitting a macro:\\n\\n* No reposts.\\n\\n* Two
|
2190
|
+
line setup (\\\"I should buy a boat\\\" meme & Gandalf meme excluded from
|
2191
|
+
the two-line setup).\\n\\n* No [verticals](/r/verticals) nor [batman slapping
|
2192
|
+
comics](http://www.reddit.com/r/batmanslap). Adviceanimals in a vertical are
|
2193
|
+
OK.\\n\\n* Don't post photos of [memes in the real life](/r/reallife).\\n\\n*
|
2194
|
+
Don't make memes with pics of people you know IRL. Ever.\\n\\n* No hate speech.\\n\\n*
|
2195
|
+
No witch-hunting.\\n\\n* Link directly to your image.\", \"spam_selfposts\":
|
2196
|
+
\"high\", \"display_name\": \"AdviceAnimals\", \"header_img\": \"http://d.thumbs.redditmedia.com/yW2eEBXcwAJbz-_E.png\",
|
2197
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><blockquote>\\n<p><a
|
2198
|
+
href=\\\"http://np.reddit.com/r/AdviceAnimals/comments/1pp7kb/i_couldnt_believe_what_i_was_hearing/cd4p5jy\\\">Congratulations
|
2199
|
+
to /u/lostarchitect, Gild of the Week runner up!</a></p>\\n</blockquote>\\n\\n<hr/>\\n\\n<blockquote>\\n<h1>Welcome
|
2200
|
+
to r/AdviceAnimals</h1>\\n\\n<h4>Sound advice from <del>animals</del>
|
2201
|
+
anything!</h4>\\n</blockquote>\\n\\n<hr/>\\n\\n<blockquote>\\n<h1><a
|
2202
|
+
href=\\\"#aliens\\\"></a><a href=\\\"#Rules\\\">Rules</a>
|
2203
|
+
<a href=\\\"#aliens\\\"></a></h1>\\n\\n<ul>\\n<li><p>We&#39;re
|
2204
|
+
here to have a laugh, don&#39;t get too serious.</p></li>\\n<li><p>Follow
|
2205
|
+
the general Advice Animal format. Two line setup or a pinwheel background.</p></li>\\n<li><p>Don&#39;t
|
2206
|
+
repost.</p></li>\\n<li><p>Don&#39;t bitch about
|
2207
|
+
reposts. Report and message the mods.</p></li>\\n<li><p>No
|
2208
|
+
<a href=\\\"/r/vertical\\\">verticals,</a> or <a href=\\\"/r/batmanslap\\\">batman
|
2209
|
+
slapping comics.</a> At all. Adviceanimals in a vertical is OK, <a
|
2210
|
+
href=\\\"http://www.reddit.com/r/AdviceAnimals/comments/17kg18/my_husband_last_night_good_guy_bad_luck_scumbag/\\\">example</a>.
|
2211
|
+
</p></li>\\n<li><p>No posting <a href=\\\"/r/MemesIRL\\\">memes
|
2212
|
+
you saw in real life.</a></p></li>\\n<li><p><a
|
2213
|
+
href=\\\"http://www.reddit.com/r/AdviceAnimals/comments/1gvnk4/quickmeme_is_banned_redditwide_more_inside/\\\">No
|
2214
|
+
Quickmeme</a> or memegenerator.</p></li>\\n<li><p>Don&#39;t
|
2215
|
+
make memes with pics of people that you know in real life. Ever. </p></li>\\n<li><p><strong><em>Use
|
2216
|
+
your manners. Death threats, insults, hate speech and telling others to kill
|
2217
|
+
themselves may result in a ban.</em></strong></p></li>\\n<li><p>No
|
2218
|
+
witch-hunting.</p></li>\\n<li><p>Shortened links,
|
2219
|
+
Facebook, Tumblr, Blogspot, etc, will be automatically removed.</p></li>\\n<li><p>Link
|
2220
|
+
directly to your image. </p></li>\\n<li><p><sup>We</sup>
|
2221
|
+
<sup>reserve</sup> <sup>the</sup> <sup>right</sup>
|
2222
|
+
<sup>to</sup> <sup>remove</sup> <sup>posts,</sup>
|
2223
|
+
<sup>remove</sup> <sup>comments,</sup> <sup>and</sup>
|
2224
|
+
<sup>ban</sup> <sup>users</sup> <sup>at</sup>
|
2225
|
+
<sup>our</sup> <sup>own</sup> <sup>discretion.</sup></p></li>\\n</ul>\\n</blockquote>\\n\\n<hr/>\\n\\n<blockquote>\\n<h1><a
|
2226
|
+
href=\\\"#businesscat\\\"></a> <a href=\\\"#Makingmemes\\\"><strong>Making
|
2227
|
+
Memes</strong></a> <a href=\\\"#businesscat\\\"></a></h1>\\n\\n<h2>Visit:</h2>\\n\\n<ul>\\n<li><p><a
|
2228
|
+
href=\\\"http://imgur.com/memegen\\\">Memegur</a></p></li>\\n<li><p><a
|
2229
|
+
href=\\\"http://makeameme.org/create\\\">MakeAMeme</a></p></li>\\n<li><p><a
|
2230
|
+
href=\\\"http://memedad.com\\\">Memedad</a> </p></li>\\n<li><p><a
|
2231
|
+
href=\\\"http://goo.gl/LKpyc\\\">MemeCaptain</a> </p></li>\\n<li><p><a
|
2232
|
+
href=\\\"http://goo.gl/KdFFv\\\">LiveMeme</a></p></li>\\n<li><p><a
|
2233
|
+
href=\\\"http://goo.gl/HIQzh\\\">MemeGen</a></p></li>\\n<li><p><a
|
2234
|
+
href=\\\"http://dropmeme.com/\\\">DropMeme</a></p></li>\\n<li><p><a
|
2235
|
+
href=\\\"http://memesnap.com/\\\">MemeSnap</a></p></li>\\n<li><p><a
|
2236
|
+
href=\\\"http://goo.gl/FFP6A\\\">Trollme</a></p></li>\\n<li><p><a
|
2237
|
+
href=\\\"http://goo.gl/rzJUU\\\">Diylol</a></p></li>\\n<li><p><a
|
2238
|
+
href=\\\"http://goo.gl/zGQvP\\\">isMEME</a></p></li>\\n<li><p><a
|
2239
|
+
href=\\\"http://www.wuzu.se/\\\">Wuzu</a></p></li>\\n<li><p><a
|
2240
|
+
href=\\\"http://goo.gl/1Pilt\\\">WeKnowMemes</a></p></li>\\n<li><p><a
|
2241
|
+
href=\\\"http://goo.gl/1QUaO\\\">MemeCreator</a></p></li>\\n<li><p><a
|
2242
|
+
href=\\\"http://goo.gl/mTzTp\\\">RateMyMeme</a></p></li>\\n<li><p><a
|
2243
|
+
href=\\\"http://www.winmeme.com\\\">WinMeme</a></p></li>\\n<li><p><a
|
2244
|
+
href=\\\"http://www.pressit.co\\\">PressIt</a></p></li>\\n<li><p><a
|
2245
|
+
href=\\\"http://memesly.com/\\\">Memesly</a></p></li>\\n<li><p><a
|
2246
|
+
href=\\\"http://imgflip.com/\\\">ImgFlip</a></p></li>\\n<li><p><a
|
2247
|
+
href=\\\"http://minimemes.net\\\">MiniMemes</a></p></li>\\n<li><p><a
|
2248
|
+
href=\\\"http://memecloud.net\\\">MemeCloud</a></p></li>\\n</ul>\\n\\n<h2>or
|
2249
|
+
use</h2>\\n\\n<ul>\\n<li><p><a href=\\\"http://goo.gl/OIZ8b\\\">Iomeme
|
2250
|
+
- URL based meme generator</a></p></li>\\n<li><p><a
|
2251
|
+
href=\\\"http://goo.gl/u7vy3\\\">Free iPhone App</a></p></li>\\n<li><p><a
|
2252
|
+
href=\\\"http://goo.gl/4hp2c\\\">Free Android App 1</a></p></li>\\n<li><p><a
|
2253
|
+
href=\\\"http://goo.gl/5KJci\\\">Free Android App 2</a></p></li>\\n<li><p><a
|
2254
|
+
href=\\\"http://goo.gl/E85it\\\">OS X meme generator</a></p></li>\\n<li><p><a
|
2255
|
+
href=\\\"http://goo.gl/Dquj4\\\">Picfoolery - Free iPhone App</a></p></li>\\n<li><p><a
|
2256
|
+
href=\\\"http://redd.it/ejdyv\\\">Advice Animal templates</a></p></li>\\n<li><p>and
|
2257
|
+
upload to <a href=\\\"http://goo.gl/4RLnt\\\">Imgur</a></p></li>\\n</ul>\\n\\n<ol>\\n<li><p>Please
|
2258
|
+
keep the &#39;advice&#39; relevant to the character. Not sure? go
|
2259
|
+
to <a href=\\\"http://goo.gl/aSrck\\\">knowyourmeme.com</a>.</p></li>\\n<li><p>Want
|
2260
|
+
AdviceAnimals in your comments? <a href=\\\"/r/AdviceAnimals/wiki/inline_graphics\\\">here&#39;s
|
2261
|
+
how</a>.</p></li>\\n</ol>\\n</blockquote>\\n\\n<hr/>\\n\\n<blockquote>\\n<h1><a
|
2262
|
+
href=\\\"#ggg\\\" title=\\\"Sees you ask for help. Helps.\\\"></a>
|
2263
|
+
\ <strong>Message the mods</strong> <a href=\\\"#ggg\\\"></a></h1>\\n\\n<ol>\\n<li><p>We
|
2264
|
+
are always happy to help. Please attach a link to the comments of your submission
|
2265
|
+
and a description of the question/problem you are having.</p></li>\\n<li><p>If
|
2266
|
+
you can&#39;t see your submission in the new queue, please double check
|
2267
|
+
that your new queue is ranked by <em><a href=\\\"http://www.reddit.com/r/AdviceAnimals/new/?sort=new\\\">new</a></em>
|
2268
|
+
and not <em>rising</em>. </p></li>\\n<li><p>If
|
2269
|
+
you still think it is in the spam filter, don\\u2019t delete your submission,
|
2270
|
+
message the mods instead. Deleting it will make the spam filter more likely
|
2271
|
+
to filter you next time you post.</p></li>\\n<li><p><a
|
2272
|
+
href=\\\"http://www.reddit.com/message/compose?to=/r/AdviceAnimals\\\">click
|
2273
|
+
here to message the moderators</a></p></li>\\n</ol>\\n</blockquote>\\n\\n<hr/>\\n\\n<blockquote>\\n<h1><a
|
2274
|
+
href=\\\"#stonerdog\\\"></a><strong>You may also enjoy:</strong><a
|
2275
|
+
href=\\\"#stonerdog\\\"></a></h1>\\n\\n<h2>Our Family</h2>\\n\\n<ul>\\n<li><a
|
2276
|
+
href=\\\"/r/gaaaaaaayyyyyyyyyyyy\\\">/r/gaaaaaaayyyyyyyyyyyy</a></li>\\n<li><a
|
2277
|
+
href=\\\"/r/SlothMemes\\\">/r/SlothMemes</a></li>\\n<li><a
|
2278
|
+
href=\\\"/r/DucksAndBears\\\">/r/DucksAndBears</a><br/></li>\\n<li><a
|
2279
|
+
href=\\\"/r/SpideyMeme\\\">/r/SpideyMeme</a></li>\\n<li><a
|
2280
|
+
href=\\\"/r/AnnoyedPicard\\\">/r/AnnoyedPicard</a><br/></li>\\n<li><a
|
2281
|
+
href=\\\"/r/DepressionBear\\\">/r/DepressionBear</a></li>\\n<li><a
|
2282
|
+
href=\\\"/r/ConfessionBear\\\">/r/ConfessionBear</a></li>\\n<li><a
|
2283
|
+
href=\\\"/r/MemesIRL\\\">/r/MemesIRL</a></li>\\n<li><a
|
2284
|
+
href=\\\"/r/RealAdviceAnimals\\\">/r/RealAdviceAnimals</a></li>\\n<li><a
|
2285
|
+
href=\\\"/r/BatmanSlap\\\">/r/BatmanSlap</a></li>\\n<li><a
|
2286
|
+
href=\\\"/r/MetalMemes\\\">/r/MetalMemes</a></li>\\n<li><a
|
2287
|
+
href=\\\"/r/LibertarianMeme\\\">/r/LibertarianMeme</a></li>\\n<li><a
|
2288
|
+
href=\\\"/r/HalfMemes\\\">/r/HalfMemes</a></li>\\n<li><a
|
2289
|
+
href=\\\"/r/Wonka\\\">/r/Wonka</a></li>\\n<li><a href=\\\"/r/TournamentOfMemes\\\">/r/TournamentOfMemes</a></li>\\n<li><a
|
2290
|
+
href=\\\"/r/Vertical\\\">/r/Vertical</a></li>\\n<li><a
|
2291
|
+
href=\\\"/r/AdviceAtheists\\\">/r/AdviceAtheists</a></li>\\n<li><a
|
2292
|
+
href=\\\"/r/AdviceHell\\\">/r/AdviceHell</a></li>\\n<li><a
|
2293
|
+
href=\\\"/r/AdviceAuthoritarians\\\">/r/AdviceAuthoritarians</a></li>\\n<li><a
|
2294
|
+
href=\\\"/r/Stare_Dad\\\">/r/Stare_Dad</a></li>\\n<li><a
|
2295
|
+
href=\\\"/r/TF2Memes\\\">/r/TF2Memes</a></li>\\n<li><a
|
2296
|
+
href=\\\"/r/TVMemes\\\">/r/TVMemes</a></li>\\n<li><a
|
2297
|
+
href=\\\"/r/ADHDMeme\\\">/r/ADHDMeme</a></li>\\n<li><a
|
2298
|
+
href=\\\"/r/Dutchmemes\\\">/r/DutchMemes</a></li>\\n</ul>\\n</blockquote>\\n\\n<hr/>\\n\\n<h3><a
|
2299
|
+
href=\\\"http://www.reddit.com/r/AdviceAnimals/new?sort=new\\\" title=\\\"Good
|
2300
|
+
Guy Gregs check the new queue\\\">Good Guy Gregs check the new queue</a></h3>\\n\\n<hr/>\\n\\n<h4><a
|
2301
|
+
href=\\\"http://www.reddit.com\\\"></a></h4>\\n\\n<h5><a
|
2302
|
+
href=\\\"http://candybox2.net/\\\">Candy?</a></h5>\\n</div><!--
|
2303
|
+
SC_ON -->\", \"title\": \"reddit's gold mine.\", \"over18\": false, \"user_is_moderator\":
|
2304
|
+
false, \"header_title\": \"3 million subscribers. Fetch yeah!\", \"description\":
|
2305
|
+
\"> [Congratulations to /u/lostarchitect, Gild of the Week runner up!](http://np.reddit.com/r/AdviceAnimals/comments/1pp7kb/i_couldnt_believe_what_i_was_hearing/cd4p5jy)\\n\\n\\n****\\n>
|
2306
|
+
Welcome to r/AdviceAnimals\\n> ==== \\n>\\n> ####Sound advice from
|
2307
|
+
~~animals~~ anything!\\n\\n**** \\n\\n> [](#aliens)[Rules] (#Rules)
|
2308
|
+
[](#aliens)\\n> ====\\n> - We're here to have a laugh, don't get too
|
2309
|
+
serious.\\n \\n> - Follow the general Advice Animal format. Two line setup
|
2310
|
+
or a pinwheel background.\\n \\n> - Don't repost.\\n\\n> - Don't bitch
|
2311
|
+
about reposts. Report and message the mods.\\n\\n> - No [verticals,](/r/vertical)
|
2312
|
+
or [batman slapping comics.](/r/batmanslap) At all. Adviceanimals in a vertical
|
2313
|
+
is OK, [example](http://www.reddit.com/r/AdviceAnimals/comments/17kg18/my_husband_last_night_good_guy_bad_luck_scumbag/).
|
2314
|
+
\\n\\n> - No posting [memes you saw in real life.](/r/MemesIRL)\\n\\n>
|
2315
|
+
- [No Quickmeme](http://www.reddit.com/r/AdviceAnimals/comments/1gvnk4/quickmeme_is_banned_redditwide_more_inside/)
|
2316
|
+
or memegenerator.\\n \\n> - Don't make memes with pics of people that
|
2317
|
+
you know in real life. Ever. \\n \\n> - ***Use your manners.
|
2318
|
+
Death threats, insults, hate speech and telling others to kill themselves
|
2319
|
+
may result in a ban.***\\n\\n> - No witch-hunting.\\n \\n> - Shortened
|
2320
|
+
links, Facebook, Tumblr, Blogspot, etc, will be automatically removed.\\n\\n>
|
2321
|
+
- Link directly to your image. \\n\\n> - ^We ^reserve ^the ^right ^to ^remove
|
2322
|
+
^posts, ^remove ^comments, ^and ^ban ^users ^at ^our ^own ^discretion.\\n\\n****
|
2323
|
+
\ \\n\\n> [](#businesscat) [**Making Memes**](#Makingmemes) [](#businesscat)\\n>
|
2324
|
+
=====================\\n> ##Visit:\\n\\n> * [Memegur](http://imgur.com/memegen)\\n\\n>
|
2325
|
+
* [MakeAMeme](http://makeameme.org/create)\\n\\n> * [Memedad](http://memedad.com)
|
2326
|
+
\ \\n \\n> * [MemeCaptain](http://goo.gl/LKpyc) \\n \\n> *
|
2327
|
+
[LiveMeme](http://goo.gl/KdFFv)\\n\\n> * [MemeGen](http://goo.gl/HIQzh)\\n\\n>
|
2328
|
+
* [DropMeme](http://dropmeme.com/)\\n\\n> * [MemeSnap](http://memesnap.com/)\\n
|
2329
|
+
\\n> * [Trollme](http://goo.gl/FFP6A)\\n\\n> * [Diylol](http://goo.gl/rzJUU)\\n\\n>
|
2330
|
+
* [isMEME](http://goo.gl/zGQvP)\\n\\n> * [Wuzu](http://www.wuzu.se/)\\n\\n>
|
2331
|
+
* [WeKnowMemes](http://goo.gl/1Pilt)\\n\\n> * [MemeCreator](http://goo.gl/1QUaO)\\n
|
2332
|
+
\\n> * [RateMyMeme](http://goo.gl/mTzTp)\\n\\n> * [WinMeme](http://www.winmeme.com)\\n\\n>
|
2333
|
+
* [PressIt](http://www.pressit.co)\\n\\n> * [Memesly](http://memesly.com/)\\n\\n>
|
2334
|
+
* [ImgFlip](http://imgflip.com/)\\n\\n> * [MiniMemes](http://minimemes.net)\\n\\n>
|
2335
|
+
* [MemeCloud](http://memecloud.net)\\n \\n> ##or use\\n \\n> * [Iomeme
|
2336
|
+
- URL based meme generator](http://goo.gl/OIZ8b)\\n \\n> * [Free iPhone
|
2337
|
+
App](http://goo.gl/u7vy3)\\n \\n> * [Free Android App 1](http://goo.gl/4hp2c)\\n\\n>
|
2338
|
+
* [Free Android App 2](http://goo.gl/5KJci)\\n\\n> * [OS X meme generator](http://goo.gl/E85it)\\n
|
2339
|
+
\\n> * [Picfoolery - Free iPhone App](http://goo.gl/Dquj4)\\n \\n\\n>
|
2340
|
+
* [Advice Animal templates](http://redd.it/ejdyv)\\n\\n> * and upload to
|
2341
|
+
[Imgur](http://goo.gl/4RLnt)\\n\\n> 1. Please keep the 'advice' relevant
|
2342
|
+
to the character. Not sure? go to [knowyourmeme.com](http://goo.gl/aSrck).\\n\\n>
|
2343
|
+
2. Want AdviceAnimals in your comments? [here's how](/r/AdviceAnimals/wiki/inline_graphics).\\n\\n****
|
2344
|
+
\ \\n\\n> [](#ggg \\\"Sees you ask for help. Helps.\\\") **Message
|
2345
|
+
the mods** [](#ggg)\\n> =====================\\n\\n> 1. We are always
|
2346
|
+
happy to help. Please attach a link to the comments of your submission and
|
2347
|
+
a description of the question/problem you are having.\\n\\n> 2. If you
|
2348
|
+
can't see your submission in the new queue, please double check that your
|
2349
|
+
new queue is ranked by *[new](http://www.reddit.com/r/AdviceAnimals/new/?sort=new)*
|
2350
|
+
and not *rising*. \\n \\n> 3. If you still think it is in the spam
|
2351
|
+
filter, don\\u2019t delete your submission, message the mods instead. Deleting
|
2352
|
+
it will make the spam filter more likely to filter you next time you post.\\n\\n\\n>
|
2353
|
+
4. [click here to message the moderators](http://www.reddit.com/message/compose?to=/r/AdviceAnimals)\\n
|
2354
|
+
\\n**** \\n\\n> [](#stonerdog)**You may also enjoy:**[](#stonerdog)\\n>
|
2355
|
+
=====================\\n \\n> ## Our Family \\n\\n> - [/r/gaaaaaaayyyyyyyyyyyy](/r/gaaaaaaayyyyyyyyyyyy)\\n>
|
2356
|
+
- [/r/SlothMemes](/r/SlothMemes)\\n> - [/r/DucksAndBears](/r/DucksAndBears)
|
2357
|
+
\ \\n> - [/r/SpideyMeme](/r/SpideyMeme)\\n> - [/r/AnnoyedPicard](/r/AnnoyedPicard)
|
2358
|
+
\ \\n> - [/r/DepressionBear](/r/DepressionBear)\\n> - [/r/ConfessionBear](/r/ConfessionBear)\\n>
|
2359
|
+
- [/r/MemesIRL](/r/MemesIRL)\\n> - [/r/RealAdviceAnimals](/r/RealAdviceAnimals)\\n>
|
2360
|
+
- [/r/BatmanSlap](/r/BatmanSlap)\\n> - [/r/MetalMemes](/r/MetalMemes)\\n>
|
2361
|
+
- [/r/LibertarianMeme](/r/LibertarianMeme)\\n> - [/r/HalfMemes](/r/HalfMemes)\\n>
|
2362
|
+
- [/r/Wonka](/r/Wonka)\\n> - [/r/TournamentOfMemes](/r/TournamentOfMemes)\\n>
|
2363
|
+
- [/r/Vertical](/r/Vertical)\\n> - [/r/AdviceAtheists](/r/AdviceAtheists)\\n>
|
2364
|
+
- [/r/AdviceHell](/r/AdviceHell)\\n> - [/r/AdviceAuthoritarians](/r/AdviceAuthoritarians)\\n>
|
2365
|
+
- [/r/Stare_Dad](/r/Stare_Dad)\\n> - [/r/TF2Memes](/r/TF2Memes)\\n>
|
2366
|
+
- [/r/TVMemes](/r/TVMemes)\\n> - [/r/ADHDMeme](/r/ADHDMeme)\\n> - [/r/DutchMemes](/r/Dutchmemes)\\n\\n****
|
2367
|
+
\ \\n\\n###[Good Guy Gregs check the new queue](http://www.reddit.com/r/AdviceAnimals/new?sort=new
|
2368
|
+
\\\"Good Guy Gregs check the new queue\\\")\\n\\n---\\n\\n\\n####[](http://www.reddit.com)\\n\\n\\n#####[Candy?](http://candybox2.net/)\",
|
2369
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
2370
|
+
\"high\", \"spam_links\": \"low\", \"header_size\": [40, 40], \"subscribers\":
|
2371
|
+
3263798, \"submit_text_label\": null, \"name\": \"t5_2s7tt\", \"created\":
|
2372
|
+
1291745603.0, \"url\": \"/r/AdviceAnimals/\", \"created_utc\": 1291742003.0,
|
2373
|
+
\"user_is_contributor\": false, \"public_traffic\": false, \"public_description\":
|
2374
|
+
\"Sound advice, from animals.\\n\\nThe place for all your meme-ing needs.\",
|
2375
|
+
\"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
|
2376
|
+
\"link\", \"user_is_subscriber\": true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
2377
|
+
null, \"user_is_banned\": false, \"id\": \"2qh3l\", \"submit_text\": \"\",
|
2378
|
+
\"spam_selfposts\": \"high\", \"display_name\": \"news\", \"header_img\":
|
2379
|
+
\"http://thumbs.reddit.com/t5_2qh3l.png?v=6ba076b489507a56decbcd0fc416636b\",
|
2380
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><blockquote>\\n<ul>\\n<li><strong><a
|
2381
|
+
href=\\\"/r/inthenews?hl\\\">/r/inthenews</a></strong></li>\\n</ul>\\n\\n<ul>\\n<li><strong><a
|
2382
|
+
href=\\\"/r/worldnews?hl\\\">/r/worldnews</a></strong></li>\\n</ul>\\n\\n<ul>\\n<li><strong><a
|
2383
|
+
href=\\\"http://www.reddit.com/r/news/new?hl\\\">new submissions</a></strong></li>\\n</ul>\\n\\n<ul>\\n<li><strong><a
|
2384
|
+
href=\\\"http://www.reddit.com/r/news/comments?hl\\\">new comments</a></strong></li>\\n</ul>\\n</blockquote>\\n\\n<ol>\\n<li><a
|
2385
|
+
href=\\\"/r/inthenews\\\">Looking for a place to submit that editorial?
|
2386
|
+
Try <strong>/r/inthenews</strong></a></li>\\n</ol>\\n\\n<blockquote>\\n<p><a
|
2387
|
+
href=\\\"http://goo.gl/R6as4?ri\\\"></a></p>\\n\\n<p><a
|
2388
|
+
href=\\\"http://goo.gl/gBldE?ri\\\"></a></p>\\n\\n<p><a
|
2389
|
+
href=\\\"http://goo.gl/u5EZN?ri\\\"></a></p>\\n\\n<p><a
|
2390
|
+
href=\\\"http://goo.gl/exK8j?ri\\\"></a></p>\\n\\n<p><a
|
2391
|
+
href=\\\"http://www.reddit.com/r/news?ri\\\"></a></p>\\n\\n<p><a
|
2392
|
+
href=\\\"http://www.reddit.com/r/restorethefourth?ri\\\"></a></p>\\n</blockquote>\\n\\n<p>Chat
|
2393
|
+
with us on: <a href=\\\"https://www.facebook.com/rslashnews\\\">Facebook</a>,
|
2394
|
+
<a href=\\\"http://webchat.snoonet.org/news\\\">IRC</a>, <a
|
2395
|
+
href=\\\"https://twitter.com/rslashnews\\\">Twitter</a></p>\\n\\n<hr/>\\n\\n<p>See
|
2396
|
+
a post that violates the rules below? Had your post stuck in the spam filter?
|
2397
|
+
Have a question about policy? Just want to give feedback? <a href=\\\"http://www.reddit.com/message/compose?to=%2Fr%2Fnews\\\">Send
|
2398
|
+
the mod team a message</a>.</p>\\n\\n<hr/>\\n\\n<p>Please
|
2399
|
+
post news items only, with the exception of meta posts about <a href=\\\"/r/news\\\">/r/news</a>
|
2400
|
+
itself. Self-posts aggregating news data and &quot;independent reporting&quot;
|
2401
|
+
each count as news, but are not an excuse to editorialize.</p>\\n\\n<p>Your
|
2402
|
+
post will likely be removed if it: </p>\\n\\n<ul>\\n<li>is
|
2403
|
+
not news (or a meta post).</li>\\n<li>is an opinion/analysis or
|
2404
|
+
advocacy piece.</li>\\n<li>primarily concerns politics.</li>\\n<li>has
|
2405
|
+
a title not taken from the article.</li>\\n<li>has a pay wall
|
2406
|
+
or steals content.</li>\\n<li>covers an already-submitted story.</li>\\n<li>violates
|
2407
|
+
<a href=\\\"http://www.reddit.com/rules/\\\">reddit&#39;s site-wide
|
2408
|
+
rules</a>.</li>\\n</ul>\\n\\n<p>Your comment will
|
2409
|
+
likely be removed if it:</p>\\n\\n<ul>\\n<li>is racist,
|
2410
|
+
sexist, vitriolic, or overly crude.</li>\\n<li>is unnecessarily
|
2411
|
+
rude or provocative.</li>\\n<li>is a cheap and distracting joke
|
2412
|
+
or meme.</li>\\n<li>is responding to spam.</li>\\n<li>violates
|
2413
|
+
<a href=\\\"http://www.reddit.com/rules/\\\">reddit&#39;s site-wide
|
2414
|
+
rules</a>.</li>\\n</ul>\\n\\n<p>Extreme or repeat
|
2415
|
+
offenders will be banned.</p>\\n\\n<hr/>\\n\\n<p>If your
|
2416
|
+
post doesn&#39;t fit, consider <a href=\\\"http://www.reddit.com/r/news/wiki/recommendedsources\\\">finding
|
2417
|
+
an appropriate news article on that story</a> to submit instead, or
|
2418
|
+
submitting yours to lower moderation subreddits:</p>\\n\\n<p><a
|
2419
|
+
href=\\\"/r/inthenews\\\">/r/inthenews</a> - all news-related content<br/>\\n<a
|
2420
|
+
href=\\\"/r/AnythingGoesNews\\\">/r/AnythingGoesNews</a> - unrestricted
|
2421
|
+
news<br/>\\n<a href=\\\"/r/truereddit\\\">/r/truereddit</a>
|
2422
|
+
- insightful articles<br/>\\n<a href=\\\"/r/self\\\">/r/self</a>
|
2423
|
+
- any self-post<br/>\\n<a href=\\\"/r/misc\\\">/r/misc</a>,
|
2424
|
+
<a href=\\\"/r/redditdotcom\\\">/r/redditdotcom</a> - anything</p>\\n\\n<p>or
|
2425
|
+
other news subreddits:</p>\\n\\n<p><a href=\\\"/r/syriancivilwar\\\">/r/SyrianCivilWar</a>
|
2426
|
+
- about the conflict in Syria\\n<a href=\\\"/r/worldnews\\\">/r/worldnews</a>
|
2427
|
+
\ - from outside the USA only<br/>\\n<a href=\\\"/r/upliftingnews\\\">/r/UpliftingNews</a>
|
2428
|
+
- uplifting </p>\\n\\n<p>or subreddits for other topics:</p>\\n\\n<p><a
|
2429
|
+
href=\\\"/r/FoodForThought\\\">/r/FoodForThought</a> - discussion-worthy
|
2430
|
+
long form articles about interesting subjects<br/>\\n<a href=\\\"/r/politics\\\">/r/politics</a>
|
2431
|
+
- for shouting about politics<br/>\\n<a href=\\\"/r/ModeratePolitics\\\">/r/moderatepolitics</a>
|
2432
|
+
- less shouting<br/>\\n<a href=\\\"/r/PoliticalDiscussion\\\">/r/politicaldiscussion</a>
|
2433
|
+
- even less shouting<br/>\\n<a href=\\\"/r/geopolitics\\\">/r/geopolitics</a>
|
2434
|
+
- intl. politics and geography<br/>\\n<a href=\\\"/r/entertainment\\\">/r/entertainment</a>
|
2435
|
+
- Justin Bieber updates, etc.<br/>\\n<a href=\\\"/r/europe\\\">/r/europe</a>
|
2436
|
+
- news from Europe</p>\\n\\n<p>or check out the <a href=\\\"http://redd.it/1f7hqc\\\">200
|
2437
|
+
most active subreddits, categorized by content</a> and the <a href=\\\"http://stattit.com/subreddits/by_activity\\\">full
|
2438
|
+
list of subreddits by activity</a>.</p>\\n\\n<hr/>\\n\\n<p>Recommendations:</p>\\n\\n<p><a
|
2439
|
+
href=\\\"/r/mtglimited\\\">/r/mtglimited</a><br/>\\n<a href=\\\"/r/redactedcharts\\\">/r/redactedcharts</a><br/>\\n<a
|
2440
|
+
href=\\\"/r/patriots\\\">/r/patriots</a><br/>\\n<a href=\\\"/r/personalfinance\\\">/r/personalfinance</a><br/>\\n<a
|
2441
|
+
href=\\\"/r/drama\\\">/r/drama</a><br/>\\n<a href=\\\"/r/restorethefourth\\\">/r/restorethefourth</a>
|
2442
|
+
\ </p>\\n\\n<p><a href=\\\"http://goo.gl/exK8j\\\">reddit
|
2443
|
+
is fun for Android</a> and its subreddit <a href=\\\"/r/redditisfun\\\">/r/redditisfun</a></p>\\n\\n<p>Looking
|
2444
|
+
back on <a href=\\\"/r/news\\\">/r/news</a>:</p>\\n\\n<p><a
|
2445
|
+
href=\\\"http://www.reddit.com/r/news/comments/15s3xg/rnews_community_best_of_2012_awards_and_the/?\\\">Best
|
2446
|
+
of 2012</a><br/>\\n<a href=\\\"http://www.reddit.com/r/news/comments/1bipqg/psa_april_fools_here_is_the_list_of_spoofed/\\\">April
|
2447
|
+
Fools 2013</a></p>\\n\\n<p><a href=\\\"http://www.reddit.com/r/inthenews/submit\\\">submit
|
2448
|
+
analysis/opinion article</a></p>\\n\\n<p><a href=\\\"http://www.reddit.com/r/news/submit\\\">submit
|
2449
|
+
news article</a></p>\\n\\n<p><a href=\\\"http://www.reddit.com/r/misc/submit\\\">submit
|
2450
|
+
something else</a></p>\\n\\n<p><a href=\\\"http://www.reddit.com/r/inthenews/submit\\\">submit
|
2451
|
+
analysis/opinion article</a></p>\\n</div><!-- SC_ON -->\",
|
2452
|
+
\"title\": \"/r/news\", \"over18\": false, \"user_is_moderator\": false, \"header_title\":
|
2453
|
+
\"thanks to /u/newdles for the logo design\", \"description\": \">* **[/r/inthenews](/r/inthenews?hl)**\\n\\n>#\\n\\n>*
|
2454
|
+
**[/r/worldnews](/r/worldnews?hl)**\\n\\n>#\\n\\n>* **[new submissions](http://www.reddit.com/r/news/new?hl)**\\n\\n>#\\n\\n>*
|
2455
|
+
**[new comments](http://www.reddit.com/r/news/comments?hl)**\\n\\n1. [Looking
|
2456
|
+
for a place to submit that editorial? Try **/r/inthenews**](/r/inthenews)\\n\\n>
|
2457
|
+
[](http://goo.gl/R6as4?ri)\\n\\n> [](http://goo.gl/gBldE?ri)\\n\\n>
|
2458
|
+
[](http://goo.gl/u5EZN?ri)\\n\\n> [](http://goo.gl/exK8j?ri)\\n\\n>
|
2459
|
+
[](http://www.reddit.com/r/news?ri)\\n\\n> [](http://www.reddit.com/r/restorethefourth?ri)\\n\\nChat
|
2460
|
+
with us on: [Facebook](https://www.facebook.com/rslashnews), [IRC](http://webchat.snoonet.org/news),
|
2461
|
+
[Twitter](https://twitter.com/rslashnews)\\n\\n---\\n\\nSee a post that violates
|
2462
|
+
the rules below? Had your post stuck in the spam filter? Have a question about
|
2463
|
+
policy? Just want to give feedback? [Send the mod team a message](http://www.reddit.com/message/compose?to=%2Fr%2Fnews).\\n\\n---\\n\\nPlease
|
2464
|
+
post news items only, with the exception of meta posts about /r/news itself.
|
2465
|
+
Self-posts aggregating news data and \\\"independent reporting\\\" each count
|
2466
|
+
as news, but are not an excuse to editorialize.\\n\\nYour post will likely
|
2467
|
+
be removed if it: \\n\\n- is not news (or a meta post).\\n- is an opinion/analysis
|
2468
|
+
or advocacy piece.\\n- primarily concerns politics.\\n- has a title not taken
|
2469
|
+
from the article.\\n- has a pay wall or steals content.\\n- covers an already-submitted
|
2470
|
+
story.\\n- violates [reddit's site-wide rules](http://www.reddit.com/rules/).\\n\\nYour
|
2471
|
+
comment will likely be removed if it:\\n\\n- is racist, sexist, vitriolic,
|
2472
|
+
or overly crude.\\n- is unnecessarily rude or provocative.\\n- is a cheap
|
2473
|
+
and distracting joke or meme.\\n- is responding to spam.\\n- violates [reddit's
|
2474
|
+
site-wide rules](http://www.reddit.com/rules/).\\n\\nExtreme or repeat offenders
|
2475
|
+
will be banned.\\n\\n---\\n\\nIf your post doesn't fit, consider [finding
|
2476
|
+
an appropriate news article on that story](http://www.reddit.com/r/news/wiki/recommendedsources)
|
2477
|
+
to submit instead, or submitting yours to lower moderation subreddits:\\n\\n[/r/inthenews](/r/inthenews)
|
2478
|
+
- all news-related content \\n[/r/AnythingGoesNews](/r/AnythingGoesNews)
|
2479
|
+
- unrestricted news \\n[/r/truereddit](/r/truereddit) - insightful articles
|
2480
|
+
\ \\n/r/self - any self-post \\n/r/misc, /r/redditdotcom - anything\\n\\nor
|
2481
|
+
other news subreddits:\\n\\n[/r/SyrianCivilWar](/r/syriancivilwar) - about
|
2482
|
+
the conflict in Syria\\n[/r/worldnews](/r/worldnews) - from outside the USA
|
2483
|
+
only \\n[/r/UpliftingNews](/r/upliftingnews) - uplifting \\n\\nor
|
2484
|
+
subreddits for other topics:\\n\\n[/r/FoodForThought](/r/FoodForThought) -
|
2485
|
+
discussion-worthy long form articles about interesting subjects \\n[/r/politics](/r/politics)
|
2486
|
+
- for shouting about politics \\n[/r/moderatepolitics](/r/ModeratePolitics)
|
2487
|
+
- less shouting \\n[/r/politicaldiscussion](/r/PoliticalDiscussion)
|
2488
|
+
- even less shouting \\n[/r/geopolitics](/r/geopolitics) - intl. politics
|
2489
|
+
and geography \\n[/r/entertainment](/r/entertainment) - Justin Bieber updates,
|
2490
|
+
etc. \\n[/r/europe](/r/europe) - news from Europe\\n\\nor check out the
|
2491
|
+
[200 most active subreddits, categorized by content](http://redd.it/1f7hqc)
|
2492
|
+
and the [full list of subreddits by activity](http://stattit.com/subreddits/by_activity).\\n\\n---\\n\\nRecommendations:\\n\\n/r/mtglimited
|
2493
|
+
\ \\n/r/redactedcharts
|
2494
|
+
\ \\n/r/patriots
|
2495
|
+
\ \\n/r/personalfinance
|
2496
|
+
\ \\n/r/drama \\n/r/restorethefourth
|
2497
|
+
\ \\n\\n[reddit is fun for Android](http://goo.gl/exK8j)
|
2498
|
+
and its subreddit /r/redditisfun\\n\\nLooking back on /r/news:\\n\\n[Best
|
2499
|
+
of 2012](http://www.reddit.com/r/news/comments/15s3xg/rnews_community_best_of_2012_awards_and_the/?)
|
2500
|
+
\ \\n[April Fools 2013](http://www.reddit.com/r/news/comments/1bipqg/psa_april_fools_here_is_the_list_of_spoofed/)\\n\\n[submit
|
2501
|
+
analysis/opinion article](http://www.reddit.com/r/inthenews/submit)\\n\\n[submit
|
2502
|
+
news article](http://www.reddit.com/r/news/submit)\\n\\n[submit something
|
2503
|
+
else](http://www.reddit.com/r/misc/submit)\\n\\n[submit analysis/opinion article](http://www.reddit.com/r/inthenews/submit)\",
|
2504
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
2505
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
2506
|
+
1540877, \"submit_text_label\": null, \"name\": \"t5_2qh3l\", \"created\":
|
2507
|
+
1201247365.0, \"url\": \"/r/news/\", \"created_utc\": 1201243765.0, \"user_is_contributor\":
|
2508
|
+
false, \"public_traffic\": true, \"public_description\": \"/r/news is: real
|
2509
|
+
news articles, primarily but not exclusively news relating to the United States.
|
2510
|
+
/r/news isn't: editorials, commercials, political minutiae, shouting, justin
|
2511
|
+
bieber updates, kitty pictures. For a subreddit for all news-related content
|
2512
|
+
(editorials, satire, etc.) visit /r/inthenews.\", \"comment_score_hide_mins\":
|
2513
|
+
60, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
2514
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
2515
|
+
false, \"id\": \"2qt55\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
2516
|
+
\"display_name\": \"gifs\", \"header_img\": null, \"description_html\": \"<!--
|
2517
|
+
SC_OFF --><div class=\\\"md\\\"><p>Links to amusing, interesting,
|
2518
|
+
or funny .gifs from the web! .gif format submissions only, please!</p>\\n\\n<p><strong>If
|
2519
|
+
there is a violation of the rules, <em>please</em> <a href=\\\"http://www.reddit.com/message/compose?to=%2Fr%2Fgifs\\\">message
|
2520
|
+
the moderator team</a> and report the problem.</strong></p>\\n\\n<hr/>\\n\\n<ol>\\n<li><p>Please
|
2521
|
+
try not to repost</p></li>\\n<li><p>No Reaction/HIFW
|
2522
|
+
(How I Feel When)/Analogy gifs</p></li>\\n<li><p>Do
|
2523
|
+
not post gifs that should be videos. </p></li>\\n<li><p>Do
|
2524
|
+
not make posts specifically about cakeday (example: &quot;For my cakeday
|
2525
|
+
I present to you...&quot;)</p></li>\\n<li><p>Direct
|
2526
|
+
image links <strong>REQUIRED</strong>! Avoid pages that have
|
2527
|
+
other extraneous material besides the gif like headers, banners, ads, etc.
|
2528
|
+
\ And please, no blogspam. URL-shorteners are <strong>NOT</strong>
|
2529
|
+
allowed!</p></li>\\n<li><p>NSFW flair when necessary;
|
2530
|
+
this implies the comments within will be too.</p></li>\\n<li><p><strong><em>Nudity
|
2531
|
+
and obscene material goes into <a href=\\\"/r/nsfw_gifs\\\">/r/nsfw_gifs</a>
|
2532
|
+
or <a href=\\\"/r/nsfw_gif\\\">/r/nsfw_gif</a> - No exceptions.
|
2533
|
+
If it can get you fired then it should not be here. Failure to comply will
|
2534
|
+
result in removal of post and banning.</em></strong> </p></li>\\n<li><p>Titles
|
2535
|
+
must be descriptive. Do not make submissions with the title &quot;This&quot;,
|
2536
|
+
&quot;This is my favorite gif&quot;, and etc.</p></li>\\n<li><p><strong>No
|
2537
|
+
hate speech of any kind.</strong> Racist, sexist, or homophobic submissions
|
2538
|
+
or comments will result in an immediate ban.</p></li>\\n<li><p>Please
|
2539
|
+
familiarize yourself with the <a href=\\\"http://www.reddit.com/rules/\\\">official
|
2540
|
+
rules</a> and <a href=\\\"http://www.reddit.com/wiki/reddiquette\\\">reddiquette</a>.</p></li>\\n</ol>\\n\\n<hr/>\\n\\n<p><strong>Related
|
2541
|
+
Links:</strong></p>\\n\\n<p><a href=\\\"http://www.reddit.com/r/gif/comments/uhy9u/gifers_of_reddt_what_is_the_easiest_way_to_edit_a/\\\">How
|
2542
|
+
to make your own animated gifs?</a></p>\\n\\n<p><a href=\\\"/r/gifrequests\\\">/r/gifrequests</a></p>\\n\\n<p><a
|
2543
|
+
href=\\\"/r/makemeagif\\\">/r/makemeagif</a></p>\\n\\n<p><a
|
2544
|
+
href=\\\"/r/Dancinggifs\\\">/r/Dancinggifs</a></p>\\n\\n<p><a
|
2545
|
+
href=\\\"/r/physicsgifs\\\">/r/physicsgifs</a></p>\\n\\n<p><a
|
2546
|
+
href=\\\"/r/updownvotegifs\\\">/r/updownvotegifs</a></p>\\n\\n<p><a
|
2547
|
+
href=\\\"/r/perfectLoops\\\">/r/perfectLoops</a> </p>\\n\\n<p><a
|
2548
|
+
href=\\\"/r/reactiongifs\\\">/r/reactiongifs</a></p>\\n\\n<p><a
|
2549
|
+
href=\\\"/r/mechanical_gifs\\\">/r/mechanical_gifs</a></p>\\n\\n<p><a
|
2550
|
+
href=\\\"/r/KimJongUnGifs\\\">/r/KimJongUnGifs</a> </p>\\n\\n<p><a
|
2551
|
+
href=\\\"/r/SurrealGifs\\\">/r/SurrealGifs</a> </p>\\n\\n<p><a
|
2552
|
+
href=\\\"/r/SpaceGifs\\\">/r/SpaceGifs</a></p>\\n\\n<p><a
|
2553
|
+
href=\\\"/r/interestinggifs\\\">/r/interestinggifs</a></p>\\n\\n<p><a
|
2554
|
+
href=\\\"/r/baseballgifs\\\">/r/baseballgifs</a></p>\\n\\n<p><a
|
2555
|
+
href=\\\"/r/naturegifs\\\">/r/naturegifs</a> <strong>NEW!</strong></p>\\n</div><!--
|
2556
|
+
SC_ON -->\", \"title\": \".gifs - funny, animated gifs for your viewing
|
2557
|
+
pleasure\", \"over18\": false, \"user_is_moderator\": false, \"header_title\":
|
2558
|
+
null, \"description\": \"Links to amusing, interesting, or funny .gifs from
|
2559
|
+
the web! .gif format submissions only, please!\\n\\n\\n**If there is a violation
|
2560
|
+
of the rules, *please* [message the moderator team](http://www.reddit.com/message/compose?to=%2Fr%2Fgifs)
|
2561
|
+
and report the problem.**\\n\\n------------------\\n\\n1. Please try not to
|
2562
|
+
repost\\n\\n2. No Reaction/HIFW (How I Feel When)/Analogy gifs\\n\\n2. Do
|
2563
|
+
not post gifs that should be videos. \\n\\n3. Do not make posts specifically
|
2564
|
+
about cakeday (example: \\\"For my cakeday I present to you...\\\")\\n\\n4.
|
2565
|
+
Direct image links **REQUIRED**! Avoid pages that have other extraneous material
|
2566
|
+
besides the gif like headers, banners, ads, etc. And please, no blogspam.
|
2567
|
+
URL-shorteners are **NOT** allowed!\\n\\n5. NSFW flair when necessary; this
|
2568
|
+
implies the comments within will be too.\\n\\n6. ***Nudity and obscene material
|
2569
|
+
goes into /r/nsfw_gifs or /r/nsfw_gif - No exceptions. If it can get you fired
|
2570
|
+
then it should not be here. Failure to comply will result in removal of post
|
2571
|
+
and banning.*** \\n\\n7. Titles must be descriptive. Do not make submissions
|
2572
|
+
with the title \\\"This\\\", \\\"This is my favorite gif\\\", and etc.\\n\\n8.
|
2573
|
+
**No hate speech of any kind.** Racist, sexist, or homophobic submissions
|
2574
|
+
or comments will result in an immediate ban.\\n\\n9. Please familiarize yourself
|
2575
|
+
with the [official rules](http://www.reddit.com/rules/) and [reddiquette](http://www.reddit.com/wiki/reddiquette).\\n\\n----------------\\n\\n**Related
|
2576
|
+
Links:**\\n\\n[How to make your own animated gifs?](http://www.reddit.com/r/gif/comments/uhy9u/gifers_of_reddt_what_is_the_easiest_way_to_edit_a/)\\n\\n/r/gifrequests\\n\\n/r/makemeagif\\n\\n/r/Dancinggifs\\n\\n/r/physicsgifs\\n\\n/r/updownvotegifs\\n\\n/r/perfectLoops
|
2577
|
+
\\n\\n/r/reactiongifs\\n\\n/r/mechanical_gifs\\n\\n/r/KimJongUnGifs \\n\\n/r/SurrealGifs
|
2578
|
+
\\n\\n/r/SpaceGifs\\n\\n/r/interestinggifs\\n\\n/r/baseballgifs\\n\\n/r/naturegifs
|
2579
|
+
**NEW!**\", \"submit_link_label\": \"Submit a new .gif!\", \"accounts_active\":
|
2580
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
2581
|
+
null, \"subscribers\": 1382031, \"submit_text_label\": null, \"name\": \"t5_2qt55\",
|
2582
|
+
\"created\": 1234606607.0, \"url\": \"/r/gifs/\", \"created_utc\": 1234606607.0,
|
2583
|
+
\"user_is_contributor\": false, \"public_traffic\": false, \"public_description\":
|
2584
|
+
\"Funny, animated gifs - your favorite computer file type!\", \"comment_score_hide_mins\":
|
2585
|
+
10, \"subreddit_type\": \"public\", \"submission_type\": \"link\", \"user_is_subscriber\":
|
2586
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
2587
|
+
--><div class=\\\"md\\\"><h3>All submissions are placed in
|
2588
|
+
the spam filter for moderator review prior to release in AskScience, so please
|
2589
|
+
be patient.</h3>\\n\\n<p><strong><a href=\\\"http://www.reddit.com/r/askscience/wiki/index#wiki_asking_askscience\\\">Please
|
2590
|
+
read our guidelines regarding asking questions</a></strong> before
|
2591
|
+
making your post.</p>\\n\\n<p><em>Instructions for flairing
|
2592
|
+
your post:</em></p>\\n\\n<p>Once you click &quot;submit,&quot;
|
2593
|
+
there will be an option that is highlighted in yellow under it that says &quot;Please
|
2594
|
+
Click This To Categorize Your Post.&quot; Once you click it, a menu will
|
2595
|
+
pop up and you will be able to choose what field your question falls under.</p>\\n\\n<p>Thanks
|
2596
|
+
for asking your question in AskScience! :)</p>\\n</div><!--
|
2597
|
+
SC_ON -->\", \"user_is_banned\": false, \"id\": \"2qm4e\", \"submit_text\":
|
2598
|
+
\"###All submissions are placed in the spam filter for moderator review prior
|
2599
|
+
to release in AskScience, so please be patient.\\n\\n**[Please read our guidelines
|
2600
|
+
regarding asking questions](http://www.reddit.com/r/askscience/wiki/index#wiki_asking_askscience)**
|
2601
|
+
before making your post.\\n\\n*Instructions for flairing your post:*\\n\\nOnce
|
2602
|
+
you click \\\"submit,\\\" there will be an option that is highlighted in yellow
|
2603
|
+
under it that says \\\"Please Click This To Categorize Your Post.\\\" Once
|
2604
|
+
you click it, a menu will pop up and you will be able to choose what field
|
2605
|
+
your question falls under.\\n\\nThanks for asking your question in AskScience!
|
2606
|
+
:)\", \"spam_selfposts\": \"all\", \"display_name\": \"askscience\", \"header_img\":
|
2607
|
+
\"http://a.thumbs.redditmedia.com/pquIEanzD-YD8WE6.png\", \"description_html\":
|
2608
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>The goal of this
|
2609
|
+
forum is the promotion of scientific literacy by disseminating knowledge of
|
2610
|
+
the scientific process and its results through answering science questions.</p>\\n\\n<hr/>\\n\\n<h3>Guidelines</h3>\\n\\n<p><strong><a
|
2611
|
+
href=\\\"http://www.reddit.com/r/askscience/wiki/index#wiki_askscience_user_help_page\\\">Read
|
2612
|
+
our updated and expanded guidelines.</a></strong></p>\\n\\n<h6>Please
|
2613
|
+
keep discussion...</h6>\\n\\n<ul>\\n<li>Civil</li>\\n<li>On
|
2614
|
+
topic</li>\\n<li>Scientific (i.e. based on repeatable analysis
|
2615
|
+
published in a peer reviewed journal)</li>\\n<li>Free of anecdotes</li>\\n<li>Free
|
2616
|
+
of layman speculation</li>\\n<li><a href=\\\"http://www.reddit.com/s4chc\\\">Free
|
2617
|
+
of medical advice</a> (see reddit&#39;s <a href=\\\"http://www.reddit.com/wiki/useragreement\\\">user
|
2618
|
+
agreement</a>)<br/></li>\\n</ul>\\n\\n<h6><strong>Save
|
2619
|
+
time with repeat questions! Try...</strong></h6>\\n\\n<ul>\\n<li>Our
|
2620
|
+
<a href=\\\"http://www.reddit.com/r/askscience/wiki/faq\\\">FAQ</a></li>\\n<li><a
|
2621
|
+
href=\\\"http://www.reddit.com/r/askscience/search?q=&amp;restrict_sr=on\\\">Reddit
|
2622
|
+
search</a></li>\\n<li>Google site:reddit.com<a href=\\\"/r/askscience\\\">/r/askscience</a><br/>\\n<strong><em>search
|
2623
|
+
terms</em></strong></li>\\n</ul>\\n\\n<p>Visit
|
2624
|
+
<a href=\\\"/r/AskScienceDiscussion\\\">/r/AskScienceDiscussion</a>
|
2625
|
+
for more discussion based questions.</p>\\n\\n<hr/>\\n\\n<p>Check
|
2626
|
+
out our <strong><a href=\\\"http://reddit.com/r/askscience/new\\\">new</a></strong>,
|
2627
|
+
<strong><a href=\\\"http://www.reddit.com/r/askscience/comments/gilded\\\">gilded</a></strong>,
|
2628
|
+
and <strong><a href=\\\"/r/askscience/search?q=flair%3A&#x27;best&#x27;&amp;restrict_sr=on&amp;sort=new&amp;t=all\\\">Mods&#39;
|
2629
|
+
Choice</a></strong> posts. Upvote science that&#39;s worth
|
2630
|
+
seeing! </p>\\n\\n<hr/>\\n\\n<h3>Filter by Field</h3>\\n\\n<table><thead>\\n<tr>\\n<th
|
2631
|
+
align=\\\"left\\\">Title</th>\\n<th align=\\\"right\\\">Description</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
2632
|
+
align=\\\"left\\\"><a href=\\\"/r/askscience/search?q=flair%3A%27Physics%27&amp;sort=new&amp;restrict_sr=on\\\">Physics</a></td>\\n<td
|
2633
|
+
align=\\\"right\\\">Theoretical Physics, Experimental Physics, High-energy
|
2634
|
+
Physics, Solid-State Physics, Fluid Dynamics, Relativity, Quantum Physics,
|
2635
|
+
Plasma Physics</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
2636
|
+
href=\\\"/r/askscience/search?q=flair%3A%27Maths%27&amp;sort=new&amp;restrict_sr=on\\\">Mathematics</a></td>\\n<td
|
2637
|
+
align=\\\"right\\\">Mathematics, Statistics, Number Theory, Calculus, Algebra</td>\\n</tr>\\n<tr>\\n<td
|
2638
|
+
align=\\\"left\\\"><a href=\\\"/r/askscience/search?q=flair%3A%27Astro%27&amp;sort=new&amp;restrict_sr=on\\\">Astronomy</a></td>\\n<td
|
2639
|
+
align=\\\"right\\\">Astronomy, Astrophysics, Cosmology, Planetary Formation</td>\\n</tr>\\n<tr>\\n<td
|
2640
|
+
align=\\\"left\\\"><a href=\\\"/r/askscience/search?q=flair%3A%27Computing%27&amp;sort=new&amp;restrict_sr=on\\\">Computing</a></td>\\n<td
|
2641
|
+
align=\\\"right\\\">Computing, Artificial Intelligence, Machine Learning,
|
2642
|
+
Computability</td>\\n</tr>\\n<tr>\\n<td align=\\\"left\\\"><a
|
2643
|
+
href=\\\"/r/askscience/search?q=flair%3A%27Geo%27&amp;sort=new&amp;restrict_sr=on\\\">Earth
|
2644
|
+
and Planetary Sciences</a></td>\\n<td align=\\\"right\\\">Earth
|
2645
|
+
Science, Atmospheric Science, Oceanography, Geology</td>\\n</tr>\\n<tr>\\n<td
|
2646
|
+
align=\\\"left\\\"><a href=\\\"/r/askscience/search?q=flair%3A%27Eng%27&amp;sort=new&amp;restrict_sr=on\\\">Engineering</a></td>\\n<td
|
2647
|
+
align=\\\"right\\\">Mechanical Engineering, Electrical Engineering, Structural
|
2648
|
+
Engineering, Computer Engineering, Aerospace Engineering</td>\\n</tr>\\n<tr>\\n<td
|
2649
|
+
align=\\\"left\\\"><a href=\\\"/r/askscience/search?q=flair%3A%27Chem%27&amp;sort=new&amp;restrict_sr=on\\\">Chemistry</a></td>\\n<td
|
2650
|
+
align=\\\"right\\\">Chemistry, Organic Chemistry, Polymers, Biochemistry</td>\\n</tr>\\n<tr>\\n<td
|
2651
|
+
align=\\\"left\\\"><a href=\\\"/r/askscience/search?q=flair%3A%27Soc%27&amp;sort=new&amp;restrict_sr=on\\\">Social
|
2652
|
+
Sciences</a></td>\\n<td align=\\\"right\\\">Social Science,
|
2653
|
+
Political Science, Economics, Archaeology, Anthropology, Linguistics</td>\\n</tr>\\n<tr>\\n<td
|
2654
|
+
align=\\\"left\\\"><a href=\\\"/r/askscience/search?q=flair%3A%27Bio%27&amp;sort=new&amp;restrict_sr=on\\\">Biology</a></td>\\n<td
|
2655
|
+
align=\\\"right\\\">Biology, Evolution, Morphology, Ecology, Synthetic
|
2656
|
+
Biology, Microbiology, Cellular Biology, Molecular Biology</td>\\n</tr>\\n<tr>\\n<td
|
2657
|
+
align=\\\"left\\\"><a href=\\\"/r/askscience/search?q=flair%3A%27Psych%27&amp;sort=new&amp;restrict_sr=on\\\">Psychology</a></td>\\n<td
|
2658
|
+
align=\\\"right\\\">Psychology, Cognitive Psychology, Developmental Psychology,
|
2659
|
+
Abnormal, Social Psychology</td>\\n</tr>\\n<tr>\\n<td
|
2660
|
+
align=\\\"left\\\"><a href=\\\"/r/askscience/search?q=flair%3A%27Med%27&amp;sort=new&amp;restrict_sr=on\\\">Medicine</a></td>\\n<td
|
2661
|
+
align=\\\"right\\\">Medicine, Oncology, Dentistry, Physiology, Epidemiology,
|
2662
|
+
Infectious Disease, Pharmacy</td>\\n</tr>\\n<tr>\\n<td
|
2663
|
+
align=\\\"left\\\"><a href=\\\"/r/askscience/search?q=flair%3A%27Neuro%27&amp;sort=new&amp;restrict_sr=on\\\">Neuroscience</a></td>\\n<td
|
2664
|
+
align=\\\"right\\\">Neuroscience, Neurology, Neurochemistry, Cognitive
|
2665
|
+
Neuroscience</td>\\n</tr>\\n</tbody></table>\\n\\n<hr/>\\n\\n<p><strong>Sign
|
2666
|
+
up to join the panel <a href=\\\"http://www.reddit.com/1my28i\\\">in
|
2667
|
+
the official panelist thread</a></strong>. It is where you apply
|
2668
|
+
to get flair if you are a scientist. </p>\\n\\n<p>Learn more
|
2669
|
+
about our panelists at <a href=\\\"/r/AskScienceAMA\\\">/r/AskScienceAMA</a>.
|
2670
|
+
\ </p>\\n\\n<hr/>\\n\\n<p>Check out the following subreddits:
|
2671
|
+
\ </p>\\n\\n<h5><a href=\\\"/blank\\\"></a></h5>\\n\\n<h6>The
|
2672
|
+
Ask* subreddits</h6>\\n\\n<ul>\\n<li><a href=\\\"/r/AskAcademia\\\">Academia</a>,
|
2673
|
+
<a href=\\\"/r/AskSciTech\\\">SciTech</a>, <a href=\\\"/r/AskElectronics\\\">Electronics</a>,
|
2674
|
+
<a href=\\\"/r/AskStatistics\\\">Statistics</a>, <a href=\\\"/r/AskHistorians\\\">Historians</a>,
|
2675
|
+
<a href=\\\"/r/Scholar\\\">Scholars</a>, <a href=\\\"http://www.reddit.com/user/multiscience/m/whatsthis\\\">What&#39;s
|
2676
|
+
This?</a>, <a href=\\\"/r/HomeworkHelp\\\">Homework</a>,
|
2677
|
+
<a href=\\\"/r/AskPhilosophy\\\">Philosophy</a>, <a href=\\\"/r/AskEngineers\\\">Engineers</a></li>\\n</ul>\\n\\n<h6>Other
|
2678
|
+
science subreddits</h6>\\n\\n<ul>\\n<li><a href=\\\"http://www.reddit.com/user/multiscience/m/physics\\\">Physics</a>,
|
2679
|
+
<a href=\\\"http://www.reddit.com/user/multiscience/m/chemistry\\\">Chemistry</a>,
|
2680
|
+
<a href=\\\"http://www.reddit.com/user/multiscience/m/biology\\\">Biology</a>,
|
2681
|
+
<a href=\\\"http://www.reddit.com/user/multiscience/m/pyschcogneuro\\\">Psych/Cog/Neuro</a>,
|
2682
|
+
<a href=\\\"http://www.reddit.com/user/multiscience/m/earthsciences\\\">Earth
|
2683
|
+
Sciences</a>, <a href=\\\"http://www.reddit.com/user/multiscience/m/thesofterside\\\">The
|
2684
|
+
Softer Side</a>, <a href=\\\"http://www.reddit.com/user/multiscience/m/appliedsciences\\\">Applied
|
2685
|
+
Sciences</a>, <a href=\\\"http://www.reddit.com/user/multiscience/m/formalsciences\\\">Formal
|
2686
|
+
Sciences</a>, <a href=\\\"http://www.reddit.com/user/multiscience/m/socialsciences\\\">Social
|
2687
|
+
Sciences</a> </li>\\n</ul>\\n\\n<hr/>\\n\\n<p><a
|
2688
|
+
href=\\\"http://www.reddit.com/r/askscience/wiki/sidebar\\\">Header Information</a>
|
2689
|
+
CSS by <a href=\\\"/u/ggitaliano\\\">/u/ggitaliano</a></p>\\n\\n<ul>\\n<li><a
|
2690
|
+
href=\\\"http://nt.reddit.com/r/askscience\\\">Switch to dark theme</a></li>\\n<li><a
|
2691
|
+
href=\\\"http://reddit.com/r/askscience\\\">Switch to light theme</a></li>\\n</ul>\\n\\n<hr/>\\n\\n<ol>\\n<li><a
|
2692
|
+
href=\\\"/r/AskScienceDiscussion\\\">For open ended questions, visit /r/AskScienceDiscussion</a>
|
2693
|
+
| <a href=\\\"http://redd.it/1l9n1k/\\\">AskScience on IRC</a>
|
2694
|
+
- <strong><a href=\\\"http://goo.gl/arX9PA\\\">Webchat</a></strong></li>\\n</ol>\\n</div><!--
|
2695
|
+
SC_ON -->\", \"title\": \"AskScience: Got Questions? Get Answers.\", \"over18\":
|
2696
|
+
false, \"user_is_moderator\": false, \"header_title\": \"Got Questions? Get
|
2697
|
+
Answers.\", \"description\": \"The goal of this forum is the promotion of
|
2698
|
+
scientific literacy by disseminating knowledge of the scientific process and
|
2699
|
+
its results through answering science questions.\\n\\n---\\n\\n### Guidelines\\n\\n**[Read
|
2700
|
+
our updated and expanded guidelines.](http://www.reddit.com/r/askscience/wiki/index#wiki_askscience_user_help_page)**\\n\\n######
|
2701
|
+
Please keep discussion...\\n\\n* Civil\\n* On topic\\n* Scientific (i.e. based
|
2702
|
+
on repeatable analysis published in a peer reviewed journal)\\n* Free of anecdotes\\n*
|
2703
|
+
Free of layman speculation\\n* [Free of medical advice](http://www.reddit.com/s4chc)
|
2704
|
+
(see reddit's [user agreement](http://www.reddit.com/wiki/useragreement))
|
2705
|
+
\ \\n\\n###### **Save time with repeat questions! Try...**\\n\\n* Our [FAQ](http://www.reddit.com/r/askscience/wiki/faq)\\n*
|
2706
|
+
[Reddit search](http://www.reddit.com/r/askscience/search?q=&restrict_sr=on)\\n*
|
2707
|
+
Google site:reddit.com/r/askscience \\n***search terms***\\n\\nVisit /r/AskScienceDiscussion
|
2708
|
+
for more discussion based questions.\\n\\n---\\n\\nCheck out our **[new](http://reddit.com/r/askscience/new)**,
|
2709
|
+
**[gilded](http://www.reddit.com/r/askscience/comments/gilded)**, and **[Mods'
|
2710
|
+
Choice](/r/askscience/search?q=flair%3A'best'&restrict_sr=on&sort=new&t=all)**
|
2711
|
+
posts. Upvote science that's worth seeing! \\n\\n---\\n\\n### Filter by Field
|
2712
|
+
\ \\n\\nTitle|Description\\n:--|--:\\n[Physics](/r/askscience/search?q=flair%3A%27Physics%27&sort=new&restrict_sr=on)|Theoretical
|
2713
|
+
Physics, Experimental Physics, High-energy Physics, Solid-State Physics, Fluid
|
2714
|
+
Dynamics, Relativity, Quantum Physics, Plasma Physics \\n[Mathematics](/r/askscience/search?q=flair%3A%27Maths%27&sort=new&restrict_sr=on)|Mathematics,
|
2715
|
+
Statistics, Number Theory, Calculus, Algebra\\n[Astronomy](/r/askscience/search?q=flair%3A%27Astro%27&sort=new&restrict_sr=on)|Astronomy,
|
2716
|
+
Astrophysics, Cosmology, Planetary Formation \\n[Computing](/r/askscience/search?q=flair%3A%27Computing%27&sort=new&restrict_sr=on)|Computing,
|
2717
|
+
Artificial Intelligence, Machine Learning, Computability \\n[Earth and Planetary
|
2718
|
+
Sciences](/r/askscience/search?q=flair%3A%27Geo%27&sort=new&restrict_sr=on)|Earth
|
2719
|
+
Science, Atmospheric Science, Oceanography, Geology \\n[Engineering](/r/askscience/search?q=flair%3A%27Eng%27&sort=new&restrict_sr=on)|Mechanical
|
2720
|
+
Engineering, Electrical Engineering, Structural Engineering, Computer Engineering,
|
2721
|
+
Aerospace Engineering\\n[Chemistry](/r/askscience/search?q=flair%3A%27Chem%27&sort=new&restrict_sr=on)|Chemistry,
|
2722
|
+
Organic Chemistry, Polymers, Biochemistry\\n[Social Sciences](/r/askscience/search?q=flair%3A%27Soc%27&sort=new&restrict_sr=on)|Social
|
2723
|
+
Science, Political Science, Economics, Archaeology, Anthropology, Linguistics
|
2724
|
+
\ \\n[Biology](/r/askscience/search?q=flair%3A%27Bio%27&sort=new&restrict_sr=on)|Biology,
|
2725
|
+
Evolution, Morphology, Ecology, Synthetic Biology, Microbiology, Cellular
|
2726
|
+
Biology, Molecular Biology \\n[Psychology](/r/askscience/search?q=flair%3A%27Psych%27&sort=new&restrict_sr=on)|Psychology,
|
2727
|
+
Cognitive Psychology, Developmental Psychology, Abnormal, Social Psychology\\n[Medicine](/r/askscience/search?q=flair%3A%27Med%27&sort=new&restrict_sr=on)|Medicine,
|
2728
|
+
Oncology, Dentistry, Physiology, Epidemiology, Infectious Disease, Pharmacy\\n[Neuroscience](/r/askscience/search?q=flair%3A%27Neuro%27&sort=new&restrict_sr=on)|Neuroscience,
|
2729
|
+
Neurology, Neurochemistry, Cognitive Neuroscience \\n \\n---\\n\\n**Sign
|
2730
|
+
up to join the panel [in the official panelist thread](http://www.reddit.com/1my28i)**.
|
2731
|
+
It is where you apply to get flair if you are a scientist. \\n\\nLearn more
|
2732
|
+
about our panelists at /r/AskScienceAMA. \\n\\n---\\n\\nCheck out the following
|
2733
|
+
subreddits: \\n\\n##### [](/blank)\\n\\n###### The Ask* subreddits \\n\\n*
|
2734
|
+
[Academia](/r/AskAcademia), [SciTech](/r/AskSciTech), [Electronics](/r/AskElectronics),
|
2735
|
+
[Statistics](/r/AskStatistics), [Historians](/r/AskHistorians), [Scholars](/r/Scholar),
|
2736
|
+
[What's This?](http://www.reddit.com/user/multiscience/m/whatsthis), [Homework](/r/HomeworkHelp),
|
2737
|
+
[Philosophy](/r/AskPhilosophy), [Engineers](/r/AskEngineers)\\n\\n###### Other
|
2738
|
+
science subreddits\\n\\n* [Physics](http://www.reddit.com/user/multiscience/m/physics),
|
2739
|
+
[Chemistry](http://www.reddit.com/user/multiscience/m/chemistry), [Biology](http://www.reddit.com/user/multiscience/m/biology),
|
2740
|
+
[Psych/Cog/Neuro](http://www.reddit.com/user/multiscience/m/pyschcogneuro),
|
2741
|
+
[Earth Sciences](http://www.reddit.com/user/multiscience/m/earthsciences),
|
2742
|
+
[The Softer Side](http://www.reddit.com/user/multiscience/m/thesofterside),
|
2743
|
+
[Applied Sciences](http://www.reddit.com/user/multiscience/m/appliedsciences),
|
2744
|
+
[Formal Sciences](http://www.reddit.com/user/multiscience/m/formalsciences),
|
2745
|
+
[Social Sciences](http://www.reddit.com/user/multiscience/m/socialsciences)
|
2746
|
+
\\n\\n---\\n \\n[Header Information](http://www.reddit.com/r/askscience/wiki/sidebar)
|
2747
|
+
CSS by /u/ggitaliano\\n\\n* [Switch to dark theme](http://nt.reddit.com/r/askscience)\\n*
|
2748
|
+
[Switch to light theme](http://reddit.com/r/askscience)\\n\\n---\\n\\n1. [For
|
2749
|
+
open ended questions, visit /r/AskScienceDiscussion](/r/AskScienceDiscussion)
|
2750
|
+
| [AskScience on IRC](http://redd.it/1l9n1k/) - **[Webchat](http://goo.gl/arX9PA)**\",
|
2751
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
2752
|
+
\"high\", \"spam_links\": \"all\", \"header_size\": [70, 72], \"subscribers\":
|
2753
|
+
1287721, \"submit_text_label\": \"Ask a science question\", \"name\": \"t5_2qm4e\",
|
2754
|
+
\"created\": 1220603564.0, \"url\": \"/r/askscience/\", \"created_utc\": 1220599964.0,
|
2755
|
+
\"user_is_contributor\": false, \"public_traffic\": false, \"public_description\":
|
2756
|
+
\"Ask a science question, get a science answer.\", \"comment_score_hide_mins\":
|
2757
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"self\", \"user_is_subscriber\":
|
2758
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
2759
|
+
--><div class=\\\"md\\\"><ul>\\n<li><p>ELI5 is
|
2760
|
+
for layman-friendly responses to more complex concepts. It is not for basic
|
2761
|
+
Q&amp;A.</p></li>\\n<li><p>Please search ELI5
|
2762
|
+
before submitting your question to see if it&#39;s been explained in the
|
2763
|
+
past.</p></li>\\n</ul>\\n</div><!-- SC_ON -->\",
|
2764
|
+
\"user_is_banned\": false, \"id\": \"2sokd\", \"submit_text\": \"* ELI5 is
|
2765
|
+
for layman-friendly responses to more complex concepts. It is not for basic
|
2766
|
+
Q&A.\\n\\n* Please search ELI5 before submitting your question to see
|
2767
|
+
if it's been explained in the past.\", \"spam_selfposts\": \"low\", \"display_name\":
|
2768
|
+
\"explainlikeimfive\", \"header_img\": \"http://f.thumbs.redditmedia.com/8hAOambJiIuMZp35.png\",
|
2769
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><a
|
2770
|
+
href=\\\"http://zz.reddit.com/r/explainlikeimfive#red\\\">&nbsp;&nbsp;&nbsp;&nbsp;</a>
|
2771
|
+
<a href=\\\"http://yz.reddit.com/r/explainlikeimfive#orange\\\">&nbsp;&nbsp;&nbsp;&nbsp;</a>\\n<a
|
2772
|
+
href=\\\"http://xz.reddit.com/r/explainlikeimfive#green\\\">&nbsp;&nbsp;&nbsp;&nbsp;</a>\\n<a
|
2773
|
+
href=\\\"http://www.reddit.com/r/explainlikeimfive#blue\\\">&nbsp;&nbsp;&nbsp;&nbsp;</a>\\n<a
|
2774
|
+
href=\\\"http://yy.reddit.com/r/explainlikeimfive#gray\\\">&nbsp;&nbsp;&nbsp;&nbsp;</a>\\n<a
|
2775
|
+
href=\\\"http://xx.reddit.com/r/explainlikeimfive#grid\\\">&nbsp;&nbsp;&nbsp;&nbsp;</a>\\n<a
|
2776
|
+
href=\\\"http://www.reddit.com/message/compose?to=%2Fr%2Fexplainlikeimfive&amp;subject=ELI5%20theme%20submission&amp;message=Note%3A%20we%20are%20much%20more%20likely%20to%20add%20your%20theme%20if%20you&#x27;re%20specific.%20If%20you%20check%20the%20stylesheet%20and%20submit%20code%20for%20a%20theme%20that&#x27;s%20even%20better!#suggest\\\">&nbsp;&nbsp;&nbsp;&nbsp;</a></p>\\n\\n<hr/>\\n\\n<p><a
|
2777
|
+
href=\\\"/r/explainlikeimfive/submit?title=ELI5%3A\\\">Request an Explanation</a></p>\\n\\n<p>&nbsp;</p>\\n\\n<p><a
|
2778
|
+
href=\\\"http://www.reddit.com/message/compose?to=%2Fr%2Fexplainlikeimfive&amp;subject=ELI5%20report#report\\\"><strong>Report
|
2779
|
+
a submission/comment</strong></a></p>\\n\\n<p>&nbsp;</p>\\n\\n<p><strong>E
|
2780
|
+
is for explain.</strong> This is for concepts you&#39;d like to
|
2781
|
+
understand better; <strong>not</strong> for simple one word answers,
|
2782
|
+
walkthroughs, or personal problems.</p>\\n\\n<p><strong>LI5
|
2783
|
+
means friendly, simplified and layman-accessible explanations</strong>,
|
2784
|
+
not for responses aimed at literal five year olds (which can be patronizing).</p>\\n\\n<hr/>\\n\\n<ul>\\n<li><p><strong>Read
|
2785
|
+
<a href=\\\"http://www.reddit.com/r/explainlikeimfive/wiki/rules\\\">the
|
2786
|
+
rules</a></strong> before commenting or submitting.</p></li>\\n<li><p><strong>Search
|
2787
|
+
before submitting</strong> with keywords from your topic. The search
|
2788
|
+
box is in the upper right corner of the subreddit.</p></li>\\n<li><p>Please
|
2789
|
+
be neutral in your explanations, and note your personal bias in controversial
|
2790
|
+
topics.</p></li>\\n<li><p>No low effort explanations,
|
2791
|
+
single sentence replies, or jokes in top-level comments.</p></li>\\n<li><p><strong>Don&#39;t</strong>
|
2792
|
+
post loaded questions just to argue your point of view. </p></li>\\n<li><p>After
|
2793
|
+
receiving an adequate explanation, OP should mark the post <a href=\\\"http://www.reddit.com/r/explainlikeimfive#check\\\">
|
2794
|
+
</a> <strong>Explained</strong>. Explained posts are still
|
2795
|
+
open to discussion!</p></li>\\n<li><p>ELI5 isn&#39;t
|
2796
|
+
a guessing game; if you aren&#39;t confident in your explanation, please
|
2797
|
+
don&#39;t speculate.</p></li>\\n</ul>\\n\\n<hr/>\\n\\n<p><a
|
2798
|
+
href=\\\"http://xz.reddit.com/r/explainlikeimfive#header\\\"><strong>Explained</strong></a>
|
2799
|
+
<a href=\\\"http://zz.reddit.com/r/explainlikeimfive#siteTable\\\"><strong>Unexplained</strong></a>
|
2800
|
+
<a href=\\\"http://www.reddit.com/r/explainlikeimfive#reset\\\"><strong>Reset</strong></a></p>\\n</div><!--
|
2801
|
+
SC_ON -->\", \"title\": \"Explain Like I'm Five | Don't Panic!\", \"over18\":
|
2802
|
+
false, \"user_is_moderator\": false, \"header_title\": \"logo by leroy_twiggles\",
|
2803
|
+
\"description\": \"[&nbsp;&nbsp;&nbsp;&nbsp;](http://zz.reddit.com/r/explainlikeimfive#red)
|
2804
|
+
[&nbsp;&nbsp;&nbsp;&nbsp;](http://yz.reddit.com/r/explainlikeimfive#orange)\\n[&nbsp;&nbsp;&nbsp;&nbsp;](http://xz.reddit.com/r/explainlikeimfive#green)\\n[&nbsp;&nbsp;&nbsp;&nbsp;]\\n(http://www.reddit.com/r/explainlikeimfive#blue)\\n[&nbsp;&nbsp;&nbsp;&nbsp;]\\n(http://yy.reddit.com/r/explainlikeimfive#gray)\\n[&nbsp;&nbsp;&nbsp;&nbsp;]\\n(http://xx.reddit.com/r/explainlikeimfive#grid)\\n[&nbsp;&nbsp;&nbsp;&nbsp;]\\n(http://www.reddit.com/message/compose?to=%2Fr%2Fexplainlikeimfive&subject=ELI5%20theme%20submission&message=Note%3A%20we%20are%20much%20more%20likely%20to%20add%20your%20theme%20if%20you're%20specific.%20If%20you%20check%20the%20stylesheet%20and%20submit%20code%20for%20a%20theme%20that's%20even%20better!#suggest)\\n\\n***\\n\\n[Request
|
2805
|
+
an Explanation](/r/explainlikeimfive/submit?title=ELI5%3A)\\n\\n&nbsp;\\n\\n[**Report
|
2806
|
+
a submission/comment**](http://www.reddit.com/message/compose?to=%2Fr%2Fexplainlikeimfive&subject=ELI5%20report#report)\\n\\n&nbsp;\\n\\n**E
|
2807
|
+
is for explain.** This is for concepts you'd like to understand better; **not**
|
2808
|
+
for simple one word answers, walkthroughs, or personal problems.\\n\\n**LI5
|
2809
|
+
means friendly, simplified and layman-accessible explanations**, not for responses
|
2810
|
+
aimed at literal five year olds (which can be patronizing).\\n\\n----\\n\\n*
|
2811
|
+
**Read [the rules](http://www.reddit.com/r/explainlikeimfive/wiki/rules)**
|
2812
|
+
before commenting or submitting.\\n\\n* **Search before submitting** with
|
2813
|
+
keywords from your topic. The search box is in the upper right corner of the
|
2814
|
+
subreddit.\\n\\n* Please be neutral in your explanations, and note your personal
|
2815
|
+
bias in controversial topics.\\n\\n* No low effort explanations, single sentence
|
2816
|
+
replies, or jokes in top-level comments.\\n\\n* **Don't** post loaded questions
|
2817
|
+
just to argue your point of view. \\n\\n* After receiving an adequate explanation,
|
2818
|
+
OP should mark the post [ ](http://www.reddit.com/r/explainlikeimfive#check)
|
2819
|
+
**Explained**. Explained posts are still open to discussion!\\n\\n* ELI5 isn't
|
2820
|
+
a guessing game; if you aren't confident in your explanation, please don't
|
2821
|
+
speculate.\\n\\n----\\n\\n[**Explained**](http://xz.reddit.com/r/explainlikeimfive#header)
|
2822
|
+
[**Unexplained**](http://zz.reddit.com/r/explainlikeimfive#siteTable) [**Reset**](http://www.reddit.com/r/explainlikeimfive#reset)\",
|
2823
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
2824
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": [170, 40], \"subscribers\":
|
2825
|
+
1053714, \"submit_text_label\": null, \"name\": \"t5_2sokd\", \"created\":
|
2826
|
+
1311870100.0, \"url\": \"/r/explainlikeimfive/\", \"created_utc\": 1311866500.0,
|
2827
|
+
\"user_is_contributor\": false, \"public_traffic\": true, \"public_description\":
|
2828
|
+
\"ELI5: Layman-friendly Q&A!\\n\\nDon't Panic!\", \"comment_score_hide_mins\":
|
2829
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"self\", \"user_is_subscriber\":
|
2830
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
2831
|
+
--><div class=\\\"md\\\"><h3>Read our <strong><a href=\\\"/r/EarthPorn/wiki/faq\\\">FAQ</a></strong>
|
2832
|
+
and <strong><a href=\\\"/r/EarthPorn/about/sidebar\\\">sidebar</a></strong>
|
2833
|
+
before submitting!</h3>\\n\\n<hr/>\\n\\n<p>Submit the <a
|
2834
|
+
href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_the_image_i.27m_submitting_comes_from_the_photographer.27s_own_website.2C_do_i_still_have_to_rehost_it.3F\\\">original
|
2835
|
+
source</a> when possible <strong><em>and remember to include
|
2836
|
+
the resolution in [brackets] in your title.</em></strong> If you
|
2837
|
+
don&#39;t, your submission will be removed. Thanks!</p>\\n\\n<hr/>\\n\\n<p><strong>Additional
|
2838
|
+
information:</strong></p>\\n\\n<p><a href=\\\"/r/EarthPorn/wiki/faq#wiki_man_made\\\">Man-Made
|
2839
|
+
Objects</a> | <a href=\\\"/r/EarthPorn/wiki/faq#wiki_water\\\">Agriculture</a>
|
2840
|
+
| <a href=\\\"/r/EarthPorn/wiki/faq#wiki_humans\\\">Humans</a>
|
2841
|
+
| <a href=\\\"/r/EarthPorn/wiki/faq#wiki_animals2\\\">Animals</a>
|
2842
|
+
| <a href=\\\"/r/EarthPorn/wiki/faq#wiki_water\\\">Water</a> -
|
2843
|
+
<a href=\\\"/r/EarthPorn/wiki/faq#wiki_sky\\\">Sky</a> | <a
|
2844
|
+
href=\\\"/r/EarthPorn/wiki/faq#wiki_space\\\">Space</a> | <a href=\\\"/r/EarthPorn/wiki/faq#wiki_fire\\\">Fire</a>
|
2845
|
+
| <a href=\\\"/r/EarthPorn/wiki/faq#wiki_plants\\\">Plants</a></p>\\n</div><!--
|
2846
|
+
SC_ON -->\", \"user_is_banned\": false, \"id\": \"2sbq3\", \"submit_text\":
|
2847
|
+
\"###Read our **[FAQ](/r/EarthPorn/wiki/faq)** and **[sidebar](/r/EarthPorn/about/sidebar)**
|
2848
|
+
before submitting!\\n\\n---\\n\\nSubmit the [original source](http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_the_image_i.27m_submitting_comes_from_the_photographer.27s_own_website.2C_do_i_still_have_to_rehost_it.3F)
|
2849
|
+
when possible ***and remember to include the resolution in [brackets] in your
|
2850
|
+
title.*** If you don't, your submission will be removed. Thanks!\\n\\n---\\n\\n**Additional
|
2851
|
+
information:**\\n\\n[Man-Made Objects](/r/EarthPorn/wiki/faq#wiki_man_made)
|
2852
|
+
| [Agriculture](/r/EarthPorn/wiki/faq#wiki_water) | [Humans](/r/EarthPorn/wiki/faq#wiki_humans)
|
2853
|
+
| [Animals](/r/EarthPorn/wiki/faq#wiki_animals2) | [Water](/r/EarthPorn/wiki/faq#wiki_water)
|
2854
|
+
- [Sky](/r/EarthPorn/wiki/faq#wiki_sky) | [Space](/r/EarthPorn/wiki/faq#wiki_space)
|
2855
|
+
| [Fire](/r/EarthPorn/wiki/faq#wiki_fire) | [Plants](/r/EarthPorn/wiki/faq#wiki_plants)\",
|
2856
|
+
\"spam_selfposts\": \"high\", \"display_name\": \"EarthPorn\", \"header_img\":
|
2857
|
+
\"http://d.thumbs.redditmedia.com/VLDCcDBfHZ01d4m-.png\", \"description_html\":
|
2858
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><blockquote>\\n<ul>\\n<li><a
|
2859
|
+
href=\\\"/r/ShittyEarthPorn\\\">ShittyEarthPorn</a></li>\\n</ul>\\n\\n<ul>\\n<li><a
|
2860
|
+
href=\\\"/r/VideoPorn\\\">VideoPorn</a></li>\\n</ul>\\n\\n<ul>\\n<li><a
|
2861
|
+
href=\\\"http://goo.gl/uJeYYx\\\">Scholastic</a></li>\\n<li><a
|
2862
|
+
href=\\\"/r/HistoryPorn\\\">/r/HistoryPorn</a></li>\\n<li><a
|
2863
|
+
href=\\\"/r/MapPorn\\\">/r/MapPorn</a></li>\\n<li><a
|
2864
|
+
href=\\\"/r/BookPorn\\\">/r/BookPorn</a></li>\\n<li><a
|
2865
|
+
href=\\\"/r/NewsPorn\\\">/r/NewsPorn</a></li>\\n<li><a
|
2866
|
+
href=\\\"/r/QuotesPorn\\\">/r/QuotesPorn</a></li>\\n<li><a
|
2867
|
+
href=\\\"/r/FuturePorn\\\">/r/FuturePorn</a></li>\\n<li><a
|
2868
|
+
href=\\\"/r/FossilPorn\\\">/r/FossilPorn</a></li>\\n</ul>\\n\\n<ul>\\n<li><a
|
2869
|
+
href=\\\"http://goo.gl/p9wQiP\\\">Aesthetic</a></li>\\n<li><a
|
2870
|
+
href=\\\"/r/DesignPorn\\\">/r/DesignPorn</a></li>\\n<li><a
|
2871
|
+
href=\\\"/r/AlbumArtPorn\\\">/r/AlbumArtPorn</a></li>\\n<li><a
|
2872
|
+
href=\\\"/r/MetalPorn\\\">/r/MetalPorn</a></li>\\n<li><a
|
2873
|
+
href=\\\"/r/MoviePosterPorn\\\">/r/MoviePosterPorn</a></li>\\n<li><a
|
2874
|
+
href=\\\"/r/AdPorn\\\">/r/AdPorn</a></li>\\n<li><a
|
2875
|
+
href=\\\"/r/GeekPorn\\\">/r/GeekPorn</a></li>\\n<li><a
|
2876
|
+
href=\\\"/r/RoomPorn\\\">/r/RoomPorn</a></li>\\n<li><a
|
2877
|
+
href=\\\"/r/InstrumentPorn\\\">/r/InstrumentPorn</a></li>\\n<li><a
|
2878
|
+
href=\\\"/r/MacroPorn\\\">/r/MacroPorn</a></li>\\n<li><a
|
2879
|
+
href=\\\"/r/MicroPorn\\\">/r/MicroPorn</a></li>\\n<li><a
|
2880
|
+
href=\\\"/r/ArtPorn\\\">/r/ArtPorn</a></li>\\n<li><a
|
2881
|
+
href=\\\"/r/FractalPorn\\\">/r/FractalPorn</a></li>\\n<li><a
|
2882
|
+
href=\\\"/r/ExposurePorn\\\">/r/ExposurePorn</a></li>\\n<li><a
|
2883
|
+
href=\\\"/r/StreetArtPorn\\\">/r/StreetArtPorn</a></li>\\n<li><a
|
2884
|
+
href=\\\"/r/AVPorn\\\">/r/AVPorn</a></li>\\n<li><a
|
2885
|
+
href=\\\"/r/powerwashingporn\\\">/r/powerwashingporn</a></li>\\n<li><a
|
2886
|
+
href=\\\"/r/uniformporn\\\">/r/uniformporn</a></li>\\n<li><a
|
2887
|
+
href=\\\"/r/mtgporn\\\">/r/mtgporn</a></li>\\n<li><a
|
2888
|
+
href=\\\"/r/GamerPorn\\\">/r/GamerPorn</a></li>\\n</ul>\\n\\n<ul>\\n<li><a
|
2889
|
+
href=\\\"http://goo.gl/W9GHud\\\">Organic</a></li>\\n<li><a
|
2890
|
+
href=\\\"/r/AnimalPorn\\\">/r/AnimalPorn</a></li>\\n<li><a
|
2891
|
+
href=\\\"/r/BotanicalPorn\\\">/r/BotanicalPorn</a></li>\\n<li><a
|
2892
|
+
href=\\\"/r/HumanPorn\\\">/r/HumanPorn</a></li>\\n<li><a
|
2893
|
+
href=\\\"/r/AdrenalinePorn\\\">/r/AdrenalinePorn</a></li>\\n<li><a
|
2894
|
+
href=\\\"/r/ClimbingPorn\\\">/r/ClimbingPorn</a></li>\\n<li><a
|
2895
|
+
href=\\\"/r/CulinaryPorn\\\">/r/CulinaryPorn</a></li>\\n<li><a
|
2896
|
+
href=\\\"/r/FoodPorn\\\">/r/FoodPorn</a></li>\\n<li><a
|
2897
|
+
href=\\\"/r/DessertPorn\\\">/r/DessertPorn</a></li>\\n<li><a
|
2898
|
+
href=\\\"/r/AgriculturePorn\\\">/r/AgriculturePorn</a></li>\\n<li><a
|
2899
|
+
href=\\\"/r/TeaPorn\\\">/r/TeaPorn</a></li>\\n<li><a
|
2900
|
+
href=\\\"/r/MegalithPorn\\\">/r/MegalithPorn</a></li>\\n<li><a
|
2901
|
+
href=\\\"/r/SportsPorn\\\">/r/SportsPorn</a></li>\\n<li><a
|
2902
|
+
href=\\\"/r/mushroomporn\\\">/r/mushroomporn</a></li>\\n</ul>\\n\\n<ul>\\n<li><a
|
2903
|
+
href=\\\"http://goo.gl/WNrlB2\\\">Synthetic</a></li>\\n<li><a
|
2904
|
+
href=\\\"/r/CityPorn\\\">/r/CityPorn</a></li>\\n<li><a
|
2905
|
+
href=\\\"/r/VillagePorn\\\">/r/VillagePorn</a></li>\\n<li><a
|
2906
|
+
href=\\\"/r/AbandonedPorn\\\">/r/AbandonedPorn</a></li>\\n<li><a
|
2907
|
+
href=\\\"/r/InfrastructurePorn\\\">/r/InfrastructurePorn</a></li>\\n<li><a
|
2908
|
+
href=\\\"/r/MachinePorn\\\">/r/MachinePorn</a></li>\\n<li><a
|
2909
|
+
href=\\\"/r/MilitaryPorn\\\">/r/MilitaryPorn</a></li>\\n<li><a
|
2910
|
+
href=\\\"/r/CemeteryPorn\\\">/r/CemeteryPorn</a></li>\\n<li><a
|
2911
|
+
href=\\\"/r/ArchitecturePorn\\\">/r/ArchitecturePorn</a></li>\\n<li><a
|
2912
|
+
href=\\\"/r/CarPorn\\\">/r/CarPorn</a></li>\\n<li><a
|
2913
|
+
href=\\\"/r/F1Porn\\\">/r/F1Porn</a></li>\\n<li><a
|
2914
|
+
href=\\\"/r/GunPorn\\\">/r/GunPorn</a></li>\\n<li><a
|
2915
|
+
href=\\\"/r/KnifePorn\\\">/r/KnifePorn</a></li>\\n<li><a
|
2916
|
+
href=\\\"/r/BoatPorn\\\">/r/BoatPorn</a></li>\\n<li><a
|
2917
|
+
href=\\\"/r/AerialPorn\\\">/r/AerialPorn</a></li>\\n<li><a
|
2918
|
+
href=\\\"/r/RuralPorn\\\">/r/RuralPorn</a></li>\\n<li><a
|
2919
|
+
href=\\\"/r/RidesPorn\\\">/r/RidesPorn</a></li>\\n<li><a
|
2920
|
+
href=\\\"/r/HousePorn\\\">/r/HousePorn</a></li>\\n<li><a
|
2921
|
+
href=\\\"/r/thingscutinhalfporn\\\">/r/thingscutinhalfporn</a></li>\\n<li><a
|
2922
|
+
href=\\\"/r/cabinporn\\\">/r/cabinporn</a></li>\\n</ul>\\n\\n<ul>\\n<li><a
|
2923
|
+
href=\\\"http://goo.gl/6qAwkD\\\">Elemental</a></li>\\n<li><a
|
2924
|
+
href=\\\"/r/EarthPorn\\\">/r/EarthPorn</a></li>\\n<li><a
|
2925
|
+
href=\\\"/r/WaterPorn\\\">/r/WaterPorn</a></li>\\n<li><a
|
2926
|
+
href=\\\"/r/SkyPorn\\\">/r/SkyPorn</a></li>\\n<li><a
|
2927
|
+
href=\\\"/r/SpacePorn\\\">/r/SpacePorn</a></li>\\n<li><a
|
2928
|
+
href=\\\"/r/FirePorn\\\">/r/FirePorn</a></li>\\n<li><a
|
2929
|
+
href=\\\"/r/DestructionPorn\\\">/r/DestructionPorn</a></li>\\n<li><a
|
2930
|
+
href=\\\"/r/GeologyPorn\\\">/r/GeologyPorn</a></li>\\n<li><a
|
2931
|
+
href=\\\"/r/WinterPorn\\\">/r/WinterPorn</a></li>\\n<li><a
|
2932
|
+
href=\\\"/r/AutumnPorn\\\">/r/AutumnPorn</a></li>\\n<li><a
|
2933
|
+
href=\\\"/r/weatherporn\\\">/r/weatherporn</a></li>\\n</ul>\\n\\n<ul>\\n<li><a
|
2934
|
+
href=\\\"http://stattit.com/user/pornoverlord/\\\">The SFW Porn Network</a></li>\\n<li><a
|
2935
|
+
href=\\\"http://goo.gl/W7cIF\\\">Browse All</a></li>\\n<li><a
|
2936
|
+
href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq\\\">FAQ</a></li>\\n<li><a
|
2937
|
+
href=\\\"https://kiwiirc.com/client/irc.snoonet.org/pornoverlords\\\">Join
|
2938
|
+
us on IRC</a></li>\\n<li><a href=\\\"http://reddit.com/r/pornoverlords\\\">Network
|
2939
|
+
Discussion</a></li>\\n</ul>\\n</blockquote>\\n\\n<h3><a
|
2940
|
+
href=\\\"/r/AutumnPorn\\\">Submit some awesome Autumn shots to /r/AutumnPorn!</a></h3>\\n\\n<hr/>\\n\\n<p><strong>Submission
|
2941
|
+
Rules</strong></p>\\n\\n<ul>\\n<li>Include the location
|
2942
|
+
in the title.</li>\\n<li>Include the resolution <strong>in
|
2943
|
+
[brackets]</strong> in the title.</li>\\n<li>Only submit
|
2944
|
+
static images.\\n\\n<ul>\\n<li>Videos, collections/albums, interactive
|
2945
|
+
images/websites, and articles are <strong>not</strong> allowed.</li>\\n</ul></li>\\n<li>EarthPorn
|
2946
|
+
is for natural landscapes only, there should be some visible land in the picture.
|
2947
|
+
If you are submitting an image of:\\n\\n<ul>\\n<li><strong>man
|
2948
|
+
made objects</strong>, read <strong><a href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_man_made\\\">this</a></strong>.</li>\\n<li><strong>agriculture</strong>,
|
2949
|
+
read <strong><a href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_structures\\\">this</a></strong>.</li>\\n<li><strong>humans</strong>,
|
2950
|
+
read <strong><a href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_humans\\\">this</a></strong>.</li>\\n<li><strong>animals</strong>,
|
2951
|
+
read <strong><a href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_animals2\\\">this</a></strong>.</li>\\n<li><strong>water</strong>,
|
2952
|
+
read <strong><a href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_water\\\">this</a></strong>.</li>\\n<li><strong>sky</strong>,
|
2953
|
+
read <strong><a href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_sky\\\">this</a></strong>.</li>\\n<li><strong>space</strong>,
|
2954
|
+
read <strong><a href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_space\\\">this</a></strong>.</li>\\n<li><strong>fire</strong>,
|
2955
|
+
read <strong><a href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_fire\\\">this</a></strong>.</li>\\n<li><strong>plants</strong>,
|
2956
|
+
<strong><a href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_plants\\\">this</a></strong>.</li>\\n</ul></li>\\n<li>Make
|
2957
|
+
sure your image is hosted by an <a href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_this_is_my_first_time_submitting.2C_what_should_i_know.3F\\\">approved
|
2958
|
+
host</a>.\\n\\n<ul>\\n<li>Original source <strong>is
|
2959
|
+
allowed and preferred</strong> over the approved hosts. If your submission
|
2960
|
+
is not on the list of approved hosts, but it is an original source, please
|
2961
|
+
use the tag <strong>[OS]</strong> so your submission is not removed
|
2962
|
+
in error. <strong><a href=\\\"http://www.reddit.com/r/PornOverlords/comments/t0o83/results_thread_rehost_rule_v2/\\\">If
|
2963
|
+
your image is rehosted from another approved host it will be removed.</a></strong></li>\\n<li>If
|
2964
|
+
you took the photo yourself, you can signify this by using the tag <strong>[OC]</strong>
|
2965
|
+
(<em>original content</em>) and after 24 hours you will be given
|
2966
|
+
special flair. If you don&#39;t receive flair after a few days feel free
|
2967
|
+
to message the mods.</li>\\n</ul></li>\\n<li>Regarding
|
2968
|
+
reposts: it is not a repost unless it was posted to <a href=\\\"/r/EarthPorn\\\">/r/EarthPorn</a>
|
2969
|
+
less than three months ago, or if it&#39;s already in the <a href=\\\"http://www.reddit.com/r/EarthPorn/top/\\\">top100
|
2970
|
+
of all time.</a></li>\\n<li>If you have any questions check
|
2971
|
+
out the <a href=\\\"http://www.reddit.com/r/EarthPorn/wiki/faq\\\"><strong>FAQ</strong></a>.</li>\\n</ul>\\n\\n<p><strong>General
|
2972
|
+
Rules</strong></p>\\n\\n<ul>\\n<li><a href=\\\"/r/EarthPorn\\\">/r/EarthPorn</a>
|
2973
|
+
mods reserve the right to remove posts and comments at their own discretion.</li>\\n</ul>\\n\\n<hr/>\\n\\n<p><strong><a
|
2974
|
+
href=\\\"http://goo.gl/L9l37\\\">Interested in acquiring your own EarthPorn
|
2975
|
+
T-Shirt? Check out this thread!</a></strong></p>\\n\\n<hr/>\\n\\n<p><strong><a
|
2976
|
+
href=\\\"http://twitter.com/sfwpearth\\\">Follow us on Twitter!</a></strong></p>\\n\\n<hr/>\\n\\n<p><strong>Other
|
2977
|
+
subreddits you may enjoy:</strong></p>\\n\\n<ul>\\n<li><a
|
2978
|
+
href=\\\"/r/AmateurEarthPorn\\\">/r/AmateurEarthPorn</a></li>\\n<li><a
|
2979
|
+
href=\\\"/r/AmateurPhotography\\\">/r/AmateurPhotography</a></li>\\n<li><a
|
2980
|
+
href=\\\"/r/LakePorn\\\">/r/LakePorn</a></li>\\n<li><a
|
2981
|
+
href=\\\"/r/BeachPorn\\\">/r/BeachPorn</a></li>\\n<li><a
|
2982
|
+
href=\\\"/r/Climbing\\\">/r/Climbing</a></li>\\n<li><a
|
2983
|
+
href=\\\"/r/Conservation\\\">/r/Conservation</a></li>\\n<li><a
|
2984
|
+
href=\\\"/r/EarthPornVids\\\">/r/EarthPornVids</a></li>\\n<li><a
|
2985
|
+
href=\\\"/r/EyeCandy\\\">/r/EyeCandy</a></li>\\n<li><a
|
2986
|
+
href=\\\"/r/FWEPP\\\">/r/FWEPP</a></li>\\n<li><a href=\\\"/r/ImaginaryLandscapes\\\">/r/ImaginaryLandscapes</a></li>\\n<li><a
|
2987
|
+
href=\\\"/r/ImaginaryWildlands\\\">/r/ImaginaryWildlands</a></li>\\n<li><a
|
2988
|
+
href=\\\"/r/IncredibleIndia\\\">/r/IncredibleIndia</a></li>\\n<li><a
|
2989
|
+
href=\\\"/r/ITookAPicture\\\">/r/ITookAPicture</a></li>\\n<li><a
|
2990
|
+
href=\\\"/r/JoshuaTree\\\">/r/JoshuaTree</a></li>\\n<li><a
|
2991
|
+
href=\\\"/r/NationalGeographic\\\">/r/NationalGeographic</a></li>\\n<li><a
|
2992
|
+
href=\\\"/r/Nature\\\">/r/Nature</a></li>\\n<li><a
|
2993
|
+
href=\\\"/r/NatureGifs\\\">/r/NatureGifs</a></li>\\n<li><a
|
2994
|
+
href=\\\"/r/NaturePics\\\">/r/NaturePics</a></li>\\n<li><a
|
2995
|
+
href=\\\"/r/NotSafeForNature\\\">/r/NotSafeForNature</a> (NSFW)</li>\\n<li><a
|
2996
|
+
href=\\\"/r/NZPhotos\\\">/r/NZPhotos</a></li>\\n<li><a
|
2997
|
+
href=\\\"/r/remoteplaces\\\">/r/remoteplaces</a></li>\\n<li><a
|
2998
|
+
href=\\\"/r/SpecArt\\\">/r/SpecArt</a></li>\\n</ul>\\n\\n<p>Check
|
2999
|
+
out <a href=\\\"http://www.reddit.com/user/karmicviolence/m/imaginaryexpanded\\\">The
|
3000
|
+
Imaginary Network: Expanded</a> for scifi &amp; fantasy artwork!</p>\\n</div><!--
|
3001
|
+
SC_ON -->\", \"title\": \"EarthPorn: Mother Nature in all of her succulent
|
3002
|
+
beauty.\", \"over18\": false, \"user_is_moderator\": false, \"header_title\":
|
3003
|
+
\"Thanks /u/stabberthomas for making awesome custom aliens for us!\", \"description\":
|
3004
|
+
\">* [ShittyEarthPorn](/r/ShittyEarthPorn)\\n\\n>#\\n\\n>* [VideoPorn](/r/VideoPorn)\\n\\n>#\\n\\n>*
|
3005
|
+
[Scholastic](http://goo.gl/uJeYYx)\\n* /r/HistoryPorn\\n* /r/MapPorn\\n* /r/BookPorn\\n*
|
3006
|
+
/r/NewsPorn\\n* /r/QuotesPorn\\n* /r/FuturePorn\\n* /r/FossilPorn\\n\\n>#\\n\\n>*
|
3007
|
+
[Aesthetic](http://goo.gl/p9wQiP)\\n* /r/DesignPorn\\n* /r/AlbumArtPorn\\n*
|
3008
|
+
/r/MetalPorn\\n* /r/MoviePosterPorn\\n* /r/AdPorn\\n* /r/GeekPorn\\n* /r/RoomPorn\\n*
|
3009
|
+
/r/InstrumentPorn\\n* /r/MacroPorn\\n* /r/MicroPorn\\n* /r/ArtPorn\\n* /r/FractalPorn\\n*
|
3010
|
+
/r/ExposurePorn\\n* /r/StreetArtPorn\\n* /r/AVPorn\\n* /r/powerwashingporn\\n*
|
3011
|
+
/r/uniformporn\\n* /r/mtgporn\\n* /r/GamerPorn\\n\\n\\n>#\\n\\n>* [Organic](http://goo.gl/W9GHud)\\n*
|
3012
|
+
/r/AnimalPorn\\n* /r/BotanicalPorn\\n* /r/HumanPorn\\n* /r/AdrenalinePorn\\n*
|
3013
|
+
/r/ClimbingPorn\\n* /r/CulinaryPorn\\n* /r/FoodPorn\\n* /r/DessertPorn\\n*
|
3014
|
+
/r/AgriculturePorn\\n* /r/TeaPorn\\n* /r/MegalithPorn\\n* /r/SportsPorn\\n*
|
3015
|
+
/r/mushroomporn\\n\\n>#\\n\\n>* [Synthetic](http://goo.gl/WNrlB2)\\n*
|
3016
|
+
/r/CityPorn\\n* /r/VillagePorn\\n* /r/AbandonedPorn\\n* /r/InfrastructurePorn\\n*
|
3017
|
+
/r/MachinePorn\\n* /r/MilitaryPorn\\n* /r/CemeteryPorn\\n* /r/ArchitecturePorn\\n*
|
3018
|
+
/r/CarPorn\\n* /r/F1Porn\\n* /r/GunPorn\\n* /r/KnifePorn\\n* /r/BoatPorn\\n*
|
3019
|
+
/r/AerialPorn\\n* /r/RuralPorn\\n* /r/RidesPorn\\n* /r/HousePorn\\n* /r/thingscutinhalfporn\\n*
|
3020
|
+
/r/cabinporn\\n\\n>#\\n\\n>* [Elemental](http://goo.gl/6qAwkD)\\n* /r/EarthPorn\\n*
|
3021
|
+
/r/WaterPorn\\n* /r/SkyPorn\\n* /r/SpacePorn\\n* /r/FirePorn\\n* /r/DestructionPorn\\n*
|
3022
|
+
/r/GeologyPorn\\n* /r/WinterPorn\\n* /r/AutumnPorn\\n* /r/weatherporn\\n\\n>#\\n\\n>*
|
3023
|
+
[The SFW Porn Network](http://stattit.com/user/pornoverlord/)\\n* [Browse
|
3024
|
+
All](http://goo.gl/W7cIF)\\n* [FAQ](http://www.reddit.com/r/EarthPorn/wiki/faq)\\n*
|
3025
|
+
[Join us on IRC](https://kiwiirc.com/client/irc.snoonet.org/pornoverlords)\\n*
|
3026
|
+
[Network Discussion](http://reddit.com/r/pornoverlords)\\n\\n\\n###[Submit
|
3027
|
+
some awesome Autumn shots to /r/AutumnPorn!](/r/AutumnPorn)\\n\\n----\\n\\n**Submission
|
3028
|
+
Rules**\\n\\n* Include the location in the title.\\n* Include the resolution
|
3029
|
+
**in [brackets]** in the title.\\n* Only submit static images.\\n * Videos,
|
3030
|
+
collections/albums, interactive images/websites, and articles are **not**
|
3031
|
+
allowed.\\n* EarthPorn is for natural landscapes only, there should be some
|
3032
|
+
visible land in the picture. If you are submitting an image of:\\n * **man
|
3033
|
+
made objects**, read **[this](http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_man_made)**.\\n
|
3034
|
+
* **agriculture**, read **[this](http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_structures)**.\\n
|
3035
|
+
* **humans**, read **[this](http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_humans)**.\\n
|
3036
|
+
* **animals**, read **[this](http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_animals2)**.\\n
|
3037
|
+
* **water**, read **[this](http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_water)**.\\n
|
3038
|
+
* **sky**, read **[this](http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_sky)**.\\n
|
3039
|
+
* **space**, read **[this](http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_space)**.\\n
|
3040
|
+
* **fire**, read **[this](http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_fire)**.\\n
|
3041
|
+
* **plants**, **[this](http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_plants)**.\\n*
|
3042
|
+
Make sure your image is hosted by an [approved host](http://www.reddit.com/r/EarthPorn/wiki/faq#wiki_this_is_my_first_time_submitting.2C_what_should_i_know.3F).\\n
|
3043
|
+
* Original source **is allowed and preferred** over the approved hosts. If
|
3044
|
+
your submission is not on the list of approved hosts, but it is an original
|
3045
|
+
source, please use the tag **[OS]** so your submission is not removed in error.
|
3046
|
+
**[If your image is rehosted from another approved host it will be removed.](http://www.reddit.com/r/PornOverlords/comments/t0o83/results_thread_rehost_rule_v2/)**\\n
|
3047
|
+
* If you took the photo yourself, you can signify this by using the tag **[OC]**
|
3048
|
+
(*original content*) and after 24 hours you will be given special flair. If
|
3049
|
+
you don't receive flair after a few days feel free to message the mods.\\n*
|
3050
|
+
Regarding reposts: it is not a repost unless it was posted to /r/EarthPorn
|
3051
|
+
less than three months ago, or if it's already in the [top100 of all time.](http://www.reddit.com/r/EarthPorn/top/)\\n*
|
3052
|
+
If you have any questions check out the [**FAQ**](http://www.reddit.com/r/EarthPorn/wiki/faq).\\n\\n**General
|
3053
|
+
Rules**\\n\\n* /r/EarthPorn mods reserve the right to remove posts and comments
|
3054
|
+
at their own discretion.\\n\\n----\\n\\n**[Interested in acquiring your own
|
3055
|
+
EarthPorn T-Shirt? Check out this thread!](http://goo.gl/L9l37)**\\n\\n----\\n\\n\\n**[Follow
|
3056
|
+
us on Twitter!](http://twitter.com/sfwpearth)**\\n\\n-----\\n\\n**Other subreddits
|
3057
|
+
you may enjoy:**\\n\\n* /r/AmateurEarthPorn\\n* /r/AmateurPhotography\\n*
|
3058
|
+
/r/LakePorn\\n* /r/BeachPorn\\n* /r/Climbing\\n* /r/Conservation\\n* /r/EarthPornVids\\n*
|
3059
|
+
/r/EyeCandy\\n* /r/FWEPP\\n* /r/ImaginaryLandscapes\\n* /r/ImaginaryWildlands\\n*
|
3060
|
+
/r/IncredibleIndia\\n* /r/ITookAPicture\\n* /r/JoshuaTree\\n* /r/NationalGeographic\\n*
|
3061
|
+
/r/Nature\\n* /r/NatureGifs\\n* /r/NaturePics\\n* /r/NotSafeForNature (NSFW)\\n*
|
3062
|
+
/r/NZPhotos\\n* /r/remoteplaces\\n* /r/SpecArt\\n\\nCheck out [The Imaginary
|
3063
|
+
Network: Expanded](http://www.reddit.com/user/karmicviolence/m/imaginaryexpanded)
|
3064
|
+
for scifi & fantasy artwork!\", \"submit_link_label\": \"Submit a new
|
3065
|
+
image\", \"accounts_active\": null, \"spam_comments\": \"high\", \"spam_links\":
|
3066
|
+
\"high\", \"header_size\": [52, 188], \"subscribers\": 988337, \"submit_text_label\":
|
3067
|
+
null, \"name\": \"t5_2sbq3\", \"created\": 1297669766.0, \"url\": \"/r/EarthPorn/\",
|
3068
|
+
\"created_utc\": 1297669766.0, \"user_is_contributor\": false, \"public_traffic\":
|
3069
|
+
true, \"public_description\": \"Natural Landscapes\", \"comment_score_hide_mins\":
|
3070
|
+
60, \"subreddit_type\": \"public\", \"submission_type\": \"link\", \"user_is_subscriber\":
|
3071
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
3072
|
+
--><div class=\\\"md\\\"><ol>\\n<li><p>All posts
|
3073
|
+
must be informative or discussion-focused, and be directly directly related
|
3074
|
+
to books or authors.</p></li>\\n<li><p>No image-only
|
3075
|
+
posts. You can include an image in a self-post, along with some elaboration/background
|
3076
|
+
info.</p></li>\\n<li><p>No memes or macro-images.</p></li>\\n<li><p>Promoting
|
3077
|
+
your own book must be done in <a href=\\\"/r/WroteABook\\\">/r/WroteABook</a>.
|
3078
|
+
Self-Promotional posts of any other kind are not allowed.</p></li>\\n<li><p>No
|
3079
|
+
direct sales links. Please link to Goodreads, not Amazon.</p></li>\\n<li><p>No
|
3080
|
+
distribution or discussion of pirated books.</p></li>\\n<li><p>Requests
|
3081
|
+
for personalized suggestions should be made in either our Weekly Recommendation
|
3082
|
+
Thread or <a href=\\\"/r/BookSuggestions\\\">/r/BookSuggestions</a>.</p></li>\\n<li><p>&quot;Help
|
3083
|
+
me remember this book&quot;-type posts should be made in <a href=\\\"/r/whatsthatbook\\\">/r/whatsthatbook</a>
|
3084
|
+
or <a href=\\\"/r/TOMT\\\">/r/TOMT</a>.</p></li>\\n<li><p>No
|
3085
|
+
inflammatory comments or politically charged posts. Novelty accounts that
|
3086
|
+
do not add to the discussion will be banned.</p></li>\\n<li><p>All
|
3087
|
+
normal reddit rules apply, remember redditquette and mods have the final say.</p></li>\\n</ol>\\n</div><!--
|
3088
|
+
SC_ON -->\", \"user_is_banned\": false, \"id\": \"2qh4i\", \"submit_text\":
|
3089
|
+
\"1. All posts must be informative or discussion-focused, and be directly
|
3090
|
+
directly related to books or authors.\\n\\n2. No image-only posts. You can
|
3091
|
+
include an image in a self-post, along with some elaboration/background info.\\n\\n3.
|
3092
|
+
No memes or macro-images.\\n\\n4. Promoting your own book must be done in
|
3093
|
+
/r/WroteABook. Self-Promotional posts of any other kind are not allowed.\\n\\n5.
|
3094
|
+
No direct sales links. Please link to Goodreads, not Amazon.\\n\\n6. No distribution
|
3095
|
+
or discussion of pirated books.\\n\\n7. Requests for personalized suggestions
|
3096
|
+
should be made in either our Weekly Recommendation Thread or /r/BookSuggestions.\\n\\n8.
|
3097
|
+
\\\"Help me remember this book\\\"-type posts should be made in /r/whatsthatbook
|
3098
|
+
or /r/TOMT.\\n\\n9. No inflammatory comments or politically charged posts.
|
3099
|
+
Novelty accounts that do not add to the discussion will be banned.\\n\\n10.
|
3100
|
+
All normal reddit rules apply, remember redditquette and mods have the final
|
3101
|
+
say.\", \"spam_selfposts\": \"high\", \"display_name\": \"books\", \"header_img\":
|
3102
|
+
\"http://thumbs.reddit.com/t5_2qh4i.png?v=ef252ac4e462cbf57c52d28066b0a75c\",
|
3103
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><h5>Looking
|
3104
|
+
for a book, author, or series to read? <strong><a href=\\\"http://redd.it/1qbaex\\\">Click
|
3105
|
+
here for the Weekly Recommendation Thread!</a></strong></h5>\\n\\n<h4>Next
|
3106
|
+
week is &quot;Harry Potter Week&quot; in <a href=\\\"/r/MovieOfTheDay\\\">/r/MovieOfTheDay</a>!</h4>\\n\\n<p><a
|
3107
|
+
href=\\\"http://www.reddit.com/r/books/submit\\\">Submit a link</a>
|
3108
|
+
<a href=\\\"http://www.reddit.com/r/books/submit?selftext=true\\\">Submit
|
3109
|
+
a self-post</a><a href=\\\"http://www.reddit.com/message/compose?to=%2Fr%2Fbooks\\\">Message
|
3110
|
+
the mods</a><a href=\\\"http://www.reddit.com/r/books/new/\\\">Browse
|
3111
|
+
/new</a></p>\\n\\n<p>Welcome to <a href=\\\"/r/Books\\\">/r/Books</a>!
|
3112
|
+
This community is focused on discussing books, authors, genres, or everything
|
3113
|
+
else book related. </p>\\n\\n<p><strong><a href=\\\"/r/books/wiki/index\\\">Click
|
3114
|
+
here for our Wiki Index.</a></strong></p>\\n\\n<hr/>\\n\\n<ul>\\n<li><strong>|Upcoming
|
3115
|
+
AMAs:</strong></li>\\n</ul>\\n\\n<table><thead>\\n<tr>\\n<th
|
3116
|
+
align=\\\"left\\\">Date</th>\\n<th>Start Time</th>\\n<th
|
3117
|
+
align=\\\"center\\\">Person</th>\\n<th align=\\\"left\\\">Description</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
3118
|
+
align=\\\"left\\\">Nov 10</td>\\n<td>11AM EST</td>\\n<td
|
3119
|
+
align=\\\"center\\\"><strong><a href=\\\"http://goo.gl/QyrUuH\\\">William
|
3120
|
+
Kowalski</a></strong></td>\\n<td align=\\\"left\\\">Author
|
3121
|
+
of <em><a href=\\\"http://goo.gl/Ek4mCv\\\">Eddie&#39;s Bastard</a></em></td>\\n</tr>\\n<tr>\\n<td
|
3122
|
+
align=\\\"left\\\">Nov 12</td>\\n<td>9AM EST</td>\\n<td
|
3123
|
+
align=\\\"center\\\"><strong><a href=\\\"https://www.goodreads.com/author/show/7300492.Shaun_Gallagher?from_search=true\\\">Shaun
|
3124
|
+
Gallagher</a></strong></td>\\n<td align=\\\"left\\\">Author
|
3125
|
+
of <em><a href=\\\"http://www.experimentingwithbabies.com\\\">Experimenting
|
3126
|
+
with Babies</a></em></td>\\n</tr>\\n<tr>\\n<td
|
3127
|
+
align=\\\"left\\\">Nov 13</td>\\n<td>8AM EST</td>\\n<td
|
3128
|
+
align=\\\"center\\\"><strong><a href=\\\"http://goo.gl/YGO4kI\\\">Rebecca
|
3129
|
+
A. Demarest</a></strong></td>\\n<td align=\\\"left\\\">Author
|
3130
|
+
of <em><a href=\\\"http://goo.gl/XbXX3X\\\">Undeliverable</a></em></td>\\n</tr>\\n</tbody></table>\\n\\n<ul>\\n<li><strong><a
|
3131
|
+
href=\\\"/r/books/wiki/ama\\\">|Previous AMAs</a></strong></li>\\n</ul>\\n\\n<hr/>\\n\\n<h2><a
|
3132
|
+
href=\\\"http://www.reddit.com/r/books/wiki/rules\\\">Quick Rules</a></h2>\\n\\n<hr/>\\n\\n<ul>\\n<li><strong><a
|
3133
|
+
href=\\\"/r/books/wiki/rules\\\">|Full Rules &amp; Guidelines</a></strong></li>\\n</ul>\\n\\n<hr/>\\n\\n<ul>\\n<li><strong><a
|
3134
|
+
href=\\\"/r/Books/wiki/spoilers\\\">|Spoiler Policy</a></strong></li>\\n</ul>\\n\\n<hr/>\\n\\n<ul>\\n<li><strong><a
|
3135
|
+
href=\\\"/r/books/wiki/whattoread\\\">|Suggested Reading</a></strong></li>\\n</ul>\\n\\n<hr/>\\n\\n<ul>\\n<li><strong><a
|
3136
|
+
href=\\\"/r/books/wiki/sidebarpics\\\">|Submit a sidebar pic</a></strong></li>\\n</ul>\\n\\n<hr/>\\n\\n<ul>\\n<li><p><strong>|IRC
|
3137
|
+
Chat:</strong></p></li>\\n<li><p><a href=\\\"https://kiwiirc.com/client/irc.snoonet.org/bookclub\\\">Join
|
3138
|
+
#bookclub on Snoonet to talk about books <strong>live!</strong></a></p></li>\\n</ul>\\n\\n<hr/>\\n\\n<ul>\\n<li><strong>|Related
|
3139
|
+
Subreddits:</strong></li>\\n</ul>\\n\\n<hr/>\\n\\n<table><thead>\\n<tr>\\n<th
|
3140
|
+
align=\\\"left\\\">Genres</th>\\n<th align=\\\"right\\\">Images</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
3141
|
+
align=\\\"left\\\"><a href=\\\"/r/Fantasy\\\">/r/Fantasy</a></td>\\n<td
|
3142
|
+
align=\\\"right\\\"><a href=\\\"/r/BookPorn\\\">/r/BookPorn</a></td>\\n</tr>\\n<tr>\\n<td
|
3143
|
+
align=\\\"left\\\"><a href=\\\"/r/Literature\\\">/r/Literature</a></td>\\n<td
|
3144
|
+
align=\\\"right\\\"><a href=\\\"/r/BookShelf\\\">/r/BookShelf</a></td>\\n</tr>\\n<tr>\\n<td
|
3145
|
+
align=\\\"left\\\"><a href=\\\"/r/Poetry\\\">/r/Poetry</a></td>\\n<td
|
3146
|
+
align=\\\"right\\\"><a href=\\\"/r/BookCollecting\\\">/r/BookCollecting</a></td>\\n</tr>\\n<tr>\\n<td
|
3147
|
+
align=\\\"left\\\"><a href=\\\"/r/ComicBooks\\\">/r/ComicBooks</a></td>\\n<td
|
3148
|
+
align=\\\"right\\\"><a href=\\\"/r/ComicBookArt\\\">/r/ComicBookArt</a></td>\\n</tr>\\n<tr>\\n<td
|
3149
|
+
align=\\\"left\\\"><a href=\\\"/r/YALit\\\">/r/YALit</a></td>\\n<td
|
3150
|
+
align=\\\"right\\\"><a href=\\\"/r/ProsePorn\\\">/r/ProsePorn</a></td>\\n</tr>\\n<tr>\\n<td
|
3151
|
+
align=\\\"left\\\"><a href=\\\"/r/PrintSF\\\">/r/PrintSF</a></td>\\n<td
|
3152
|
+
align=\\\"right\\\"><a href=\\\"/r/BookHaul\\\">/r/BookHaul</a></td>\\n</tr>\\n<tr>\\n<td
|
3153
|
+
align=\\\"left\\\"><a href=\\\"/r/DystopianBooks\\\">/r/DystopianBooks</a></td>\\n<td
|
3154
|
+
align=\\\"right\\\"><a href=\\\"/r/BookMemes\\\">/r/BookMemes</a></td>\\n</tr>\\n<tr>\\n<td
|
3155
|
+
align=\\\"left\\\"><a href=\\\"/r/Writing\\\">/r/Writing</a></td>\\n<td
|
3156
|
+
align=\\\"right\\\"><a href=\\\"/r/BookWallpapers\\\">/r/BookWallpapers</a></td>\\n</tr>\\n<tr>\\n<td
|
3157
|
+
align=\\\"left\\\"><a href=\\\"/r/RomanceBooks\\\">/r/RomanceBooks</a></td>\\n<td
|
3158
|
+
align=\\\"right\\\"><a href=\\\"/r/Pics\\\">/r/Pics</a></td>\\n</tr>\\n</tbody></table>\\n\\n<hr/>\\n\\n<table><thead>\\n<tr>\\n<th
|
3159
|
+
align=\\\"left\\\">Discussion</th>\\n<th align=\\\"right\\\">Miscellaneous</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
3160
|
+
align=\\\"left\\\"><a href=\\\"/r/BookSuggestions\\\">/r/BookSuggestions</a></td>\\n<td
|
3161
|
+
align=\\\"right\\\"><a href=\\\"/r/BookClub\\\">/r/BookClub</a></td>\\n</tr>\\n<tr>\\n<td
|
3162
|
+
align=\\\"left\\\"><a href=\\\"/r/BooksAMA\\\">/r/BooksAMA</a></td>\\n<td
|
3163
|
+
align=\\\"right\\\"><a href=\\\"/r/Random_Acts_of_Books\\\">/r/R_a_o_B</a></td>\\n</tr>\\n<tr>\\n<td
|
3164
|
+
align=\\\"left\\\"><a href=\\\"/r/TrueBooks\\\">/r/TrueBooks</a></td>\\n<td
|
3165
|
+
align=\\\"right\\\"><a href=\\\"/r/WroteABook\\\">/r/WroteABook</a></td>\\n</tr>\\n<tr>\\n<td
|
3166
|
+
align=\\\"left\\\"><a href=\\\"/r/WhatsThatBook\\\">/r/WhatsThatBook</a></td>\\n<td
|
3167
|
+
align=\\\"right\\\"><a href=\\\"/r/BookExchange\\\">/r/BookExchange</a></td>\\n</tr>\\n<tr>\\n<td
|
3168
|
+
align=\\\"left\\\"><a href=\\\"/r/TOMT\\\">/r/TOMT</a></td>\\n<td
|
3169
|
+
align=\\\"right\\\"><a href=\\\"/r/LiteratureVideos\\\">/r/LiteratureVideos</a></td>\\n</tr>\\n<tr>\\n<td
|
3170
|
+
align=\\\"left\\\"><a href=\\\"/r/Libraries\\\">/r/Libraries</a></td>\\n<td
|
3171
|
+
align=\\\"right\\\"><a href=\\\"/r/TravelingBooks\\\">/r/TravelingBooks</a></td>\\n</tr>\\n<tr>\\n<td
|
3172
|
+
align=\\\"left\\\"><a href=\\\"/r/BookLists\\\">/r/BookLists</a></td>\\n<td
|
3173
|
+
align=\\\"right\\\"><a href=\\\"/r/52Book\\\">/r/52Book</a></td>\\n</tr>\\n<tr>\\n<td
|
3174
|
+
align=\\\"left\\\"><a href=\\\"/r/TrueBooks\\\">/r/TrueBooks</a></td>\\n<td
|
3175
|
+
align=\\\"right\\\"><a href=\\\"/r/bookies\\\">/r/bookies</a></td>\\n</tr>\\n</tbody></table>\\n\\n<hr/>\\n\\n<table><thead>\\n<tr>\\n<th
|
3176
|
+
align=\\\"left\\\">Ebooks</th>\\n<th align=\\\"right\\\">Writing</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
3177
|
+
align=\\\"left\\\"><a href=\\\"/r/ebooks\\\">/r/ebooks</a></td>\\n<td
|
3178
|
+
align=\\\"right\\\"><a href=\\\"/r/Writing\\\">/r/Writing</a></td>\\n</tr>\\n<tr>\\n<td
|
3179
|
+
align=\\\"left\\\"><a href=\\\"/r/Kindle\\\">/r/Kindle</a></td>\\n<td
|
3180
|
+
align=\\\"right\\\"><a href=\\\"/r/Poetry\\\">/r/Poetry</a></td>\\n</tr>\\n<tr>\\n<td
|
3181
|
+
align=\\\"left\\\"><a href=\\\"/r/KindleFreebies\\\">/r/KindleFreebies</a></td>\\n<td
|
3182
|
+
align=\\\"right\\\"><a href=\\\"/r/Publishing\\\">/r/Publishing</a></td>\\n</tr>\\n<tr>\\n<td
|
3183
|
+
align=\\\"left\\\"><a href=\\\"/r/ebookdeals\\\">/r/ebookdeals</a></td>\\n<td
|
3184
|
+
align=\\\"right\\\"><a href=\\\"/r/ShutUpAndWrite\\\">/r/ShutUpAndWrite</a></td>\\n</tr>\\n<tr>\\n<td
|
3185
|
+
align=\\\"left\\\"><a href=\\\"/r/Nook\\\">/r/Nook</a></td>\\n<td
|
3186
|
+
align=\\\"right\\\"><a href=\\\"/r/KeepWriting\\\">/r/KeepWriting</a></td>\\n</tr>\\n<tr>\\n<td
|
3187
|
+
align=\\\"left\\\"><a href=\\\"/r/FreeNookBooks\\\">/r/FreeNookBooks</a></td>\\n<td
|
3188
|
+
align=\\\"right\\\"><a href=\\\"/r/Writers\\\">/r/Writers</a></td>\\n</tr>\\n<tr>\\n<td
|
3189
|
+
align=\\\"left\\\"><a href=\\\"/r/freeEBOOKS\\\">/r/freeEBOOKS</a></td>\\n<td
|
3190
|
+
align=\\\"right\\\"><a href=\\\"/r/FantasyWriters\\\">/r/FantasyWriters</a></td>\\n</tr>\\n<tr>\\n<td
|
3191
|
+
align=\\\"left\\\"><a href=\\\"/r/WroteABook\\\">/r/WroteABook</a></td>\\n<td
|
3192
|
+
align=\\\"right\\\"><a href=\\\"/r/ComedyWriting\\\">/r/ComedyWriting</a></td>\\n</tr>\\n<tr>\\n<td
|
3193
|
+
align=\\\"left\\\"><a href=\\\"/r/KindLend\\\">/r/KindLend</a></td>\\n<td
|
3194
|
+
align=\\\"right\\\"><a href=\\\"/r/SelfPublish\\\">/r/SelfPublish</a></td>\\n</tr>\\n</tbody></table>\\n\\n<hr/>\\n\\n<ul>\\n<li><p><strong>|Trying
|
3195
|
+
to promote your book?</strong></p></li>\\n<li><p><a
|
3196
|
+
href=\\\"/r/Books\\\">/r/Books</a> is rather large, and popular books
|
3197
|
+
get the most attention. <a href=\\\"/r/Books\\\">/r/Books</a>
|
3198
|
+
is not perfect for new authors to get their books noticed. New authors are
|
3199
|
+
encouraged to post in <a href=\\\"/r/wroteabook\\\">/r/wroteabook</a>.
|
3200
|
+
</p></li>\\n<li><p><strong><a href=\\\"/r/books/wiki/promotion\\\">Here
|
3201
|
+
is our wiki page on promotional content</a></strong></p></li>\\n<li><p>If
|
3202
|
+
you are an author and want to do an AMA, <strong><a href=\\\"/r/books/wiki/amarules\\\">please
|
3203
|
+
read this wiki page.</a></strong></p></li>\\n</ul>\\n\\n<hr/>\\n\\n<ul>\\n<li><p><strong>|Post
|
3204
|
+
not showing up?</strong></p></li>\\n<li><p>The
|
3205
|
+
spam filter sometimes eats posts by mistake. If your post is missing, please
|
3206
|
+
send a link to the mods and we will fix it ASAP</p></li>\\n</ul>\\n\\n<hr/>\\n\\n<p><strong><a
|
3207
|
+
href=\\\"https://www.goodreads.com/group/show/117388-r-books\\\">Click
|
3208
|
+
here to join our Goodreads group.</a></strong></p>\\n\\n<hr/>\\n\\n<p><a
|
3209
|
+
href=\\\"/r/books2/comments/1ijx79/mobilefriendly_sidebar_for_rbooks/\\\">Click
|
3210
|
+
here for a mobile friendly version of the sidebar.</a></p>\\n</div><!--
|
3211
|
+
SC_ON -->\", \"title\": \"books\", \"over18\": false, \"user_is_moderator\":
|
3212
|
+
false, \"header_title\": \"Go read!\", \"description\": \"#####Looking for
|
3213
|
+
a book, author, or series to read? **[Click here for the Weekly Recommendation
|
3214
|
+
Thread!](http://redd.it/1qbaex)**\\n####Next week is \\\"Harry Potter Week\\\"
|
3215
|
+
in /r/MovieOfTheDay! \\n\\n[Submit a link](http://www.reddit.com/r/books/submit)
|
3216
|
+
[Submit a self-post](http://www.reddit.com/r/books/submit?selftext=true)[Message
|
3217
|
+
the mods](http://www.reddit.com/message/compose?to=%2Fr%2Fbooks)[Browse /new](http://www.reddit.com/r/books/new/)\\n\\nWelcome
|
3218
|
+
to /r/Books! This community is focused on discussing books, authors, genres,
|
3219
|
+
or everything else book related. \\n\\n**[Click here for our Wiki Index.](/r/books/wiki/index)**\\n\\n\\n\\n---\\n\\n*
|
3220
|
+
**|Upcoming AMAs:**\\n\\n|Date|Start Time|Person|Description|\\n:---|-|:-:|:-\\nNov
|
3221
|
+
10|11AM EST|**[William Kowalski](http://goo.gl/QyrUuH)**|Author of *[Eddie's
|
3222
|
+
Bastard](http://goo.gl/Ek4mCv)*\\nNov 12|9AM EST|**[Shaun Gallagher](https://www.goodreads.com/author/show/7300492.Shaun_Gallagher?from_search=true)**|Author
|
3223
|
+
of *[Experimenting with Babies](http://www.experimentingwithbabies.com)*\\nNov
|
3224
|
+
13|8AM EST|**[Rebecca A. Demarest](http://goo.gl/YGO4kI)**|Author of *[Undeliverable](http://goo.gl/XbXX3X)*\\n\\n*
|
3225
|
+
**[|Previous AMAs](/r/books/wiki/ama)**\\n\\n---\\n[Quick Rules](http://www.reddit.com/r/books/wiki/rules)\\n---\\n---\\n*
|
3226
|
+
**[|Full Rules & Guidelines](/r/books/wiki/rules)**\\n\\n---\\n\\n* **[|Spoiler
|
3227
|
+
Policy](/r/Books/wiki/spoilers)**\\n\\n---\\n\\n* **[|Suggested Reading](/r/books/wiki/whattoread)**\\n\\n\\n---\\n*
|
3228
|
+
**[|Submit a sidebar pic](/r/books/wiki/sidebarpics)**\\n\\n---\\n\\n\\n*
|
3229
|
+
**|IRC Chat:**\\n\\n- [Join #bookclub on Snoonet to talk about books **live!**](https://kiwiirc.com/client/irc.snoonet.org/bookclub)\\n\\n---\\n\\n\\n\\n*
|
3230
|
+
**|Related Subreddits:**\\n\\n---\\n\\n\\nGenres|Images|\\n:---|---:\\n/r/Fantasy|/r/BookPorn\\n/r/Literature|/r/BookShelf\\n/r/Poetry|/r/BookCollecting\\n/r/ComicBooks|/r/ComicBookArt\\n/r/YALit|/r/ProsePorn\\n/r/PrintSF|/r/BookHaul\\n/r/DystopianBooks|/r/BookMemes\\n/r/Writing|/r/BookWallpapers\\n/r/RomanceBooks|/r/Pics\\n\\n---\\n\\n\\nDiscussion|Miscellaneous\\n:---|---:\\n/r/BookSuggestions|/r/BookClub\\n/r/BooksAMA|[/r/R_a_o_B](/r/Random_Acts_of_Books)\\n/r/TrueBooks|/r/WroteABook\\n/r/WhatsThatBook|/r/BookExchange\\n/r/TOMT|/r/LiteratureVideos\\n/r/Libraries|/r/TravelingBooks\\n/r/BookLists|/r/52Book\\n/r/TrueBooks|/r/bookies\\n\\n---\\n\\n\\nEbooks|Writing\\n:---|---:\\n/r/ebooks|/r/Writing\\n/r/Kindle|/r/Poetry\\n/r/KindleFreebies|/r/Publishing\\n/r/ebookdeals|/r/ShutUpAndWrite\\n/r/Nook|/r/KeepWriting\\n/r/FreeNookBooks|/r/Writers\\n/r/freeEBOOKS|/r/FantasyWriters\\n/r/WroteABook|/r/ComedyWriting\\n/r/KindLend|/r/SelfPublish\\n\\n---\\n\\n*
|
3231
|
+
**|Trying to promote your book?**\\n\\n- /r/Books is rather large, and popular
|
3232
|
+
books get the most attention. /r/Books is not perfect for new authors to get
|
3233
|
+
their books noticed. New authors are encouraged to post in /r/wroteabook.
|
3234
|
+
\\n\\n- **[Here is our wiki page on promotional content](/r/books/wiki/promotion)**\\n\\n-
|
3235
|
+
If you are an author and want to do an AMA, **[please read this wiki page.](/r/books/wiki/amarules)**\\n
|
3236
|
+
\\n\\n---\\n\\n* **|Post not showing up?**\\n\\n- The spam filter sometimes
|
3237
|
+
eats posts by mistake. If your post is missing, please send a link to the
|
3238
|
+
mods and we will fix it ASAP\\n\\n---\\n\\n**[Click here to join our Goodreads
|
3239
|
+
group.](https://www.goodreads.com/group/show/117388-r-books)**\\n\\n---\\n\\n\\n\\n[Click
|
3240
|
+
here for a mobile friendly version of the sidebar.](/r/books2/comments/1ijx79/mobilefriendly_sidebar_for_rbooks/)\",
|
3241
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
3242
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
3243
|
+
917631, \"submit_text_label\": null, \"name\": \"t5_2qh4i\", \"created\":
|
3244
|
+
1201244852.0, \"url\": \"/r/books/\", \"created_utc\": 1201244852.0, \"user_is_contributor\":
|
3245
|
+
false, \"public_traffic\": true, \"public_description\": \"Book reviews, recommendations,
|
3246
|
+
stories about books or book technology, etc.\\n\", \"comment_score_hide_mins\":
|
3247
|
+
30, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
3248
|
+
true}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": \"<!-- SC_OFF
|
3249
|
+
--><div class=\\\"md\\\"><p><em>Please read <a href=\\\"/r/television/about/sidebar\\\">our
|
3250
|
+
subreddit rules</a> and <a href=\\\"http://www.reddit.com/wiki/faq#wiki_what_constitutes_spam.3F\\\">reddit&#39;s
|
3251
|
+
rules regarding spam</a> before submitting!</em></p>\\n\\n<h3>If
|
3252
|
+
you don&#39;t see your post after 3-4 minutes, <a href=\\\"http://www.reddit.com/message/compose?to=/r/television\\\">message
|
3253
|
+
the moderators</a> to find out why (also check to see if Automoderator
|
3254
|
+
has left you a message).</h3>\\n\\n<p>Thank you for submitting
|
3255
|
+
to <a href=\\\"/r/television\\\">/r/television</a>! :)</p>\\n</div><!--
|
3256
|
+
SC_ON -->\", \"user_is_banned\": false, \"id\": \"2qh6e\", \"submit_text\":
|
3257
|
+
\"*Please read [our subreddit rules](/r/television/about/sidebar) and [reddit's
|
3258
|
+
rules regarding spam](http://www.reddit.com/wiki/faq#wiki_what_constitutes_spam.3F)
|
3259
|
+
before submitting!*\\n\\n###If you don't see your post after 3-4 minutes,
|
3260
|
+
[message the moderators](http://www.reddit.com/message/compose?to=/r/television)
|
3261
|
+
to find out why (also check to see if Automoderator has left you a message).\\n\\nThank
|
3262
|
+
you for submitting to /r/television! :)\", \"spam_selfposts\": \"high\", \"display_name\":
|
3263
|
+
\"television\", \"header_img\": \"http://c.thumbs.redditmedia.com/Jbol6Rj5xaRfAvgt.png\",
|
3264
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><blockquote>\\n<ul>\\n<li><a
|
3265
|
+
href=\\\"http://goo.gl/zxG9vT\\\">Networks</a></li>\\n<li><a
|
3266
|
+
href=\\\"/r/adultswim\\\">Adult Swim</a></li>\\n<li><a
|
3267
|
+
href=\\\"/r/Anime\\\">Anime</a></li>\\n<li><a href=\\\"/r/AustralianTV\\\">Australian
|
3268
|
+
TV</a></li>\\n<li><a href=\\\"/r/BritishTV\\\">British
|
3269
|
+
TV</a></li>\\n<li><a href=\\\"/r/CanadianTV\\\">Canadian
|
3270
|
+
TV</a></li>\\n<li><a href=\\\"/r/DirecTV\\\">DirecTV</a></li>\\n<li><a
|
3271
|
+
href=\\\"/r/GameShow\\\">Game Show</a></li>\\n<li><a
|
3272
|
+
href=\\\"/r/HBO\\\">HBO</a></li>\\n<li><a href=\\\"/r/LateNightTalkShows\\\">Late
|
3273
|
+
Night Talk Shows</a></li>\\n<li><a href=\\\"/r/Nickelodeon\\\">Nickelodeon</a></li>\\n<li><a
|
3274
|
+
href=\\\"/r/PatientWatchers\\\">Patient Watchers</a></li>\\n<li><a
|
3275
|
+
href=\\\"/r/tvcharacterbattle\\\">TV Character Battle</a></li>\\n<li><a
|
3276
|
+
href=\\\"/r/TelevisionClub\\\">Television Club</a></li>\\n<li><a
|
3277
|
+
href=\\\"/r/USANetwork\\\">USA</a></li>\\n<li><a href=\\\"/r/80scartoons\\\">&#39;80s
|
3278
|
+
Cartoons</a></li>\\n<li><a href=\\\"/r/90scartoons\\\">&#39;90s
|
3279
|
+
Cartoons</a></li>\\n<li><a href=\\\"/r/syfy\\\">Syfy</a>
|
3280
|
+
</li>\\n</ul>\\n\\n<ul>\\n<li><a href=\\\"http://goo.gl/rXJvF8\\\">Sci-Fi</a></li>\\n<li><a
|
3281
|
+
href=\\\"/r/Alphas\\\">Alphas</a></li>\\n<li><a href=\\\"/r/Babylon5\\\">Babylon
|
3282
|
+
5</a></li>\\n<li><a href=\\\"/r/bsg\\\">Battlestar
|
3283
|
+
Galactica</a></li>\\n<li><a href=\\\"/r/DoctorWho\\\">Doctor
|
3284
|
+
Who</a></li>\\n<li><a href=\\\"/r/Eureka\\\">Eureka</a></li>\\n<li><a
|
3285
|
+
href=\\\"/r/Farscape\\\">Farscape</a></li>\\n<li><a
|
3286
|
+
href=\\\"/r/firefly\\\">Firefly</a></li>\\n<li><a
|
3287
|
+
href=\\\"/r/Stargate\\\">Stargate</a></li>\\n<li><a
|
3288
|
+
href=\\\"/r/StarTrek\\\">Star Trek</a></li>\\n<li><a
|
3289
|
+
href=\\\"/r/Supernatural\\\">Supernatural</a></li>\\n<li><a
|
3290
|
+
href=\\\"/r/Xena\\\">Xena</a></li>\\n<li><a href=\\\"/r/xfiles\\\">X-Files</a></li>\\n</ul>\\n\\n<ul>\\n<li><a
|
3291
|
+
href=\\\"http://goo.gl/p5S14U\\\">Drama</a></li>\\n<li><a
|
3292
|
+
href=\\\"/r/AmericanHorrorStory\\\">American Horror Story</a></li>\\n<li><a
|
3293
|
+
href=\\\"/r/Arrow\\\">Arrow</a></li>\\n<li><a href=\\\"/r/BoardwalkEmpire\\\">Boardwalk
|
3294
|
+
Empire</a></li>\\n<li><a href=\\\"/r/Bones\\\">Bones</a></li>\\n<li><a
|
3295
|
+
href=\\\"/r/breakingbad\\\">Breaking Bad</a></li>\\n<li><a
|
3296
|
+
href=\\\"/r/BurnNotice\\\">Burn Notice</a></li>\\n<li><a
|
3297
|
+
href=\\\"/r/dexter\\\">Dexter</a></li>\\n<li><a href=\\\"/r/FallingSkies\\\">Falling
|
3298
|
+
Skies</a></li>\\n<li><a href=\\\"/r/Fringe\\\">Fringe</a></li>\\n<li><a
|
3299
|
+
href=\\\"/r/gameofthrones\\\">Game Of Thrones</a></li>\\n<li><a
|
3300
|
+
href=\\\"/r/Grimm\\\">Grimm</a></li>\\n<li><a href=\\\"/r/HannibalTV\\\">Hannibal</a></li>\\n<li><a
|
3301
|
+
href=\\\"/r/houseofcards\\\">House of Cards</a></li>\\n<li><a
|
3302
|
+
href=\\\"/r/Justified\\\">Justified</a></li>\\n<li><a
|
3303
|
+
href=\\\"/r/Lost\\\">Lost</a></li>\\n<li><a href=\\\"/r/madmen\\\">Mad
|
3304
|
+
Men</a></li>\\n<li><a href=\\\"/r/RevolutionNBC\\\">Revolution</a></li>\\n<li><a
|
3305
|
+
href=\\\"/r/sonsofanarchy\\\">Sons of Anarchy</a></li>\\n<li><a
|
3306
|
+
href=\\\"/r/suits\\\">Suits</a></li>\\n<li><a href=\\\"/r/thenewsroom\\\">The
|
3307
|
+
Newsroom</a></li>\\n<li><a href=\\\"/r/thewalkingdead\\\">The
|
3308
|
+
Walking Dead</a></li>\\n<li><a href=\\\"/r/TheWestWing\\\">The
|
3309
|
+
West Wing</a></li>\\n<li><a href=\\\"/r/TheWire\\\">The
|
3310
|
+
Wire</a></li>\\n<li><a href=\\\"/r/TrueBlood\\\">True
|
3311
|
+
Blood</a></li>\\n</ul>\\n\\n<ul>\\n<li><a
|
3312
|
+
href=\\\"http://goo.gl/Jj4GGi\\\">Animated</a></li>\\n<li><a
|
3313
|
+
href=\\\"/r/AdventureTime\\\">Adventure Time</a></li>\\n<li><a
|
3314
|
+
href=\\\"/r/americandad\\\">American Dad</a></li>\\n<li><a
|
3315
|
+
href=\\\"/r/aquaJail\\\">Aqua Teen</a></li>\\n<li><a
|
3316
|
+
href=\\\"/r/ArcherFX\\\">Archer</a></li>\\n<li><a
|
3317
|
+
href=\\\"/r/beavisandbutthead\\\">Beavis &amp; Butt-head</a></li>\\n<li><a
|
3318
|
+
href=\\\"/r/bobsburgers\\\">Bob&#39;s Burgers</a></li>\\n<li><a
|
3319
|
+
href=\\\"/r/familyguy\\\">Family Guy</a></li>\\n<li><a
|
3320
|
+
href=\\\"/r/futurama\\\">Futurama</a></li>\\n<li><a
|
3321
|
+
href=\\\"/r/kingofthehill\\\">King of the Hill</a></li>\\n<li><a
|
3322
|
+
href=\\\"/r/southpark\\\">South Park</a></li>\\n<li><a
|
3323
|
+
href=\\\"/r/TheLastAirbender\\\">The Last Airbender</a></li>\\n<li><a
|
3324
|
+
href=\\\"/r/thesimpsons\\\">The Simpsons</a></li>\\n</ul>\\n\\n<ul>\\n<li><a
|
3325
|
+
href=\\\"http://goo.gl/c6ddX6\\\">Comedy</a></li>\\n<li><a
|
3326
|
+
href=\\\"/r/30rock\\\">30 Rock</a></li>\\n<li><a href=\\\"/r/iasip\\\">Always
|
3327
|
+
Sunny</a></li>\\n<li><a href=\\\"/r/arresteddevelopment\\\">Arrested
|
3328
|
+
Development</a></li>\\n<li><a href=\\\"/r/community\\\">Community</a></li>\\n<li><a
|
3329
|
+
href=\\\"/r/curb\\\">Curb Your Enthusiasm</a></li>\\n<li><a
|
3330
|
+
href=\\\"/r/eastboundanddown\\\">Eastbound and Down</a></li>\\n<li><a
|
3331
|
+
href=\\\"/r/HowYouDoin\\\">Friends</a></li>\\n<li><a
|
3332
|
+
href=\\\"/r/happyendings\\\">Happy Endings</a></li>\\n<li><a
|
3333
|
+
href=\\\"/r/himym\\\">How I Met Your Mother</a></li>\\n<li><a
|
3334
|
+
href=\\\"/r/louie\\\">Louie</a></li>\\n<li><a href=\\\"/r/modern_family\\\">Modern
|
3335
|
+
Family</a></li>\\n<li><a href=\\\"/r/newgirl\\\">New
|
3336
|
+
Girl</a></li>\\n<li><a href=\\\"/r/pandr\\\">Parks
|
3337
|
+
and Recreation</a></li>\\n<li><a href=\\\"/r/raisinghope\\\">Raising
|
3338
|
+
Hope</a></li>\\n<li><a href=\\\"/r/scrubs\\\">Scrubs</a></li>\\n<li><a
|
3339
|
+
href=\\\"/r/seinfeld\\\">Seinfeld</a></li>\\n<li><a
|
3340
|
+
href=\\\"/r/that70sshow\\\">That 70s Show</a></li>\\n<li><a
|
3341
|
+
href=\\\"/r/bigbangtheory\\\">The Big Bang Theory</a></li>\\n<li><a
|
3342
|
+
href=\\\"/r/theleaguefx\\\">The League</a></li>\\n<li><a
|
3343
|
+
href=\\\"/r/dundermifflin\\\">The Office</a></li>\\n<li><a
|
3344
|
+
href=\\\"/r/topgear\\\">Top Gear</a></li>\\n<li><a
|
3345
|
+
href=\\\"/r/trailerparkboys\\\">Trailer Park Boys</a></li>\\n<li><a
|
3346
|
+
href=\\\"/r/whoselineisitanyway\\\">Who&#39;s Line Is It Anyway</a></li>\\n<li><a
|
3347
|
+
href=\\\"/r/wilfred\\\">Wilfred</a></li>\\n<li><a
|
3348
|
+
href=\\\"/r/workaholics\\\">Workaholics</a></li>\\n</ul>\\n\\n<ul>\\n<li><a
|
3349
|
+
href=\\\"/r/tvreddit\\\">TV Reddit</a></li>\\n<li><a
|
3350
|
+
href=\\\"http://goo.gl/XC6eaa\\\">Browse All</a></li>\\n<li><a
|
3351
|
+
href=\\\"http://redd.it/1hkevt\\\">Add My Sub</a></li>\\n<li><a
|
3352
|
+
href=\\\"http://tv-subreddits.wikidot.com/\\\">Master List</a></li>\\n<li><a
|
3353
|
+
href=\\\"/r/episodehub\\\">Episode Hub</a></li>\\n<li><a
|
3354
|
+
href=\\\"/r/Cordcutters\\\">Cordcutters</a></li>\\n<li><a
|
3355
|
+
href=\\\"/r/ifyoulikeblank\\\">If You Like Blank</a></li>\\n<li><a
|
3356
|
+
href=\\\"/r/netflixbestof\\\">Netflix Best Of</a></li>\\n<li><a
|
3357
|
+
href=\\\"/r/tipofmytongue\\\">Tip of My Tongue</a></li>\\n<li><a
|
3358
|
+
href=\\\"/r/TelevisionPosterPorn\\\">Television Poster Porn</a></li>\\n<li><a
|
3359
|
+
href=\\\"/r/TelevisionQuotes\\\">Television Quotes</a></li>\\n<li><a
|
3360
|
+
href=\\\"/r/tvgifs\\\">TV GIFs</a></li>\\n<li><a href=\\\"/r/tvmemes\\\">TV
|
3361
|
+
Memes</a></li>\\n<li><a href=\\\"http://goo.gl/0VXyiV\\\">Where
|
3362
|
+
are they now?</a></li>\\n<li><a href=\\\"http://reddit.com\\\">Back
|
3363
|
+
to reddit.com</a></li>\\n</ul>\\n</blockquote>\\n\\n<h6>Featured
|
3364
|
+
This Week: <strong><a href=\\\"/r/bestofhulu\\\">Best of Hulu</a></strong>
|
3365
|
+
\\u2022 <strong><a href=\\\"/r/modern_family\\\">Modern Family</a></strong>
|
3366
|
+
\\u2022 <strong><a href=\\\"/r/Homeland\\\">Homeland</a></strong>
|
3367
|
+
\\u2022 <strong><a href=\\\"/r/thewalkingdead\\\">The Walking
|
3368
|
+
Dead</a></strong></h6>\\n\\n<h2>Welcome to <a href=\\\"/r/television\\\">/r/television</a>!</h2>\\n\\n<p><strong>Reviews,
|
3369
|
+
news, and discussion posts are encouraged.</strong> This is a moderated
|
3370
|
+
subreddit designed for the thoughtful discussion of television programming.
|
3371
|
+
</p>\\n\\n<hr/>\\n\\n<p><strong>Two ways to use spoiler
|
3372
|
+
tags in comments</strong>: </p>\\n\\n<p>[](/s &quot;Because
|
3373
|
+
Aliens&quot;)</p>\\n\\n<p>[spoiler](#s &quot;Because Aliens.&quot;)</p>\\n\\n<hr/>\\n\\n<h3>When
|
3374
|
+
submitting a news story, please submit the top-level source.</h3>\\n\\n<h3><em>Please</em>
|
3375
|
+
do not submit:</h3>\\n\\n<ul>\\n<li><p><strong>Image
|
3376
|
+
posts</strong></p></li>\\n<li><p>Generic titles</p></li>\\n<li><p>Vague
|
3377
|
+
titles</p></li>\\n<li><p>Duplicate stories</p></li>\\n<li><p>Gossip
|
3378
|
+
or sensationalized headlines</p></li>\\n<li><p>Requests
|
3379
|
+
for pirated or illegal content </p></li>\\n<li><p><a
|
3380
|
+
href=\\\"/r/NegaTV\\\">Negative posts or complaints about a show.</a>
|
3381
|
+
There is enough quality TV in the world to ignore the bad stuff</p></li>\\n</ul>\\n\\n<p>&nbsp;</p>\\n\\n<h3><a
|
3382
|
+
href=\\\"/r/ifyoulikeblank\\\">/r/ifyoulikeblank</a></h3>\\n\\n<p>is
|
3383
|
+
a great subreddit to ask for recommendations, please use it! </p>\\n\\n<p>&nbsp;</p>\\n\\n<h3><a
|
3384
|
+
href=\\\"/r/tipofmytongue\\\">/r/tipofmytongue</a></h3>\\n\\n<p>is
|
3385
|
+
for help remembering a show!</p>\\n\\n<p>&nbsp;</p>\\n\\n<h3>The
|
3386
|
+
<a href=\\\"http://tv-subreddits.wikidot.com/\\\">Master List of TV
|
3387
|
+
Subreddits, by size</a></h3>\\n\\n<p>by <a href=\\\"/u/jdk\\\">jdk</a></p>\\n\\n<p><a
|
3388
|
+
href=\\\"http://redd.it/1ievwr\\\">Sticky My Sub</a></p>\\n\\n<p>I
|
3389
|
+
also suggest looking at <a href=\\\"http://tvlists.files.wordpress.com/2012/01/top-tv-of-all-time.jpg\\\">/tv/&#39;s
|
3390
|
+
all-time greatest shows infographic</a>.</p>\\n\\n<p><a
|
3391
|
+
href=\\\"#/RES_SR_Config/NightModeCompatible\\\"></a></p>\\n</div><!--
|
3392
|
+
SC_ON -->\", \"title\": \"/r/television - A premium-quality television
|
3393
|
+
subreddit\", \"over18\": false, \"user_is_moderator\": false, \"header_title\":
|
3394
|
+
null, \"description\": \">#\\n\\n>* [Networks](http://goo.gl/zxG9vT)\\n*
|
3395
|
+
[Adult Swim](/r/adultswim)\\n* [Anime](/r/Anime)\\n* [Australian TV](/r/AustralianTV)\\n*
|
3396
|
+
[British TV](/r/BritishTV)\\n* [Canadian TV](/r/CanadianTV)\\n* [DirecTV](/r/DirecTV)\\n*
|
3397
|
+
[Game Show](/r/GameShow)\\n* [HBO](/r/HBO)\\n* [Late Night Talk Shows](/r/LateNightTalkShows)\\n*
|
3398
|
+
[Nickelodeon](/r/Nickelodeon)\\n* [Patient Watchers](/r/PatientWatchers)\\n*
|
3399
|
+
[TV Character Battle](/r/tvcharacterbattle)\\n* [Television Club](/r/TelevisionClub)\\n*
|
3400
|
+
[USA](/r/USANetwork)\\n* ['80s Cartoons](/r/80scartoons)\\n* ['90s Cartoons](/r/90scartoons)\\n*
|
3401
|
+
[Syfy](/r/syfy) \\n\\n>#\\n\\n>* [Sci-Fi](http://goo.gl/rXJvF8)\\n*
|
3402
|
+
[Alphas](/r/Alphas)\\n* [Babylon 5](/r/Babylon5)\\n* [Battlestar Galactica](/r/bsg)\\n*
|
3403
|
+
[Doctor Who](/r/DoctorWho)\\n* [Eureka](/r/Eureka)\\n* [Farscape](/r/Farscape)\\n*
|
3404
|
+
[Firefly](/r/firefly)\\n* [Stargate](/r/Stargate)\\n* [Star Trek](/r/StarTrek)\\n*
|
3405
|
+
[Supernatural](/r/Supernatural)\\n* [Xena](/r/Xena)\\n* [X-Files](/r/xfiles)\\n\\n>#\\n\\n>*
|
3406
|
+
[Drama](http://goo.gl/p5S14U)\\n* [American Horror Story](/r/AmericanHorrorStory)\\n*
|
3407
|
+
[Arrow](/r/Arrow)\\n* [Boardwalk Empire](/r/BoardwalkEmpire)\\n* [Bones](/r/Bones)\\n*
|
3408
|
+
[Breaking Bad](/r/breakingbad)\\n* [Burn Notice](/r/BurnNotice)\\n* [Dexter](/r/dexter)\\n*
|
3409
|
+
[Falling Skies](/r/FallingSkies)\\n* [Fringe](/r/Fringe)\\n* [Game Of Thrones](/r/gameofthrones)\\n*
|
3410
|
+
[Grimm](/r/Grimm)\\n* [Hannibal](/r/HannibalTV)\\n* [House of Cards](/r/houseofcards)\\n*
|
3411
|
+
[Justified](/r/Justified)\\n* [Lost](/r/Lost)\\n* [Mad Men](/r/madmen)\\n*
|
3412
|
+
[Revolution](/r/RevolutionNBC)\\n* [Sons of Anarchy](/r/sonsofanarchy)\\n*
|
3413
|
+
[Suits](/r/suits)\\n* [The Newsroom](/r/thenewsroom)\\n* [The Walking Dead](/r/thewalkingdead)\\n*
|
3414
|
+
[The West Wing](/r/TheWestWing)\\n* [The Wire](/r/TheWire)\\n* [True Blood](/r/TrueBlood)\\n\\n>#\\n\\n>*
|
3415
|
+
[Animated](http://goo.gl/Jj4GGi)\\n* [Adventure Time](/r/AdventureTime)\\n*
|
3416
|
+
[American Dad](/r/americandad)\\n* [Aqua Teen](/r/aquaJail)\\n* [Archer](/r/ArcherFX)\\n*
|
3417
|
+
[Beavis & Butt-head](/r/beavisandbutthead)\\n* [Bob's Burgers](/r/bobsburgers)\\n*
|
3418
|
+
[Family Guy](/r/familyguy)\\n* [Futurama](/r/futurama)\\n* [King of the Hill](/r/kingofthehill)\\n*
|
3419
|
+
[South Park](/r/southpark)\\n* [The Last Airbender](/r/TheLastAirbender)\\n*
|
3420
|
+
[The Simpsons](/r/thesimpsons)\\n\\n>#\\n\\n>* [Comedy](http://goo.gl/c6ddX6)\\n*
|
3421
|
+
[30 Rock](/r/30rock)\\n* [Always Sunny](/r/iasip)\\n* [Arrested Development](/r/arresteddevelopment)\\n*
|
3422
|
+
[Community](/r/community)\\n* [Curb Your Enthusiasm](/r/curb)\\n* [Eastbound
|
3423
|
+
and Down](/r/eastboundanddown)\\n* [Friends](/r/HowYouDoin)\\n* [Happy Endings](/r/happyendings)\\n*
|
3424
|
+
[How I Met Your Mother](/r/himym)\\n* [Louie](/r/louie)\\n* [Modern Family](/r/modern_family)\\n*
|
3425
|
+
[New Girl](/r/newgirl)\\n* [Parks and Recreation](/r/pandr)\\n* [Raising Hope](/r/raisinghope)\\n*
|
3426
|
+
[Scrubs](/r/scrubs)\\n* [Seinfeld](/r/seinfeld)\\n* [That 70s Show](/r/that70sshow)\\n*
|
3427
|
+
[The Big Bang Theory](/r/bigbangtheory)\\n* [The League](/r/theleaguefx)\\n*
|
3428
|
+
[The Office](/r/dundermifflin)\\n* [Top Gear](/r/topgear)\\n* [Trailer Park
|
3429
|
+
Boys](/r/trailerparkboys)\\n* [Who's Line Is It Anyway](/r/whoselineisitanyway)\\n*
|
3430
|
+
[Wilfred](/r/wilfred)\\n* [Workaholics](/r/workaholics)\\n\\n>#\\n\\n>*
|
3431
|
+
[TV Reddit](/r/tvreddit)\\n* [Browse All](http://goo.gl/XC6eaa)\\n* [Add My
|
3432
|
+
Sub](http://redd.it/1hkevt)\\n* [Master List](http://tv-subreddits.wikidot.com/)\\n*
|
3433
|
+
[Episode Hub](/r/episodehub)\\n* [Cordcutters](/r/Cordcutters)\\n* [If You
|
3434
|
+
Like Blank](/r/ifyoulikeblank)\\n* [Netflix Best Of](/r/netflixbestof)\\n*
|
3435
|
+
[Tip of My Tongue](/r/tipofmytongue)\\n* [Television Poster Porn](/r/TelevisionPosterPorn)\\n*
|
3436
|
+
[Television Quotes](/r/TelevisionQuotes)\\n* [TV GIFs](/r/tvgifs)\\n* [TV
|
3437
|
+
Memes](/r/tvmemes)\\n* [Where are they now?](http://goo.gl/0VXyiV)\\n* [Back
|
3438
|
+
to reddit.com](http://reddit.com)\\n\\n###### Featured This Week: **[Best
|
3439
|
+
of Hulu](/r/bestofhulu)** \\u2022 **[Modern Family](/r/modern_family)** \\u2022
|
3440
|
+
**[Homeland](/r/Homeland)** \\u2022 **[The Walking Dead](/r/thewalkingdead)**\\n\\n\\n##Welcome
|
3441
|
+
to /r/television!\\n\\n**Reviews, news, and discussion posts are encouraged.**
|
3442
|
+
\ This is a moderated subreddit designed for the thoughtful discussion of
|
3443
|
+
television programming. \\n\\n---\\n\\n**Two ways to use spoiler tags in comments**:
|
3444
|
+
\\n\\n[\\\\](/s \\\"Because Aliens\\\")\\n\\n[spoiler\\\\](#s \\\"Because
|
3445
|
+
Aliens.\\\")\\n \\n---\\n\\n###When submitting a news story, please submit
|
3446
|
+
the top-level source.\\n\\n###*Please* do not submit:\\n\\n* **Image posts**\\n\\n*
|
3447
|
+
Generic titles\\n\\n* Vague titles\\n\\n* Duplicate stories\\n\\n* Gossip
|
3448
|
+
or sensationalized headlines\\n\\n* Requests for pirated or illegal content
|
3449
|
+
\\n\\n* [Negative posts or complaints about a show.](/r/NegaTV) There is enough
|
3450
|
+
quality TV in the world to ignore the bad stuff\\n\\n&nbsp;\\n\\n\\n###/r/ifyoulikeblank\\n\\nis
|
3451
|
+
a great subreddit to ask for recommendations, please use it! \\n\\n&nbsp;\\n\\n###/r/tipofmytongue
|
3452
|
+
\\n\\nis for help remembering a show!\\n\\n&nbsp;\\n\\n###The [Master
|
3453
|
+
List of TV Subreddits, by size](http://tv-subreddits.wikidot.com/) \\n\\nby
|
3454
|
+
[jdk](/u/jdk)\\n\\n[Sticky My Sub](http://redd.it/1ievwr)\\n\\nI also suggest
|
3455
|
+
looking at [/tv/'s all-time greatest shows infographic](http://tvlists.files.wordpress.com/2012/01/top-tv-of-all-time.jpg).\\n\\n[](#/RES_SR_Config/NightModeCompatible)\",
|
3456
|
+
\"submit_link_label\": \"Submit a new post\", \"accounts_active\": null, \"spam_comments\":
|
3457
|
+
\"high\", \"spam_links\": \"high\", \"header_size\": [157, 44], \"subscribers\":
|
3458
|
+
699023, \"submit_text_label\": null, \"name\": \"t5_2qh6e\", \"created\":
|
3459
|
+
1201276354.0, \"url\": \"/r/television/\", \"created_utc\": 1201276354.0,
|
3460
|
+
\"user_is_contributor\": false, \"public_traffic\": false, \"public_description\":
|
3461
|
+
\"A television subreddit for thoughtful discussion, reviews, and top level
|
3462
|
+
news sources. We do not accept disposable content like images, memes, video
|
3463
|
+
clips, blogspam, top lists, or short thoughtless posts. We keep a directory
|
3464
|
+
of series-specific subreddits that have much less stingy rules. \", \"comment_score_hide_mins\":
|
3465
|
+
120, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
3466
|
+
true}}], \"after\": \"rb_3uay92\", \"before\": null}}"
|
3467
|
+
http_version:
|
3468
|
+
recorded_at: Sun, 10 Nov 2013 22:38:24 GMT
|
3469
|
+
recorded_with: VCR 2.6.0
|