angellist_api 1.0.7 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. checksums.yaml +6 -14
  2. data/CHANGELOG.md +15 -0
  3. data/lib/angellist_api/client/activity_feeds.rb +0 -12
  4. data/lib/angellist_api/client/jobs.rb +4 -4
  5. data/lib/angellist_api/version.rb +1 -1
  6. data/spec/fixtures/cassettes/activity_feeds.yml +225 -253
  7. data/spec/fixtures/cassettes/follows.yml +990 -1569
  8. data/spec/fixtures/cassettes/jobs.yml +2458 -1984
  9. data/spec/fixtures/cassettes/press.yml +158 -119
  10. data/spec/fixtures/cassettes/reviews.yml +111 -202
  11. data/spec/fixtures/cassettes/search.yml +116 -136
  12. data/spec/fixtures/cassettes/startup_roles.yml +3036 -3684
  13. data/spec/fixtures/cassettes/startups.yml +2024 -5906
  14. data/spec/fixtures/cassettes/status_updates.yml +108 -78
  15. data/spec/fixtures/cassettes/tags.yml +557 -695
  16. data/spec/fixtures/cassettes/users.yml +748 -728
  17. data/spec/integration/activity_feeds_spec.rb +5 -9
  18. data/spec/integration/follows_spec.rb +9 -8
  19. data/spec/integration/jobs_spec.rb +5 -8
  20. data/spec/integration/reviews_spec.rb +5 -3
  21. data/spec/integration/search_spec.rb +1 -1
  22. data/spec/integration/startup_roles_spec.rb +7 -5
  23. data/spec/integration/startups_spec.rb +4 -4
  24. data/spec/integration/status_updates_spec.rb +4 -2
  25. data/spec/integration/tags_spec.rb +1 -1
  26. data/spec/integration/users_spec.rb +7 -6
  27. data/spec/spec_helper.rb +10 -4
  28. data/spec/support/vcr.rb +25 -2
  29. data/spec/unit/lib/angellist_api/authentication_spec.rb +5 -5
  30. data/spec/unit/lib/angellist_api/client/activity_feeds_spec.rb +0 -8
  31. data/spec/unit/lib/angellist_api_spec.rb +2 -2
  32. metadata +49 -35
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- NTJmYWQ1MGRmMGU5ZmFlNTNkYjgwZDYxY2JiMGIyYTNiNGMyZmY1Mw==
5
- data.tar.gz: !binary |-
6
- ZmU4NDViNWJiYWM0YzVmZWMzM2IzNGFkZmI1ZWY1YWY0MDVmM2ZjZg==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- MjA4NDU2ZTdiZDJmOTQ2ZDcwMzU4YmE3NDExNTRiMjA2ZjU1ZDFjZmU1YTFj
10
- ZTExMTc0MjRhM2ZjMzIyZmQyYWQyYTM5ZjdhZGQ0NjdkODAwNDM1MTkyZGFj
11
- NjNjNjBkNjcyYjFmOTEwYjQ2YmY2YmQxMGU0NjEzZGI4NWM2ZWE=
12
- data.tar.gz: !binary |-
13
- OGQ5NTUxZTQyNDU3YzBkMzVhZDQxNDYwNTMzMDBlMzQ1YmRiNDFkYmQ5NDQw
14
- MzAzNzdmOTFkNmE2MmVlMTAyYzU2YTJhM2VhYzUyYmVmNWYyYTU0OGMwZWNh
15
- OWZjMzA4NDYyNzJlMGU4ZGI3NWEzMWRkNmI1NTIxYzhmZWY0YWI=
2
+ SHA1:
3
+ metadata.gz: edc594e2fac9d483d014f6cf9cb865897eb06322
4
+ data.tar.gz: 0fb3571bd8aaba8ab838d6171581e7aff17e1e64
5
+ SHA512:
6
+ metadata.gz: f60d640a008603d5acf97ab4fd8c6b7a1d09fe66cb881221367ece8856ae2fcfe17a5d0ee7dfccb3740214e9939e394f09b5a7623c534e6d4822028fc50f153f
7
+ data.tar.gz: 107dab2ba79fdb3ec97df293639d0165f010f724ae6867d52657e98837eee3e6edc7f1a61ef0c5245a4269ca38324286e82f3bba14f97c2d93ac735de0855839
@@ -1,5 +1,19 @@
1
1
  ## Master
2
2
 
