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
data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits_by_topic/returns_subreddit_names.yml
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/api/subreddits_by_topic.json?query=ruby
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.8
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Content-Type:
|
22
|
+
- application/json; charset=UTF-8
|
23
|
+
Content-Length:
|
24
|
+
- '357'
|
25
|
+
Server:
|
26
|
+
- "'; DROP TABLE servertypes; --"
|
27
|
+
Date:
|
28
|
+
- Sun, 10 Nov 2013 22:38:22 GMT
|
29
|
+
Connection:
|
30
|
+
- keep-alive
|
31
|
+
body:
|
32
|
+
encoding: UTF-8
|
33
|
+
string: "[{\"name\": \"ruby\"}, {\"name\": \"programming\"}, {\"name\": \"pokemon\"},
|
34
|
+
{\"name\": \"Dota2Trade\"}, {\"name\": \"learnprogramming\"}, {\"name\": \"forhire\"},
|
35
|
+
{\"name\": \"leagueoflegends\"}, {\"name\": \"ACTrade\"}, {\"name\": \"rails\"},
|
36
|
+
{\"name\": \"Diablo\"}, {\"name\": \"webdev\"}, {\"name\": \"gameswap\"},
|
37
|
+
{\"name\": \"ja\"}, {\"name\": \"nuzlocke\"}, {\"name\": \"RWBY\"}, {\"name\":
|
38
|
+
\"cscareerquestions\"}]"
|
39
|
+
http_version:
|
40
|
+
recorded_at: Sun, 10 Nov 2013 22:38:21 GMT
|
41
|
+
recorded_with: VCR 2.6.0
|
@@ -0,0 +1,46 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://www.reddit.com/api/subscribe
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: action=sub&sr=programming
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.8
|
12
|
+
Cookie:
|
13
|
+
- reddit_session=20332937,2013-11-10T11:35:59,2077074c26ccd8ec123c996b77eeb7afb6090af9
|
14
|
+
X-Modhash:
|
15
|
+
- 36zuxndsdf695692a68e32384990478663dadfc30f0a1dd959
|
16
|
+
Content-Type:
|
17
|
+
- application/x-www-form-urlencoded
|
18
|
+
Accept-Encoding:
|
19
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
+
Accept:
|
21
|
+
- "*/*"
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 200
|
25
|
+
message: OK
|
26
|
+
headers:
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=UTF-8
|
29
|
+
Content-Length:
|
30
|
+
- '2'
|
31
|
+
Cache-Control:
|
32
|
+
- no-cache
|
33
|
+
Pragma:
|
34
|
+
- no-cache
|
35
|
+
Server:
|
36
|
+
- "'; DROP TABLE servertypes; --"
|
37
|
+
Date:
|
38
|
+
- Sun, 10 Nov 2013 22:38:22 GMT
|
39
|
+
Connection:
|
40
|
+
- keep-alive
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: "{}"
|
44
|
+
http_version:
|
45
|
+
recorded_at: Sun, 10 Nov 2013 22:38:20 GMT
|
46
|
+
recorded_with: VCR 2.6.0
|
@@ -0,0 +1,415 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/subreddits/mine/.json?limit=3
|
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
|
+
Transfer-Encoding:
|
38
|
+
- chunked
|
39
|
+
Connection:
|
40
|
+
- Transfer-Encoding
|
41
|
+
- keep-alive
|
42
|
+
body:
|
43
|
+
encoding: UTF-8
|
44
|
+
string: "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"bpcx22gq5w717cbf224936b9eedcba845e44f45cb56425c172\",
|
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\": 4654245, \"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}}], \"after\": \"rb_3uay8e\", \"before\": null}}"
|
413
|
+
http_version:
|
414
|
+
recorded_at: Sun, 10 Nov 2013 22:38:25 GMT
|
415
|
+
recorded_with: VCR 2.6.0
|