angellist_api 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. data/CHANGELOG.md +15 -0
  2. data/README.md +11 -6
  3. data/Rakefile +9 -0
  4. data/lib/angellist_api.rb +1 -3
  5. data/lib/angellist_api/api.rb +2 -4
  6. data/lib/angellist_api/authentication.rb +0 -1
  7. data/lib/angellist_api/client.rb +9 -1
  8. data/lib/angellist_api/client/activity_feeds.rb +29 -8
  9. data/lib/angellist_api/client/follows.rb +105 -63
  10. data/lib/angellist_api/client/jobs.rb +72 -0
  11. data/lib/angellist_api/client/reviews.rb +17 -6
  12. data/lib/angellist_api/client/search.rb +31 -0
  13. data/lib/angellist_api/client/startup_roles.rb +23 -8
  14. data/lib/angellist_api/client/startups.rb +49 -13
  15. data/lib/angellist_api/client/status_updates.rb +45 -24
  16. data/lib/angellist_api/client/tags.rb +52 -30
  17. data/lib/angellist_api/client/users.rb +39 -17
  18. data/lib/angellist_api/configuration.rb +24 -29
  19. data/lib/angellist_api/connection.rb +27 -29
  20. data/lib/angellist_api/core_ext/hash.rb +19 -0
  21. data/lib/angellist_api/error.rb +9 -32
  22. data/lib/angellist_api/error/bad_gateway.rb +7 -0
  23. data/lib/angellist_api/error/bad_request.rb +7 -0
  24. data/lib/angellist_api/error/enhance_your_calm.rb +13 -0
  25. data/lib/angellist_api/error/forbidden.rb +7 -0
  26. data/lib/angellist_api/error/internal_server_error.rb +7 -0
  27. data/lib/angellist_api/error/not_acceptable.rb +7 -0
  28. data/lib/angellist_api/error/not_found.rb +7 -0
  29. data/lib/angellist_api/error/service_unavailable.rb +7 -0
  30. data/lib/angellist_api/error/unauthorized.rb +7 -0
  31. data/lib/angellist_api/request.rb +11 -18
  32. data/lib/angellist_api/request/angellist_api_oauth.rb +16 -0
  33. data/lib/angellist_api/request/gateway.rb +18 -0
  34. data/lib/angellist_api/request/multipart_with_file.rb +36 -0
  35. data/lib/angellist_api/response/raise_client_error.rb +51 -0
  36. data/lib/angellist_api/response/raise_server_error.rb +27 -0
  37. data/lib/angellist_api/version.rb +1 -1
  38. data/spec/fixtures/cassettes/activity_feeds.yml +273 -0
  39. data/spec/fixtures/cassettes/follows.yml +1722 -0
  40. data/spec/fixtures/cassettes/jobs.yml +2052 -0
  41. data/spec/fixtures/cassettes/reviews.yml +93 -0
  42. data/spec/fixtures/cassettes/search.yml +169 -0
  43. data/spec/fixtures/cassettes/startup_roles.yml +1481 -0
  44. data/spec/fixtures/cassettes/startups.yml +532 -0
  45. data/spec/fixtures/cassettes/status_updates.yml +125 -0
  46. data/spec/fixtures/cassettes/tags.yml +762 -0
  47. data/spec/fixtures/cassettes/users.yml +275 -0
  48. data/spec/integration/activity_feeds_spec.rb +29 -0
  49. data/spec/integration/follows_spec.rb +60 -0
  50. data/spec/integration/jobs_spec.rb +36 -0
  51. data/spec/integration/reviews_spec.rb +15 -0
  52. data/spec/integration/search_spec.rb +27 -0
  53. data/spec/integration/startup_roles_spec.rb +25 -0
  54. data/spec/integration/startups_spec.rb +36 -0
  55. data/spec/integration/status_updates_spec.rb +18 -0
  56. data/spec/integration/tags_spec.rb +29 -0
  57. data/spec/integration/users_spec.rb +23 -0
  58. data/spec/spec_helper.rb +5 -2
  59. data/spec/support/vcr.rb +12 -0
  60. data/spec/{lib → unit/lib}/angellist_api/api_spec.rb +13 -15
  61. data/spec/unit/lib/angellist_api/authentication_spec.rb +49 -0
  62. data/spec/unit/lib/angellist_api/client/activity_feeds_spec.rb +22 -0
  63. data/spec/unit/lib/angellist_api/client/follows_spec.rb +82 -0
  64. data/spec/unit/lib/angellist_api/client/jobs_spec.rb +39 -0
  65. data/spec/unit/lib/angellist_api/client/reviews_spec.rb +14 -0
  66. data/spec/unit/lib/angellist_api/client/search_spec.rb +15 -0
  67. data/spec/unit/lib/angellist_api/client/startup_roles_spec.rb +14 -0
  68. data/spec/unit/lib/angellist_api/client/startups_spec.rb +40 -0
  69. data/spec/unit/lib/angellist_api/client/status_updates_spec.rb +30 -0
  70. data/spec/unit/lib/angellist_api/client/tags_spec.rb +39 -0
  71. data/spec/unit/lib/angellist_api/client/users_spec.rb +39 -0
  72. data/spec/{lib → unit/lib}/angellist_api/configuration_spec.rb +12 -11
  73. data/spec/unit/lib/angellist_api/error_spec.rb +124 -0
  74. data/spec/unit/lib/angellist_api/request_spec.rb +32 -0
  75. data/spec/unit/lib/angellist_api_spec.rb +42 -0
  76. metadata +128 -71
  77. data/lib/faraday/request/angellist_api_oauth.rb +0 -14
  78. data/lib/faraday/request/gateway.rb +0 -18
  79. data/lib/faraday/request/multipart_with_file.rb +0 -36
  80. data/lib/faraday/request/phoenix.rb +0 -18
  81. data/lib/faraday/response/raise_http_4xx.rb +0 -45
  82. data/lib/faraday/response/raise_http_5xx.rb +0 -24
  83. data/spec/lib/angellist_api/authentication_spec.rb +0 -53
  84. data/spec/lib/angellist_api/client/activity_feeds_spec.rb +0 -16
  85. data/spec/lib/angellist_api/client/follows_spec.rb +0 -74
  86. data/spec/lib/angellist_api/client/reviews_spec.rb +0 -16
  87. data/spec/lib/angellist_api/client/startup_roles_spec.rb +0 -16
  88. data/spec/lib/angellist_api/client/startups_spec.rb +0 -23
  89. data/spec/lib/angellist_api/client/status_updates_spec.rb +0 -32
  90. data/spec/lib/angellist_api/client/tags_spec.rb +0 -40
  91. data/spec/lib/angellist_api/client/users_spec.rb +0 -30
  92. data/spec/lib/angellist_api/error_spec.rb +0 -126
  93. data/spec/lib/angellist_api/request_spec.rb +0 -51
  94. data/spec/lib/angellist_api_spec.rb +0 -38