3
+ ## 1.1.0 - 26 April, 2015
4
+
5
+ - **Breaking**: The `feed_item` client method to retrieve a single activity feed
6
+ entry has been removed, because the endpoint was apparently removed by
7
+ AngelList (see [the API doc page][api-activity-feeds]).
8
+
9
+ Apologies for the breaking change in a minor version bump, but really removing
10
+ an endpoint should have prompted AngelList to bump *their* API version :-(
11
+ - The Jobs endpoints now all require authentication.
12
+ - Of note for contributors: the test suite should now work with Faraday 0.9, as
13
+ we claim to support in our dependency declarations. Be warned that Faraday's
14
+ maintainers have slated it for the chopping block, we will be looking at
15
+ alternatives for the future of this gem.
16
+
3
17
  ## 1.0.7 - 18 October, 2013
4
18
 
5
19
  - Load Gemfile.local for optional development support libraries ([Rahil Sondhi])
@@ -53,6 +67,7 @@
53
67
  - Relax Hashie dependency, in particular to avoid dep conflict with
54
68
  omniauth-angellist.
55
69
 
70
+ [api-activity-feeds]: https://angel.co/api/spec/activity_feeds
56
71
 
57
72
  [Paul Singh]: https://github.com/paulsingh
58
73
  [Ches Martin]: https://github.com/ches
@@ -29,18 +29,6 @@ module AngellistApi
29
29
  def get_feed(options={})
30
30
  get("1/feed", options)
31
31
  end
32
-
33
- # Returns a specific activity feed item.
34
- #
35
- # @requires_authentication No
36
- #
37
- # @param id [String] String ID of the feed item to retrieve.
38
- #
39
- # @example Get a feed item.
40
- # AngellistApi.feed_item('8fCC3')
41
- def feed_item(id)
42
- get("1/feed/#{id}")
43
- end
44
32
  end
45
33
  end
46
34
  end
@@ -8,7 +8,7 @@ module AngellistApi
8
8
  # Returns all jobs that have been posted. Results are paginated and
9
9
  # ordered by publish date descending.
10
10
  #
11
- # @requires_authentication No
11
+ # @requires_authentication Yes
12
12
  # @paginated Yes
13
13
  #
14
14
  # @param options [Hash] A customizable set of options.
@@ -26,7 +26,7 @@ module AngellistApi
26
26
 
27
27
  # Shows details for a specific job, including the startup that posted it.
28
28
  #
29
- # @requires_authentication No
29
+ # @requires_authentication Yes
30
30
  #
31
31
  # @param id [Integer] ID of the job to fetch.
32
32
  #
@@ -38,7 +38,7 @@ module AngellistApi
38
38
 
39
39
  # For a given startup id, returns all the jobs that have been posted.
40
40
  #
41
- # @requires_authentication No
41
+ # @requires_authentication Yes
42
42
  # @paginated No
43
43
  #
44
44
  # @param id [Integer] ID of the desired startup.
@@ -51,7 +51,7 @@ module AngellistApi
51
51
 
52
52
  # For a given LocationTag id, returns all jobs posted in that tag.
53
53
  #
54
- # @requires_authentication No
54
+ # @requires_authentication Yes
55
55
  # @paginated Yes
56
56
  #
57
57
  # @param id [Integer] ID of the desired tag.
@@ -1,4 +1,4 @@
1
1
  module AngellistApi
2
- VERSION = '1.0.7'
2
+ VERSION = '1.1.0'
3
3
  end
4
4
 
@@ -10,264 +10,236 @@ http_interactions:
10
10
  Accept:
11
11
  - application/json
12
12
  User-Agent:
13
- - AngellistApi Ruby Gem 1.0.1
13
+ - AngellistApi Ruby Gem 1.0.7
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
16
  response:
15
17
  status:
16
18
  code: 200
17
- message: !!null
19
+ message: OK
18
20
  headers:
19
- server:
20
- - nginx/1.0.6
21
- date:
22
- - Sun, 22 Apr 2012 00:34:46 GMT
23
- content-type:
21
+ Cache-Control:
22
+ - max-age=0, private, must-revalidate
23
+ Content-Type:
24
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:
25
+ Date:
26
+ - Sun, 26 Apr 2015 10:46:15 GMT
27
+ Etag:
28
+ - '"8044e814fb9de50c9d67053ff14c4f55"'
29
+ Server:
30
+ - nginx
31
+ Status:
32
+ - 200 OK
33
+ Vary:
34
+ - Accept-Encoding
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Ratelimit-Limit:
36
38
  - '1000'
37
- x-ratelimit-remaining:
38
- - '989'
39
- x-thanks:
40
- - For using AngelList. Rock on.
41
- x-runtime:
42
- - '405'
43
- etag:
44
- - ! '"eb949d0fdfdbf08aa93b4b6cebb07a5c"'
45
- cache-control:
46
- - private, max-age=0, must-revalidate
47
- body:
48
- encoding: ASCII-8BIT
49
- string: ! '{"feed":[{"id":"8cASe","timestamp":"2012-04-22T00:05:48Z","item":{"type":"StatusUpdate","ids":[54892]},"description":"<a
50
- href=\"http://angel.co/bizelo\" class=\"feed_link\" data-id=\"76424\" data-type=\"Startup\">Bizelo</a>
51
- updated their status","text":"Just launched our new front page of the Bizelo
52
- site at http://www.bizelo.com/ - let us know what you think!","actor":{"type":"Startup","id":76424,"name":"Bizelo","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/76424-41488903f1edaecfbdbb83e6efda6706-thumb.png","angellist_url":"http://angel.co/bizelo","tagline":"Simplifying
53
- Small Business Apps"},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cAPU","timestamp":"2012-04-22T00:01:44Z","item":{"type":"Follow","ids":[4066138]},"description":"<a
54
- href=\"http://angel.co/pc0\" class=\"feed_link\" data-id=\"2531\" data-type=\"User\">Pete
55
- Cooper</a> followed <a href=\"http://angel.co/pindex\" class=\"feed_link\"
56
- data-id=\"84242\" data-type=\"Startup\">Pindex</a>","text":null,"actor":{"type":"User","id":2531,"name":"Pete
57
- Cooper","image":"https://s3.amazonaws.com/photos.angel.co/users/2531-medium?1294804141","angellist_url":"http://angel.co/pc0","tagline":"Geek.
58
- Finance. Real-time trading technologies."},"target":{"type":"Startup","id":84242,"name":"Pindex","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/84242-e25d59b78d3ae56d951e03ced7782260-thumb.png","angellist_url":"http://angel.co/pindex","tagline":"Free-form
59
- geolocation-based tagging."},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8czkb","timestamp":"2012-04-21T22:49:29Z","item":{"type":"Follow","ids":[4065834]},"description":"<a
60
- href=\"http://angel.co/manuel-roumain\" class=\"feed_link\" data-id=\"111258\"
61
- data-type=\"User\">Manuel Roumain</a> followed <a href=\"http://angel.co/thinkfuse\"
62
- class=\"feed_link\" data-id=\"79741\" data-type=\"Startup\">Thinkfuse</a>","text":null,"actor":{"type":"User","id":111258,"name":"Manuel
63
- Roumain","image":"https://s3.amazonaws.com/photos.angel.co/users/111258-medium?1333002057","angellist_url":"http://angel.co/manuel-roumain","tagline":"Chief
64
- Investment Officer at EJS Investment Management SA"},"target":{"type":"Startup","id":79741,"name":"Thinkfuse","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/79741-d9ffe1963dfd8d0f3604df842a3beebd-thumb.gif","angellist_url":"http://angel.co/thinkfuse","tagline":"Share
65
- your progress."},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8czev","timestamp":"2012-04-21T22:44:25Z","item":{"type":"Follow","ids":[4065746]},"description":"<a
66
- href=\"http://angel.co/rick-myers\" class=\"feed_link\" data-id=\"102105\"
67
- data-type=\"User\">Rick Myers</a> followed <a href=\"http://angel.co/36kr\"
68
- class=\"feed_link\" data-id=\"56604\" data-type=\"Startup\">36Kr</a>","text":null,"actor":{"type":"User","id":102105,"name":"Rick
69
- Myers","image":"https://s3.amazonaws.com/photos.angel.co/users/102105-medium?1332685385","angellist_url":"http://angel.co/rick-myers","tagline":"Digital
70
- Media & Entertainment"},"target":{"type":"Startup","id":56604,"name":"36Kr","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/56604-36fe76f03975afab7b2c58a2d0ff312b-thumb.","angellist_url":"http://angel.co/36kr","tagline":"\"TechCrunch\"
71
- & \"Angellist\" of China"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8czcd","timestamp":"2012-04-21T22:42:49Z","item":{"type":"Follow","ids":[4065743]},"description":"<a
72
- href=\"http://angel.co/stevebrotman\" class=\"feed_link\" data-id=\"1971\"
73
- data-type=\"User\">Steve Brotman</a> followed <a href=\"http://angel.co/zeel-networks\"
74
- class=\"feed_link\" data-id=\"13071\" data-type=\"Startup\">Zeel Networks</a>","text":null,"actor":{"type":"User","id":1971,"name":"Steve
75
- Brotman","image":"https://s3.amazonaws.com/photos.angel.co/users/1971-medium?1294804022","angellist_url":"http://angel.co/stevebrotman","tagline":"NYC
76
- based Internet 1.0 entrepreneur turned NYC based VC 2.0. Started own fund,
77
- made some good investments. Making more."},"target":{"type":"Startup","id":13071,"name":"Zeel
78
- Networks","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/13071-5b470092a0ee31f5cd35fa692ec224ca-thumb.jpg","angellist_url":"http://angel.co/zeel-networks","tagline":"ZocDoc
79
- for alternative healthcare"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cyXr","timestamp":"2012-04-21T22:35:49Z","item":{"type":"StartupRole","ids":[213352]},"description":"<a
80
- href=\"http://angel.co/mlarchambault\" class=\"feed_link\" data-id=\"3515\"
81
- data-type=\"User\">Martin-Luc Archambault</a> invested in <a href=\"http://angel.co/crowdbase\"
82
- class=\"feed_link\" data-id=\"19579\" data-type=\"Startup\">Crowdbase</a>''s
83
- previous round","text":null,"actor":{"type":"User","id":3515,"name":"Martin-Luc
84
- Archambault","image":"https://s3.amazonaws.com/photos.angel.co/users/3515-medium?1294804363","angellist_url":"http://angel.co/mlarchambault","tagline":"CEO
85
- of Wajam, Chairman of Bolidea, Entrepreneur & Angel Investor"},"target":{"type":"Startup","id":19579,"name":"Crowdbase","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/19579-996f39adbab0198103fcfd65eb4abd33-thumb.png","angellist_url":"http://angel.co/crowdbase","tagline":"Knowledge
86
- management made social and easy."},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cyFk","timestamp":"2012-04-21T22:30:17Z","item":{"type":"StartupRole","ids":[213455]},"description":"<a
87
- href=\"http://angel.co/ehmoore\" class=\"feed_link\" data-id=\"38597\" data-type=\"User\">Erik
88
- Moore</a> invested in <a href=\"http://angel.co/fandeavor\" class=\"feed_link\"
89
- data-id=\"82511\" data-type=\"Startup\">Fandeavor</a>''s previous round","text":null,"actor":{"type":"User","id":38597,"name":"Erik
90
- Moore","image":"https://s3.amazonaws.com/photos.angel.co/users/38597-medium?1308605845","angellist_url":"http://angel.co/ehmoore","tagline":"Former
91
- bond trader (merrill lynch). \nAmong first to invest in zappos. \nCo-founded
92
- flicklaunch.\nDartmouth BA Wharton MBA\nBest Trade: mentoring inner city kids"},"target":{"type":"Startup","id":82511,"name":"Fandeavor","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/82511-5421dcccf150a780af74c790559bc45b-thumb.jpg","angellist_url":"http://angel.co/fandeavor","tagline":"Exclusive
93
- Experiences for Enthusiastic Fans"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cyAB","timestamp":"2012-04-21T22:25:32Z","item":{"type":"Follow","ids":[4065525]},"description":"<a
94
- href=\"http://angel.co/davidcohen\" class=\"feed_link\" data-id=\"143\" data-type=\"User\">David
95
- Cohen</a> followed <a href=\"http://angel.co/fluent\" class=\"feed_link\"
96
- data-id=\"74841\" data-type=\"Startup\">Fluent</a>","text":null,"actor":{"type":"User","id":143,"name":"David
97
- Cohen","image":"https://s3.amazonaws.com/photos.angel.co/users/143-medium?1294803546","angellist_url":"http://angel.co/davidcohen","tagline":"Founder/CEO
98
- of TechStars. Investor in Amazing Startups. Geeky to the bone.\nhttp://www.davidgcohen.com"},"target":{"type":"Startup","id":74841,"name":"Fluent","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/74841-303b2e81791f47b198a64c841ff32d4f-thumb.png","angellist_url":"http://angel.co/fluent","tagline":"The
99
- future of email"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cwRy","timestamp":"2012-04-21T22:20:34Z","item":{"type":"Follow","ids":[4065512]},"description":"<a
100
- href=\"http://angel.co/roykaller\" class=\"feed_link\" data-id=\"11175\" data-type=\"User\">Roy
101
- Kaller</a> followed <a href=\"http://angel.co/lucky-sort\" class=\"feed_link\"
102
- data-id=\"15933\" data-type=\"Startup\">Lucky Sort</a>","text":null,"actor":{"type":"User","id":11175,"name":"Roy
103
- Kaller","image":"https://s3.amazonaws.com/photos.angel.co/users/11175-medium?1299548369","angellist_url":"http://angel.co/roykaller","tagline":"Investor
104
- in Social Leverage, Gain Technology (Sold in 2002 for $34M)."},"target":{"type":"Startup","id":15933,"name":"Lucky
105
- Sort","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/15933-b7bc531fde24e57bfb2718c7a45a8fe2-thumb.jpeg","angellist_url":"http://angel.co/lucky-sort","tagline":"Cloud
106
- based platform for visual and statistical text analytics."},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cx3S","timestamp":"2012-04-21T22:19:57Z","item":{"type":"Follow","ids":[4065510]},"description":"<a
107
- href=\"http://angel.co/danielle-morrill\" class=\"feed_link\" data-id=\"22676\"
108
- data-type=\"User\">Danielle Morrill</a> followed <a href=\"http://angel.co/wedgies\"
109
- class=\"feed_link\" data-id=\"82357\" data-type=\"Startup\">wedgies</a>","text":null,"actor":{"type":"User","id":22676,"name":"Danielle
110
- Morrill","image":"https://s3.amazonaws.com/photos.angel.co/users/22676-medium?1306966196","angellist_url":"http://angel.co/danielle-morrill","tagline":"Director
111
- of Marketing at Twilio. 500 Startups Mentor. Forbes 30 Under 30 in Social/Mobile
112
- Tech 2011. Code enough to be dangerous, execute like a freight train."},"target":{"type":"Startup","id":82357,"name":"wedgies","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/82357-b5dbc1ee3a0eb44ecce46fcb837d748a-thumb.jpg","angellist_url":"http://angel.co/wedgies","tagline":"Simple
113
- Surveys to Share with Friends"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cwbS","timestamp":"2012-04-21T22:19:21Z","item":{"type":"StartupRole","ids":[213585]},"description":"<a
114
- href=\"http://angel.co/roykaller\" class=\"feed_link\" data-id=\"11175\" data-type=\"User\">Roy
115
- Kaller</a> invested in <a href=\"http://angel.co/sendhub\" class=\"feed_link\"
116
- data-id=\"21042\" data-type=\"Startup\">SendHub</a>''s previous round","text":null,"actor":{"type":"User","id":11175,"name":"Roy
117
- Kaller","image":"https://s3.amazonaws.com/photos.angel.co/users/11175-medium?1299548369","angellist_url":"http://angel.co/roykaller","tagline":"Investor
118
- in Social Leverage, Gain Technology (Sold in 2002 for $34M)."},"target":{"type":"Startup","id":21042,"name":"SendHub","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/21042-dde51249b559a67e46c013acb1e2168d-thumb.png","angellist_url":"http://angel.co/sendhub","tagline":"SMS
119
- for Organizations (YC W12)"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8citm","timestamp":"2012-04-21T22:09:37Z","item":{"type":"Follow","ids":[4065401,4065233,4065110,4065108,4065003,4064904]},"description":"<a
120
- href=\"http://angel.co/gonzalo-costa\" class=\"feed_link\" data-id=\"50678\"
121
- data-type=\"User\">Gonzalo Costa</a>, <a href=\"http://angel.co/staenman\"
122
- class=\"feed_link\" data-id=\"57\" data-type=\"User\">Jon Staenberg</a>, <a
123
- href=\"http://angel.co/christian-h-leeb\" class=\"feed_link\" data-id=\"6113\"
124
- data-type=\"User\">Christian H. Leeb</a> and 3 others followed <a href=\"http://angel.co/bizelo\"
125
- class=\"feed_link\" data-id=\"76424\" data-type=\"Startup\">Bizelo</a>","text":null,"actor":{"type":"User","id":50678,"name":"Gonzalo
126
- Costa","image":"https://s3.amazonaws.com/photos.angel.co/users/50678-medium?1313376500","angellist_url":"http://angel.co/gonzalo-costa","tagline":"Co-founder
127
- and Director at NXTP Labs"},"target":{"type":"Startup","id":76424,"name":"Bizelo","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/76424-41488903f1edaecfbdbb83e6efda6706-thumb.png","angellist_url":"http://angel.co/bizelo","tagline":"Simplifying
128
- Small Business Apps"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cvCW","timestamp":"2012-04-21T21:56:40Z","item":{"type":"StartupRole","ids":[150430]},"description":"<a
129
- href=\"http://angel.co/eugene_zhang\" class=\"feed_link\" data-id=\"25906\"
130
- data-type=\"User\">Eugene Zhang</a> invested in <a href=\"http://angel.co/netplenish\"
131
- class=\"feed_link\" data-id=\"9580\" data-type=\"Startup\">NetPlenish</a>''s
132
- previous round","text":null,"actor":{"type":"User","id":25906,"name":"Eugene
133
- Zhang","image":"https://s3.amazonaws.com/photos.angel.co/users/25906-medium?1305186975","angellist_url":"http://angel.co/eugene_zhang","tagline":"Head
134
- InnoSpring - US-China Startup Incubator; MD TEEC Angel Fund; Founder JEDA;
135
- Member of Tsinghua Univ. Entrepreneurs & Executive Club (TEEC)."},"target":{"type":"Startup","id":9580,"name":"NetPlenish","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/9580-369208e3cd79e5b734eca9ef7ea4521a-thumb.jpg","angellist_url":"http://angel.co/netplenish","tagline":"Price
136
- comparison meets automatic replenishment on the items you buy over and over
137
- again."},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cvhG","timestamp":"2012-04-21T21:54:37Z","item":{"type":"Update","ids":[34794]},"description":"<a
138
- href=\"http://angel.co/eugene_zhang\" class=\"feed_link\" data-id=\"25906\"
139
- data-type=\"User\">Eugene Zhang</a> updated their mini-resume","text":"Head
140
- InnoSpring - US-China Startup Incubator; MD TEEC Angel Fund; Founder JEDA;
141
- Member of Tsinghua Univ. Entrepreneurs & Executive Club (TEEC).","actor":{"type":"User","id":25906,"name":"Eugene
142
- Zhang","image":"https://s3.amazonaws.com/photos.angel.co/users/25906-medium?1305186975","angellist_url":"http://angel.co/eugene_zhang","tagline":"Head
143
- InnoSpring - US-China Startup Incubator; MD TEEC Angel Fund; Founder JEDA;
144
- Member of Tsinghua Univ. Entrepreneurs & Executive Club (TEEC)."},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cugy","timestamp":"2012-04-21T21:41:31Z","item":{"type":"StartupRole","ids":[213568]},"description":"<a
145
- href=\"http://angel.co/kal\" class=\"feed_link\" data-id=\"42\" data-type=\"User\">Kal
146
- Vepuri</a> invested in <a href=\"http://angel.co/zenpayroll\" class=\"feed_link\"
147
- data-id=\"78720\" data-type=\"Startup\">ZenPayroll</a>''s previous round","text":null,"actor":{"type":"User","id":42,"name":"Kal
148
- Vepuri","image":"https://s3.amazonaws.com/photos.angel.co/users/42-medium?1294803469","angellist_url":"http://angel.co/kal","tagline":"Founder
149
- and Chairman, The Trisiras Group."},"target":{"type":"Startup","id":78720,"name":"ZenPayroll","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/78720-5fd32474df5e2975289243a099b78635-thumb.png","angellist_url":"http://angel.co/zenpayroll","tagline":"Delightful,
150
- modern payroll (YC W12)"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8ctvF","timestamp":"2012-04-21T21:41:20Z","item":{"type":"StartupRole","ids":[213565]},"description":"<a
151
- href=\"http://angel.co/kal\" class=\"feed_link\" data-id=\"42\" data-type=\"User\">Kal
152
- Vepuri</a> invested in <a href=\"http://angel.co/42floors\" class=\"feed_link\"
153
- data-id=\"19928\" data-type=\"Startup\">42Floors</a>''s previous round","text":null,"actor":{"type":"User","id":42,"name":"Kal
154
- Vepuri","image":"https://s3.amazonaws.com/photos.angel.co/users/42-medium?1294803469","angellist_url":"http://angel.co/kal","tagline":"Founder
155
- and Chairman, The Trisiras Group."},"target":{"type":"Startup","id":19928,"name":"42Floors","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/19928-0845bda82c37fb7869e44ce421562049-thumb.png","angellist_url":"http://angel.co/42floors","tagline":"Discover
156
- and create your dream office"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8crBv","timestamp":"2012-04-21T21:36:42Z","item":{"type":"Follow","ids":[4065124]},"description":"<a
157
- href=\"http://angel.co/faisal-aftab\" class=\"feed_link\" data-id=\"67990\"
158
- data-type=\"User\">Faisal Aftab</a> followed <a href=\"http://angel.co/uber\"
159
- class=\"feed_link\" data-id=\"19163\" data-type=\"Startup\">Uber</a>","text":null,"actor":{"type":"User","id":67990,"name":"Faisal
160
- Aftab","image":"https://s3.amazonaws.com/photos.angel.co/users/67990-medium?1329499997","angellist_url":"http://angel.co/faisal-aftab","tagline":"Media
161
- Executive & VC Investor \nCo-Founder & CEO, Pearl Media Group \nPartner, OxonCapital
162
- \u25aa\u25ab"},"target":{"type":"Startup","id":19163,"name":"Uber","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/19163-40b4beea1245cd9262307cd16d9e2e93-thumb.gif","angellist_url":"http://angel.co/uber","tagline":"Everyone''s
163
- Private Driver"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8crv1","timestamp":"2012-04-21T21:36:04Z","item":{"type":"Follow","ids":[4065122]},"description":"<a
164
- href=\"http://angel.co/texassuperangel\" class=\"feed_link\" data-id=\"826\"
165
- data-type=\"User\">Rudy Garza</a> followed <a href=\"http://angel.co/atavist\"
166
- class=\"feed_link\" data-id=\"81380\" data-type=\"Startup\">Atavist</a>","text":null,"actor":{"type":"User","id":826,"name":"Rudy
167
- Garza","image":"https://s3.amazonaws.com/photos.angel.co/users/826-medium?1294803783","angellist_url":"http://angel.co/texassuperangel","tagline":"Founder
168
- of G51 Capital. Investor in SocialWare, Memeo, Motion Computing, iTaggit/PriceAdvice.com."},"target":{"type":"Startup","id":81380,"name":"Atavist","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/81380-2b682cd6158fef256f2eae5a4ae5d4cb-thumb.jpg","angellist_url":"http://angel.co/atavist","tagline":"Software
169
- for publishing anything, everywhere\u2014from a disruptive longform publisher"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8crf4","timestamp":"2012-04-21T21:33:45Z","item":{"type":"StartupRole","ids":[213557]},"description":"<a
170
- href=\"http://angel.co/photomatt\" class=\"feed_link\" data-id=\"131\" data-type=\"User\">Matt
171
- Mullenweg</a> invested in <a href=\"http://angel.co/enterproid\" class=\"feed_link\"
172
- data-id=\"19167\" data-type=\"Startup\">Enterproid</a>''s previous round","text":null,"actor":{"type":"User","id":131,"name":"Matt
173
- Mullenweg","image":"https://s3.amazonaws.com/photos.angel.co/users/131-medium?1294803538","angellist_url":"http://angel.co/photomatt","tagline":"WordPress,
174
- Automattic, Akismet, Polldaddy, VaultPress, Gravatar...\r\nhttp://ma.tt/"},"target":{"type":"Startup","id":19167,"name":"Enterproid","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/19167-e1c54a4d902bbd0bf54855968a8c71d8-thumb.jpeg","angellist_url":"http://angel.co/enterproid","tagline":"Work
175
- and personal profiles on a single Android device"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cr2N","timestamp":"2012-04-21T21:33:34Z","item":{"type":"StartupRole","ids":[213556]},"description":"<a
176
- href=\"http://angel.co/photomatt\" class=\"feed_link\" data-id=\"131\" data-type=\"User\">Matt
177
- Mullenweg</a> invested in <a href=\"http://angel.co/chartbeat\" class=\"feed_link\"
178
- data-id=\"79156\" data-type=\"Startup\">Chartbeat</a>''s previous round","text":null,"actor":{"type":"User","id":131,"name":"Matt
179
- Mullenweg","image":"https://s3.amazonaws.com/photos.angel.co/users/131-medium?1294803538","angellist_url":"http://angel.co/photomatt","tagline":"WordPress,
180
- Automattic, Akismet, Polldaddy, VaultPress, Gravatar...\r\nhttp://ma.tt/"},"target":{"type":"Startup","id":79156,"name":"Chartbeat","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/79156-580f3527243bcb36f275150a69325f38-thumb.png","angellist_url":"http://angel.co/chartbeat","tagline":"Real-time
181
- data for front-line doers"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cq5E","timestamp":"2012-04-21T21:33:22Z","item":{"type":"StartupRole","ids":[213555]},"description":"<a
182
- href=\"http://angel.co/photomatt\" class=\"feed_link\" data-id=\"131\" data-type=\"User\">Matt
183
- Mullenweg</a> invested in <a href=\"http://angel.co/branchout\" class=\"feed_link\"
184
- data-id=\"19169\" data-type=\"Startup\">BranchOut</a>''s previous round","text":null,"actor":{"type":"User","id":131,"name":"Matt
185
- Mullenweg","image":"https://s3.amazonaws.com/photos.angel.co/users/131-medium?1294803538","angellist_url":"http://angel.co/photomatt","tagline":"WordPress,
186
- Automattic, Akismet, Polldaddy, VaultPress, Gravatar...\r\nhttp://ma.tt/"},"target":{"type":"Startup","id":19169,"name":"BranchOut","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/19169-a50d499908b3f38fc21e179d5d22a34c-thumb.jpg","angellist_url":"http://angel.co/branchout","tagline":"The
187
- largest professional network on Facebook"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cnsY","timestamp":"2012-04-21T21:32:37Z","item":{"type":"StartupRole","ids":[213553]},"description":"<a
188
- href=\"http://angel.co/photomatt\" class=\"feed_link\" data-id=\"131\" data-type=\"User\">Matt
189
- Mullenweg</a> invested in <a href=\"http://angel.co/munchery\" class=\"feed_link\"
190
- data-id=\"2855\" data-type=\"Startup\">Munchery</a>''s previous round","text":null,"actor":{"type":"User","id":131,"name":"Matt
191
- Mullenweg","image":"https://s3.amazonaws.com/photos.angel.co/users/131-medium?1294803538","angellist_url":"http://angel.co/photomatt","tagline":"WordPress,
192
- Automattic, Akismet, Polldaddy, VaultPress, Gravatar...\r\nhttp://ma.tt/"},"target":{"type":"Startup","id":2855,"name":"Munchery","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/2855-2376eeb4f97b7b354ec623e8de980111-thumb.png","angellist_url":"http://angel.co/munchery","tagline":"Personal
193
- chefs for the rest of us"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8ckUQ","timestamp":"2012-04-21T21:29:14Z","item":{"type":"StartupRole","ids":[213547]},"description":"<a
194
- href=\"http://angel.co/photomatt\" class=\"feed_link\" data-id=\"131\" data-type=\"User\">Matt
195
- Mullenweg</a> invested in <a href=\"http://angel.co/memrise\" class=\"feed_link\"
196
- data-id=\"19979\" data-type=\"Startup\">Memrise</a>''s previous round","text":null,"actor":{"type":"User","id":131,"name":"Matt
197
- Mullenweg","image":"https://s3.amazonaws.com/photos.angel.co/users/131-medium?1294803538","angellist_url":"http://angel.co/photomatt","tagline":"WordPress,
198
- Automattic, Akismet, Polldaddy, VaultPress, Gravatar...\r\nhttp://ma.tt/"},"target":{"type":"Startup","id":19979,"name":"Memrise","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/19979-744befd35bdee202e3c1807afccb4e2e-thumb.jpg","angellist_url":"http://angel.co/memrise","tagline":"Super-powered
199
- online learning"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8cjgw","timestamp":"2012-04-21T21:18:08Z","item":{"type":"StartupRole","ids":[213531]},"description":"<a
200
- href=\"http://angel.co/toddfederman\" class=\"feed_link\" data-id=\"198\"
201
- data-type=\"User\">Todd Federman</a> invested in <a href=\"http://angel.co/somolend\"
202
- class=\"feed_link\" data-id=\"19586\" data-type=\"Startup\">SoMoLend</a>''s
203
- previous round","text":null,"actor":{"type":"User","id":198,"name":"Todd Federman","image":"https://s3.amazonaws.com/photos.angel.co/users/198-medium?1294803577","angellist_url":"http://angel.co/toddfederman","tagline":"Executive
204
- Director of North Coast Angel Fund, founder of One With Nature, former consultant
205
- with DiamondCluster. Duke Fuqua MBA."},"target":{"type":"Startup","id":19586,"name":"SoMoLend","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/19586-260b7874baa802ca20b1aa6fc1451c5d-thumb.png","angellist_url":"http://angel.co/somolend","tagline":"SoMoLend
206
- is a web and mobile based peer to peer lending technology."},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"8ciV3","timestamp":"2012-04-21T21:17:33Z","item":{"type":"StartupRole","ids":[213530]},"description":"<a
207
- href=\"http://angel.co/toddfederman\" class=\"feed_link\" data-id=\"198\"
208
- data-type=\"User\">Todd Federman</a> is advising <a href=\"http://angel.co/somolend\"
209
- class=\"feed_link\" data-id=\"19586\" data-type=\"Startup\">SoMoLend</a>","text":null,"actor":{"type":"User","id":198,"name":"Todd
210
- Federman","image":"https://s3.amazonaws.com/photos.angel.co/users/198-medium?1294803577","angellist_url":"http://angel.co/toddfederman","tagline":"Executive
211
- Director of North Coast Angel Fund, founder of One With Nature, former consultant
212
- with DiamondCluster. Duke Fuqua MBA."},"target":{"type":"Startup","id":19586,"name":"SoMoLend","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/19586-260b7874baa802ca20b1aa6fc1451c5d-thumb.png","angellist_url":"http://angel.co/somolend","tagline":"SoMoLend
213
- is a web and mobile based peer to peer lending technology."},"extra":null,"promoted_by":[],"likes":0,"comments":0}],"total":200,"per_page":25,"page":1,"last_page":8}'
214
- http_version: !!null
215
- recorded_at: Sun, 22 Apr 2012 00:34:46 GMT
216
- - request:
217
- method: get
218
- uri: https://api.angel.co/1/feed/8fCC3
219
- body:
220
- encoding: US-ASCII
221
- string: ''
222
- headers:
223
- Accept:
224
- - application/json
225
- User-Agent:
226
- - AngellistApi Ruby Gem 1.0.1
227
- response:
228
- status:
229
- code: 200
230
- message: !!null
231
- headers:
232
- server:
233
- - nginx/1.0.6
234
- date:
235
- - Mon, 23 Apr 2012 08:23:49 GMT
236
- content-type:
237
- - application/json; charset=utf-8
238
- transfer-encoding:
39
+ X-Ratelimit-Remaining:
40
+ - '997'
41
+ X-Request-Id:
42
+ - 73d14ad03a14a3ef7fbd152e72044994
43
+ X-Runtime:
44
+ - '0.349632'
45
+ X-Ua-Compatible:
46
+ - IE=Edge,chrome=1
47
+ Transfer-Encoding:
239
48
  - chunked
240
- connection:
241
- - close
242
- vary:
243
- - Accept-Encoding, Accept-Encoding
244
- status:
245
- - '200'
246
- x-powered-by:
247
- - Phusion Passenger (mod_rails/mod_rack) 3.0.9
248
- x-ratelimit-limit:
249
- - '1000'
250
- x-ratelimit-remaining:
251
- - '995'
252
- x-thanks:
253
- - For using AngelList. Rock on.
254
- x-runtime:
255
- - '253'
256
- etag:
257
- - ! '"f1be28c6b52242fc4dcd03f45cff4a5a"'
258
- cache-control:
259
- - private, max-age=0, must-revalidate
49
+ Connection:
50
+ - keep-alive
260
51
  body:
261
- encoding: ASCII-8BIT
262
- string: ! '{"id":"8fCC3","timestamp":"2012-04-23T05:48:35Z","item":{"type":"StartupRole","ids":[214219]},"description":"<a
263
- href=\"http://angel.co/howard-marks-2\" class=\"feed_link\" data-id=\"28282\"
264
- data-type=\"User\">Howard Marks</a> invested in <a href=\"http://angel.co/betteryou\"
265
- class=\"feed_link\" data-id=\"64292\" data-type=\"Startup\">BetterYou</a>''s
266
- previous round","text":null,"actor":{"type":"User","id":28282,"name":"Howard
267
- Marks","image":"https://s3.amazonaws.com/photos.angel.co/users/28282-medium?1320429093","angellist_url":"http://angel.co/howard-marks-2","tagline":"co-founder
268
- Activision ATVI $14B cap, founder Acclaim Games (sold to Playdom). Founder
269
- and co-chair Start Engine LA''s largest accelerator."},"target":{"type":"Startup","id":64292,"name":"BetterYou","image":"https://s3.amazonaws.com/photos.angel.co/startups/i/64292-1a6b9b3d5bed81266b07ea3c846442b4-thumb.jpg","angellist_url":"http://angel.co/betteryou","tagline":"Elance
270
- for Wellness Providers"},"extra":null,"promoted_by":[],"likes":0,"comments":0}'
271
- http_version: !!null
272
- recorded_at: Mon, 23 Apr 2012 08:23:49 GMT
273
- recorded_with: VCR 2.1.0
52
+ encoding: UTF-8
53
+ string: '{"feed":[{"id":"2heCKP","timestamp":"2015-04-26T10:22:06Z","item":{"type":"Follow","ids":[41629681,41628055,41624200,41624151,41623872,41623871,41623378,41623359,41623342,41619836,41619834,41619816,41619353,41618947]},"description":"<a
54
+ href=\"https://angel.co/mayankagrawal\" class=\"feed_link\" data-id=\"734459\"
55
+ data-type=\"User\">Mayank Agrawal</a> followed <a href=\"https://angel.co/boingo-wireless\"
56
+ class=\"feed_link\" data-id=\"33078\" data-type=\"Startup\">Boingo Wireless</a>,
57
+ <a href=\"https://angel.co/zesty-1\" class=\"feed_link\" data-id=\"126085\"
58
+ data-type=\"Startup\">Zesty</a>, <a href=\"https://angel.co/twinword\" class=\"feed_link\"
59
+ data-id=\"671606\" data-type=\"Startup\">Twinword</a> and 11 other companies","text":null,"actor":{"type":"User","id":734459,"name":"Mayank
60
+ Agrawal","image":"https://d1qb2nb5cznatu.cloudfront.net/users/734459-medium_jpg?1409403051","angellist_url":"https://angel.co/mayankagrawal","system_user?":false,"tagline":"An
61
+ Enterpreneur with interest in Investing, Business management and startup building"},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heLmb","timestamp":"2015-04-26T10:12:35Z","item":{"type":"Answer","ids":[1534]},"description":"<a
62
+ href=\"https://angel.co/dmitrii-beliakov\" class=\"feed_link\" data-id=\"745235\"
63
+ data-type=\"User\">Dmitrii Beliakov</a> answered the following question about
64
+ <a href=\"https://angel.co/suitestory-inc\" class=\"feed_link\" data-id=\"641030\"
65
+ data-type=\"Startup\">SuiteStory Inc.</a>","text":"Dear Matt,\n\nSorry for
66
+ the delay, for some reason angel.co did not notify me.\nThank you for your
67
+ interest and for the introduction.\n\nWe are currently raising $500K in convertible
68
+ notes. We have pilot hotels, working backend and part of frontend of the website,
69
+ very strong connections with big chain hotels (Starwood, Mariott, Four Seasons)
70
+ thanks to previous experience in this industry. We will be launching around
71
+ September in New York with further expansion across US.\nWe a looking for
72
+ the money for the marketing budget and hiring sales personnel.\n\nIf you think
73
+ this might be interesting to you, let me know. I would be happy to meet and
74
+ tell you more about the project.\nIf that''s not you investment profile (as
75
+ I would gess from you Linkedin page) may be you could recommend someone, who
76
+ invests with similar risk profile?\n\nBest regards,\nDmitrii","actor":{"type":"User","id":745235,"name":"Dmitrii
77
+ Beliakov","image":"https://d1qb2nb5cznatu.cloudfront.net/users/745235-medium_jpg?1410026356","angellist_url":"https://angel.co/dmitrii-beliakov","system_user?":false,"tagline":"Serial
78
+ entrepreneur with 15 years of exec. management experience. Cross-industry
79
+ experience in management, startups. Strong IT skills. EMBA CBS, dean''s list."},"target":{"type":"Startup","id":641030,"name":"SuiteStory
80
+ Inc.","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/641030-6c88234c05361fe0f643d2482c09dd61-thumb_jpg.jpg?buster=1426614779","angellist_url":"https://angel.co/suitestory-inc","system_user?":null,"tagline":"Changing
81
+ the way how people search, discover and book luxury suites"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heKPM","timestamp":"2015-04-26T09:13:28Z","item":{"type":"Press","ids":[238376]},"description":"<a
82
+ href=\"https://angel.co/leizhan-paper-machinery-co\" class=\"feed_link\" data-id=\"584062\"
83
+ data-type=\"Startup\">Leizhan Paper Machinery Co</a> added press from mobile.leizhanchina.com","text":"<a
84
+ href=\"http://mobile.leizhanchina.com/faq/pulp-refining-machines-for-pulp-processing-system/\"
85
+ rel=\"nofollow\" target=\"_blank\">DD refiner for Pulp Refining System</a>","actor":{"type":"Startup","id":584062,"name":"Leizhan
86
+ Paper Machinery Co","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/584062-5cc3086657a199d6a7443861132b38b2-thumb_jpg.jpg?buster=1421735135","angellist_url":"https://angel.co/leizhan-paper-machinery-co","system_user?":null,"tagline":"paper
87
+ and pulp making machinery"},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heKKp","timestamp":"2015-04-26T09:06:05Z","item":{"type":"Follow","ids":[41627623]},"description":"<a
88
+ href=\"https://angel.co/jcoustaury\" class=\"feed_link\" data-id=\"120737\"
89
+ data-type=\"User\">Julien Coustaury</a> followed <a href=\"https://angel.co/abc-accelerator\"
90
+ class=\"feed_link\" data-id=\"633766\" data-type=\"Startup\">ABC Accelerator</a>","text":null,"actor":{"type":"User","id":120737,"name":"Julien
91
+ Coustaury","image":"https://d1qb2nb5cznatu.cloudfront.net/users/120737-medium_jpg?1405527111","angellist_url":"https://angel.co/jcoustaury","system_user?":false,"tagline":"Dream
92
+ big or go home !"},"target":{"type":"Startup","id":633766,"name":"ABC Accelerator","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/633766-faa60b3854ec5b3378eb11e443410726-thumb_jpg.jpg?buster=1425979547","angellist_url":"https://angel.co/abc-accelerator","system_user?":null,"tagline":"Accelerator
93
+ to aid start-ups in South Eastern Europe"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heGUp","timestamp":"2015-04-26T08:40:42Z","item":{"type":"Follow","ids":[41627398,41626918,41624240]},"description":"<a
94
+ href=\"https://angel.co/usmananzaar\" class=\"feed_link\" data-id=\"343075\"
95
+ data-type=\"User\">Othoman Anzer</a>, <a href=\"https://angel.co/prasadm\"
96
+ class=\"feed_link\" data-id=\"407804\" data-type=\"User\">Prasad Mahendra</a>
97
+ and <a href=\"https://angel.co/raphael-leiteritz\" class=\"feed_link\" data-id=\"165334\"
98
+ data-type=\"User\">Raphael Leiteritz</a> followed <a href=\"https://angel.co/flight-vc-consumer-syndicate\"
99
+ class=\"feed_link\" data-id=\"658877\" data-type=\"Startup\">Flight.vc Consumer
100
+ Syndicate</a>","text":null,"actor":{"type":"User","id":343075,"name":"Othoman
101
+ Anzer","image":"https://d1qb2nb5cznatu.cloudfront.net/users/343075-medium_jpg?1405638103","angellist_url":"https://angel.co/usmananzaar","system_user?":false,"tagline":"Lazy,
102
+ lazy investor"},"target":{"type":"Startup","id":658877,"name":"Flight.vc Consumer
103
+ Syndicate","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/658877-89ccd88502db9d964a651ecba6f86d9d-thumb_jpg.jpg?buster=1428097264","angellist_url":"https://angel.co/flight-vc-consumer-syndicate","system_user?":null,"tagline":"Investing
104
+ in the Top Consumer Companies and Entrepreneurs"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heJqM","timestamp":"2015-04-26T08:33:49Z","item":{"type":"Answer","ids":[1533]},"description":"<a
105
+ href=\"https://angel.co/agris-kipurs\" class=\"feed_link\" data-id=\"663571\"
106
+ data-type=\"User\">Agris Kipurs</a> answered the following question about
107
+ <a href=\"https://angel.co/airdog\" class=\"feed_link\" data-id=\"437414\"
108
+ data-type=\"Startup\">Airdog</a>","text":"In order to track agile and speedy
109
+ motion with the precision required in action sports we use sensor fusion technology.
110
+ Instead of relying purely on GPS we put readings from accelerometer, gyroscope,
111
+ barometric air pressure sensor and magnetometer in the equation as well. Companies
112
+ that are looking to enabled purely GPS based following capability are: PlexiDrone,
113
+ EHANG (GHOST), 3D Robotics (IRIS+). IRIS+ is a two man operation. Airdog has
114
+ a dedicated tracking device, irreplaceable when it comes to water sports and
115
+ otherwise demanding conditions. ","actor":{"type":"User","id":663571,"name":"Agris
116
+ Kipurs","image":"https://d1qb2nb5cznatu.cloudfront.net/users/663571-medium_jpg?1421121816","angellist_url":"https://angel.co/agris-kipurs","system_user?":false,"tagline":"Founder
117
+ and COO @Helico Aerospace Industries; Founder @JIC business incubator"},"target":{"type":"Startup","id":437414,"name":"Airdog","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/437414-599b32acbc0a5342ffeaa5cf1f898594-thumb_jpg.jpg?buster=1405293270","angellist_url":"https://angel.co/airdog","system_user?":null,"tagline":"Auto-follow
118
+ drone for action sports"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heJks","timestamp":"2015-04-26T08:23:01Z","item":{"type":"StatusUpdate","ids":[184619]},"description":"<a
119
+ href=\"https://angel.co/pitchxo\" class=\"feed_link\" data-id=\"319588\" data-type=\"Startup\">pitchXO</a>
120
+ updated their status","text":"Instant feedback on your presentations can be
121
+ more than \"it looks good\" http://pitchxo.com/goodies/you-made-a-presentation-but-how-does-it-perform","actor":{"type":"Startup","id":319588,"name":"pitchXO","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/319588-2c50a976e58ec0be38cbc28b24af356c-thumb_jpg.jpg?buster=1389158252","angellist_url":"https://angel.co/pitchxo","system_user?":null,"tagline":"Know
122
+ who views your slides ( great for investor pages )"},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heJih","timestamp":"2015-04-26T08:17:31Z","item":{"type":"Follow","ids":[41627189,41627133]},"description":"<a
123
+ href=\"https://angel.co/playethic-hotmail-com\" class=\"feed_link\" data-id=\"400342\"
124
+ data-type=\"User\">Sajid Rahman</a> followed <a href=\"https://angel.co/kartrocket\"
125
+ class=\"feed_link\" data-id=\"241036\" data-type=\"Startup\">KartRocket</a>
126
+ and <a href=\"https://angel.co/the-elastic-platform\" class=\"feed_link\"
127
+ data-id=\"91315\" data-type=\"Startup\">The Elastic platform</a>","text":null,"actor":{"type":"User","id":400342,"name":"Sajid
128
+ Rahman","image":"https://d1qb2nb5cznatu.cloudfront.net/users/400342-medium_jpg?1413078594","angellist_url":"https://angel.co/playethic-hotmail-com","system_user?":false,"tagline":"Investor
129
+ at over 60 startups. Board Director and advidor at start ups. Director Bangladesh
130
+ @founder-institute "},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heJeD","timestamp":"2015-04-26T07:54:34Z","item":{"type":"Follow","ids":[41626930]},"description":"<a
131
+ href=\"https://angel.co/pjkershaw\" class=\"feed_link\" data-id=\"399598\"
132
+ data-type=\"User\">Patrick Kershaw</a> followed <a href=\"https://angel.co/realcrowd\"
133
+ class=\"feed_link\" data-id=\"163519\" data-type=\"Startup\">RealCrowd</a>","text":null,"actor":{"type":"User","id":399598,"name":"Patrick
134
+ Kershaw","image":"https://d1qb2nb5cznatu.cloudfront.net/users/399598-medium_jpg?1405659843","angellist_url":"https://angel.co/pjkershaw","system_user?":false,"tagline":"Early
135
+ Stage Investor / Proud New Zealander / Asia Focus / Singapore Based "},"target":{"type":"Startup","id":163519,"name":"RealCrowd","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/163519-76337ac7facd2a1ebdf2abc87f571179-thumb_jpg.jpg?buster=1360966462","angellist_url":"https://angel.co/realcrowd","system_user?":null,"tagline":"Platform
136
+ For Accredited Crowd Investing in Commercial Real Estate "},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heJdx","timestamp":"2015-04-26T07:51:59Z","item":{"type":"Follow","ids":[41626925,41626926]},"description":"<a
137
+ href=\"https://angel.co/prasadm\" class=\"feed_link\" data-id=\"407804\" data-type=\"User\">Prasad
138
+ Mahendra</a> followed <a href=\"https://angel.co/newswhip\" class=\"feed_link\"
139
+ data-id=\"139516\" data-type=\"Startup\">NewsWhip</a> and <a href=\"https://angel.co/flight-vc-uk\"
140
+ class=\"feed_link\" data-id=\"553664\" data-type=\"Startup\">Flight.vc UK</a>","text":null,"actor":{"type":"User","id":407804,"name":"Prasad
141
+ Mahendra","image":"https://d1qb2nb5cznatu.cloudfront.net/users/407804-medium_jpg?1405633596","angellist_url":"https://angel.co/prasadm","system_user?":false,"tagline":"Co-founder
142
+ / Founding engineer @ Gimzo5 Inc (Acquired by Google), Director of Software
143
+ Engineering @ Evidence.com, Angel Investor - Tuition.io"},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heJb5","timestamp":"2015-04-26T07:43:49Z","item":{"type":"Question","ids":[3422]},"description":"<a
144
+ href=\"https://angel.co/pjkershaw\" class=\"feed_link\" data-id=\"399598\"
145
+ data-type=\"User\">Patrick Kershaw</a> asked a question about <a href=\"https://angel.co/realcrowd\"
146
+ class=\"feed_link\" data-id=\"163519\" data-type=\"Startup\">RealCrowd</a>","text":"Can
147
+ you please send me the deck. patrick@melrosecapital.asia","actor":{"type":"User","id":399598,"name":"Patrick
148
+ Kershaw","image":"https://d1qb2nb5cznatu.cloudfront.net/users/399598-medium_jpg?1405659843","angellist_url":"https://angel.co/pjkershaw","system_user?":false,"tagline":"Early
149
+ Stage Investor / Proud New Zealander / Asia Focus / Singapore Based "},"target":{"type":"Startup","id":163519,"name":"RealCrowd","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/163519-76337ac7facd2a1ebdf2abc87f571179-thumb_jpg.jpg?buster=1360966462","angellist_url":"https://angel.co/realcrowd","system_user?":null,"tagline":"Platform
150
+ For Accredited Crowd Investing in Commercial Real Estate "},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heHp9","timestamp":"2015-04-26T07:35:18Z","item":{"type":"Press","ids":[238368]},"description":"<a
151
+ href=\"https://angel.co/wayray\" class=\"feed_link\" data-id=\"199659\" data-type=\"Startup\">WayRay</a>
152
+ added press from geektime.com","text":"<a href=\"http://www.geektime.com/2015/03/22/easing-you-into-the-drivers-seat-four-ways-the-connected-car-could-improve-your-ride/\"
153
+ rel=\"nofollow\" target=\"_blank\">Four ways the connected car could improve
154
+ your ride</a>","actor":{"type":"Startup","id":199659,"name":"WayRay","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/199659-adf370377ba4c74ddcdf546edddfa554-thumb_jpg.jpg?buster=1425862234","angellist_url":"https://angel.co/wayray","system_user?":null,"tagline":"The
155
+ world''s first holographic navigation system. "},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heHoB","timestamp":"2015-04-26T07:33:58Z","item":{"type":"Press","ids":[238367]},"description":"<a
156
+ href=\"https://angel.co/wayray\" class=\"feed_link\" data-id=\"199659\" data-type=\"Startup\">WayRay</a>
157
+ added press from forbes.com","text":"<a href=\"http://www.forbes.com/sites/ilyapozin/2015/03/13/6-tech-companies-disrupting-the-daily-drive/\"
158
+ rel=\"nofollow\" target=\"_blank\">6 Tech Companies Disrupting The Daily Drive
159
+ - Forbes</a>","actor":{"type":"Startup","id":199659,"name":"WayRay","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/199659-adf370377ba4c74ddcdf546edddfa554-thumb_jpg.jpg?buster=1425862234","angellist_url":"https://angel.co/wayray","system_user?":null,"tagline":"The
160
+ world''s first holographic navigation system. "},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heHjK","timestamp":"2015-04-26T07:24:14Z","item":{"type":"Follow","ids":[41625345,41625342]},"description":"<a
161
+ href=\"https://angel.co/chandra-kalle\" class=\"feed_link\" data-id=\"20111\"
162
+ data-type=\"User\">Chandra Kalle</a> followed <a href=\"https://angel.co/red-clay\"
163
+ class=\"feed_link\" data-id=\"82275\" data-type=\"Startup\">Red Clay</a> and
164
+ <a href=\"https://angel.co/the-happy-home-company\" class=\"feed_link\" data-id=\"381539\"
165
+ data-type=\"Startup\">The Happy Home Company</a>","text":null,"actor":{"type":"User","id":20111,"name":"Chandra
166
+ Kalle","image":"https://d1qb2nb5cznatu.cloudfront.net/users/20111-medium_jpg?1405450114","angellist_url":"https://angel.co/chandra-kalle","system_user?":false,"tagline":"Founding
167
+ Team @collegefeed-acquired-by-aftercollege, Product @various, Engineering
168
+ @symantec. Product Builder."},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heGWE","timestamp":"2015-04-26T06:48:13Z","item":{"type":"Follow","ids":[41624349]},"description":"<a
169
+ href=\"https://angel.co/jason-lankow\" class=\"feed_link\" data-id=\"113549\"
170
+ data-type=\"User\">Jason Lankow</a> followed <a href=\"https://angel.co/boomtown-accelerator\"
171
+ class=\"feed_link\" data-id=\"331404\" data-type=\"Startup\">Boomtown Accelerator</a>","text":null,"actor":{"type":"User","id":113549,"name":"Jason
172
+ Lankow","image":"https://d1qb2nb5cznatu.cloudfront.net/users/113549-medium_jpg?1405524841","angellist_url":"https://angel.co/jason-lankow","system_user?":false,"tagline":"CEO/Cofounder
173
+ at @visage. Prev. CEO/Cofounder, @column-five. Adjunct Professor, Visualization
174
+ of Information at @columbia-university-1."},"target":{"type":"Startup","id":331404,"name":"Boomtown
175
+ Accelerator","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/331404-9e314a716b35ecf475af2b8b711ffad5-thumb_jpg.jpg?buster=1400459127","angellist_url":"https://angel.co/boomtown-accelerator","system_user?":null,"tagline":"Startup
176
+ accelerator focusing on adtech, IoT, media and marketing startups"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heGVq","timestamp":"2015-04-26T06:36:23Z","item":{"type":"Press","ids":[238365]},"description":"<a
177
+ href=\"https://angel.co/rocket-fizz\" class=\"feed_link\" data-id=\"90823\"
178
+ data-type=\"Startup\">Rocket Fizz</a> added press from stltoday.com","text":"<a
179
+ href=\"http://www.stltoday.com/best-candy-shop/article_45dee4fd-de3d-514d-bb7d-b420c544b0f9.html\"
180
+ rel=\"nofollow\" target=\"_blank\">Best candy shop</a>","actor":{"type":"Startup","id":90823,"name":"Rocket
181
+ Fizz","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/90823-6c344e3bf1202569652653c5e5cceb17-thumb_jpg.jpg?buster=1337222489","angellist_url":"https://angel.co/rocket-fizz","system_user?":null,"tagline":"Candy
182
+ and soda franchisor & store operator with 65 stores"},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heGMc","timestamp":"2015-04-26T06:12:32Z","item":{"type":"Follow","ids":[41623842]},"description":"<a
183
+ href=\"https://angel.co/chintaka-ranatunga\" class=\"feed_link\" data-id=\"381898\"
184
+ data-type=\"User\">Chintaka Ranatunga</a> followed <a href=\"https://angel.co/flight-vc-uk\"
185
+ class=\"feed_link\" data-id=\"553664\" data-type=\"Startup\">Flight.vc UK</a>","text":null,"actor":{"type":"User","id":381898,"name":"Chintaka
186
+ Ranatunga","image":"https://d1qb2nb5cznatu.cloudfront.net/users/381898-medium_jpg?1405652884","angellist_url":"https://angel.co/chintaka-ranatunga","system_user?":false,"tagline":"Seed
187
+ investor in software startups in SE Asia, India, Australia & New Zealand.
188
+ Venture Partner at Sparkbox Ventures.\n"},"target":{"type":"Startup","id":553664,"name":"Flight.vc
189
+ UK","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/553664-25191c23d72a1e410e4199559bba26a2-thumb_jpg.jpg?buster=1418159101","angellist_url":"https://angel.co/flight-vc-uk","system_user?":null,"tagline":"Investing
190
+ in early stage companies "},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heG2f","timestamp":"2015-04-26T05:17:33Z","item":{"type":"Follow","ids":[41622216]},"description":"<a
191
+ href=\"https://angel.co/davidjrodriguez\" class=\"feed_link\" data-id=\"5743\"
192
+ data-type=\"User\">David Rodriguez</a> followed <a href=\"https://angel.co/notation-capital\"
193
+ class=\"feed_link\" data-id=\"538576\" data-type=\"Startup\">Notation Capital</a>","text":null,"actor":{"type":"User","id":5743,"name":"David
194
+ Rodriguez","image":"https://d1qb2nb5cznatu.cloudfront.net/users/5743-medium_jpg?1405438522","angellist_url":"https://angel.co/davidjrodriguez","system_user?":false,"tagline":"Ops
195
+ and finance at @livefyre; Venture Associate at @greycroftvc; former strategy
196
+ consultant and engineer; @dukeu alum; lover of the interwebs"},"target":{"type":"Startup","id":538576,"name":"Notation
197
+ Capital","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/538576-381b1b5ea5667b8784c91c41fdbf9cb1-thumb_jpg.jpg?buster=1416438539","angellist_url":"https://angel.co/notation-capital","system_user?":null,"tagline":"Pre-Seed
198
+ Venture Capital Firm in Brooklyn, NY."},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heFVx","timestamp":"2015-04-26T05:03:56Z","item":{"type":"Follow","ids":[41621905]},"description":"<a
199
+ href=\"https://angel.co/armando-biondi\" class=\"feed_link\" data-id=\"9242\"
200
+ data-type=\"User\">Armando Biondi</a> followed <a href=\"https://angel.co/kamila-dmowska-1\"
201
+ class=\"feed_link\" data-id=\"175088\" data-type=\"Startup\">Kamila Dmowska</a>","text":null,"actor":{"type":"User","id":9242,"name":"Armando
202
+ Biondi","image":"https://d1qb2nb5cznatu.cloudfront.net/users/9242-medium_jpg?1405441888","angellist_url":"https://angel.co/armando-biondi","system_user?":false,"tagline":"Cofounder
203
+ @adespresso & 5 more tech/non-tech companies before. Angel investor in @mattermark
204
+ + other 20 startups. Also: proud #500strong, former Radio Speaker."},"target":{"type":"Startup","id":175088,"name":"Kamila
205
+ Dmowska","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/175088-d3726d7f82c4203d9b4d081a3981f9c6-thumb_jpg.jpg?buster=1361924479","angellist_url":"https://angel.co/kamila-dmowska-1","system_user?":null,"tagline":"A
206
+ cross of Warby Parker and Barneys"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heFRh","timestamp":"2015-04-26T04:51:44Z","item":{"type":"Press","ids":[238364]},"description":"<a
207
+ href=\"https://angel.co/quantomic\" class=\"feed_link\" data-id=\"401077\"
208
+ data-type=\"Startup\">Quantomic</a> added press from austin.com","text":"<a
209
+ href=\"http://austin.com/this-austin-startup-will-get-you-paid-for-sharing-pics-of-your-favorite-stuff/\"
210
+ rel=\"nofollow\" target=\"_blank\">This Austin Startup Will Get You PAID For
211
+ Sharing Pics Of Your Favorite Stuff!</a>","actor":{"type":"Startup","id":401077,"name":"Quantomic","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/401077-6d6439fde689216013d35ce39c39cf2d-thumb_jpg.jpg?buster=1400519552","angellist_url":"https://angel.co/quantomic","system_user?":null,"tagline":"Disruptive,
212
+ Unorthodox Software Development"},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heFQM","timestamp":"2015-04-26T04:47:52Z","item":{"type":"Follow","ids":[41621752]},"description":"<a
213
+ href=\"https://angel.co/pramod-rustagi\" class=\"feed_link\" data-id=\"754424\"
214
+ data-type=\"User\">Pramod Rustagi</a> followed <a href=\"https://angel.co/groundfloor\"
215
+ class=\"feed_link\" data-id=\"272374\" data-type=\"Startup\">GROUNDFLOOR</a>","text":null,"actor":{"type":"User","id":754424,"name":"Pramod
216
+ Rustagi","image":"https://d1qb2nb5cznatu.cloudfront.net/users/754424-medium_jpg?1410478938","angellist_url":"https://angel.co/pramod-rustagi","system_user?":false,"tagline":"MS
217
+ Computer Science from Ohio State University. Software Engineer at SGI, Sun,
218
+ Intel."},"target":{"type":"Startup","id":272374,"name":"GROUNDFLOOR","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/272374-6035f7a48d1cc7dba769677635280e1d-thumb_jpg.jpg?buster=1392567031","angellist_url":"https://angel.co/groundfloor","system_user?":null,"tagline":"Taking
219
+ private lending public"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heFoy","timestamp":"2015-04-26T04:17:11Z","item":{"type":"Follow","ids":[41621069,41620514]},"description":"<a
220
+ href=\"https://angel.co/rob-ness\" class=\"feed_link\" data-id=\"19350\" data-type=\"User\">Rob
221
+ Ness</a> followed <a href=\"https://angel.co/irisvr\" class=\"feed_link\"
222
+ data-id=\"370143\" data-type=\"Startup\">IrisVR</a> and <a href=\"https://angel.co/ad-and-marketing-tech-syndicate\"
223
+ class=\"feed_link\" data-id=\"524505\" data-type=\"Startup\">Ad and Marketing
224
+ Tech Syndicate</a>","text":null,"actor":{"type":"User","id":19350,"name":"Rob
225
+ Ness","image":"https://d1qb2nb5cznatu.cloudfront.net/users/19350-medium_jpg?1411854279","angellist_url":"https://angel.co/rob-ness","system_user?":false,"tagline":"1st
226
+ career as strategist @BoozAllen; 2nd founding successful real estate fund.
227
+ Loving career #3 as angel investor. Served time @harvard, @berkeley.\n\n\n"},"target":null,"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heFqL","timestamp":"2015-04-26T04:02:48Z","item":{"type":"Answer","ids":[1532]},"description":"<a
228
+ href=\"https://angel.co/pushpinder-singh\" class=\"feed_link\" data-id=\"305713\"
229
+ data-type=\"User\">Pushpinder Singh</a> answered the following question about
230
+ <a href=\"https://angel.co/travelkhana\" class=\"feed_link\" data-id=\"209159\"
231
+ data-type=\"Startup\">Travelkhana</a>","text":"Vipul. My e-mail id is Pushpinder@travelkhana.com
232
+ . Can I have your e-mail / contact information so I can send the information
233
+ there? We are not active on Angellist. \n","actor":{"type":"User","id":305713,"name":"Pushpinder
234
+ Singh","image":"https://d1qb2nb5cznatu.cloudfront.net/users/305713-medium_jpg?1405622784","angellist_url":"https://angel.co/pushpinder-singh","system_user?":false,"tagline":null},"target":{"type":"Startup","id":209159,"name":"Travelkhana","image":"https://d1qb2nb5cznatu.cloudfront.net/startups/i/209159-1ddf086c3cae0531d22aa7fec76e25cf-thumb_jpg.jpg?buster=1369069096","angellist_url":"https://angel.co/travelkhana","system_user?":null,"tagline":"Quality
235
+ food on board for Indian long distance train travelers"},"extra":null,"promoted_by":[],"likes":0,"comments":0},{"id":"2heFmP","timestamp":"2015-04-26T03:49:27Z","item":{"type":"Follow","ids":[41620429]},"description":"<a
236
+ href=\"https://angel.co/ping-wu\" class=\"feed_link\" data-id=\"405805\" data-type=\"User\">Ping
237
+ Wu</a> followed <a href=\"https://angel.co/candy-house-inc\" class=\"feed_link\"
238
+ data-id=\"508306\" data-type=\"Startup\">CANDY HOUSE Inc.</a>","text":null,"actor":{"type":"User","id":405805,"name":"Ping
239
+ Wu","image":"https://d1qb2nb5cznatu.cloudfront.net/users/405805-medium_jpg?1405662163","angellist_url":"https://angel.co/ping-wu","system_user?":false,"tagline":"Engineering
240
+ Manager @ Google on Mobile Monetization. Worked at IBM Research and Microsoft
241
+ Research. PhD from UCSB. "},"target":{"type":"Startup","id":508306,"name":"CANDY
242
+ HOUSE Inc.","image":"https://angel.co/images/shared/nopic_startup.png","angellist_url":"https://angel.co/candy-house-inc","system_user?":null,"tagline":""},"extra":null,"promoted_by":[],"likes":0,"comments":0}],"total":100,"per_page":25,"page":1,"last_page":4}'
243
+ http_version:
244
+ recorded_at: Sun, 26 Apr 2015 10:46:17 GMT
245
+ recorded_with: VCR 2.9.3