redditkit 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (180) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +22 -0
  3. data/README.md +155 -0
  4. data/Rakefile +8 -0
  5. data/lib/redditkit.rb +26 -0
  6. data/lib/redditkit/base.rb +60 -0
  7. data/lib/redditkit/client.rb +142 -0
  8. data/lib/redditkit/client/account.rb +73 -0
  9. data/lib/redditkit/client/apps.rb +63 -0
  10. data/lib/redditkit/client/captcha.rb +36 -0
  11. data/lib/redditkit/client/comments.rb +54 -0
  12. data/lib/redditkit/client/flair.rb +148 -0
  13. data/lib/redditkit/client/links.rb +134 -0
  14. data/lib/redditkit/client/miscellaneous.rb +50 -0
  15. data/lib/redditkit/client/moderation.rb +179 -0
  16. data/lib/redditkit/client/multireddits.rb +207 -0
  17. data/lib/redditkit/client/private_messages.rb +74 -0
  18. data/lib/redditkit/client/search.rb +25 -0
  19. data/lib/redditkit/client/subreddits.rb +120 -0
  20. data/lib/redditkit/client/users.rb +109 -0
  21. data/lib/redditkit/client/utilities.rb +137 -0
  22. data/lib/redditkit/client/voting.rb +41 -0
  23. data/lib/redditkit/client/wiki.rb +83 -0
  24. data/lib/redditkit/comment.rb +54 -0
  25. data/lib/redditkit/creatable.rb +17 -0
  26. data/lib/redditkit/error.rb +111 -0
  27. data/lib/redditkit/link.rb +140 -0
  28. data/lib/redditkit/moderator_action.rb +19 -0
  29. data/lib/redditkit/multireddit.rb +32 -0
  30. data/lib/redditkit/multireddit_description.rb +14 -0
  31. data/lib/redditkit/paginated_response.rb +22 -0
  32. data/lib/redditkit/private_message.rb +27 -0
  33. data/lib/redditkit/response/parse_json.rb +29 -0
  34. data/lib/redditkit/response/raise_error.rb +21 -0
  35. data/lib/redditkit/subreddit.rb +86 -0
  36. data/lib/redditkit/thing.rb +20 -0
  37. data/lib/redditkit/user.rb +30 -0
  38. data/lib/redditkit/version.rb +19 -0
  39. data/lib/redditkit/votable.rb +37 -0
  40. data/redditkit.gemspec +25 -0
  41. data/spec/cassettes/RedditKit_Client/should_raise_an_error_with_invalid_credentials.yml +39 -0
  42. data/spec/cassettes/RedditKit_Client_Account/_sign_in/signs_the_user_in.yml +132 -0
  43. data/spec/cassettes/RedditKit_Client_Account/_update_session/updates_the_current_session.yml +133 -0
  44. data/spec/cassettes/RedditKit_Client_Captcha/_captcha_url/returns_a_CAPTCHA_url_from_an_identifier.yml +38 -0
  45. data/spec/cassettes/RedditKit_Client_Captcha/_needs_captcha_/checks_if_the_current_account_needs_a_CAPTCHA.yml +44 -0
  46. data/spec/cassettes/RedditKit_Client_Captcha/_new_captcha_identifier/returns_a_new_CAPTCHA_identifier.yml +38 -0
  47. data/spec/cassettes/RedditKit_Client_Comments/_comment/requests_the_correct_resource.yml +47 -0
  48. data/spec/cassettes/RedditKit_Client_Comments/_comments/with_a_RedditKit_Link/returns_comments_on_a_link.yml +140 -0
  49. data/spec/cassettes/RedditKit_Client_Comments/_comments/with_a_link_identifier/returns_comments_on_a_link.yml +89 -0
  50. data/spec/cassettes/RedditKit_Client_Comments/_submit_comment/requests_the_correct_resource.yml +313 -0
  51. data/spec/cassettes/RedditKit_Client_Flair/_apply_flair_template/clears_flair_templates.yml +52 -0
  52. data/spec/cassettes/RedditKit_Client_Flair/_clear_flair_templates/clears_flair_templates.yml +49 -0
  53. data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/creates_a_flair_template.yml +46 -0
  54. data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/raises_InvalidClassName.yml +46 -0
  55. data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/raises_TooManyClassNames.yml +47 -0
  56. data/spec/cassettes/RedditKit_Client_Flair/_delete_user_flair/requests_the_correct_resource.yml +60 -0
  57. data/spec/cassettes/RedditKit_Client_Flair/_flair_list/returns_the_list_of_flair.yml +44 -0
  58. data/spec/cassettes/RedditKit_Client_Flair/_set_flair/requests_the_correct_resource.yml +49 -0
  59. data/spec/cassettes/RedditKit_Client_Flair/_set_flair_options/sets_flair_options.yml +49 -0
  60. data/spec/cassettes/RedditKit_Client_Flair/_set_flair_with_csv/requests_the_correct_resource.yml +51 -0
  61. data/spec/cassettes/RedditKit_Client_Flair/_toggle_flair/requests_the_correct_resource.yml +49 -0
  62. data/spec/cassettes/RedditKit_Client_Links/_front_page/requests_the_correct_category.yml +498 -0
  63. data/spec/cassettes/RedditKit_Client_Links/_front_page/requests_the_correct_resource.yml +603 -0
  64. data/spec/cassettes/RedditKit_Client_Links/_hide/requests_the_correct_resource.yml +46 -0
  65. data/spec/cassettes/RedditKit_Client_Links/_link/returns_a_link.yml +55 -0
  66. data/spec/cassettes/RedditKit_Client_Links/_links/contains_pagination_information.yml +402 -0
  67. data/spec/cassettes/RedditKit_Client_Links/_links/requests_a_certain_number_of_links.yml +186 -0
  68. data/spec/cassettes/RedditKit_Client_Links/_links/requests_front_page_links_if_no_subreddit_is_present.yml +603 -0
  69. data/spec/cassettes/RedditKit_Client_Links/_links/requests_links_with_the_correct_time_frame.yml +375 -0
  70. data/spec/cassettes/RedditKit_Client_Links/_links/requests_the_correct_subreddit_and_category.yml +402 -0
  71. data/spec/cassettes/RedditKit_Client_Links/_links_with_domain/returns_links_with_a_specific_domain.yml +99 -0
  72. data/spec/cassettes/RedditKit_Client_Links/_mark_nsfw/requests_the_correct_resource.yml +46 -0
  73. data/spec/cassettes/RedditKit_Client_Links/_random_link/returns_a_random_link.yml +91 -0
  74. data/spec/cassettes/RedditKit_Client_Links/_submit/raises_RedditKit_InvalidCaptcha_if_no_CAPTCHA_is_filled_out.yml +54 -0
  75. data/spec/cassettes/RedditKit_Client_Links/_unhide/requests_the_correct_resource.yml +46 -0
  76. data/spec/cassettes/RedditKit_Client_Links/_unmark_nsfw/requests_the_correct_resource.yml +46 -0
  77. data/spec/cassettes/RedditKit_Client_Miscellaneous/_delete/requests_the_correct_resource.yml +46 -0
  78. data/spec/cassettes/RedditKit_Client_Miscellaneous/_edit/requests_the_correct_resource.yml +52 -0
  79. data/spec/cassettes/RedditKit_Client_Miscellaneous/_save/saves_an_object.yml +46 -0
  80. data/spec/cassettes/RedditKit_Client_Miscellaneous/_unsave/unsaves_an_object.yml +89 -0
  81. data/spec/cassettes/RedditKit_Client_Moderation/_accept_moderator_invitation/requests_the_correct_resource.yml +53 -0
  82. data/spec/cassettes/RedditKit_Client_Moderation/_ban/requests_the_correct_resource.yml +103 -0
  83. data/spec/cassettes/RedditKit_Client_Moderation/_contributors_to_subreddit/requests_the_correct_resource.yml +47 -0
  84. data/spec/cassettes/RedditKit_Client_Moderation/_ignore_reports/requests_the_correct_resource.yml +46 -0
  85. data/spec/cassettes/RedditKit_Client_Moderation/_moderation_log/returns_RedditKit_ModeratorAction_objects.yml +153 -0
  86. data/spec/cassettes/RedditKit_Client_Moderation/_moderators_of_subreddit/requests_the_correct_resource.yml +48 -0
  87. data/spec/cassettes/RedditKit_Client_Moderation/_reset_subreddit_header/requests_the_correct_resource.yml +55 -0
  88. data/spec/cassettes/RedditKit_Client_Moderation/_set_contest_mode/requests_the_correct_resource.yml +46 -0
  89. data/spec/cassettes/RedditKit_Client_Moderation/_set_sticky_post/requests_the_correct_resource.yml +46 -0
  90. data/spec/cassettes/RedditKit_Client_Moderation/_unban/requests_the_correct_resource.yml +54 -0
  91. data/spec/cassettes/RedditKit_Client_Moderation/_unignore_reports/requests_the_correct_resource.yml +46 -0
  92. data/spec/cassettes/RedditKit_Client_Multireddits/_add_subreddit_to_multireddit/adds_a_subreddit_to_a_multireddit.yml +177 -0
  93. data/spec/cassettes/RedditKit_Client_Multireddits/_create_multireddit/creates_a_multireddit.yml +137 -0
  94. data/spec/cassettes/RedditKit_Client_Multireddits/_create_multireddit/raises_RedditKit_Conflict_when_using_an_existing_name.yml +133 -0
  95. data/spec/cassettes/RedditKit_Client_Multireddits/_delete_multireddit/deletes_a_multireddit.yml +134 -0
  96. data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit/with_a_path/returns_a_multireddit.yml +39 -0
  97. data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit/without_a_path/returns_a_multireddit.yml +39 -0
  98. data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit_description/with_a_multireddit/returns_a_multireddit_description.yml +81 -0
  99. data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit_description/with_a_username_and_multireddit_name/returns_a_multireddit_description.yml +45 -0
  100. data/spec/cassettes/RedditKit_Client_Multireddits/_my_multireddits/return_s_the_user_s_multireddits.yml +47 -0
  101. data/spec/cassettes/RedditKit_Client_Multireddits/_remove_subreddit_from_multireddit/removes_a_subreddit_from_a_multireddit.yml +175 -0
  102. data/spec/cassettes/RedditKit_Client_Multireddits/_rename_multireddit/renames_a_multireddit.yml +134 -0
  103. data/spec/cassettes/RedditKit_Client_Multireddits/_set_multireddit_description/returns_a_multireddit_description.yml +48 -0
  104. data/spec/cassettes/RedditKit_Client_Multireddits/_update_multireddit/updates_a_multireddit.yml +184 -0
  105. data/spec/cassettes/RedditKit_Client_PrivateMessages/_block_author_of_message/requests_the_correct_resource.yml +46 -0
  106. data/spec/cassettes/RedditKit_Client_PrivateMessages/_mark_as_read/requests_the_correct_resource.yml +51 -0
  107. data/spec/cassettes/RedditKit_Client_PrivateMessages/_mark_as_unread/requests_the_correct_resource.yml +51 -0
  108. data/spec/cassettes/RedditKit_Client_PrivateMessages/_messages/requests_the_correct_resource.yml +187 -0
  109. data/spec/cassettes/RedditKit_Client_PrivateMessages/_unblock/requests_the_correct_resource.yml +46 -0
  110. data/spec/cassettes/RedditKit_Client_Search/_search/restricts_searches_to_a_specific_subreddit.yml +878 -0
  111. data/spec/cassettes/RedditKit_Client_Search/_search/returns_a_specific_number_of_results.yml +130 -0
  112. data/spec/cassettes/RedditKit_Client_Search/_search/returns_search_results.yml +844 -0
  113. data/spec/cassettes/RedditKit_Client_Subreddits/_random_subreddit/returns_a_random_subreddit.yml +181 -0
  114. data/spec/cassettes/RedditKit_Client_Subreddits/_recommended_subreddits/returns_subreddit_names.yml +37 -0
  115. data/spec/cassettes/RedditKit_Client_Subreddits/_search_subreddits_by_name/returns_subreddit_names.yml +875 -0
  116. data/spec/cassettes/RedditKit_Client_Subreddits/_subreddit/returns_a_specified_subreddit.yml +100 -0
  117. data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits/returns_a_specified_number_of_subreddits.yml +505 -0
  118. data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits/returns_subreddits_from_a_specific_category.yml +510 -0
  119. data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits_by_topic/returns_subreddit_names.yml +41 -0
  120. data/spec/cassettes/RedditKit_Client_Subreddits/_subscribe/requests_the_correct_resource.yml +46 -0
  121. data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_a_specified_number_of_subreddits.yml +415 -0
  122. data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_subreddits_from_a_specific_category.yml +58 -0
  123. data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_the_user_s_subscribed_subreddits.yml +3469 -0
  124. data/spec/cassettes/RedditKit_Client_Subreddits/_unsubscribe/requests_the_correct_resource.yml +46 -0
  125. data/spec/cassettes/RedditKit_Client_Users/_friends/returns_the_user_s_friends.yml +48 -0
  126. data/spec/cassettes/RedditKit_Client_Users/_my_content/returns_the_user_s_content.yml +60 -0
  127. data/spec/cassettes/RedditKit_Client_Users/_user/requests_the_correct_resource.yml +48 -0
  128. data/spec/cassettes/RedditKit_Client_Users/_user/returns_a_specified_user.yml +48 -0
  129. data/spec/cassettes/RedditKit_Client_Users/_user/returns_the_authenticated_user.yml +48 -0
  130. data/spec/cassettes/RedditKit_Client_Users/_user_content/returns_the_user_s_content.yml +41 -0
  131. data/spec/cassettes/RedditKit_Client_Users/_username_available_/returns_false_for_an_unavailable_username.yml +36 -0
  132. data/spec/cassettes/RedditKit_Client_Users/_username_available_/returns_true_for_an_available_username.yml +36 -0
  133. data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_comment_full_name_passed/downvotes_the_comment.yml +100 -0
  134. data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_comment_passed/downvotes_the_comment.yml +154 -0
  135. data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_link_full_name_passed/downvotes_the_link.yml +106 -0
  136. data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_link_passed/downvotes_the_link.yml +166 -0
  137. data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_comment_full_name_passed/upvotes_the_comment.yml +100 -0
  138. data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_comment_passed/upvotes_the_comment.yml +154 -0
  139. data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_link_full_name_passed/upvotes_the_link.yml +106 -0
  140. data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_link_passed/upvotes_the_link.yml +166 -0
  141. data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_comment_full_name_passed/withdraws_the_vote_on_the_comment.yml +154 -0
  142. data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_comment_passed/withdraws_the_vote_on_the_comment.yml +208 -0
  143. data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_link_full_name_passed/withdraws_the_vote_on_the_link.yml +166 -0
  144. data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_link_passed/withdraws_the_vote_on_the_link.yml +226 -0
  145. data/spec/cassettes/RedditKit_Client_Wiki/_add_wiki_editor/requests_the_correct_resource.yml +46 -0
  146. data/spec/cassettes/RedditKit_Client_Wiki/_edit_wiki_page/requests_the_correct_resource.yml +48 -0
  147. data/spec/cassettes/RedditKit_Client_Wiki/_hide_wiki_revision/requests_the_correct_resource.yml +46 -0
  148. data/spec/cassettes/RedditKit_Client_Wiki/_remove_wiki_editor/requests_the_correct_resource.yml +46 -0
  149. data/spec/cassettes/RedditKit_Client_Wiki/_revert_to_revision/requests_the_correct_resource.yml +46 -0
  150. data/spec/cassettes/RedditKit_Comment/should_not_be_deleted_if_neither_author_and_comment_attributes_are_set_to_deleted_.yml +90 -0
  151. data/spec/cassettes/RedditKit_Comment/should_return_replies.yml +90 -0
  152. data/spec/cassettes/authenticated_client.yml +87 -0
  153. data/spec/redditkit/base_spec.rb +45 -0
  154. data/spec/redditkit/client/account_spec.rb +50 -0
  155. data/spec/redditkit/client/apps_spec.rb +58 -0
  156. data/spec/redditkit/client/captcha_spec.rb +30 -0
  157. data/spec/redditkit/client/comments_spec.rb +40 -0
  158. data/spec/redditkit/client/flair_spec.rb +92 -0
  159. data/spec/redditkit/client/links_spec.rb +103 -0
  160. data/spec/redditkit/client/miscellaneous_spec.rb +40 -0
  161. data/spec/redditkit/client/moderation_spec.rb +141 -0
  162. data/spec/redditkit/client/multireddits_spec.rb +158 -0
  163. data/spec/redditkit/client/private_messages_spec.rb +51 -0
  164. data/spec/redditkit/client/search_spec.rb +25 -0
  165. data/spec/redditkit/client/subreddits_spec.rb +83 -0
  166. data/spec/redditkit/client/users_spec.rb +92 -0
  167. data/spec/redditkit/client/voting_spec.rb +99 -0
  168. data/spec/redditkit/client/wiki_spec.rb +40 -0
  169. data/spec/redditkit/client_spec.rb +46 -0
  170. data/spec/redditkit/comment_spec.rb +26 -0
  171. data/spec/redditkit/creatable_spec.rb +24 -0
  172. data/spec/redditkit/error_spec.rb +61 -0
  173. data/spec/redditkit/link_spec.rb +33 -0
  174. data/spec/redditkit/multireddit_spec.rb +27 -0
  175. data/spec/redditkit/paginated_response_spec.rb +23 -0
  176. data/spec/redditkit/thing_spec.rb +18 -0
  177. data/spec/redditkit/votable_spec.rb +52 -0
  178. data/spec/redditkit_spec.rb +21 -0
  179. data/spec/spec_helper.rb +124 -0
  180. metadata +390 -0