@@ -0,0 +1,532 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.angel.co/1/startups/1124?format=json&phoenix=true
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ User-Agent:
13
+ - AngellistApi Ruby Gem 1.0.1
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: !!null
18
+ headers:
19
+ server:
20
+ - nginx/1.0.6
21
+ date:
22
+ - Sat, 21 Apr 2012 22:17:00 GMT
23
+ content-type:
24
+ - application/json; charset=utf-8
25
+ transfer-encoding:
26
+ - chunked
27
+ connection:
28
+ - close
29
+ vary:
30
+ - Accept-Encoding, Accept-Encoding
31
+ status:
32
+ - '200'
33
+ x-powered-by:
34
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
35
+ x-ratelimit-limit:
36
+ - '1000'
37
+ x-ratelimit-remaining:
38
+ - '995'
39
+ x-thanks:
40
+ - For using AngelList. Rock on.
41
+ x-runtime:
42
+ - '68'
43
+ etag:
44
+ - ! '"8d41937b2c23a6cbb4682080173a0f83"'
45
+ cache-control:
46
+ - private, max-age=0, must-revalidate
47
+ body:
48
+ encoding: ASCII-8BIT
49
+ string: ! '{"id":1124,"hidden":false,"community_profile":false,"name":"500 Startups
50
+ (Fund)","angellist_url":"http://angel.co/500-startups-fund","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb.png","product_desc":"500
51
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
52
+ We invest in internet startups on search, social, & mobile platforms. We run
53
+ an incubation and accelerator program emphasizing design & user experience,
54
+ distribution & customer acquisition, and lean startup practices & metrics.
55
+ Our investment team and mentor network has operational experience at companies
56
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
57
+ & Facebook.","high_concept":"Silicon Valley micro-VC fund & accelerator founded
58
+ by ex-PayPal, Google, YouTube alums.","follower_count":3254,"company_url":"http://500.co","twitter_url":"https://twitter.com/#!/500","blog_url":"http://500.co/blog/","video_url":"http://youtube.com/watch?v=oy--ub2jMHs","markets":[{"id":856,"tag_type":"MarketTag","name":"venture
59
+ capital","display_name":"Venture Capital","angellist_url":"http://angel.co/venture-capital"}],"locations":[{"id":1701,"tag_type":"LocationTag","name":"mountain
60
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"}],"status":{"id":53746,"message":".@500
61
+ Startups by the #''s (infographic): companies, exits, countries, team, process,
62
+ languages, mentors, events, etc: http://bit.ly/500info","created_at":"2012-04-12T23:57:59Z"},"screenshots":[{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-thumb.png","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-original.png"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-original.jpg"}]}'
63
+ http_version: !!null
64
+ recorded_at: Sat, 21 Apr 2012 22:17:00 GMT
65
+ - request:
66
+ method: get
67
+ uri: https://api.angel.co/1/startups/1124?format=json
68
+ body:
69
+ encoding: US-ASCII
70
+ string: ''
71
+ headers:
72
+ Accept:
73
+ - application/json
74
+ User-Agent:
75
+ - AngellistApi Ruby Gem 1.0.1
76
+ response:
77
+ status:
78
+ code: 200
79
+ message: !!null
80
+ headers:
81
+ server:
82
+ - nginx/1.0.6
83
+ date:
84
+ - Sat, 21 Apr 2012 23:16:26 GMT
85
+ content-type:
86
+ - application/json; charset=utf-8
87
+ transfer-encoding:
88
+ - chunked
89
+ connection:
90
+ - close
91
+ vary:
92
+ - Accept-Encoding, Accept-Encoding
93
+ status:
94
+ - '200'
95
+ x-powered-by:
96
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
97
+ x-ratelimit-limit:
98
+ - '1000'
99
+ x-ratelimit-remaining:
100
+ - '962'
101
+ x-thanks:
102
+ - For using AngelList. Rock on.
103
+ x-runtime:
104
+ - '24'
105
+ etag:
106
+ - ! '"6a15f61f48032d7a6bd4a789e8724b53"'
107
+ cache-control:
108
+ - private, max-age=0, must-revalidate
109
+ body:
110
+ encoding: ASCII-8BIT
111
+ string: ! '{"id":1124,"hidden":false,"community_profile":false,"name":"500 Startups
112
+ (Fund)","angellist_url":"http://angel.co/500-startups-fund","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb.png","product_desc":"500
113
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
114
+ We invest in internet startups on search, social, & mobile platforms. We run
115
+ an incubation and accelerator program emphasizing design & user experience,
116
+ distribution & customer acquisition, and lean startup practices & metrics.
117
+ Our investment team and mentor network has operational experience at companies
118
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
119
+ & Facebook.","high_concept":"Silicon Valley micro-VC fund & accelerator founded
120
+ by ex-PayPal, Google, YouTube alums.","follower_count":3255,"company_url":"http://500.co","twitter_url":"https://twitter.com/#!/500","blog_url":"http://500.co/blog/","video_url":"http://youtube.com/watch?v=oy--ub2jMHs","markets":[{"id":856,"tag_type":"MarketTag","name":"venture
121
+ capital","display_name":"Venture Capital","angellist_url":"http://angel.co/venture-capital"}],"locations":[{"id":1701,"tag_type":"LocationTag","name":"mountain
122
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"}],"status":{"id":53746,"message":".@500
123
+ Startups by the #''s (infographic): companies, exits, countries, team, process,
124
+ languages, mentors, events, etc: http://bit.ly/500info","created_at":"2012-04-12T23:57:59Z"},"screenshots":[{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-thumb.png","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-original.png"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-original.jpg"}]}'
125
+ http_version: !!null
126
+ recorded_at: Sat, 21 Apr 2012 23:16:26 GMT
127
+ - request:
128
+ method: get
129
+ uri: https://api.angel.co/1/startups/1124
130
+ body:
131
+ encoding: US-ASCII
132
+ string: ''
133
+ headers:
134
+ Accept:
135
+ - application/json
136
+ User-Agent:
137
+ - AngellistApi Ruby Gem 1.0.1
138
+ response:
139
+ status:
140
+ code: 200
141
+ message: !!null
142
+ headers:
143
+ server:
144
+ - nginx/1.0.6
145
+ date:
146
+ - Sun, 22 Apr 2012 00:35:12 GMT
147
+ content-type:
148
+ - application/json; charset=utf-8
149
+ transfer-encoding:
150
+ - chunked
151
+ connection:
152
+ - close
153
+ vary:
154
+ - Accept-Encoding, Accept-Encoding
155
+ status:
156
+ - '200'
157
+ x-powered-by:
158
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
159
+ x-ratelimit-limit:
160
+ - '1000'
161
+ x-ratelimit-remaining:
162
+ - '977'
163
+ x-thanks:
164
+ - For using AngelList. Rock on.
165
+ x-runtime:
166
+ - '22'
167
+ etag:
168
+ - ! '"caddda9f0844f06a46bf42629e08e7f4"'
169
+ cache-control:
170
+ - private, max-age=0, must-revalidate
171
+ body:
172
+ encoding: ASCII-8BIT
173
+ string: ! '{"id":1124,"hidden":false,"community_profile":false,"name":"500 Startups
174
+ (Fund)","angellist_url":"http://angel.co/500-startups-fund","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb.png","product_desc":"500
175
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
176
+ We invest in internet startups on search, social, & mobile platforms. We run
177
+ an incubation and accelerator program emphasizing design & user experience,
178
+ distribution & customer acquisition, and lean startup practices & metrics.
179
+ Our investment team and mentor network has operational experience at companies
180
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
181
+ & Facebook.","high_concept":"Silicon Valley micro-VC fund & accelerator founded
182
+ by ex-PayPal, Google, YouTube alums.","follower_count":3257,"company_url":"http://500.co","twitter_url":"https://twitter.com/#!/500","blog_url":"http://500.co/blog/","video_url":"http://youtube.com/watch?v=oy--ub2jMHs","markets":[{"id":856,"tag_type":"MarketTag","name":"venture
183
+ capital","display_name":"Venture Capital","angellist_url":"http://angel.co/venture-capital"}],"locations":[{"id":1701,"tag_type":"LocationTag","name":"mountain
184
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"}],"status":{"id":53746,"message":".@500
185
+ Startups by the #''s (infographic): companies, exits, countries, team, process,
186
+ languages, mentors, events, etc: http://bit.ly/500info","created_at":"2012-04-12T23:57:59Z"},"screenshots":[{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-thumb.png","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-original.png"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-original.jpg"}]}'
187
+ http_version: !!null
188
+ recorded_at: Sun, 22 Apr 2012 00:35:12 GMT
189
+ - request:
190
+ method: get
191
+ uri: https://api.angel.co/1/startups/search?slug=500-startups-fund
192
+ body:
193
+ encoding: US-ASCII
194
+ string: ''
195
+ headers:
196
+ Accept:
197
+ - application/json
198
+ User-Agent:
199
+ - AngellistApi Ruby Gem 1.0.1
200
+ response:
201
+ status:
202
+ code: 200
203
+ message: !!null
204
+ headers:
205
+ server:
206
+ - nginx/1.0.6
207
+ date:
208
+ - Sun, 22 Apr 2012 00:35:14 GMT
209
+ content-type:
210
+ - application/json; charset=utf-8
211
+ transfer-encoding:
212
+ - chunked
213
+ connection:
214
+ - close
215
+ vary:
216
+ - Accept-Encoding, Accept-Encoding
217
+ status:
218
+ - '200'
219
+ x-powered-by:
220
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
221
+ x-ratelimit-limit:
222
+ - '1000'
223
+ x-ratelimit-remaining:
224
+ - '976'
225
+ x-thanks:
226
+ - For using AngelList. Rock on.
227
+ x-runtime:
228
+ - '105'
229
+ etag:
230
+ - ! '"caddda9f0844f06a46bf42629e08e7f4"'
231
+ cache-control:
232
+ - private, max-age=0, must-revalidate
233
+ body:
234
+ encoding: ASCII-8BIT
235
+ string: ! '{"id":1124,"hidden":false,"community_profile":false,"name":"500 Startups
236
+ (Fund)","angellist_url":"http://angel.co/500-startups-fund","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb.png","product_desc":"500
237
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
238
+ We invest in internet startups on search, social, & mobile platforms. We run
239
+ an incubation and accelerator program emphasizing design & user experience,
240
+ distribution & customer acquisition, and lean startup practices & metrics.
241
+ Our investment team and mentor network has operational experience at companies
242
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
243
+ & Facebook.","high_concept":"Silicon Valley micro-VC fund & accelerator founded
244
+ by ex-PayPal, Google, YouTube alums.","follower_count":3257,"company_url":"http://500.co","twitter_url":"https://twitter.com/#!/500","blog_url":"http://500.co/blog/","video_url":"http://youtube.com/watch?v=oy--ub2jMHs","markets":[{"id":856,"tag_type":"MarketTag","name":"venture
245
+ capital","display_name":"Venture Capital","angellist_url":"http://angel.co/venture-capital"}],"locations":[{"id":1701,"tag_type":"LocationTag","name":"mountain
246
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"}],"status":{"id":53746,"message":".@500
247
+ Startups by the #''s (infographic): companies, exits, countries, team, process,
248
+ languages, mentors, events, etc: http://bit.ly/500info","created_at":"2012-04-12T23:57:59Z"},"screenshots":[{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-thumb.png","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-original.png"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-original.jpg"}]}'
249
+ http_version: !!null
250
+ recorded_at: Sun, 22 Apr 2012 00:35:14 GMT
251
+ - request:
252
+ method: get
253
+ uri: https://api.angel.co/1/startups/search?domain=500.co
254
+ body:
255
+ encoding: US-ASCII
256
+ string: ''
257
+ headers:
258
+ Accept:
259
+ - application/json
260
+ User-Agent:
261
+ - AngellistApi Ruby Gem 1.0.1
262
+ response:
263
+ status:
264
+ code: 200
265
+ message: !!null
266
+ headers:
267
+ server:
268
+ - nginx/1.0.6
269
+ date:
270
+ - Sun, 22 Apr 2012 00:35:15 GMT
271
+ content-type:
272
+ - application/json; charset=utf-8
273
+ transfer-encoding:
274
+ - chunked
275
+ connection:
276
+ - close
277
+ vary:
278
+ - Accept-Encoding, Accept-Encoding
279
+ status:
280
+ - '200'
281
+ x-powered-by:
282
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
283
+ x-ratelimit-limit:
284
+ - '1000'
285
+ x-ratelimit-remaining:
286
+ - '975'
287
+ x-thanks:
288
+ - For using AngelList. Rock on.
289
+ x-runtime:
290
+ - '318'
291
+ etag:
292
+ - ! '"caddda9f0844f06a46bf42629e08e7f4"'
293
+ cache-control:
294
+ - private, max-age=0, must-revalidate
295
+ body:
296
+ encoding: ASCII-8BIT
297
+ string: ! '{"id":1124,"hidden":false,"community_profile":false,"name":"500 Startups
298
+ (Fund)","angellist_url":"http://angel.co/500-startups-fund","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb.png","product_desc":"500
299
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
300
+ We invest in internet startups on search, social, & mobile platforms. We run
301
+ an incubation and accelerator program emphasizing design & user experience,
302
+ distribution & customer acquisition, and lean startup practices & metrics.
303
+ Our investment team and mentor network has operational experience at companies
304
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
305
+ & Facebook.","high_concept":"Silicon Valley micro-VC fund & accelerator founded
306
+ by ex-PayPal, Google, YouTube alums.","follower_count":3257,"company_url":"http://500.co","twitter_url":"https://twitter.com/#!/500","blog_url":"http://500.co/blog/","video_url":"http://youtube.com/watch?v=oy--ub2jMHs","markets":[{"id":856,"tag_type":"MarketTag","name":"venture
307
+ capital","display_name":"Venture Capital","angellist_url":"http://angel.co/venture-capital"}],"locations":[{"id":1701,"tag_type":"LocationTag","name":"mountain
308
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"}],"status":{"id":53746,"message":".@500
309
+ Startups by the #''s (infographic): companies, exits, countries, team, process,
310
+ languages, mentors, events, etc: http://bit.ly/500info","created_at":"2012-04-12T23:57:59Z"},"screenshots":[{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-thumb.png","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-original.png"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-original.jpg"}]}'
311
+ http_version: !!null
312
+ recorded_at: Sun, 22 Apr 2012 00:35:15 GMT
313
+ - request:
314
+ method: get
315
+ uri: https://api.angel.co/1/startups/batch?ids=1124%2C31627
316
+ body:
317
+ encoding: US-ASCII
318
+ string: ''
319
+ headers:
320
+ Accept:
321
+ - application/json
322
+ User-Agent:
323
+ - AngellistApi Ruby Gem 1.0.1
324
+ response:
325
+ status:
326
+ code: 200
327
+ message: !!null
328
+ headers:
329
+ server:
330
+ - nginx/1.0.6
331
+ date:
332
+ - Sun, 22 Apr 2012 04:30:31 GMT
333
+ content-type:
334
+ - application/json; charset=utf-8
335
+ transfer-encoding:
336
+ - chunked
337
+ connection:
338
+ - close
339
+ vary:
340
+ - Accept-Encoding, Accept-Encoding
341
+ status:
342
+ - '200'
343
+ x-powered-by:
344
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
345
+ x-ratelimit-limit:
346
+ - '1000'
347
+ x-ratelimit-remaining:
348
+ - '993'
349
+ x-thanks:
350
+ - For using AngelList. Rock on.
351
+ x-runtime:
352
+ - '96'
353
+ etag:
354
+ - ! '"15f7ed57ea99af33c972a32b009b5d93"'
355
+ cache-control:
356
+ - private, max-age=0, must-revalidate
357
+ body:
358
+ encoding: ASCII-8BIT
359
+ string: ! '[{"id":1124,"hidden":false,"community_profile":false,"name":"500
360
+ Startups (Fund)","angellist_url":"http://angel.co/500-startups-fund","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1124-9f04812061e2dcd37e24eeb20cf47e5c-thumb.png","product_desc":"500
361
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
362
+ We invest in internet startups on search, social, & mobile platforms. We run
363
+ an incubation and accelerator program emphasizing design & user experience,
364
+ distribution & customer acquisition, and lean startup practices & metrics.
365
+ Our investment team and mentor network has operational experience at companies
366
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
367
+ & Facebook.","high_concept":"Silicon Valley micro-VC fund & accelerator founded
368
+ by ex-PayPal, Google, YouTube alums.","follower_count":3263,"company_url":"http://500.co","twitter_url":"https://twitter.com/#!/500","blog_url":"http://500.co/blog/","video_url":"http://youtube.com/watch?v=oy--ub2jMHs","markets":[{"id":856,"tag_type":"MarketTag","name":"venture
369
+ capital","display_name":"Venture Capital","angellist_url":"http://angel.co/venture-capital"}],"locations":[{"id":1701,"tag_type":"LocationTag","name":"mountain
370
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"}],"status":{"id":53746,"message":".@500
371
+ Startups by the #''s (infographic): companies, exits, countries, team, process,
372
+ languages, mentors, events, etc: http://bit.ly/500info","created_at":"2012-04-12T23:57:59Z"},"screenshots":[{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d1cfdd5a9783eb1d115884678f1c4982-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-thumb.png","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/d995be3ef8ea226b57c3e86da50f9dab-original.png"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/cc897ffa4c3209ae85008f5dcfd5c7f7-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/e2477b0b7bdfb12416741be68b12d4d9-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/af01513ca735f94fe436623b55f0948a-original.jpg"},{"thumb":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-thumb.jpg","original":"https://s3.amazonaws.com/screenshots.angel.co/c7/1124/2a303adde511f0d3dadc80bc7ee089b7-original.jpg"}]},{"id":31627,"hidden":false,"community_profile":false,"name":"NewCo","angellist_url":"http://angel.co/newco","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31627-95137a5f1c915f8a5ddf456233af2a9b-medium.jpeg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31627-95137a5f1c915f8a5ddf456233af2a9b-thumb.jpeg","product_desc":"Still
373
+ in stealth. It''s in the financial services space.","high_concept":"Addressing
374
+ the $15 trillion Business Market","follower_count":475,"company_url":"http://Coming
375
+ Soon","twitter_url":"","blog_url":"","video_url":null,"markets":[{"id":42,"tag_type":"MarketTag","name":"B2B","display_name":"B2B","angellist_url":"http://angel.co/b2b"},{"id":340,"tag_type":"MarketTag","name":"small
376
+ and medium businesses","display_name":"Small and Medium Businesses","angellist_url":"http://angel.co/small-and-medium-businesses"}],"locations":[{"id":1692,"tag_type":"LocationTag","name":"san
377
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"}],"status":{"id":51391,"message":"Looking
378
+ for office space in SF near the CalTrain - anyone have room to fit 8 people
379
+ for a short term sublet?","created_at":"2012-03-27T20:53:40Z"},"screenshots":[]}]'
380
+ http_version: !!null
381
+ recorded_at: Sun, 22 Apr 2012 04:30:31 GMT
382
+ - request:
383
+ method: get
384
+ uri: https://api.angel.co/1/startups/1124/comments
385
+ body:
386
+ encoding: US-ASCII
387
+ string: ''
388
+ headers:
389
+ Accept:
390
+ - application/json
391
+ User-Agent:
392
+ - AngellistApi Ruby Gem 1.0.1
393
+ response:
394
+ status:
395
+ code: 200
396
+ message: !!null
397
+ headers:
398
+ server:
399
+ - nginx/1.0.6
400
+ date:
401
+ - Mon, 23 Apr 2012 08:14:29 GMT
402
+ content-type:
403
+ - application/json; charset=utf-8
404
+ transfer-encoding:
405
+ - chunked
406
+ connection:
407
+ - close
408
+ vary:
409
+ - Accept-Encoding, Accept-Encoding
410
+ status:
411
+ - '200'
412
+ x-powered-by:
413
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
414
+ x-ratelimit-limit:
415
+ - '1000'
416
+ x-ratelimit-remaining:
417
+ - '998'
418
+ x-thanks:
419
+ - For using AngelList. Rock on.
420
+ x-runtime:
421
+ - '306'
422
+ etag:
423
+ - ! '"a83cde0a6c6ffbce894d5905dea33248"'
424
+ cache-control:
425
+ - private, max-age=0, must-revalidate
426
+ body:
427
+ encoding: ASCII-8BIT
428
+ string: ! '[{"id":17725,"comment":"Often the greatest help entrepreneurs can
429
+ get is the confidence, support and appreciation that what they strive for
430
+ matters and can be achieved. At 500 you will never feel alone and your resolve
431
+ will be fortified with equal amounts education, connections, and most importantly
432
+ love for what you do. ","created_at":"2012-04-06T15:15:30Z","user":{"name":"Marcus
433
+ Ogawa","id":1329,"bio":"Managing Partner of early stage VC firm Quest Venture
434
+ Partners. Board member and major investor at Qik (sold to Skype), investor
435
+ in Tapulous (sold to Disney). ","follower_count":934,"angellist_url":"http://angel.co/marcusogawa","image":"https://s3.amazonaws.com/photos.angel.co/users/1329-medium?1294803892"}},{"id":17728,"comment":"I''m
436
+ a (small) investor in Fund I, a mentor to their 500 startups, but most importantly,
437
+ I consider myself a friend to Dave, the team, and their vision. My favorite
438
+ comment is hearing from those who say - these guys don''t know what they are
439
+ doing. They are just spray and pray. Team 500 funds businesses. They have
440
+ a keen eye for what everyone wants - businesses with a model that can use
441
+ their future funding to scale. It only looks scattered, but that is only to
442
+ throw others off their scent.","created_at":"2012-04-06T15:56:27Z","user":{"name":"Jay
443
+ Weintraub","id":2726,"bio":"CEO and Founder, NextCustomer, Inc., organizers
444
+ of LeadsCon & Daily Deal Summit conference series.","follower_count":1356,"angellist_url":"http://angel.co/jayweintraub","image":"https://s3.amazonaws.com/photos.angel.co/users/2726-medium?1294804173"}},{"id":17733,"comment":"Nobody
445
+ hustles like Dave and team 500. I''m grateful for having had Dave on our board
446
+ at TeachStreet, and proud to put my money behind Fund 1 and this team''s passion
447
+ and vision. ","created_at":"2012-04-06T16:53:36Z","user":{"name":"Daryn Nakhuda","id":27405,"bio":"15
448
+ years of tech roles at startups, currently at AmazonLocal. Co-founder of Eyejot.
449
+ Investor in TeachStreet, WillCall, Belle Clementine, 500 Startups (fund)","follower_count":392,"angellist_url":"http://angel.co/daryn","image":"https://s3.amazonaws.com/photos.angel.co/users/27405-medium?1303023798"}},{"id":17734,"comment":"Dave
450
+ and team have built an incredibly strong startup community with awesome people
451
+ from all around the world. Being funded by 500S automatically adds value to
452
+ a startup, due to the tremendous support they will receive from the very active
453
+ network of mentors and founders. As a result they have no trouble attracting
454
+ the best startups to the fund. (I''m a mentor at 500 Startups)","created_at":"2012-04-06T16:54:38Z","user":{"name":"Ryan
455
+ Junee","id":4171,"bio":"Founder/CEO Inporia, Founder/CEO Omnisio (sold to
456
+ Google), Mentor at 500 Startups, Mentor at StartMate. Love startups and technology.","follower_count":1086,"angellist_url":"http://angel.co/rjunee","image":"https://s3.amazonaws.com/photos.angel.co/users/4171-medium?1294804605"}},{"id":17740,"comment":"I
457
+ have been around many funds in my life, and 500 combines passion, leadership,
458
+ resources and a network in a way that no other fund does. Additionally, Dave''s
459
+ investment thesis has created a new style of investment that allows increased
460
+ deal flow and improved deal selection.","created_at":"2012-04-06T17:52:06Z","user":{"name":"Micah
461
+ Baldwin","id":588,"bio":"Founder Graphicly. Multiple Entrepreneur. Mentor
462
+ at Techstars & 500startups. Startup Doer and Advisor.","follower_count":1316,"angellist_url":"http://angel.co/micah","image":"https://s3.amazonaws.com/photos.angel.co/users/588-medium?1313516610"}},{"id":17773,"comment":"ZOZI''s
463
+ a portfolio company of 500 Startups and I''m a mentor to the accelerator companies. For
464
+ as much as Dave has going on, he''s amazingly available and helpful, always
465
+ picks up, calls back, and engages. Pretty sure he''s cloned himself - which
466
+ would explain why he curses so much.","created_at":"2012-04-07T02:30:26Z","user":{"name":"TJ
467
+ Sassani","id":33188,"bio":"CEO Zozi","follower_count":7,"angellist_url":"http://angel.co/tj-sassani","image":"http://angel.co/images/nopic.png"}},{"id":17830,"comment":"I''ve
468
+ watched Dave and team first hand make a number of very smart investments in
469
+ an incredible diversity of sectors. By open sourcing the knowledge of the
470
+ network, he''s and the team area able to move incredibly well under today''s
471
+ very time-sensitive requirements.","created_at":"2012-04-08T21:23:21Z","user":{"name":"Ted
472
+ Rheingold","id":10890,"bio":"Founding CEO Dogster/Catster (sold to Say Media)
473
+ and OneMatchFire(.com). Community. Product. Business. Start-up advisor, investor,
474
+ mentor.\n","follower_count":1000,"angellist_url":"http://angel.co/trheingold","image":"https://s3.amazonaws.com/photos.angel.co/users/10890-medium?1298836698"}},{"id":17843,"comment":"Dave
475
+ was one of TeachStreet''s earliest investors, a fantastic Board member, and
476
+ the 500Startups fund stepped in when we needed them. I''m a massive fan,
477
+ and look forward to investing in the next fund if/when it appears. Great
478
+ for startups and entrepreneurs, and my bet is great returns for investors.","created_at":"2012-04-09T02:49:26Z","user":{"name":"Dave
479
+ Schappell","id":3170,"bio":"Director of Product, AmazonLocal. Former founder
480
+ and CEO, TeachStreet","follower_count":564,"angellist_url":"http://angel.co/daveschappell","image":"https://s3.amazonaws.com/photos.angel.co/users/3170-medium?1294804269"}},{"id":17886,"comment":"We
481
+ are a portfolio company - Paul and Dave are the best early stage investors
482
+ anyone could hope for. They are supportive, resourceful and fair. While
483
+ $$ is important, the 500 network of founders and mentors is worth more. I
484
+ also look forward to being an investor in Fund 2.","created_at":"2012-04-09T18:34:45Z","user":{"name":"Dazhi
485
+ Chen","id":24852,"bio":"CEO/Co-founder of Relevant. Founded + sold Tribeca
486
+ Insights. MSD Capital, Microsoft. Caltech, HBS.","follower_count":446,"angellist_url":"http://angel.co/tigerchen","image":"https://s3.amazonaws.com/photos.angel.co/users/24852-medium?1306174170"}},{"id":17889,"comment":"I''ve
487
+ been a mentor for 500 Startups since the fund first launched. It''s been an
488
+ honor and a pleasure to be associated with such an amazing group of people.
489
+ I think the approach that Dave & Co are taking towards the traditional funding
490
+ model makes a ton of sense and we''re already seeing how effective it can
491
+ be to find and fund the right companies. Really excited to continue to watch
492
+ this grow and continue to play a small role.","created_at":"2012-04-09T18:47:02Z","user":{"name":"Brenden
493
+ Mulligan","id":12431,"bio":"Entrepreneur, Designer, Developer. Creator of
494
+ Onesheet, TipList, MorningPics, PhotoPile, ArtistData (acquired), 500Startups
495
+ mentor.","follower_count":554,"angellist_url":"http://angel.co/mulligan","image":"https://s3.amazonaws.com/photos.angel.co/users/12431-medium?1325658149"}},{"id":17944,"comment":"Amazing
496
+ team and vision for how early stage investing should be done. Also love the
497
+ international focus. ","created_at":"2012-04-10T02:03:24Z","user":{"name":"Arjun
498
+ Dev Arora","id":3376,"bio":"Founder and CEO Retargeter. Bus Dev & Strategy
499
+ at Yahoo. Investment Banker at Jefferies","follower_count":736,"angellist_url":"http://angel.co/arjun","image":"https://s3.amazonaws.com/photos.angel.co/users/3376-medium?1303330549"}},{"id":18134,"comment":"Love
500
+ the 500S model and have known Dave for close to 20 years. He was a student
501
+ of mine in the mid 90''s.","created_at":"2012-04-12T05:13:26Z","user":{"name":"Steve
502
+ Bennet","id":946,"bio":"Start-up CFO, Angel Investor and Professor","follower_count":1182,"angellist_url":"http://angel.co/sbennet","image":"https://s3.amazonaws.com/photos.angel.co/users/946-medium?1294803810"}},{"id":18433,"comment":"Share
503
+ personal experiences and learn perspectives","created_at":"2012-04-16T20:42:05Z","user":{"name":"Venu
504
+ Chillarige","id":117005,"bio":"Vice President at Dart Business Solutions.
505
+ Entrepreneur with strong background in business strategy and IT. I love starting,
506
+ growing & advising companies. ","follower_count":0,"angellist_url":"http://angel.co/venu-chillarige","image":"https://s3.amazonaws.com/photos.angel.co/users/117005-medium?1334270455"}},{"id":18489,"comment":"Dave
507
+ McClure is brilliant and genuinely cares about entrepreneurs like they were
508
+ part of his family. The way he''s executed on creating a global network with
509
+ Fund 1 is remarkable and just the beginning with Fund 2. I think a lot of
510
+ people can confuse Dave''s outward PR persona with the real Dave who''s truly
511
+ generous and is one of the hardest working role models I''ve ever had in my
512
+ life. He''s intentionally designing the 500S brand to represent fun, family
513
+ and meaningful emotional connections between people that will last for the
514
+ long run. Sure he can''t answer every email because that doesn''t scale but
515
+ he''s building a great team and community driven brand that is scaling. Christine
516
+ Tsai is doing great work to cultivate a phenomenal mentor network and distribution
517
+ platform relationships. Paul Singh is building game changing internal tools
518
+ and applying many of the same data informed principles we expect of startups
519
+ onto VC. Christen O''Brien is crafting amazing experiences through events
520
+ and partnerships that continue to attract the best entrepreneurs to 500S worldwide...This
521
+ is the inflection point you want to invest in as an LP.","created_at":"2012-04-17T07:55:58Z","user":{"name":"Enrique
522
+ Allen","id":62554,"bio":"Founding member of the Designer Fund & 500 Startups.
523
+ Previously Facebook Fund & Venrock. Teach at Stanford design school & former
524
+ Stanford Persuasive Tech Lab.","follower_count":644,"angellist_url":"http://angel.co/enrique-allen","image":"https://s3.amazonaws.com/photos.angel.co/users/62554-medium?1317614459"}},{"id":18498,"comment":"The
525
+ mentor community at 500 is outstanding, Dave has amazing credibility (and
526
+ deservedly so) with founders, and the 500 family has attracted and continues
527
+ to attract very strong companies.","created_at":"2012-04-17T13:05:41Z","user":{"name":"Roy
528
+ Rodenstein","id":559,"bio":"Co-founder & CEO, SocMetrics. Co-founder HackerAngels,
529
+ Going.com (acquired by AOL). MIT Media Lab 2000.","follower_count":888,"angellist_url":"http://angel.co/royrod","image":"https://s3.amazonaws.com/photos.angel.co/users/559-medium?1314663574"}}]'
530
+ http_version: !!null
531
+ recorded_at: Mon, 23 Apr 2012 08:14:29 GMT
532
+ recorded_with: VCR 2.1.0