@@ -0,0 +1,181 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://www.reddit.com/r/random
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: 302
19
+ message: Moved Temporarily
20
+ headers:
21
+ Location:
22
+ - http://www.reddit.com/r/goldredditsays/
23
+ Content-Length:
24
+ - '261'
25
+ Content-Type:
26
+ - text/html; charset=UTF-8
27
+ Server:
28
+ - "'; DROP TABLE servertypes; --"
29
+ Vary:
30
+ - Accept-Encoding
31
+ Date:
32
+ - Sun, 10 Nov 2013 22:38:27 GMT
33
+ Connection:
34
+ - keep-alive
35
+ body:
36
+ encoding: UTF-8
37
+ string: |-
38
+ <html>
39
+ <head>
40
+ <title>302 Found</title>
41
+ </head>
42
+ <body>
43
+ <h1>302 Found</h1>
44
+ The resource was found at <a href="http://www.reddit.com/r/goldredditsays/">http://www.reddit.com/r/goldredditsays/</a>;
45
+ you should be redirected automatically.
46
+
47
+
48
+ </body>
49
+ </html>
50
+ http_version:
51
+ recorded_at: Sun, 10 Nov 2013 22:38:25 GMT
52
+ - request:
53
+ method: get
54
+ uri: http://www.reddit.com/r/goldredditsays/about.json
55
+ body:
56
+ encoding: US-ASCII
57
+ string: ''
58
+ headers:
59
+ User-Agent:
60
+ - Faraday v0.8.8
61
+ Accept-Encoding:
62
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
63
+ Accept:
64
+ - "*/*"
65
+ response:
66
+ status:
67
+ code: 200
68
+ message: OK
69
+ headers:
70
+ Content-Type:
71
+ - application/json; charset=UTF-8
72
+ Server:
73
+ - "'; DROP TABLE servertypes; --"
74
+ Vary:
75
+ - accept-encoding
76
+ Date:
77
+ - Sun, 10 Nov 2013 22:38:27 GMT
78
+ Content-Length:
79
+ - '9830'
80
+ Connection:
81
+ - keep-alive
82
+ body:
83
+ encoding: UTF-8
84
+ string: "{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
85
+ null, \"id\": \"2t72t\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
86
+ \"display_name\": \"goldredditsays\", \"header_img\": \"http://f.thumbs.redditmedia.com/W0xItPrYVx2yAjWw.png\",
87
+ \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;h3&gt;THE
88
+ SRS FEMPIRE&lt;/h3&gt;\\n\\n&lt;table&gt;&lt;thead&gt;\\n&lt;tr&gt;\\n&lt;th
89
+ align=\\\"left\\\"&gt;.&lt;/th&gt;\\n&lt;th align=\\\"left\\\"&gt;.&lt;/th&gt;\\n&lt;/tr&gt;\\n&lt;/thead&gt;&lt;tbody&gt;\\n&lt;tr&gt;\\n&lt;td
90
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/ShitRedditSays\\\"&gt;ShitRedditSays&lt;/a&gt;&lt;/td&gt;\\n&lt;td
91
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSBeliefs\\\"&gt;SRSBeliefs&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
92
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSBooks\\\"&gt;SRSBooks&lt;/a&gt;&lt;/td&gt;\\n&lt;td
93
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSBusiness\\\"&gt;SRSBusiness&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
94
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSCinema\\\"&gt;SRSCinema&lt;/a&gt;&lt;/td&gt;\\n&lt;td
95
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSComics\\\"&gt;SRSComics&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
96
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSDisabilities\\\"&gt;SRSDisabilities&lt;/a&gt;&lt;/td&gt;\\n&lt;td
97
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSDiscussion\\\"&gt;SRSDiscussion&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
98
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSFeminism\\\"&gt;SRSFeminism&lt;/a&gt;&lt;/td&gt;\\n&lt;td
99
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSFoodies\\\"&gt;SRSFoodies&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
100
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSFunny\\\"&gt;SRSFunny&lt;/a&gt;&lt;/td&gt;\\n&lt;td
101
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSGaming\\\"&gt;SRSGaming&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
102
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSGreatestHits\\\"&gt;SRSGreatestHits&lt;/a&gt;&lt;/td&gt;\\n&lt;td
103
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSGSM\\\"&gt;SRSGSM&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
104
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSHappy\\\"&gt;SRSHappy&lt;/a&gt;&lt;/td&gt;\\n&lt;td
105
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSImages\\\"&gt;SRSImages&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
106
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSMailbag\\\"&gt;SRSMailbag&lt;/a&gt;&lt;/td&gt;\\n&lt;td
107
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSMen\\\"&gt;SRSMen&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
108
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSMeta\\\"&gt;SRSMeta&lt;/a&gt;&lt;/td&gt;\\n&lt;td
109
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSMusic\\\"&gt;SRSMusic&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
110
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSMythos\\\"&gt;SRSMythos&lt;/a&gt;&lt;/td&gt;\\n&lt;td
111
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSPoC\\\"&gt;SRSPoC&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
112
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSPonies\\\"&gt;SRSPonies&lt;/a&gt;&lt;/td&gt;\\n&lt;td
113
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSQuestions\\\"&gt;SRSQuestions&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
114
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSRedditDrama\\\"&gt;SRSRedditDrama&lt;/a&gt;&lt;/td&gt;\\n&lt;td
115
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSScience\\\"&gt;SRSScience&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
116
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSSex\\\"&gt;SRSSex&lt;/a&gt;&lt;/td&gt;\\n&lt;td
117
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSSkeptic\\\"&gt;SRSSkeptic&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
118
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSTechnology\\\"&gt;SRSTechnology&lt;/a&gt;&lt;/td&gt;\\n&lt;td
119
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSTelevision\\\"&gt;SRSTelevision&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
120
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSTransSupport\\\"&gt;SRSTransSupport&lt;/a&gt;&lt;/td&gt;\\n&lt;td
121
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSTrees\\\"&gt;SRSTrees&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
122
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSWomen\\\"&gt;SRSWomen&lt;/a&gt;&lt;/td&gt;\\n&lt;td
123
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SRSWorldProblems\\\"&gt;SRSWorldProblems&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
124
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/Daww\\\"&gt;Daww&lt;/a&gt;&lt;/td&gt;\\n&lt;td
125
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/GoldRedditSays\\\"&gt;GoldRedditSays&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
126
+ align=\\\"left\\\"&gt;&lt;a href=\\\"/r/SocialJustice101\\\"&gt;SocialJustice101&lt;/a&gt;&lt;/td&gt;\\n&lt;td
127
+ align=\\\"left\\\"&gt;&lt;a href=\\\"http://www.reddit.com/r/ShitRedditSays/wiki/directory\\\"&gt;Full
128
+ Directory&lt;/a&gt;&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;/tbody&gt;&lt;/table&gt;\\n\\n&lt;hr/&gt;\\n\\n&lt;h1&gt;Rules&lt;/h1&gt;\\n\\n&lt;h6&gt;&lt;a
129
+ href=\\\"#h6-red\\\"&gt;&lt;/a&gt;&lt;/h6&gt;\\n\\n&lt;blockquote&gt;\\n&lt;p&gt;&lt;strong&gt;1.&lt;/strong&gt;
130
+ Posts that are bigoted, creepy, misogynistic, transphobic, unsettling, racist,
131
+ homophobic, or just reeking of unexamined, toxic privilege will probably result
132
+ in a ban.&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;2.&lt;/strong&gt; Please include
133
+ the vote count in brackets along with a quote as the title of the gold you
134
+ are submitting. A brief summary for context or for complex posts is also acceptable.&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;3.&lt;/strong&gt;
135
+ Please link to an individual post and refrain from liking to an entire submission.
136
+ Please do not say &amp;quot;this whole thread,&amp;quot; and instead find
137
+ a good nugget of gold that you liked to link to from the comments.&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;4.&lt;/strong&gt;
138
+ Please link only to upvoted posts. We want to see people agreeing with gold,
139
+ to show that there are decent people on Reddit, and upvotes are a great indicator
140
+ of that.&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;5.&lt;/strong&gt; Please do
141
+ not link to a comment by an SRSer, a cursory glance at someone&amp;#39;s posting
142
+ history to see if they post in any Fempire subreddits is all it should take
143
+ to determine this. Excellent posts by SRSers should go in [4] &lt;a href=\\\"/r/SRSGreatestHits\\\"&gt;/r/SRSGreatestHits&lt;/a&gt;.
144
+ Note that this includes no links to Fempire subreddits.&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;6.&lt;/strong&gt;
145
+ Please do not link to threads you have some involvement in.&lt;/p&gt;\\n&lt;/blockquote&gt;\\n\\n&lt;hr/&gt;\\n\\n&lt;p&gt;&lt;a
146
+ href=\\\"http://www.reddit.com/r/goldredditsays/comments/uvklw/goldredditsays_new_community_guidelines_are_here/\\\"&gt;There
147
+ is a discussion on these rules, and a more in-depth explanation here.&lt;/a&gt;&lt;/p&gt;\\n&lt;/div&gt;&lt;!--
148
+ SC_ON --&gt;\", \"title\": \"\\\"All the gold which is under or upon the earth
149
+ is not enough to give in exchange for virtue.\\\" -Plato\", \"over18\": false,
150
+ \"user_is_moderator\": null, \"header_title\": null, \"description\": \"###THE
151
+ SRS FEMPIRE\\n\\n. | .\\n:--|:--\\n[ShitRedditSays](/r/ShitRedditSays)|[SRSBeliefs](/r/SRSBeliefs)\\n[SRSBooks](/r/SRSBooks)|[SRSBusiness](/r/SRSBusiness)\\n[SRSCinema](/r/SRSCinema)|[SRSComics](/r/SRSComics)\\n[SRSDisabilities](/r/SRSDisabilities)|[SRSDiscussion](/r/SRSDiscussion)\\n[SRSFeminism](/r/SRSFeminism)|[SRSFoodies](/r/SRSFoodies)\\n[SRSFunny](/r/SRSFunny)|[SRSGaming](/r/SRSGaming)\\n[SRSGreatestHits](/r/SRSGreatestHits)|[SRSGSM](/r/SRSGSM)\\n[SRSHappy](/r/SRSHappy)|[SRSImages](/r/SRSImages)\\n[SRSMailbag](/r/SRSMailbag)|[SRSMen](/r/SRSMen)\\n[SRSMeta](/r/SRSMeta)|[SRSMusic](/r/SRSMusic)\\n[SRSMythos](/r/SRSMythos)|[SRSPoC](/r/SRSPoC)\\n[SRSPonies](/r/SRSPonies)|[SRSQuestions](/r/SRSQuestions)\\n[SRSRedditDrama](/r/SRSRedditDrama)|[SRSScience](/r/SRSScience)\\n[SRSSex](/r/SRSSex)|[SRSSkeptic](/r/SRSSkeptic)\\n[SRSTechnology](/r/SRSTechnology)|[SRSTelevision](/r/SRSTelevision)\\n[SRSTransSupport](/r/SRSTransSupport)|[SRSTrees](/r/SRSTrees)\\n[SRSWomen](/r/SRSWomen)|[SRSWorldProblems](/r/SRSWorldProblems)\\n[Daww](/r/Daww)|[GoldRedditSays](/r/GoldRedditSays)\\n[SocialJustice101](/r/SocialJustice101)|[Full
152
+ Directory](http://www.reddit.com/r/ShitRedditSays/wiki/directory)\\n\\n---\\n\\n#
153
+ Rules\\n\\n###### [](#h6-red)\\n\\n&gt;**1.** Posts that are bigoted, creepy,
154
+ misogynistic, transphobic, unsettling, racist, homophobic, or just reeking
155
+ of unexamined, toxic privilege will probably result in a ban.\\n\\n&gt;**2.**
156
+ Please include the vote count in brackets along with a quote as the title
157
+ of the gold you are submitting. A brief summary for context or for complex
158
+ posts is also acceptable.\\n\\n&gt;**3.** Please link to an individual post
159
+ and refrain from liking to an entire submission. Please do not say \\\"this
160
+ whole thread,\\\" and instead find a good nugget of gold that you liked to
161
+ link to from the comments.\\n\\n&gt;**4.** Please link only to upvoted posts.
162
+ We want to see people agreeing with gold, to show that there are decent people
163
+ on Reddit, and upvotes are a great indicator of that.\\n\\n\\n&gt;**5.** Please
164
+ do not link to a comment by an SRSer, a cursory glance at someone's posting
165
+ history to see if they post in any Fempire subreddits is all it should take
166
+ to determine this. Excellent posts by SRSers should go in [4] /r/SRSGreatestHits.
167
+ Note that this includes no links to Fempire subreddits.\\n\\n&gt;**6.** Please
168
+ do not link to threads you have some involvement in.\\n\\n---\\n\\n[There
169
+ is a discussion on these rules, and a more in-depth explanation here.](http://www.reddit.com/r/goldredditsays/comments/uvklw/goldredditsays_new_community_guidelines_are_here/)\",
170
+ \"submit_link_label\": null, \"accounts_active\": 14, \"spam_comments\": \"low\",
171
+ \"spam_links\": \"high\", \"header_size\": [121, 120], \"subscribers\": 6131,
172
+ \"submit_text_label\": null, \"name\": \"t5_2t72t\", \"created\": 1323352011.0,
173
+ \"url\": \"/r/goldredditsays/\", \"created_utc\": 1323348411.0, \"user_is_contributor\":
174
+ null, \"public_traffic\": false, \"public_description\": \"Welcome to GoldRedditSays!
175
+ GRS is the subreddit for gold miners to mine the comments posted on Reddit
176
+ and to find those really good comments that show goldlords on Reddit being
177
+ decent human beings.\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
178
+ \"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}}"
179
+ http_version:
180
+ recorded_at: Sun, 10 Nov 2013 22:38:26 GMT
181
+ recorded_with: VCR 2.6.0
@@ -0,0 +1,37 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://www.reddit.com/api/subreddit_recommendations.json?srnames=programming
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
+ - '108'
25
+ Server:
26
+ - "'; DROP TABLE servertypes; --"
27
+ Date:
28
+ - Sun, 10 Nov 2013 22:38:21 GMT
29
+ Connection:
30
+ - keep-alive
31
+ body:
32
+ encoding: UTF-8
33
+ string: "[{\"sr_name\": \"operabrowser\"}, {\"sr_name\": \"processing\"}, {\"sr_name\":
34
+ \"duckduckgo\"}, {\"sr_name\": \"thinkpad\"}]"
35
+ http_version:
36
+ recorded_at: Sun, 10 Nov 2013 22:38:20 GMT
37
+ recorded_with: VCR 2.6.0
@@ -0,0 +1,875 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://www.reddit.com/subreddits/search.json?q=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
+ Server:
24
+ - "'; DROP TABLE servertypes; --"
25
+ Vary:
26
+ - accept-encoding
27
+ Date:
28
+ - Sun, 10 Nov 2013 22:38:23 GMT
29
+ Transfer-Encoding:
30
+ - chunked
31
+ Connection:
32
+ - Transfer-Encoding
33
+ - keep-alive
34
+ body:
35
+ encoding: UTF-8
36
+ string: "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"children\":
37
+ [{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
38
+ null, \"id\": \"2qh21\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
39
+ \"display_name\": \"ruby\", \"header_img\": \"http://thumbs.reddit.com/t5_2qh21.png?v=d4ae33f6d04df1caf7a3b126aabe9ae5\",
40
+ \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;&lt;strong&gt;A
41
+ reddit for discussion and news about ruby programming&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;p&gt;Ruby-on-Rails
42
+ posts are encouraged to be posted in the &lt;a href=\\\"http://reddit.com/r/rails\\\"&gt;r/rails&lt;/a&gt;
43
+ subreddit&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Learning Ruby?&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
44
+ href=\\\"http://tryruby.org/\\\"&gt;Try Ruby&lt;/a&gt; in your browser&lt;/li&gt;\\n&lt;li&gt;Syntax,
45
+ structure, and some common functions and libraries try &lt;a href=\\\"http://rubykoans.com/\\\"&gt;RubyKoans&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
46
+ href=\\\"http://hackety.com/\\\"&gt;Hackety Hack&lt;/a&gt; a shoes app for
47
+ playing around with ruby&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Tools&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
48
+ href=\\\"https://rvm.io/\\\"&gt;Ruby Version Manager (RVM)&lt;/a&gt; easily
49
+ install, manage and work with multiple ruby environments from interpreters
50
+ to sets of gems&lt;/li&gt;\\n&lt;li&gt;Manages an application&amp;#39;s dependencies
51
+ &lt;a href=\\\"http://gembundler.com\\\"&gt;Bundler&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;Looking
52
+ for new gems? &lt;a href=\\\"http://ruby-toolbox.com/\\\"&gt;ruby-toolbox&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Got
53
+ Docs?&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a href=\\\"http://apidock.com/\\\"&gt;APIdock&lt;/a&gt;
54
+ rich and usable interface for searching, perusing and improving the documentation&lt;/li&gt;\\n&lt;li&gt;&lt;a
55
+ href=\\\"http://rdoc.info/gems\\\"&gt;rdoc&lt;/a&gt; YARD Documentation Server&lt;/li&gt;\\n&lt;li&gt;&lt;a
56
+ href=\\\"http://ruby-doc.org/\\\"&gt;Ruby Doc&lt;/a&gt; complete and accurate
57
+ documentation for the Ruby programming language&lt;/li&gt;\\n&lt;li&gt;&lt;a
58
+ href=\\\"https://www.relishapp.com/\\\"&gt;RelishApp&lt;/a&gt; Browsable Cucumber
59
+ Features&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Books&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
60
+ href=\\\"http://www.amazon.com/gp/product/1933988657/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;amp;tag=redditrrubyco-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1933988657\\\"&gt;Well
61
+ Grounded Rubyist&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"http://www.amazon.com/gp/product/0321584104/ref=as_li_tf_tl?ie=UTF8&amp;amp;tag=redditrrubyco-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=0321584104\\\"&gt;Eloquent
62
+ Ruby&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"http://www.amazon.com/gp/product/1934356476/ref=as_li_tf_tl?ie=UTF8&amp;amp;tag=redditrrubyco-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1934356476\\\"&gt;Metaprogramming
63
+ Ruby&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"http://www.amazon.com/gp/product/1934356379/ref=as_li_tf_tl?ie=UTF8&amp;amp;tag=redditrrubyco-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1934356379\\\"&gt;The
64
+ Rspec Book&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"http://www.amazon.com/gp/product/1934356085/ref=as_li_tf_tl?ie=UTF8&amp;amp;tag=redditrrubyco-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1934356085\\\"&gt;Programming
65
+ Ruby 1.9: The Pragmatic Programmers\\u2019 Guide&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
66
+ href=\\\"http://www.amazon.com/gp/product/0596516177/ref=as_li_tf_tl?ie=UTF8&amp;amp;tag=redditrrubyco-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=0596516177\\\"&gt;The
67
+ Ruby Programming Language&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Community&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;Signup
68
+ for &lt;a href=\\\"http://github.com/signup/free\\\"&gt;GitHub&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;Signup
69
+ for &lt;a href=\\\"http://rubygems.org/sign_up\\\"&gt;RubyGems&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Screencasts
70
+ (Rails)&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a href=\\\"http://rubyonrails.org/screencasts/rails3\\\"&gt;Rails
71
+ Screencasts&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"http://railscasts.com/\\\"&gt;RailsCasts&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
72
+ href=\\\"http://railsforzombies.org/\\\"&gt;Rails For Zombies!&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n&lt;/div&gt;&lt;!--
73
+ SC_ON --&gt;\", \"title\": \"reddit for rubyists\", \"over18\": false, \"user_is_moderator\":
74
+ null, \"header_title\": null, \"description\": \"**A reddit for discussion
75
+ and news about ruby programming**\\n\\nRuby-on-Rails posts are encouraged
76
+ to be posted in the [r/rails](http://reddit.com/r/rails) subreddit\\n\\n**Learning
77
+ Ruby?**\\n\\n* [Try Ruby](http://tryruby.org/) in your browser\\n* Syntax,
78
+ structure, and some common functions and libraries try [RubyKoans](http://rubykoans.com/)\\n*
79
+ [Hackety Hack](http://hackety.com/) a shoes app for playing around with ruby\\n\\n**Tools**\\n\\n*
80
+ [Ruby Version Manager (RVM)](https://rvm.io/) easily install, manage and work
81
+ with multiple ruby environments from interpreters to sets of gems\\n* Manages
82
+ an application's dependencies [Bundler](http://gembundler.com)\\n* Looking
83
+ for new gems? [ruby-toolbox](http://ruby-toolbox.com/)\\n\\n**Got Docs?**\\n\\n*
84
+ [APIdock](http://apidock.com/) rich and usable interface for searching, perusing
85
+ and improving the documentation\\n* [rdoc](http://rdoc.info/gems) YARD Documentation
86
+ Server\\n* [Ruby Doc](http://ruby-doc.org/) complete and accurate documentation
87
+ for the Ruby programming language\\n* [RelishApp](https://www.relishapp.com/)
88
+ Browsable Cucumber Features\\n\\n\\n**Books**\\n\\n* [Well Grounded Rubyist](http://www.amazon.com/gp/product/1933988657/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1933988657)\\n*
89
+ [Eloquent Ruby](http://www.amazon.com/gp/product/0321584104/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321584104)\\n*
90
+ [Metaprogramming Ruby](http://www.amazon.com/gp/product/1934356476/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1934356476)\\n*
91
+ [The Rspec Book](http://www.amazon.com/gp/product/1934356379/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1934356379)\\n*
92
+ [Programming Ruby 1.9: The Pragmatic Programmers\\u2019 Guide](http://www.amazon.com/gp/product/1934356085/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1934356085)\\n*
93
+ [The Ruby Programming Language](http://www.amazon.com/gp/product/0596516177/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596516177)\\n\\n**Community**\\n\\n*
94
+ Signup for [GitHub](http://github.com/signup/free)\\n* Signup for [RubyGems](http://rubygems.org/sign_up)\\n\\n**Screencasts
95
+ (Rails)**\\n\\n * [Rails Screencasts](http://rubyonrails.org/screencasts/rails3)\\n
96
+ * [RailsCasts](http://railscasts.com/)\\n * [Rails For Zombies!](http://railsforzombies.org/)\",
97
+ \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
98
+ \"low\", \"spam_links\": \"low\", \"header_size\": null, \"subscribers\":
99
+ 19119, \"submit_text_label\": null, \"name\": \"t5_2qh21\", \"created\": 1201241221.0,
100
+ \"url\": \"/r/ruby/\", \"created_utc\": 1201237621.0, \"user_is_contributor\":
101
+ null, \"public_traffic\": false, \"public_description\": \"\", \"comment_score_hide_mins\":
102
+ 0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
103
+ null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
104
+ null, \"id\": \"2qhjn\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
105
+ \"display_name\": \"rails\", \"header_img\": \"http://thumbs.reddit.com/t5_2qhjn.png?v=f5bd2d9336b0cb11d2bba31573c2cac0\",
106
+ \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;&lt;strong&gt;A
107
+ subreddit for discussion and news about Ruby on Rails development&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;p&gt;Posts
108
+ about the Ruby programming language are encouraged to be posted in the &lt;a
109
+ href=\\\"/r/ruby\\\"&gt;/r/ruby&lt;/a&gt; subreddit.&lt;/p&gt;\\n\\n&lt;p&gt;Please
110
+ &lt;a href=\\\"http://www.reddit.com/message/compose?to=%2Fr%2Frails\\\"&gt;message
111
+ the mods&lt;/a&gt; if you would like to suggest changes to the sidebar.&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Learning
112
+ Ruby?&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a href=\\\"http://tryruby.org/\\\"&gt;TryRuby&lt;/a&gt;
113
+ in your browser&lt;/li&gt;\\n&lt;li&gt;Try &lt;a href=\\\"http://rubykoans.com/\\\"&gt;RubyKoans&lt;/a&gt;
114
+ to learn more about syntax, structure, and common functions and libraries&lt;/li&gt;\\n&lt;li&gt;&lt;a
115
+ href=\\\"http://hackety.com/\\\"&gt;Hackety Hack&lt;/a&gt; is a shoes app
116
+ for playing around with ruby&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Learning
117
+ Rails?&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a href=\\\"http://ruby.railstutorial.org/ruby-on-rails-tutorial-book\\\"&gt;Learn
118
+ Web Development with Rails (Tutorial Book)&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
119
+ href=\\\"http://railsforzombies.org/\\\"&gt;Rails for Zombies&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
120
+ href=\\\"https://learn.thoughtbot.com/rails\\\"&gt;Thoughtbot - Learn Rails&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
121
+ href=\\\"http://www.codelearn.org\\\"&gt;Codelearn Rails Tutorials&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
122
+ href=\\\"http://railscasts.com/\\\"&gt;RailsCasts&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
123
+ href=\\\"http://rubyonrails.org/screencasts/rails3\\\"&gt;Ruby on Rails Screencasts&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
124
+ href=\\\"http://guides.rubyonrails.org/getting_started.html\\\"&gt;Ruby on
125
+ Rails Guides&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Tools&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
126
+ href=\\\"https://rvm.io/\\\"&gt;Ruby Version Manager (RVM)&lt;/a&gt;: easily
127
+ install, manage and work with multiple ruby environments from interpreters
128
+ to sets of gems&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"http://gembundler.com/\\\"&gt;Bundler&lt;/a&gt;:
129
+ Manages an application&amp;#39;s dependencies&lt;/li&gt;\\n&lt;li&gt;&lt;a
130
+ href=\\\"http://ruby-toolbox.com/\\\"&gt;ruby-toolbox&lt;/a&gt;: Find and
131
+ compare gems&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
132
+ href=\\\"http://apidock.com/\\\"&gt;APIdock&lt;/a&gt;: Rich and usable interface
133
+ for searching, perusing and improving the documentation&lt;/li&gt;\\n&lt;li&gt;&lt;a
134
+ href=\\\"http://railsapi.com\\\"&gt;Rails API&lt;/a&gt;: Searchable docs built
135
+ with the sdoc gem.&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"http://rdoc.info/gems\\\"&gt;rdoc&lt;/a&gt;:
136
+ YARD Documentation Server&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"http://ruby-doc.org/\\\"&gt;Ruby
137
+ Doc&lt;/a&gt;: Complete and accurate documentation for the Ruby programming
138
+ language&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"https://www.relishapp.com/\\\"&gt;RelishApp&lt;/a&gt;
139
+ Browsable Cucumber Features&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Community&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;Signup
140
+ for &lt;a href=\\\"http://github.com/signup/free\\\"&gt;Github&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;Signup
141
+ for &lt;a href=\\\"http://rubygems.org/sign_up\\\"&gt;rubygems&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Rails
142
+ jobs&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;p&gt;Looking for work, or need to hire
143
+ Rails developers?&lt;/p&gt;\\n\\n&lt;p&gt;Try &lt;a href=\\\"/r/railsjobs\\\"&gt;/r/railsjobs&lt;/a&gt;,
144
+ &lt;a href=\\\"/r/forhire\\\"&gt;/r/forhire&lt;/a&gt;, or the following job
145
+ sites:&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a href=\\\"http://jobs.37signals.com/\\\"&gt;jobs.37signals.com&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
146
+ href=\\\"https://jobs.github.com/\\\"&gt;jobs.github.com&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
147
+ href=\\\"http://careers.stackoverflow.com/jobs/tag/ruby-on-rails\\\"&gt;careers.stackoverflow.com&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
148
+ href=\\\"https://cooperpress.com/jobs\\\"&gt;Ruby Weekly Newsletter&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
149
+ href=\\\"http://www.rubyinside.com/post-a-job\\\"&gt;Ruby Inside&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
150
+ href=\\\"http://www.rorjobs.com/\\\"&gt;rorjobs.com&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
151
+ href=\\\"http://jobs.rubynow.com/\\\"&gt;jobs.rubynow.com&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
152
+ href=\\\"http://toprubyjobs.com/\\\"&gt;toprubyjobs.com&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;About
153
+ the &lt;a href=\\\"/r/rails\\\"&gt;/r/rails&lt;/a&gt; moderators:&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
154
+ href=\\\"/u/brendanlim\\\"&gt;/u/brendanlim&lt;/a&gt; - Co-founder of &lt;a
155
+ href=\\\"http://kicksend.com/\\\"&gt;Kicksend&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
156
+ href=\\\"/u/brentmc79\\\"&gt;/u/brentmc79&lt;/a&gt; - Works on the &lt;a href=\\\"http://twitter.com/safety\\\"&gt;Trust
157
+ &amp;amp; Safety&lt;/a&gt; team at &lt;a href=\\\"http://twitter.com/\\\"&gt;Twitter&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
158
+ href=\\\"/u/adambair\\\"&gt;/u/adambair&lt;/a&gt; - CTO of &lt;a href=\\\"http://www.openbay.com\\\"&gt;openbay&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
159
+ href=\\\"/u/ndbroadbent\\\"&gt;/u/ndbroadbent&lt;/a&gt; - Rails engineer at
160
+ &lt;a href=\\\"https://zenpayroll.com/careers#position-ruby-on-rails-engineer\\\"&gt;ZenPayroll&lt;/a&gt;
161
+ (&lt;a href=\\\"https://zenpayroll.com/careers#position-ruby-on-rails-engineer\\\"&gt;We&amp;#39;re
162
+ hiring!&lt;/a&gt;)&lt;/li&gt;\\n&lt;/ul&gt;\\n&lt;/div&gt;&lt;!-- SC_ON --&gt;\",
163
+ \"title\": \"Reddit for Rails hackers\", \"over18\": false, \"user_is_moderator\":
164
+ null, \"header_title\": null, \"description\": \"**A subreddit for discussion
165
+ and news about Ruby on Rails development**\\n\\nPosts about the Ruby programming
166
+ language are encouraged to be posted in the /r/ruby subreddit.\\n\\nPlease
167
+ [message the mods](http://www.reddit.com/message/compose?to=%2Fr%2Frails)
168
+ if you would like to suggest changes to the sidebar.\\n\\n**Learning Ruby?**\\n\\n*
169
+ [TryRuby](http://tryruby.org/) in your browser\\n* Try [RubyKoans](http://rubykoans.com/)
170
+ to learn more about syntax, structure, and common functions and libraries\\n*
171
+ [Hackety Hack](http://hackety.com/) is a shoes app for playing around with
172
+ ruby\\n\\n**Learning Rails?**\\n\\n* [Learn Web Development with Rails (Tutorial
173
+ Book)](http://ruby.railstutorial.org/ruby-on-rails-tutorial-book)\\n* [Rails
174
+ for Zombies](http://railsforzombies.org/)\\n* [Thoughtbot - Learn Rails](https://learn.thoughtbot.com/rails)\\n*
175
+ [Codelearn Rails Tutorials](http://www.codelearn.org)\\n* [RailsCasts](http://railscasts.com/)\\n*
176
+ [Ruby on Rails Screencasts](http://rubyonrails.org/screencasts/rails3)\\n*
177
+ [Ruby on Rails Guides](http://guides.rubyonrails.org/getting_started.html)\\n\\n**Tools**\\n\\n*
178
+ [Ruby Version Manager (RVM)](https://rvm.io/): easily install, manage and
179
+ work with multiple ruby environments from interpreters to sets of gems\\n*
180
+ [Bundler](http://gembundler.com/): Manages an application's dependencies\\n*
181
+ [ruby-toolbox](http://ruby-toolbox.com/): Find and compare gems\\n\\n**Docs**\\n\\n*
182
+ [APIdock](http://apidock.com/): Rich and usable interface for searching, perusing
183
+ and improving the documentation\\n* [Rails API](http://railsapi.com): Searchable
184
+ docs built with the sdoc gem.\\n* [rdoc](http://rdoc.info/gems): YARD Documentation
185
+ Server\\n* [Ruby Doc](http://ruby-doc.org/): Complete and accurate documentation
186
+ for the Ruby programming language\\n* [RelishApp](https://www.relishapp.com/)
187
+ Browsable Cucumber Features\\n\\n**Community**\\n\\n* Signup for [Github](http://github.com/signup/free)\\n*
188
+ Signup for [rubygems](http://rubygems.org/sign_up)\\n\\n**Rails jobs**\\n\\nLooking
189
+ for work, or need to hire Rails developers?\\n\\nTry /r/railsjobs, /r/forhire,
190
+ or the following job sites:\\n\\n* [jobs.37signals.com](http://jobs.37signals.com/)\\n*
191
+ [jobs.github.com](https://jobs.github.com/)\\n* [careers.stackoverflow.com](http://careers.stackoverflow.com/jobs/tag/ruby-on-rails)\\n*
192
+ [Ruby Weekly Newsletter](https://cooperpress.com/jobs)\\n* [Ruby Inside](http://www.rubyinside.com/post-a-job)\\n*
193
+ [rorjobs.com](http://www.rorjobs.com/)\\n* [jobs.rubynow.com](http://jobs.rubynow.com/)\\n*
194
+ [toprubyjobs.com](http://toprubyjobs.com/)\\n\\n**About the /r/rails moderators:**\\n\\n*
195
+ /u/brendanlim - Co-founder of [Kicksend](http://kicksend.com/)\\n* /u/brentmc79
196
+ - Works on the [Trust &amp; Safety](http://twitter.com/safety) team at [Twitter](http://twitter.com/)\\n*
197
+ /u/adambair - CTO of [openbay](http://www.openbay.com)\\n* /u/ndbroadbent
198
+ - Rails engineer at [ZenPayroll](https://zenpayroll.com/careers#position-ruby-on-rails-engineer)
199
+ ([We're hiring!](https://zenpayroll.com/careers#position-ruby-on-rails-engineer))\",
200
+ \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
201
+ \"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
202
+ 7942, \"submit_text_label\": null, \"name\": \"t5_2qhjn\", \"created\": 1205874858.0,
203
+ \"url\": \"/r/rails/\", \"created_utc\": 1205871258.0, \"user_is_contributor\":
204
+ null, \"public_traffic\": false, \"public_description\": \"A subreddit for
205
+ discussion and news about Ruby on Rails development\", \"comment_score_hide_mins\":
206
+ 0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
207
+ null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
208
+ null, \"id\": \"2rbfx\", \"submit_text\": \"\", \"spam_selfposts\": \"low\",
209
+ \"display_name\": \"rockhounds\", \"header_img\": \"http://c.thumbs.redditmedia.com/TVAr1x4uzPP-dZmJ.png\",
210
+ \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;A
211
+ public subReddit for the discussion of rockhounding, rock collecting, crystals
212
+ and mineralogy, geology, lapidary arts and rocks in general. Topics include
213
+ outings and trips, polishing, tumbling, cabochons, slabs and specimens. Feel
214
+ free to ask a question or post a picture.&lt;/p&gt;\\n\\n&lt;p&gt;No metaphysical
215
+ bullshit posts. Period.&lt;/p&gt;\\n\\n&lt;p&gt;If you&amp;#39;re posting
216
+ an ID request, please take clear, well-lit, up-close shots that will allow
217
+ for proper identification. Also provide any additional information that may
218
+ be pertinent such as where it was found, hardness, results of a streak test,
219
+ weight, etc.&lt;/p&gt;\\n\\n&lt;p&gt;If you post photos that you didn&amp;#39;t
220
+ take yourself, please credit the original photographer even if it means spending
221
+ a couple of minutes on &lt;a href=\\\"http://www.google.com/imghp\\\"&gt;Google
222
+ Images&lt;/a&gt; finding the original source.&lt;/p&gt;\\n\\n&lt;p&gt;Found
223
+ a cool rock and you need help IDing it? No need. It&amp;#39;s most definitely
224
+ &lt;a href=\\\"http://blog.al.com/goforth/Iron-slag-Bibb-County-Glades-Alabama.jpg\\\"&gt;slag&lt;/a&gt;.
225
+ /thread. &lt;/p&gt;\\n\\n&lt;p&gt;Related Reddits: &lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;p&gt;&lt;a
226
+ href=\\\"http://www.reddit.com/r/geologycareers\\\"&gt;/r/geologycareers&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;p&gt;&lt;a
227
+ href=\\\"http://www.reddit.com/r/geology\\\"&gt;/r/geology&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;p&gt;&lt;a
228
+ href=\\\"http://www.reddit.com/r/whatsthisrock\\\"&gt;/r/whatsthisrock&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;p&gt;&lt;a
229
+ href=\\\"http://www.reddit.com/r/prospecting\\\"&gt;/r/prospecting&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;p&gt;&lt;a
230
+ href=\\\"http://www.reddit.com/r/mining\\\"&gt;/r/mining&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;p&gt;&lt;a
231
+ href=\\\"http://www.reddit.com/r/jewelry\\\"&gt;/r/jewelry&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;p&gt;&lt;a
232
+ href=\\\"http://www.reddit.com/r/jewelers\\\"&gt;/r/jewelers&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;p&gt;&lt;a
233
+ href=\\\"http://www.reddit.com/r/fossilid\\\"&gt;/r/fossilid&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;p&gt;&lt;a
234
+ href=\\\"http://www.reddit.com/r/rockhoundexchange\\\"&gt;/r/RockhoundExchange&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;p&gt;&lt;a
235
+ href=\\\"http://www.reddit.com/r/askscience\\\"&gt;/r/askscience&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;If
236
+ you want to learn more about rock tumbling, check here at the &lt;a href=\\\"http://andy321.proboards.com/index.cgi?\\\"&gt;Rock
237
+ Tumbling Hobby Forums.&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;Created: Long ago.
238
+ Sputtered into life on 2-8-11. :D&lt;/p&gt;\\n&lt;/div&gt;&lt;!-- SC_ON --&gt;\",
239
+ \"title\": \"reddit.com/r/rockhounds: Rockhounding, rock collecting, mineralogy,
240
+ lapidary arts and more\", \"over18\": false, \"user_is_moderator\": null,
241
+ \"header_title\": \"Keep on rockin', Reddit\", \"description\": \"A public
242
+ subReddit for the discussion of rockhounding, rock collecting, crystals and
243
+ mineralogy, geology, lapidary arts and rocks in general. Topics include outings
244
+ and trips, polishing, tumbling, cabochons, slabs and specimens. Feel free
245
+ to ask a question or post a picture.\\n\\nNo metaphysical bullshit posts.
246
+ Period.\\n\\nIf you're posting an ID request, please take clear, well-lit,
247
+ up-close shots that will allow for proper identification. Also provide any
248
+ additional information that may be pertinent such as where it was found, hardness,
249
+ results of a streak test, weight, etc.\\n\\nIf you post photos that you didn't
250
+ take yourself, please credit the original photographer even if it means spending
251
+ a couple of minutes on [Google Images](http://www.google.com/imghp) finding
252
+ the original source.\\n\\nFound a cool rock and you need help IDing it? No
253
+ need. It's most definitely [slag](http://blog.al.com/goforth/Iron-slag-Bibb-County-Glades-Alabama.jpg).
254
+ /thread. \\n\\nRelated Reddits: \\n\\n* [/r/geologycareers](http://www.reddit.com/r/geologycareers)\\n\\n*
255
+ [/r/geology](http://www.reddit.com/r/geology)\\n\\n* [/r/whatsthisrock](http://www.reddit.com/r/whatsthisrock)\\n\\n*
256
+ [/r/prospecting](http://www.reddit.com/r/prospecting)\\n\\n* [/r/mining](http://www.reddit.com/r/mining)\\n\\n*
257
+ [/r/jewelry](http://www.reddit.com/r/jewelry)\\n\\n* [/r/jewelers](http://www.reddit.com/r/jewelers)\\n\\n*
258
+ [/r/fossilid](http://www.reddit.com/r/fossilid)\\n\\n* [/r/RockhoundExchange](http://www.reddit.com/r/rockhoundexchange)\\n\\n*
259
+ [/r/askscience](http://www.reddit.com/r/askscience)\\n\\nIf you want to learn
260
+ more about rock tumbling, check here at the [Rock Tumbling Hobby Forums.](http://andy321.proboards.com/index.cgi?)\\n\\nCreated:
261
+ Long ago. Sputtered into life on 2-8-11. :D\", \"submit_link_label\": null,
262
+ \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"low\",
263
+ \"header_size\": [502, 102], \"subscribers\": 5021, \"submit_text_label\":
264
+ null, \"name\": \"t5_2rbfx\", \"created\": 1257041284.0, \"url\": \"/r/rockhounds/\",
265
+ \"created_utc\": 1257037684.0, \"user_is_contributor\": null, \"public_traffic\":
266
+ false, \"public_description\": \"This is the Reddit place to go when rocks
267
+ are in your head -\\n\\nbe they agate, ruby, aquamarine or even a thunderegg
268
+ bed.\\n\\nPost pics and ask some questions if you want to pick our minds -\\n\\nor
269
+ display for all to see with pics your best and brightest finds!\", \"comment_score_hide_mins\":
270
+ 0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
271
+ null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
272
+ null, \"id\": \"2xj66\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
273
+ \"display_name\": \"squirreltactics\", \"header_img\": null, \"description_html\":
274
+ null, \"title\": \"When you absolutely have to know if it's Jack Ruby's hat\",
275
+ \"over18\": false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
276
+ \"\", \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
277
+ \"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
278
+ 14, \"submit_text_label\": null, \"name\": \"t5_2xj66\", \"created\": 1371002736.0,
279
+ \"url\": \"/r/squirreltactics/\", \"created_utc\": 1370999136.0, \"user_is_contributor\":
280
+ null, \"public_traffic\": false, \"public_description\": \"All things tactically
281
+ squirrel. Also, squirrely tactics. \", \"comment_score_hide_mins\": 0, \"subreddit_type\":
282
+ \"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
283
+ {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
284
+ null, \"id\": \"2sdpq\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
285
+ \"display_name\": \"LearnRubyonRails\", \"header_img\": \"http://thumbs.reddit.com/t5_2sdpq.png?v=b85ad9a34c2ac221cb7dbc0c5f0fab95\",
286
+ \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;&lt;strong&gt;A
287
+ reddit to start your Ruby on Rails path&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;Before
288
+ RoR remember to start with &lt;a href=\\\"http://www.reddit.com/r/learnruby\\\"&gt;Ruby&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Open
289
+ positions for moderators!&lt;/strong&gt;&lt;/p&gt;\\n&lt;/div&gt;&lt;!-- SC_ON
290
+ --&gt;\", \"title\": \"Learn Ruby on Rails\", \"over18\": false, \"user_is_moderator\":
291
+ null, \"header_title\": null, \"description\": \"**A reddit to start your
292
+ Ruby on Rails path**\\n\\n* Before RoR remember to start with [Ruby](http://www.reddit.com/r/learnruby)\\n\\n**Open
293
+ positions for moderators!**\", \"submit_link_label\": \"\", \"accounts_active\":
294
+ null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
295
+ null, \"subscribers\": 286, \"submit_text_label\": \"\", \"name\": \"t5_2sdpq\",
296
+ \"created\": 1300508154.0, \"url\": \"/r/LearnRubyonRails/\", \"created_utc\":
297
+ 1300504554.0, \"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
298
+ \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
299
+ \"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
300
+ null, \"user_is_banned\": null, \"id\": \"2qi04\", \"submit_text\": \"\",
301
+ \"spam_selfposts\": \"low\", \"display_name\": \"rubyonrails\", \"header_img\":
302
+ null, \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;&lt;strong&gt;A
303
+ subreddit for discussion and news about Ruby on Rails development&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;hr/&gt;\\n\\n&lt;p&gt;Also
304
+ check out; &lt;/p&gt;\\n\\n&lt;p&gt;&lt;a href=\\\"http://www.reddit.com/r/learnrubyonrails\\\"&gt;http://www.reddit.com/r/learnrubyonrails&lt;/a&gt;\\n&lt;a
305
+ href=\\\"http://www.reddit.com/r/rails\\\"&gt;http://www.reddit.com/r/rails&lt;/a&gt;&lt;/p&gt;\\n&lt;/div&gt;&lt;!--
306
+ SC_ON --&gt;\", \"title\": \"Ruby on Rails\", \"over18\": false, \"user_is_moderator\":
307
+ null, \"header_title\": null, \"description\": \"**A subreddit for discussion
308
+ and news about Ruby on Rails development**\\n\\n----\\n \\nAlso check out;
309
+ \\n \\nhttp://www.reddit.com/r/learnrubyonrails\\nhttp://www.reddit.com/r/rails\",
310
+ \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
311
+ \"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
312
+ 2669, \"submit_text_label\": null, \"name\": \"t5_2qi04\", \"created\": 1211182038.0,
313
+ \"url\": \"/r/rubyonrails/\", \"created_utc\": 1211178438.0, \"user_is_contributor\":
314
+ null, \"public_traffic\": false, \"public_description\": \"Everything RoR!
315
+ \ \\n \\nRuby on Rails, often simply Rails, is an open source web application
316
+ framework which runs on the Ruby programming language.\", \"comment_score_hide_mins\":
317
+ 0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
318
+ null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
319
+ null, \"id\": \"2w525\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
320
+ \"display_name\": \"TheAldmeriDominion\", \"header_img\": \"http://b.thumbs.redditmedia.com/dUAmFTJCYIGwVEAa.png\",
321
+ \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;&lt;strong&gt;Commands
322
+ from Queen Ayrenn:&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;p&gt;I have no hatred
323
+ for the races of Man, but they are young. Like all children, they are driven
324
+ by emotion. They lack the wisdom that comes with age. I would sooner place
325
+ an Altmer infant on the Ruby Throne than surrender Tamriel to their capricious
326
+ whims.&lt;/p&gt;\\n\\n&lt;p&gt;The Altmer, the Bosmer, and the Khajiit share
327
+ the common traits of intelligence, patience and reason. We do not seek riches
328
+ or plunder. Domination is not our goal nor is the acclamation of power for
329
+ its own sake.&lt;/p&gt;\\n\\n&lt;p&gt;Today we make our stand. Today we take
330
+ back the Ruby Throne, which is ours by ancient right and the blessing of the
331
+ Divines.&lt;/p&gt;\\n\\n&lt;p&gt;Stand with us.&lt;/p&gt;\\n\\n&lt;hr/&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Other
332
+ Subreddits:&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a href=\\\"http://www.reddit.com/r/elderscrollsonline/\\\"&gt;r/elderscrollsonline&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
333
+ href=\\\"http://www.reddit.com/r/thedaggerfallcovenant\\\"&gt;r/TheDaggerfallCovenant&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
334
+ href=\\\"http://www.reddit.com/r/TheEbonheartPact/\\\"&gt;r/TheEbonheartPact&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
335
+ href=\\\"http://www.reddit.com/r/elderscrolls\\\"&gt;r/elderscrolls&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
336
+ href=\\\"http://www.reddit.com/r/Skyrim\\\"&gt;r/skyrim&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
337
+ href=\\\"http://www.reddit.com/r/oblivion\\\"&gt;r/oblivion&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
338
+ href=\\\"http://www.reddit.com/r/morrowind\\\"&gt;r/morrowind&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
339
+ href=\\\"http://www.reddit.com/r/teslore\\\"&gt;r/teslore&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
340
+ href=\\\"http://www.reddit.com/r/Khajiits\\\"&gt;r/Khajiits&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n&lt;/div&gt;&lt;!--
341
+ SC_ON --&gt;\", \"title\": \"Elder Scrolls Online: Aldmeri Dominion faction\",
342
+ \"over18\": false, \"user_is_moderator\": null, \"header_title\": \"For Queen
343
+ Ayrenn we FIGHT!\", \"description\": \"**Commands from Queen Ayrenn:**\\n\\nI
344
+ have no hatred for the races of Man, but they are young. Like all children,
345
+ they are driven by emotion. They lack the wisdom that comes with age. I would
346
+ sooner place an Altmer infant on the Ruby Throne than surrender Tamriel to
347
+ their capricious whims.\\n\\nThe Altmer, the Bosmer, and the Khajiit share
348
+ the common traits of intelligence, patience and reason. We do not seek riches
349
+ or plunder. Domination is not our goal nor is the acclamation of power for
350
+ its own sake.\\n\\nToday we make our stand. Today we take back the Ruby Throne,
351
+ which is ours by ancient right and the blessing of the Divines.\\n\\nStand
352
+ with us.\\n\\n-------------------------------------------------------------------\\n**Other
353
+ Subreddits:**\\n\\n* [r/elderscrollsonline](http://www.reddit.com/r/elderscrollsonline/)\\n*
354
+ [r/TheDaggerfallCovenant](http://www.reddit.com/r/thedaggerfallcovenant)\\n*
355
+ [r/TheEbonheartPact](http://www.reddit.com/r/TheEbonheartPact/)\\n* [r/elderscrolls](http://www.reddit.com/r/elderscrolls)\\n*
356
+ [r/skyrim](http://www.reddit.com/r/Skyrim)\\n* [r/oblivion](http://www.reddit.com/r/oblivion)\\n*
357
+ [r/morrowind](http://www.reddit.com/r/morrowind)\\n* [r/teslore](http://www.reddit.com/r/teslore)\\n*
358
+ [r/Khajiits](http://www.reddit.com/r/Khajiits)\", \"submit_link_label\": \"\",
359
+ \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"high\",
360
+ \"header_size\": [785, 170], \"subscribers\": 160, \"submit_text_label\":
361
+ \"\", \"name\": \"t5_2w525\", \"created\": 1358992422.0, \"url\": \"/r/TheAldmeriDominion/\",
362
+ \"created_utc\": 1358988822.0, \"user_is_contributor\": null, \"public_traffic\":
363
+ false, \"public_description\": \"Here we join together as the Aldmeri Dominion
364
+ to quest, raid, and repel the enemy factions. We shall restore order to Tamriel
365
+ and therefore take back the ruby throne for our own. The land we founded has
366
+ been tainted by the races of Man, but no longer will we stand for their insolence.
367
+ We will display our dominance to all who oppose the Queen! \", \"comment_score_hide_mins\":
368
+ 0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
369
+ null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
370
+ null, \"id\": \"2qjwh\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
371
+ \"display_name\": \"enterprise\", \"header_img\": null, \"description_html\":
372
+ \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;A community where
373
+ crappy programmers can talk about crappy code without fear of being exposed
374
+ to new programming paradigms and concepts. Bring along your XML configuration
375
+ files, open classes, interpreters, reference-counting, and crappy code. Leave
376
+ your brain at the door.&lt;/p&gt;\\n&lt;/div&gt;&lt;!-- SC_ON --&gt;\", \"title\":
377
+ \"Mediocre programmers unite! Python, Ruby, Java FTW!\", \"over18\": false,
378
+ \"user_is_moderator\": null, \"header_title\": \"\", \"description\": \"A
379
+ community where crappy programmers can talk about crappy code without fear
380
+ of being exposed to new programming paradigms and concepts. Bring along your
381
+ XML configuration files, open classes, interpreters, reference-counting, and
382
+ crappy code. Leave your brain at the door.\", \"submit_link_label\": \"\",
383
+ \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"high\",
384
+ \"header_size\": null, \"subscribers\": 308, \"submit_text_label\": \"\",
385
+ \"name\": \"t5_2qjwh\", \"created\": 1215678521.0, \"url\": \"/r/enterprise/\",
386
+ \"created_utc\": 1215674921.0, \"user_is_contributor\": null, \"public_traffic\":
387
+ false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
388
+ \"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
389
+ {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
390
+ null, \"id\": \"2xtuf\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
391
+ \"display_name\": \"remakehoenn\", \"header_img\": null, \"description_html\":
392
+ null, \"title\": \"Talk and discussion about Pokemon generation 3 remakes!\",
393
+ \"over18\": false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
394
+ \"\", \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
395
+ \"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
396
+ 61, \"submit_text_label\": null, \"name\": \"t5_2xtuf\", \"created\": 1373491650.0,
397
+ \"url\": \"/r/remakehoenn/\", \"created_utc\": 1373488050.0, \"user_is_contributor\":
398
+ null, \"public_traffic\": false, \"public_description\": \"This subreddit
399
+ is a place to discuss and to bring together everyone who started and grew
400
+ up playing either Ruby, Sapphire, or Emerald versions! It is also a way to
401
+ possibly get GameFreak to make these either a Ruby and Sapphire remake, an
402
+ Emerald remake, or to simply just bring back the Hoenn region to 3DS.\", \"comment_score_hide_mins\":
403
+ 0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
404
+ null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
405
+ null, \"id\": \"2umhd\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
406
+ \"display_name\": \"osxterminal\", \"header_img\": \"http://c.thumbs.redditmedia.com/4NCUM1GyO94YHY98.png\",
407
+ \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;Everyone
408
+ is welcome to post their ideas, requests and questions.&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;The
409
+ spam filter seems to be very hateful to nearly everyone. I end up having
410
+ to approve most posts. If your post doesn&amp;#39;t show up right away, that&amp;#39;s
411
+ probably why &amp;amp; I promise to check the filter daily --danielcole&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;p&gt;While
412
+ we would like to keep things terminal-based, don&amp;#39;t think that limits
413
+ the discussion here strictly to bash. Anything that involves scripting the
414
+ Apple environment is welcome - that certainly includes AppleScript &amp;amp;
415
+ large parts of ruby/python/perl.&lt;/p&gt;\\n\\n&lt;p&gt;We hope that you
416
+ feel free to share the scripts that you use on a daily basis so that others
417
+ can discover new ways of controlling their computers. We also now have a
418
+ fairly large pool of people that can be a resource for questions on how particular
419
+ commands operate.&lt;/p&gt;\\n\\n&lt;p&gt;Mods kripley1 &amp;amp; myself have
420
+ written up a few introductory posts: &amp;quot;&lt;a href=\\\"http://www.reddit.com/r/osxterminal/comments/xqlbo/getting_started_with_os_x_terminal/\\\"&gt;Getting
421
+ Started With Terminal&lt;/a&gt;\\n&amp;quot; and a &lt;a href=\\\"http://www.reddit.com/r/osxterminal/comments/y1xkm/ssh_scp_and_passwordless_ssh_logins_all_with/\\\"&gt;primer
422
+ on SSH&lt;/a&gt;.&lt;/p&gt;\\n\\n&lt;p&gt;When the Gods of Reddit deem the
423
+ time ripe and proper we will have a wiki that consolidates much of the tip
424
+ and tricks that are posted here so that we can have a coherent knowledge base.&lt;/p&gt;\\n\\n&lt;p&gt;---
425
+ Links ---&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a href=\\\"https://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/index.html\\\"&gt;OSX
426
+ Online Man Pages&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a href=\\\"http://www.reddit.com/r/osxterminal/comments/xqlbo/getting_started_with_os_x_terminal/\\\"&gt;Getting
427
+ Started With Terminal&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a href=\\\"http://www.reddit.com/r/osxterminal/comments/y1xkm/ssh_scp_and_passwordless_ssh_logins_all_with/\\\"&gt;Primer
428
+ on SSH &amp;amp; SCP&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;--- More Links! ---&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a
429
+ href=\\\"/r/GeekTool\\\"&gt;/r/GeekTool&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a
430
+ href=\\\"/r/Apple\\\"&gt;/r/Apple&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a
431
+ href=\\\"/r/Commandline\\\"&gt;/r/Commandline&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a
432
+ href=\\\"/r/HueLights\\\"&gt;/r/HueLights&lt;/a&gt; (new!)&lt;/p&gt;\\n&lt;/div&gt;&lt;!--
433
+ SC_ON --&gt;\", \"title\": \"Tips for using terminal.app in OS X\", \"over18\":
434
+ false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
435
+ \"Everyone is welcome to post their ideas, requests and questions.\\n\\n**The
436
+ spam filter seems to be very hateful to nearly everyone. I end up having
437
+ to approve most posts. If your post doesn't show up right away, that's probably
438
+ why &amp; I promise to check the filter daily --danielcole**\\n\\nWhile we
439
+ would like to keep things terminal-based, don't think that limits the discussion
440
+ here strictly to bash. Anything that involves scripting the Apple environment
441
+ is welcome - that certainly includes AppleScript &amp; large parts of ruby/python/perl.\\n\\nWe
442
+ hope that you feel free to share the scripts that you use on a daily basis
443
+ so that others can discover new ways of controlling their computers. We also
444
+ now have a fairly large pool of people that can be a resource for questions
445
+ on how particular commands operate.\\n\\nMods kripley1 &amp; myself have written
446
+ up a few introductory posts: \\\"[Getting Started With Terminal](http://www.reddit.com/r/osxterminal/comments/xqlbo/getting_started_with_os_x_terminal/)\\n\\\"
447
+ and a [primer on SSH](http://www.reddit.com/r/osxterminal/comments/y1xkm/ssh_scp_and_passwordless_ssh_logins_all_with/).\\n\\nWhen
448
+ the Gods of Reddit deem the time ripe and proper we will have a wiki that
449
+ consolidates much of the tip and tricks that are posted here so that we can
450
+ have a coherent knowledge base.\\n\\n--- Links ---\\n\\n[OSX Online Man Pages](https://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/index.html)\\n\\n[Getting
451
+ Started With Terminal](http://www.reddit.com/r/osxterminal/comments/xqlbo/getting_started_with_os_x_terminal/)\\n\\n[Primer
452
+ on SSH &amp; SCP](http://www.reddit.com/r/osxterminal/comments/y1xkm/ssh_scp_and_passwordless_ssh_logins_all_with/)\\n\\n---
453
+ More Links! ---\\n\\n/r/GeekTool\\n\\n/r/Apple\\n\\n/r/Commandline\\n\\n/r/HueLights
454
+ (new!)\", \"submit_link_label\": \"\", \"accounts_active\": null, \"spam_comments\":
455
+ \"low\", \"spam_links\": \"high\", \"header_size\": [81, 72], \"subscribers\":
456
+ 762, \"submit_text_label\": \"\", \"name\": \"t5_2umhd\", \"created\": 1343507352.0,
457
+ \"url\": \"/r/osxterminal/\", \"created_utc\": 1343503752.0, \"user_is_contributor\":
458
+ null, \"public_traffic\": false, \"public_description\": \"While we would
459
+ like to keep things terminal-based, don't think that limits the discussion
460
+ here strictly to bash. Anything that involves scripting the Apple environment
461
+ is welcome - that certainly includes AppleScript &amp; large parts of ruby/python/perl.\\n\",
462
+ \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
463
+ \"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
464
+ null, \"user_is_banned\": null, \"id\": \"2sdpo\", \"submit_text\": \"\",
465
+ \"spam_selfposts\": \"high\", \"display_name\": \"learnruby\", \"header_img\":
466
+ \"http://thumbs.reddit.com/t5_2sdpo.png?v=cd498861047b2e98996c2d64e80c0372\",
467
+ \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;h2&gt;&lt;strong&gt;A
468
+ subreddit for learning Ruby&lt;/strong&gt;&lt;/h2&gt;\\n\\n&lt;hr/&gt;\\n\\n&lt;p&gt;Total
469
+ beginner and don&amp;#39;t know where to start?&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
470
+ href=\\\"http://pine.fm/LearnToProgram/?Chapter=00\\\"&gt;0. Getting Started&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
471
+ href=\\\"http://ruby.learncodethehardway.org/book/\\\"&gt;LRtHW&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
472
+ href=\\\"http://mislav.uniqpath.com/poignant-guide/\\\"&gt;why&amp;#39;s (poignant)
473
+ guide&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;Quickly need an answer
474
+ to a specific question?&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a href=\\\"http://stackoverflow.com/\\\"&gt;http://stackoverflow.com/&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;Already
475
+ a Ruby hacker? &lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;Try the &lt;a href=\\\"http://www.reddit.com/r/ruby\\\"&gt;Ruby
476
+ subreddit!&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;Want to learn
477
+ Ruby on Rails?&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;Try the &lt;a href=\\\"http://www.reddit.com/r/learnrubyonrails\\\"&gt;Learn
478
+ Ruby on Rails subreddit!&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;h2&gt;&lt;strong&gt;Open
479
+ positions for moderators!&lt;/strong&gt;&lt;/h2&gt;\\n\\n&lt;hr/&gt;\\n&lt;/div&gt;&lt;!--
480
+ SC_ON --&gt;\", \"title\": \"Learn Ruby\", \"over18\": false, \"user_is_moderator\":
481
+ null, \"header_title\": null, \"description\": \"**A subreddit for learning
482
+ Ruby**\\n---------\\n---------\\n\\nTotal beginner and don't know where to
483
+ start?\\n\\n* [0. Getting Started](http://pine.fm/LearnToProgram/?Chapter=00)\\n*
484
+ [LRtHW](http://ruby.learncodethehardway.org/book/)\\n* [why's (poignant) guide](http://mislav.uniqpath.com/poignant-guide/)\\n\\nQuickly
485
+ need an answer to a specific question?\\n\\n* http://stackoverflow.com/\\n\\nAlready
486
+ a Ruby hacker? \\n\\n* Try the [Ruby subreddit!](http://www.reddit.com/r/ruby)\\n\\nWant
487
+ to learn Ruby on Rails?\\n\\n* Try the [Learn Ruby on Rails subreddit!](http://www.reddit.com/r/learnrubyonrails)\\n\\n**Open
488
+ positions for moderators!**\\n------\\n--------\", \"submit_link_label\":
489
+ \"\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
490
+ \"high\", \"header_size\": null, \"subscribers\": 622, \"submit_text_label\":
491
+ \"\", \"name\": \"t5_2sdpo\", \"created\": 1300506813.0, \"url\": \"/r/learnruby/\",
492
+ \"created_utc\": 1300503213.0, \"user_is_contributor\": null, \"public_traffic\":
493
+ false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
494
+ \"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
495
+ {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
496
+ null, \"id\": \"2v5lo\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
497
+ \"display_name\": \"gamegenome\", \"header_img\": null, \"description_html\":
498
+ \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;More info coming
499
+ soon.&lt;/p&gt;\\n&lt;/div&gt;&lt;!-- SC_ON --&gt;\", \"title\": \"The Game
500
+ Genome Project\", \"over18\": false, \"user_is_moderator\": null, \"header_title\":
501
+ null, \"description\": \"More info coming soon.\", \"submit_link_label\":
502
+ \"\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
503
+ \"high\", \"header_size\": null, \"subscribers\": 49, \"submit_text_label\":
504
+ \"\", \"name\": \"t5_2v5lo\", \"created\": 1348856938.0, \"url\": \"/r/gamegenome/\",
505
+ \"created_utc\": 1348853338.0, \"user_is_contributor\": null, \"public_traffic\":
506
+ false, \"public_description\": \"The Game Genome Project is a website that
507
+ will collect data about video games, allowing for that data to be accessed
508
+ by third party applications. The project will be used as a learning opportunity
509
+ for those who have never touched web development before with diary posts about
510
+ how each component works from HTML and CSS to Ruby on Rails and Batman.js\",
511
+ \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
512
+ \"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
513
+ null, \"user_is_banned\": null, \"id\": \"2y2th\", \"submit_text\": \"\",
514
+ \"spam_selfposts\": \"high\", \"display_name\": \"ClubRuby\", \"header_img\":
515
+ null, \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;Please
516
+ respect the mods at all times, We&amp;#39;re here to help you and the rest
517
+ of the subreddit, if you&amp;#39;re being harassed in anyway please report
518
+ it to us. Remember to put spoiler tags on anything that could potentially
519
+ spoil the show for your fellow members. Posts without the spoiler tag will
520
+ be immediately removed and you&amp;#39;ll be asked to resubmit your post.
521
+ NSFW is allowed but is frowned upon, no reposting such content, if people
522
+ want to see it they&amp;#39;ll have to type in the [NSFW] tag that must be
523
+ put in each NSFW post into the search bar.&lt;br/&gt;\\nFor things non related
524
+ please check out the following subreddits\\n&lt;a href=\\\"/r/RWBY\\\"&gt;/r/RWBY&lt;/a&gt;
525
+ for all the generic content including everything from the show&lt;br/&gt;\\n&lt;a
526
+ href=\\\"/r/ClubYang\\\"&gt;/r/ClubYang&lt;/a&gt; for all the Yang-y goodness&lt;br/&gt;\\n&lt;a
527
+ href=\\\"/r/ClubWeiss\\\"&gt;/r/ClubWeiss&lt;/a&gt; to check out some dust,
528
+ and I guess the princess&lt;br/&gt;\\n&lt;a href=\\\"/r/ClubBlake\\\"&gt;/r/ClubBlake&lt;/a&gt;
529
+ for calm relaxing reading and the cat looking girl herself &lt;/p&gt;\\n\\n&lt;p&gt;(Just
530
+ anything about said topic will do!)&lt;/p&gt;\\n&lt;/div&gt;&lt;!-- SC_ON
531
+ --&gt;\", \"title\": \"For all things Ruby from RWBY\", \"over18\": false,
532
+ \"user_is_moderator\": null, \"header_title\": null, \"description\": \"Please
533
+ respect the mods at all times, We're here to help you and the rest of the
534
+ subreddit, if you're being harassed in anyway please report it to us. Remember
535
+ to put spoiler tags on anything that could potentially spoil the show for
536
+ your fellow members. Posts without the spoiler tag will be immediately removed
537
+ and you'll be asked to resubmit your post. NSFW is allowed but is frowned
538
+ upon, no reposting such content, if people want to see it they'll have to
539
+ type in the [NSFW] tag that must be put in each NSFW post into the search
540
+ bar. \\nFor things non related please check out the following subreddits\\n/r/RWBY
541
+ for all the generic content including everything from the show \\n/r/ClubYang
542
+ for all the Yang-y goodness \\n/r/ClubWeiss to check out some dust, and I
543
+ guess the princess \\n/r/ClubBlake for calm relaxing reading and the cat
544
+ looking girl herself \\n\\n(Just anything about said topic will do!)\", \"submit_link_label\":
545
+ \"Submit Ruby\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
546
+ \"high\", \"header_size\": null, \"subscribers\": 115, \"submit_text_label\":
547
+ \"Talk about Ruby\", \"name\": \"t5_2y2th\", \"created\": 1375462897.0, \"url\":
548
+ \"/r/ClubRuby/\", \"created_utc\": 1375459297.0, \"user_is_contributor\":
549
+ null, \"public_traffic\": false, \"public_description\": \"If Ruby is your
550
+ favorite character from RWBY by Roosterteeth then come here and take in the
551
+ all the goodness of Ruby here!\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
552
+ \"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
553
+ {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
554
+ null, \"id\": \"2t7gl\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
555
+ \"display_name\": \"lolruby\", \"header_img\": null, \"description_html\":
556
+ \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;you may also enjoy
557
+ &lt;a href=\\\"/r/lolphp\\\"&gt;/r/lolphp&lt;/a&gt;&lt;/p&gt;\\n&lt;/div&gt;&lt;!--
558
+ SC_ON --&gt;\", \"title\": \"Ruby stuff that will make you laugh... or cry...\",
559
+ \"over18\": false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
560
+ \"you may also enjoy /r/lolphp\", \"submit_link_label\": \"\", \"accounts_active\":
561
+ null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
562
+ null, \"subscribers\": 28, \"submit_text_label\": \"\", \"name\": \"t5_2t7gl\",
563
+ \"created\": 1323571176.0, \"url\": \"/r/lolruby/\", \"created_utc\": 1323567576.0,
564
+ \"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
565
+ \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
566
+ \"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
567
+ null, \"user_is_banned\": null, \"id\": \"2xxgm\", \"submit_text\": \"\",
568
+ \"spam_selfposts\": \"high\", \"display_name\": \"rubyapp\", \"header_img\":
569
+ null, \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;Welcome
570
+ to the official subreddit for Ruby!&lt;/p&gt;\\n\\n&lt;p&gt;Links:&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a
571
+ href=\\\"https://itunes.apple.com/us/app/ruby-for-reddit/id665682484?ls=1&amp;amp;mt=8\\\"&gt;App
572
+ Store&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a href=\\\"http://halfpeeled.com/ruby/\\\"&gt;Website&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a
573
+ href=\\\"http://twitter.com/getrubyapp\\\"&gt;Twitter&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;Any
574
+ questions, comments, suggestions, etc. related to Ruby can be posted on this
575
+ subreddit. We&amp;#39;ll respond within 24 hours!&lt;/p&gt;\\n&lt;/div&gt;&lt;!--
576
+ SC_ON --&gt;\", \"title\": \"Ruby for Reddit - iOS App\", \"over18\": false,
577
+ \"user_is_moderator\": null, \"header_title\": \"Ruby for Reddit\", \"description\":
578
+ \"Welcome to the official subreddit for Ruby!\\n\\n\\nLinks:\\n\\n[App Store](https://itunes.apple.com/us/app/ruby-for-reddit/id665682484?ls=1&amp;mt=8)\\n\\n[Website](http://halfpeeled.com/ruby/)\\n\\n[Twitter](http://twitter.com/getrubyapp)\\n\\n\\nAny
579
+ questions, comments, suggestions, etc. related to Ruby can be posted on this
580
+ subreddit. We'll respond within 24 hours!\", \"submit_link_label\": null,
581
+ \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"high\",
582
+ \"header_size\": null, \"subscribers\": 44, \"submit_text_label\": null, \"name\":
583
+ \"t5_2xxgm\", \"created\": 1374330589.0, \"url\": \"/r/rubyapp/\", \"created_utc\":
584
+ 1374326989.0, \"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
585
+ \"Ruby for Reddit is a lightweight Reddit client for both iPhone and iPad.\",
586
+ \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
587
+ \"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
588
+ null, \"user_is_banned\": null, \"id\": \"2vo0e\", \"submit_text\": \"\",
589
+ \"spam_selfposts\": \"high\", \"display_name\": \"Learn_Rails\", \"header_img\":
590
+ null, \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;Welcome
591
+ to &lt;a href=\\\"http://reddit.com/r/learn_rails\\\"&gt;r/learn_rails&lt;/a&gt;,
592
+ a subreddit dedicated to anybody who wants to study &lt;a href=\\\"http://rubyonrails.org/\\\"&gt;Ruby
593
+ on Rails&lt;/a&gt;. You can also reach this subreddit by visiting the domain
594
+ &lt;a href=\\\"http://learn-rails.org\\\"&gt;learn-rails.org&lt;/a&gt;.&lt;/p&gt;\\n\\n&lt;p&gt;Don&amp;#39;t
595
+ be afraid to ask questions! It is really important to check all your assumptions
596
+ so ask everything that&amp;#39;s on your mind, no matter how trivial the issue
597
+ seems to be. Our goal is to be as open and friendly to beginners as possible.
598
+ So please, help each other and keep the technical one-upmanship to a minimum!&lt;/p&gt;\\n\\n&lt;p&gt;There
599
+ will hardly be any moderation in this subreddit beyond cleaning up spam. There
600
+ are no arbitrary karma cutoffs to submit a link or contribute to the conversation
601
+ here. The same is true for our &lt;a href=\\\"http://www.reddit.com/r/Learn_Rails/wiki/index\\\"&gt;Learn
602
+ Ruby on Rails Wiki&lt;/a&gt;, which can be edited by anybody who is subscribed
603
+ to this fine subreddit.&lt;/p&gt;\\n\\n&lt;p&gt;All the best and happy coding!&lt;/p&gt;\\n&lt;/div&gt;&lt;!--
604
+ SC_ON --&gt;\", \"title\": \"Learn Ruby on Rails\", \"over18\": false, \"user_is_moderator\":
605
+ null, \"header_title\": null, \"description\": \"Welcome to [r/learn_rails](http://reddit.com/r/learn_rails),
606
+ a subreddit dedicated to anybody who wants to study [Ruby on Rails](http://rubyonrails.org/).
607
+ You can also reach this subreddit by visiting the domain [learn-rails.org](http://learn-rails.org).\\n\\nDon't
608
+ be afraid to ask questions! It is really important to check all your assumptions
609
+ so ask everything that's on your mind, no matter how trivial the issue seems
610
+ to be. Our goal is to be as open and friendly to beginners as possible. So
611
+ please, help each other and keep the technical one-upmanship to a minimum!\\n\\nThere
612
+ will hardly be any moderation in this subreddit beyond cleaning up spam. There
613
+ are no arbitrary karma cutoffs to submit a link or contribute to the conversation
614
+ here. The same is true for our [Learn Ruby on Rails Wiki](http://www.reddit.com/r/Learn_Rails/wiki/index),
615
+ which can be edited by anybody who is subscribed to this fine subreddit.\\n\\nAll
616
+ the best and happy coding!\", \"submit_link_label\": \"\", \"accounts_active\":
617
+ null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
618
+ null, \"subscribers\": 244, \"submit_text_label\": \"\", \"name\": \"t5_2vo0e\",
619
+ \"created\": 1354147105.0, \"url\": \"/r/Learn_Rails/\", \"created_utc\":
620
+ 1354147105.0, \"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
621
+ \"This subreddit is dedicated to anybody who wants to study Ruby on Rails.
622
+ You can reach this subreddit also by visiting the domain http://learn-rails.org.\",
623
+ \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
624
+ \"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
625
+ null, \"user_is_banned\": null, \"id\": \"2qh8z\", \"submit_text\": \"\",
626
+ \"spam_selfposts\": \"high\", \"display_name\": \"rubybr\", \"header_img\":
627
+ null, \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;Grupo
628
+ Reddit para agregar blogs e websites brasileiros sobre Ruby e Rails.&lt;/p&gt;\\n&lt;/div&gt;&lt;!--
629
+ SC_ON --&gt;\", \"title\": \"Ruby Brasil\", \"over18\": false, \"user_is_moderator\":
630
+ null, \"header_title\": \"\", \"description\": \"Grupo Reddit para agregar
631
+ blogs e websites brasileiros sobre Ruby e Rails.\", \"submit_link_label\":
632
+ \"\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
633
+ \"high\", \"header_size\": null, \"subscribers\": 78, \"submit_text_label\":
634
+ \"\", \"name\": \"t5_2qh8z\", \"created\": 1201711370.0, \"url\": \"/r/rubybr/\",
635
+ \"created_utc\": 1201707770.0, \"user_is_contributor\": null, \"public_traffic\":
636
+ false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
637
+ \"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
638
+ {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
639
+ null, \"id\": \"2xzul\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
640
+ \"display_name\": \"rubygroupies\", \"header_img\": \"http://b.thumbs.redditmedia.com/MBO7vKCmX8-3IMZC.jpg\",
641
+ \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;&lt;strong&gt;A
642
+ reddit for connecting with the Ruby community in Fresno, California&amp;#39;s
643
+ surrounding area.&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;We
644
+ like the Ruby programming language.&lt;br/&gt;&lt;/li&gt;\\n&lt;li&gt;We like
645
+ &lt;a href=\\\"/r/ruby\\\"&gt;/r/ruby&lt;/a&gt;.&lt;br/&gt;&lt;/li&gt;\\n&lt;li&gt;We
646
+ like getting together, talking about, and doing Ruby things.&lt;/li&gt;\\n&lt;li&gt;We
647
+ like making Ruby things, and do so at &lt;a href=\\\"http://rubygroupies.github.io\\\"&gt;http://rubygroupies.github.io&lt;/a&gt;
648
+ and &lt;a href=\\\"http://github.com/rubygroupies\\\"&gt;http://github.com/rubygroupies&lt;/a&gt;.&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;p&gt;Please
649
+ jump in if you do too!&lt;/p&gt;\\n&lt;/div&gt;&lt;!-- SC_ON --&gt;\", \"title\":
650
+ \"rubygroupies: a ruby group from california's central valley\", \"over18\":
651
+ false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
652
+ \"**A reddit for connecting with the Ruby community in Fresno, California's
653
+ surrounding area.**\\n\\n* We like the Ruby programming language. \\n* We
654
+ like /r/ruby. \\n* We like getting together, talking about, and doing Ruby
655
+ things.\\n* We like making Ruby things, and do so at http://rubygroupies.github.io
656
+ and http://github.com/rubygroupies.\\n\\nPlease jump in if you do too!\",
657
+ \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
658
+ \"low\", \"spam_links\": \"high\", \"header_size\": [353, 59], \"subscribers\":
659
+ 3, \"submit_text_label\": null, \"name\": \"t5_2xzul\", \"created\": 1374814956.0,
660
+ \"url\": \"/r/rubygroupies/\", \"created_utc\": 1374811356.0, \"user_is_contributor\":
661
+ null, \"public_traffic\": false, \"public_description\": \"we like ruby. we're
662
+ from the fresno, california area.\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
663
+ \"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
664
+ {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
665
+ null, \"id\": \"2w6x8\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
666
+ \"display_name\": \"maylooksgoodin3d\", \"header_img\": \"http://b.thumbs.redditmedia.com/GdZTresZybqcQjfs.png\",
667
+ \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;&lt;strong&gt;_________________________________&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;p&gt;This
668
+ sub is devoted entirely to the character &lt;strong&gt;May&lt;/strong&gt;,
669
+ from the 3rd gen in RUBY SAPPHIRE and EMERALD as well as &lt;strong&gt;May&lt;/strong&gt;
670
+ from the anime. &lt;strong&gt;Sapphire&lt;/strong&gt;, from Pokemon adventures
671
+ is also allowed. &lt;em&gt;THERE IS NOT LIMIT ON WHAT YOU CAN POST BUT IT
672
+ MUST BE RELATED TO THE ABOVE OR WILL BE REMOVED!!!&lt;/em&gt;&lt;/p&gt;\\n\\n&lt;p&gt;Mark
673
+ all posts with NSFW if you think that it needs to be!&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;_________________________________&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;p&gt;If
674
+ you want to see &lt;em&gt;a little less&lt;/em&gt; May: &lt;a href=\\\"/r/pokemon\\\"&gt;/r/pokemon&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;If
675
+ you want to see &lt;strong&gt;MORE&lt;/strong&gt; of May: &lt;a href=\\\"/r/pokeporn\\\"&gt;/r/pokeporn&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;May&lt;sup&gt;May&lt;sup&gt;May&lt;sup&gt;May&lt;sup&gt;May&lt;/sup&gt;&lt;/sup&gt;&lt;/sup&gt;&lt;/sup&gt;&lt;/p&gt;\\n&lt;/div&gt;&lt;!--
676
+ SC_ON --&gt;\", \"title\": \"MAY MAY MAY MAY MAY MAY\", \"over18\": false,
677
+ \"user_is_moderator\": null, \"header_title\": \"DAE Think May is HAWT? No
678
+ really...\", \"description\": \"**_________________________________**\\n\\nThis
679
+ sub is devoted entirely to the character **May**, from the 3rd gen in RUBY
680
+ SAPPHIRE and EMERALD as well as **May** from the anime. **Sapphire**, from
681
+ Pokemon adventures is also allowed. *THERE IS NOT LIMIT ON WHAT YOU CAN POST
682
+ BUT IT MUST BE RELATED TO THE ABOVE OR WILL BE REMOVED!!!*\\n\\nMark all posts
683
+ with NSFW if you think that it needs to be!\\n\\n**_________________________________**\\n\\nIf
684
+ you want to see *a little less* May: /r/pokemon\\n\\nIf you want to see **MORE**
685
+ of May: /r/pokeporn\\n\\nMay^May^May^May^May\", \"submit_link_label\": null,
686
+ \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"high\",
687
+ \"header_size\": [64, 64], \"subscribers\": 2, \"submit_text_label\": null,
688
+ \"name\": \"t5_2w6x8\", \"created\": 1359513753.0, \"url\": \"/r/maylooksgoodin3d/\",
689
+ \"created_utc\": 1359510153.0, \"user_is_contributor\": null, \"public_traffic\":
690
+ false, \"public_description\": \"This sub is devoted entirely to the character
691
+ **May**, from the 3rd gen in RUBY SAPPHIRE and EMERALD as well as **May**
692
+ from the anime. **Sapphire**, from Pokemon adventures is also here.\", \"comment_score_hide_mins\":
693
+ 0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
694
+ null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
695
+ null, \"id\": \"2uh7v\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
696
+ \"display_name\": \"weaverquest\", \"header_img\": null, \"description_html\":
697
+ \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;Anything that
698
+ is related to Ruby Quest, Nan Quest, Dive Quest, and all other projects by
699
+ Weaver goes here.&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Mark NSFW fanart.&lt;/strong&gt;
700
+ That is all.&lt;/p&gt;\\n\\n&lt;p&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/p&gt;\\n\\n&lt;p&gt;If
701
+ you&amp;#39;re lost and have no idea what in the fuck I&amp;#39;m talking
702
+ about, here are some handy links:&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a href=\\\"http://evilcorporation.com.br/rubyquest/\\\"&gt;Ruby
703
+ Quest Complete Archive&lt;/a&gt;&lt;/p&gt;\\n\\n&lt;p&gt;&lt;a href=\\\"http://tgchan.org/wiki/NanQuest\\\"&gt;Nan
704
+ Quest Threads + Wiki Page&lt;/a&gt;&lt;/p&gt;\\n&lt;/div&gt;&lt;!-- SC_ON
705
+ --&gt;\", \"title\": \"Rubyquest, Nanquest, Divequest\", \"over18\": false,
706
+ \"user_is_moderator\": null, \"header_title\": \"it hurts\", \"description\":
707
+ \"Anything that is related to Ruby Quest, Nan Quest, Dive Quest, and all other
708
+ projects by Weaver goes here.\\n\\n**Mark NSFW fanart.** That is all.\\n\\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\\nIf
709
+ you're lost and have no idea what in the fuck I'm talking about, here are
710
+ some handy links:\\n\\n[Ruby Quest Complete Archive](http://evilcorporation.com.br/rubyquest/)\\n\\n[Nan
711
+ Quest Threads + Wiki Page](http://tgchan.org/wiki/NanQuest)\", \"submit_link_label\":
712
+ \"\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
713
+ \"high\", \"header_size\": null, \"subscribers\": 13, \"submit_text_label\":
714
+ \"\", \"name\": \"t5_2uh7v\", \"created\": 1341902709.0, \"url\": \"/r/weaverquest/\",
715
+ \"created_utc\": 1341899109.0, \"user_is_contributor\": null, \"public_traffic\":
716
+ false, \"public_description\": \"The creator of Ruby Quest and Nan Quest has
717
+ accumulated a fandom that I'm certain will find this message at some point
718
+ in time. If you've never heard of any of what I'm talking about, we've got
719
+ some links for you.\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
720
+ \"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
721
+ {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
722
+ null, \"id\": \"2tnqb\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
723
+ \"display_name\": \"ronin_ruby\", \"header_img\": \"http://c.thumbs.redditmedia.com/QpuDtr8dXxX0txdz.png\",
724
+ \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;&lt;a
725
+ href=\\\"http://ronin-ruby.github.com/\\\"&gt;Ronin&lt;/a&gt; is a &lt;a href=\\\"http://www.ruby-lang.org/\\\"&gt;Ruby&lt;/a&gt;
726
+ platform for &lt;a href=\\\"http://www.exploit-db.com\\\"&gt;exploit development&lt;/a&gt;
727
+ and security research. Ronin allows for the rapid development and distribution
728
+ of code, &lt;a href=\\\"https://github.com/postmodern/postmodern/blob/master/scripts/exploits/http/oracle/dav_bypass.rb\\\"&gt;exploits&lt;/a&gt;
729
+ or &lt;a href=\\\"https://gist.github.com/1403961\\\"&gt;payloads&lt;/a&gt;
730
+ via &lt;a href=\\\"https://github.com/postmodern/postmodern\\\"&gt;Repositories&lt;/a&gt;.&lt;/p&gt;\\n\\n&lt;h1&gt;Install&lt;/h1&gt;\\n\\n&lt;p&gt;Ronin
731
+ is available via &lt;a href=\\\"http://rubygems.org/gems/ronin\\\"&gt;rubygems.org&lt;/a&gt;:&lt;/p&gt;\\n\\n&lt;pre&gt;&lt;code&gt;$
732
+ gem install ronin\\n&lt;/code&gt;&lt;/pre&gt;\\n\\n&lt;h1&gt;Featured&lt;/h1&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
733
+ href=\\\"http://www.reddit.com/r/ronin_ruby/comments/vtsb3/blog_roninsupport_050_ronin_150_roningen_120/\\\"&gt;ronin-support
734
+ 0.5.0, ronin 1.5.0 and ronin-gen 1.2.0 released!&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;h1&gt;Links&lt;/h1&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
735
+ href=\\\"http://ronin-ruby.github.com/blog/\\\"&gt;Blog&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
736
+ href=\\\"https://twitter.com/ronin_ruby\\\"&gt;Twitter&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
737
+ href=\\\"http://ronin-ruby.github.com/irc/\\\" title=\\\"irc.freenode.net
738
+ #ronin\\\"&gt;IRC&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"https://groups.google.com/group/ronin-ruby\\\"&gt;Mailinglist&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
739
+ href=\\\"http://ronin-ruby.github.com/docs/\\\"&gt;Docs&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
740
+ href=\\\"https://github.com/ronin-ruby/\\\"&gt;GitHub&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;h1&gt;Ruby&lt;/h1&gt;\\n\\n&lt;h2&gt;Interactive&lt;/h2&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
741
+ href=\\\"http://tryruby.org/\\\" title=\\\"in your browser!\\\"&gt;TryRuby&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
742
+ href=\\\"http://rubykoans.com/\\\" title=\\\"learn by doing\\\"&gt;Ruby Kohans&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
743
+ href=\\\"http://www.youtube.com/user/MattStopaDev\\\" title=\\\"short videos
744
+ about Ruby\\\"&gt;Matt Stopa Dev&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;h2&gt;Resources&lt;/h2&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
745
+ href=\\\"http://www.ruby-doc.org/docs/ProgrammingRuby/\\\" title=\\\"free!\\\"&gt;Programming
746
+ Ruby&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"http://www.humblelittlerubybook.com/\\\"
747
+ title=\\\"free!\\\"&gt;Humble Little Ruby Book&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
748
+ href=\\\"http://www.amazon.com/gp/product/1934356085/ref=as_li_tf_tl?ie=UTF8&amp;amp;tag=redditrrubyco-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1934356085\\\"&gt;Programming
749
+ Ruby 1.9&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"http://www.amazon.com/gp/product/0321584104/ref=as_li_tf_tl?ie=UTF8&amp;amp;tag=redditrrubyco-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=0321584104\\\"&gt;Eloquent
750
+ Ruby&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a href=\\\"http://www.amazon.com/gp/product/1933988657/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;amp;tag=redditrrubyco-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1933988657\\\"&gt;Well
751
+ Grounded Rubyist&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n\\n&lt;h2&gt;Tools&lt;/h2&gt;\\n\\n&lt;ul&gt;\\n&lt;li&gt;&lt;a
752
+ href=\\\"https://rvm.beginrescueend.com/\\\"&gt;RVM&lt;/a&gt;&lt;/li&gt;\\n&lt;li&gt;&lt;a
753
+ href=\\\"http://gembundler.com/\\\"&gt;Bundler&lt;/a&gt;&lt;/li&gt;\\n&lt;/ul&gt;\\n&lt;/div&gt;&lt;!--
754
+ SC_ON --&gt;\", \"title\": \"News, links, questions and tips for using Ronin
755
+ or other Ruby hackery\", \"over18\": false, \"user_is_moderator\": null, \"header_title\":
756
+ null, \"description\": \"[Ronin](http://ronin-ruby.github.com/) is a [Ruby](http://www.ruby-lang.org/)
757
+ platform for [exploit development](http://www.exploit-db.com) and security
758
+ research. Ronin allows for the rapid development and distribution of code,
759
+ [exploits](https://github.com/postmodern/postmodern/blob/master/scripts/exploits/http/oracle/dav_bypass.rb)
760
+ or [payloads](https://gist.github.com/1403961) via [Repositories](https://github.com/postmodern/postmodern).\\n\\n#
761
+ Install\\n\\nRonin is available via [rubygems.org](http://rubygems.org/gems/ronin):\\n\\n
762
+ \ $ gem install ronin\\n\\n# Featured\\n\\n* [ronin-support 0.5.0, ronin
763
+ 1.5.0 and ronin-gen 1.2.0 released!](http://www.reddit.com/r/ronin_ruby/comments/vtsb3/blog_roninsupport_050_ronin_150_roningen_120/)\\n\\n\\n#
764
+ Links\\n\\n* [Blog](http://ronin-ruby.github.com/blog/)\\n* [Twitter](https://twitter.com/ronin_ruby)\\n*
765
+ [IRC](http://ronin-ruby.github.com/irc/ \\\"irc.freenode.net #ronin\\\")\\n*
766
+ [Mailinglist](https://groups.google.com/group/ronin-ruby)\\n* [Docs](http://ronin-ruby.github.com/docs/)\\n*
767
+ [GitHub](https://github.com/ronin-ruby/)\\n\\n# Ruby\\n\\n## Interactive\\n\\n*
768
+ [TryRuby](http://tryruby.org/ \\\"in your browser!\\\")\\n* [Ruby Kohans](http://rubykoans.com/
769
+ \\\"learn by doing\\\")\\n* [Matt Stopa Dev](http://www.youtube.com/user/MattStopaDev
770
+ \\\"short videos about Ruby\\\")\\n\\n## Resources\\n\\n* [Programming Ruby](http://www.ruby-doc.org/docs/ProgrammingRuby/
771
+ \\\"free!\\\")\\n* [Humble Little Ruby Book](http://www.humblelittlerubybook.com/
772
+ \\\"free!\\\")\\n* [Programming Ruby 1.9](http://www.amazon.com/gp/product/1934356085/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1934356085)\\n*
773
+ [Eloquent Ruby](http://www.amazon.com/gp/product/0321584104/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321584104)\\n*
774
+ [Well Grounded Rubyist](http://www.amazon.com/gp/product/1933988657/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1933988657)\\n\\n##
775
+ Tools\\n\\n* [RVM](https://rvm.beginrescueend.com/)\\n* [Bundler](http://gembundler.com/)\",
776
+ \"submit_link_label\": \"\", \"accounts_active\": null, \"spam_comments\":
777
+ \"low\", \"spam_links\": \"high\", \"header_size\": [196, 80], \"subscribers\":
778
+ 56, \"submit_text_label\": \"\", \"name\": \"t5_2tnqb\", \"created\": 1330654922.0,
779
+ \"url\": \"/r/ronin_ruby/\", \"created_utc\": 1330651322.0, \"user_is_contributor\":
780
+ null, \"public_traffic\": false, \"public_description\": \"[Ronin](http://ronin-ruby.github.com/)
781
+ is a [Ruby](http://www.ruby-lang.org/) platform for [exploit development](http://www.exploit-db.com)
782
+ and security research. Ronin allows for the rapid development and distribution
783
+ of code, [exploits](https://github.com/postmodern/postmodern/blob/master/scripts/exploits/http/oracle/dav_bypass.rb)
784
+ or [payloads](https://gist.github.com/1403961) via [Repositories](https://github.com/postmodern/postmodern).\",
785
+ \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
786
+ \"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
787
+ null, \"user_is_banned\": null, \"id\": \"2vk3w\", \"submit_text\": \"\",
788
+ \"spam_selfposts\": \"high\", \"display_name\": \"railsjobs\", \"header_img\":
789
+ null, \"description_html\": \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;&lt;strong&gt;Are
790
+ you a developer who is looking for work?&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;p&gt;Submit
791
+ a post with a title containing [for hire]&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Are
792
+ you looking to hire a developer?&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;p&gt;Submit
793
+ a post with a title containing [hiring]&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;The
794
+ following tags should be used by both parties:&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;table&gt;&lt;thead&gt;\\n&lt;tr&gt;\\n&lt;th
795
+ align=\\\"right\\\"&gt;Title Tag&lt;/th&gt;\\n&lt;th align=\\\"left\\\"&gt;Description&lt;/th&gt;\\n&lt;/tr&gt;\\n&lt;/thead&gt;&lt;tbody&gt;\\n&lt;tr&gt;\\n&lt;td
796
+ align=\\\"right\\\"&gt;[contract]&lt;/td&gt;\\n&lt;td align=\\\"left\\\"&gt;You
797
+ are only interested in short-term contracts.&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
798
+ align=\\\"right\\\"&gt;[fulltime]&lt;/td&gt;\\n&lt;td align=\\\"left\\\"&gt;You
799
+ only want to hire/become an employee.&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;tr&gt;\\n&lt;td
800
+ align=\\\"right\\\"&gt;[remote]&lt;/td&gt;\\n&lt;td align=\\\"left\\\"&gt;You
801
+ are only interested in hiring/working remotely.&lt;/td&gt;\\n&lt;/tr&gt;\\n&lt;/tbody&gt;&lt;/table&gt;\\n\\n&lt;p&gt;(If
802
+ you are not interested in hiring/working remotely, please include your state
803
+ or country in the title.)&lt;/p&gt;\\n\\n&lt;p&gt;&lt;strong&gt;Examples&lt;/strong&gt;&lt;/p&gt;\\n\\n&lt;p&gt;A
804
+ developer looking for full-time work:&lt;/p&gt;\\n\\n&lt;blockquote&gt;\\n&lt;p&gt;[for
805
+ hire, fulltime] Rails developer in SF looking for a great startup&lt;/p&gt;\\n&lt;/blockquote&gt;\\n\\n&lt;p&gt;Looking
806
+ to hire either employees or contractors to work from anywhere:&lt;/p&gt;\\n\\n&lt;blockquote&gt;\\n&lt;p&gt;[hiring,
807
+ fulltime or contract, remote] Full-Stack Rails developer needed, can work
808
+ from home!&lt;/p&gt;\\n&lt;/blockquote&gt;\\n&lt;/div&gt;&lt;!-- SC_ON --&gt;\",
809
+ \"title\": \"Jobs for Ruby on Rails developers\", \"over18\": false, \"user_is_moderator\":
810
+ null, \"header_title\": null, \"description\": \"**Are you a developer who
811
+ is looking for work?**\\n\\nSubmit a post with a title containing [for hire]\\n\\n**Are
812
+ you looking to hire a developer?**\\n\\nSubmit a post with a title containing
813
+ [hiring]\\n\\n**The following tags should be used by both parties:**\\n\\n|
814
+ Title Tag | Description |\\n|-----------:|:------------|\\n| [contract]
815
+ | You are only interested in short-term contracts. |\\n| [fulltime] | You
816
+ only want to hire/become an employee. |\\n| [remote] | You are only interested
817
+ in hiring/working remotely. |\\n\\n(If you are not interested in hiring/working
818
+ remotely, please include your state or country in the title.)\\n\\n**Examples**\\n\\nA
819
+ developer looking for full-time work:\\n\\n&gt; [for hire, fulltime] Rails
820
+ developer in SF looking for a great startup\\n\\nLooking to hire either employees
821
+ or contractors to work from anywhere:\\n\\n&gt; [hiring, fulltime or contract,
822
+ remote] Full-Stack Rails developer needed, can work from home!\", \"submit_link_label\":
823
+ null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
824
+ \"high\", \"header_size\": null, \"subscribers\": 139, \"submit_text_label\":
825
+ null, \"name\": \"t5_2vk3w\", \"created\": 1352936850.0, \"url\": \"/r/railsjobs/\",
826
+ \"created_utc\": 1352933250.0, \"user_is_contributor\": null, \"public_traffic\":
827
+ false, \"public_description\": \"Post a listing if you're looking for work,
828
+ or are looking for a Rails developer. Feel free to post either text/self posts,
829
+ or links to a job listing on an external website. \", \"comment_score_hide_mins\":
830
+ 0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
831
+ null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
832
+ null, \"id\": \"2qhjc\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
833
+ \"display_name\": \"ruby_rss\", \"header_img\": null, \"description_html\":
834
+ \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;ruby stuffs&lt;/p&gt;\\n&lt;/div&gt;&lt;!--
835
+ SC_ON --&gt;\", \"title\": \"ruby stuffs\", \"over18\": false, \"user_is_moderator\":
836
+ null, \"header_title\": \"\", \"description\": \"ruby stuffs\", \"submit_link_label\":
837
+ \"\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
838
+ \"high\", \"header_size\": null, \"subscribers\": 55, \"submit_text_label\":
839
+ \"\", \"name\": \"t5_2qhjc\", \"created\": 1205813702.0, \"url\": \"/r/ruby_rss/\",
840
+ \"created_utc\": 1205810102.0, \"user_is_contributor\": null, \"public_traffic\":
841
+ false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
842
+ \"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
843
+ {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
844
+ null, \"id\": \"2s7fs\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
845
+ \"display_name\": \"ruby_proposals\", \"header_img\": null, \"description_html\":
846
+ \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;Propose a Ruby
847
+ project, discuss it, and implement it. If you think of something good, post
848
+ it here and some poor schmuck looking for something to do can make it.&lt;/p&gt;\\n&lt;/div&gt;&lt;!--
849
+ SC_ON --&gt;\", \"title\": \"Ruby Proposals :: Project Ideas\", \"over18\":
850
+ false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
851
+ \"Propose a Ruby project, discuss it, and implement it. If you think of something
852
+ good, post it here and some poor schmuck looking for something to do can make
853
+ it.\", \"submit_link_label\": \"\", \"accounts_active\": null, \"spam_comments\":
854
+ \"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
855
+ 33, \"submit_text_label\": \"\", \"name\": \"t5_2s7fs\", \"created\": 1291043868.0,
856
+ \"url\": \"/r/ruby_proposals/\", \"created_utc\": 1291040268.0, \"user_is_contributor\":
857
+ null, \"public_traffic\": false, \"public_description\": \"\", \"comment_score_hide_mins\":
858
+ 0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
859
+ null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
860
+ null, \"id\": \"2qnuv\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
861
+ \"display_name\": \"rubyfeed\", \"header_img\": null, \"description_html\":
862
+ \"&lt;!-- SC_OFF --&gt;&lt;div class=\\\"md\\\"&gt;&lt;p&gt;ruby programming
863
+ language feed&lt;/p&gt;\\n&lt;/div&gt;&lt;!-- SC_ON --&gt;\", \"title\": \"ruby
864
+ programming language feed\", \"over18\": false, \"user_is_moderator\": null,
865
+ \"header_title\": \"\", \"description\": \"ruby programming language feed\",
866
+ \"submit_link_label\": \"\", \"accounts_active\": null, \"spam_comments\":
867
+ \"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
868
+ 60, \"submit_text_label\": \"\", \"name\": \"t5_2qnuv\", \"created\": 1225058060.0,
869
+ \"url\": \"/r/rubyfeed/\", \"created_utc\": 1225054460.0, \"user_is_contributor\":
870
+ null, \"public_traffic\": false, \"public_description\": \"\", \"comment_score_hide_mins\":
871
+ 0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
872
+ null}}], \"after\": \"t5_2qnuv\", \"before\": null}}"
873
+ http_version:
874
+ recorded_at: Sun, 10 Nov 2013 22:38:21 GMT
875
+ recorded_with: VCR 2.6.0