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,2052 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.angel.co/1/jobs
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
+ - Mon, 23 Apr 2012 04:12:50 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
+ - '997'
39
+ x-thanks:
40
+ - For using AngelList. Rock on.
41
+ x-runtime:
42
+ - '1100'
43
+ etag:
44
+ - ! '"dd48b8e1b82b3788c73d456546302bf7"'
45
+ cache-control:
46
+ - private, max-age=0, must-revalidate
47
+ body:
48
+ encoding: ASCII-8BIT
49
+ string: ! '[{"id":2450,"title":"Software Engineer","description":"Software Engineer\r\n\r\nWe
50
+ are looking for awesome people to join our engineering team to make products
51
+ that do real work for our users.\r\n\r\nSome problems that we\u2019re tackling
52
+ at Kloudless:\r\n\r\nReal-time, cross-platform collaboration\r\nThere are
53
+ so many collaborative platforms, and everyone has their own favorite. We\u2019re
54
+ solving collaborative content generation with real-time syncing and sharing.\r\n\r\nDocument
55
+ recommendations\r\nWe want the user to think as little as possible. That requires
56
+ us to be as intelligent as possible. Whether you\u2019re trying to rediscover
57
+ old documents or you\u2019re in process of creating new ones, \r\n\r\nHandling
58
+ LOTS of data\r\nNot only do we need speedy indexers to make information immediately
59
+ available to our users, we collect a ton of usage data in order to make recommendations
60
+ and improve user experience.\r\n\r\n\r\nMust-haves\r\nNo specific requirements.
61
+ You must be an exceptional problem solver with an understanding of current
62
+ web technology and have a passion for writing great code and building impactful
63
+ products. \r\n\r\nBonus Points\r\nExperience with a scripting language and
64
+ be able to pick up similar languages quickly (we use Python)\r\n","job_type":"fulltime","created_at":"2012-04-16T09:01:07Z","updated_at":"2012-04-23T01:20:40Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":2.0,"equity_vest":4.0,"salary_min":80000,"salary_max":100000,"angellist_url":"http://angel.co/kloudless/recruiting/2450-software-engineer","startup":{"id":24248,"hidden":false,"community_profile":false,"name":"Kloudless","angellist_url":"http://angel.co/kloudless","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24248-82142422e4fbce9a7375264c82489982-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24248-82142422e4fbce9a7375264c82489982-thumb.png","product_desc":"Kloudless
65
+ is a free service that offloads files from your inbox to your favorite storage
66
+ system (Dropbox, Box, local). We enable better management, search, and collaboration
67
+ for your email attachments.\n\nKloudless was founded by a team of four UC
68
+ Berkeley graduates in August 2011. Kloudless has received many accolades both
69
+ in the U.S. and internationally. We are part of the inaugural class at the
70
+ new Skydeck Incubator, which is backed by UC Berkeley and the Lawrence Berkeley
71
+ National Laboratory.","high_concept":"Making your inbox better and your attachments
72
+ smarter","follower_count":143,"company_url":"http://kloudless.com/"},"tags":[{"id":14766,"tag_type":"SkillTag","name":"software
73
+ engineering","display_name":"Software Engineering","angellist_url":"http://angel.co/software-engineering"},{"id":15670,"tag_type":"SkillTag","name":"software
74
+ development","display_name":"Software Development","angellist_url":"http://angel.co/software-development"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1681,"tag_type":"LocationTag","name":"silicon
75
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1692,"tag_type":"LocationTag","name":"san
76
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1697,"tag_type":"LocationTag","name":"berkeley","display_name":"Berkeley","angellist_url":"http://angel.co/berkeley"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2642,"title":"Developer","description":"We
77
+ are looking for somebody who can create Wordpress plugins for the website.
78
+ You can be anywhere in the world and we do know what our first job for you
79
+ would be.","job_type":"fulltime","created_at":"2012-04-22T23:37:40Z","updated_at":"2012-04-22T23:43:08Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":15.0,"equity_vest":4.0,"salary_min":1000,"salary_max":2000,"angellist_url":"http://angel.co/commonhype/recruiting/2642-developer","startup":{"id":84116,"hidden":false,"community_profile":false,"name":"COMMONHype","angellist_url":"http://angel.co/commonhype","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84116-5cf4ed7050a8aecd469de2afb6f069a9-medium.jpeg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84116-5cf4ed7050a8aecd469de2afb6f069a9-thumb.jpeg","product_desc":"An
80
+ online magazine for art, business, design, lifestyle, style, and technology.\n\nNobody
81
+ has nailed down the most efficient and effective Internet publishing business
82
+ model and we think we''ve got it. If you''re interested in learning more about
83
+ this, please shoot us a message.","high_concept":"Social content creation
84
+ and distribution.","follower_count":2,"company_url":"http://commonhype.com/"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":19006,"tag_type":"SkillTag","name":"wordpress","display_name":"Wordpress","angellist_url":"http://angel.co/wordpress-1"},{"id":78759,"tag_type":"SkillTag","name":"css/html","display_name":"CSS/HTML","angellist_url":"http://angel.co/css-html"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2640,"title":"User
85
+ Experience Wizard","description":"We are looking for a user experience whiz
86
+ with an eye for design and killer UI coding skills to join our team of designers
87
+ and engineers. Must be familiar with dynamic media-query driven UX generation
88
+ for web and native apps. Must demonstrate extensive/exceptional Javascript/HTML5/SASS/SCSS
89
+ experience. GWT, JQUERY or equivalent framework experience also a must. AJAX/AHAH,
90
+ JSON/REST experience a plus.","job_type":"fulltime","created_at":"2012-04-22T20:33:50Z","updated_at":"2012-04-22T21:00:57Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":2.0,"equity_vest":4.0,"salary_min":100000,"salary_max":150000,"angellist_url":"http://angel.co/hopskoch/recruiting/2640-user-experience-wizard","startup":{"id":1382,"hidden":false,"community_profile":false,"name":"Hopskoch","angellist_url":"http://angel.co/hopskoch","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1382-5d0c32f044b3f85729fa081ffc3c7c90-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1382-5d0c32f044b3f85729fa081ffc3c7c90-thumb.png","product_desc":"At
91
+ Hopskoch, we''re building games as a service engagement marketing. Marketers
92
+ and advertisers use Hopskoch to add games experiences to their campaigns across
93
+ web, social, mobile and offline media assets in minutes, to engage, boost
94
+ viral marketing and generate leads. ","high_concept":"Games as a service for
95
+ engagement marketing","follower_count":39,"company_url":"http://www.hopskoch.com"},"tags":[{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":16022,"tag_type":"SkillTag","name":"ajax","display_name":"AJAX","angellist_url":"http://angel.co/ajax"},{"id":16814,"tag_type":"SkillTag","name":"html5","display_name":"HTML5","angellist_url":"http://angel.co/html5"},{"id":22690,"tag_type":"SkillTag","name":"adobe
96
+ creative suite","display_name":"Adobe Creative Suite","angellist_url":"http://angel.co/adobe-creative-suite"},{"id":27160,"tag_type":"SkillTag","name":"gwt","display_name":"GWT","angellist_url":"http://angel.co/gwt"},{"id":38078,"tag_type":"SkillTag","name":"adobe
97
+ photoshop","display_name":"Adobe Photoshop","angellist_url":"http://angel.co/adobe-photoshop"},{"id":38079,"tag_type":"SkillTag","name":"adobe
98
+ illustrator","display_name":"Adobe Illustrator","angellist_url":"http://angel.co/adobe-illustrator"},{"id":79916,"tag_type":"SkillTag","name":"scss/sass","display_name":"SCSS/Sass","angellist_url":"http://angel.co/scss-sass"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1664,"tag_type":"LocationTag","name":"new
99
+ york, ny","display_name":"New York City","angellist_url":"http://angel.co/new-york-ny-1"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2638,"title":"Intraday
100
+ High Frequency Quant Trader","description":"Work with prop trading team to
101
+ develop strategies for equity and ETF markets with strong quantitative background
102
+ working in developing systematic, intraday trading strategies. ","job_type":"fulltime","created_at":"2012-04-22T18:38:47Z","updated_at":"2012-04-22T19:01:07Z","equity_cliff":1.0,"equity_min":0.25,"equity_max":0.5,"equity_vest":4.0,"salary_min":180000,"salary_max":225000,"angellist_url":"http://angel.co/ultratick/recruiting/2638-intraday-high-frequency-quant-trader","startup":{"id":24633,"hidden":false,"community_profile":false,"name":"UltraTick","angellist_url":"http://angel.co/ultratick","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24633-ebd65e82d33c4c8f32e9f44c48261050-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24633-ebd65e82d33c4c8f32e9f44c48261050-thumb.png","product_desc":"UltraTick
103
+ Mobile helps individual investors research portfolio performance by providing
104
+ the user an intuitive search interface for a stock or ETF by its name or symbol.\n\nOur
105
+ current app runs on iPhone and Android phones. We are planning on releasing
106
+ a tablet optimized version with comprehensive portfolio tracking and management
107
+ functionalities, in addition to real-time market quotes, as well as receiving
108
+ quantitative intelligence on their portfolios held at brokerages. \n","high_concept":"Algorithmic
109
+ analysis tool for stocks","follower_count":12,"company_url":"http://www.ultratick.com"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":21803,"tag_type":"SkillTag","name":"r","display_name":"R","angellist_url":"http://angel.co/r-2"},{"id":27159,"tag_type":"SkillTag","name":"c/c++","display_name":"C/C++","angellist_url":"http://angel.co/c-c-1"},{"id":83919,"tag_type":"SkillTag","name":"rattle","display_name":"Rattle","angellist_url":"http://angel.co/rattle"},{"id":1626,"tag_type":"LocationTag","name":"chicago","display_name":"Chicago","angellist_url":"http://angel.co/chicago"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1653,"tag_type":"LocationTag","name":"los
110
+ angeles","display_name":"Los Angeles","angellist_url":"http://angel.co/los-angeles"},{"id":1664,"tag_type":"LocationTag","name":"new
111
+ york, ny","display_name":"New York City","angellist_url":"http://angel.co/new-york-ny-1"},{"id":1692,"tag_type":"LocationTag","name":"san
112
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2636,"title":"Econometrics
113
+ Modeling Engineer","description":"Expertise in modeling and analysis of Probability
114
+ of Default and Implied Rating, Credit Default Swap liquidity, multi-currency
115
+ Credit Default Swap valuation, short term forecasts, CDS, Corporate Bond.
116
+ Pricing knowledge of credit derivatives such as credit default swaps, corporate
117
+ bonds is required, fixed income instruments, option pricing techniques and
118
+ econometrics techniques. ","job_type":"fulltime","created_at":"2012-04-22T18:18:04Z","updated_at":"2012-04-22T18:40:41Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":1.0,"equity_vest":4.0,"salary_min":250000,"salary_max":325000,"angellist_url":"http://angel.co/ultratick/recruiting/2636-econometrics-modeling-engineer","startup":{"id":24633,"hidden":false,"community_profile":false,"name":"UltraTick","angellist_url":"http://angel.co/ultratick","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24633-ebd65e82d33c4c8f32e9f44c48261050-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24633-ebd65e82d33c4c8f32e9f44c48261050-thumb.png","product_desc":"UltraTick
119
+ Mobile helps individual investors research portfolio performance by providing
120
+ the user an intuitive search interface for a stock or ETF by its name or symbol.\n\nOur
121
+ current app runs on iPhone and Android phones. We are planning on releasing
122
+ a tablet optimized version with comprehensive portfolio tracking and management
123
+ functionalities, in addition to real-time market quotes, as well as receiving
124
+ quantitative intelligence on their portfolios held at brokerages. \n","high_concept":"Algorithmic
125
+ analysis tool for stocks","follower_count":12,"company_url":"http://www.ultratick.com"},"tags":[{"id":14779,"tag_type":"SkillTag","name":"c++","display_name":"C++","angellist_url":"http://angel.co/c"},{"id":14780,"tag_type":"SkillTag","name":"java","display_name":"Java","angellist_url":"http://angel.co/java"},{"id":15850,"tag_type":"SkillTag","name":"sql","display_name":"SQL","angellist_url":"http://angel.co/sql"},{"id":21803,"tag_type":"SkillTag","name":"r","display_name":"R","angellist_url":"http://angel.co/r-2"},{"id":83919,"tag_type":"SkillTag","name":"rattle","display_name":"Rattle","angellist_url":"http://angel.co/rattle"},{"id":83922,"tag_type":"SkillTag","name":"sas/stata/s-plus","display_name":"SAS/STATA/S-Plus","angellist_url":"http://angel.co/sas-stata-s-plus"},{"id":1626,"tag_type":"LocationTag","name":"chicago","display_name":"Chicago","angellist_url":"http://angel.co/chicago"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1653,"tag_type":"LocationTag","name":"los
126
+ angeles","display_name":"Los Angeles","angellist_url":"http://angel.co/los-angeles"},{"id":1664,"tag_type":"LocationTag","name":"new
127
+ york, ny","display_name":"New York City","angellist_url":"http://angel.co/new-york-ny-1"},{"id":1692,"tag_type":"LocationTag","name":"san
128
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2635,"title":"Market
129
+ Data Specialist","description":"Proficient understanding of high frequency
130
+ trading. Work with quant traders and feed providers to optimize data access.
131
+ Proficient scripting and OO programming, with strong mathematics background.
132
+ ","job_type":"fulltime","created_at":"2012-04-22T18:16:05Z","updated_at":"2012-04-22T18:20:42Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":0.25,"equity_vest":4.0,"salary_min":150000,"salary_max":180000,"angellist_url":"http://angel.co/ultratick/recruiting/2635-market-data-specialist","startup":{"id":24633,"hidden":false,"community_profile":false,"name":"UltraTick","angellist_url":"http://angel.co/ultratick","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24633-ebd65e82d33c4c8f32e9f44c48261050-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24633-ebd65e82d33c4c8f32e9f44c48261050-thumb.png","product_desc":"UltraTick
133
+ Mobile helps individual investors research portfolio performance by providing
134
+ the user an intuitive search interface for a stock or ETF by its name or symbol.\n\nOur
135
+ current app runs on iPhone and Android phones. We are planning on releasing
136
+ a tablet optimized version with comprehensive portfolio tracking and management
137
+ functionalities, in addition to real-time market quotes, as well as receiving
138
+ quantitative intelligence on their portfolios held at brokerages. \n","high_concept":"Algorithmic
139
+ analysis tool for stocks","follower_count":12,"company_url":"http://www.ultratick.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":21251,"tag_type":"SkillTag","name":"java
140
+ script","display_name":"JAVA SCRIPT","angellist_url":"http://angel.co/java-script"},{"id":21803,"tag_type":"SkillTag","name":"r","display_name":"R","angellist_url":"http://angel.co/r-2"},{"id":27159,"tag_type":"SkillTag","name":"c/c++","display_name":"C/C++","angellist_url":"http://angel.co/c-c-1"},{"id":83919,"tag_type":"SkillTag","name":"rattle","display_name":"Rattle","angellist_url":"http://angel.co/rattle"},{"id":1626,"tag_type":"LocationTag","name":"chicago","display_name":"Chicago","angellist_url":"http://angel.co/chicago"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1653,"tag_type":"LocationTag","name":"los
141
+ angeles","display_name":"Los Angeles","angellist_url":"http://angel.co/los-angeles"},{"id":1664,"tag_type":"LocationTag","name":"new
142
+ york, ny","display_name":"New York City","angellist_url":"http://angel.co/new-york-ny-1"},{"id":1692,"tag_type":"LocationTag","name":"san
143
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2634,"title":"Quantitative
144
+ Researcher","description":"Strong technical analysis skills with substantial
145
+ previous experience in quantitative modeling, investment portfolio research,
146
+ investment model development. Background in computer science, econophysics,
147
+ mathematics, finance, economics, statistics.","job_type":"fulltime","created_at":"2012-04-22T17:54:43Z","updated_at":"2012-04-22T18:20:42Z","equity_cliff":1.0,"equity_min":0.25,"equity_max":0.5,"equity_vest":4.0,"salary_min":150000,"salary_max":175000,"angellist_url":"http://angel.co/ultratick/recruiting/2634-quantitative-researcher","startup":{"id":24633,"hidden":false,"community_profile":false,"name":"UltraTick","angellist_url":"http://angel.co/ultratick","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24633-ebd65e82d33c4c8f32e9f44c48261050-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24633-ebd65e82d33c4c8f32e9f44c48261050-thumb.png","product_desc":"UltraTick
148
+ Mobile helps individual investors research portfolio performance by providing
149
+ the user an intuitive search interface for a stock or ETF by its name or symbol.\n\nOur
150
+ current app runs on iPhone and Android phones. We are planning on releasing
151
+ a tablet optimized version with comprehensive portfolio tracking and management
152
+ functionalities, in addition to real-time market quotes, as well as receiving
153
+ quantitative intelligence on their portfolios held at brokerages. \n","high_concept":"Algorithmic
154
+ analysis tool for stocks","follower_count":12,"company_url":"http://www.ultratick.com"},"tags":[{"id":14780,"tag_type":"SkillTag","name":"java","display_name":"Java","angellist_url":"http://angel.co/java"},{"id":21803,"tag_type":"SkillTag","name":"r","display_name":"R","angellist_url":"http://angel.co/r-2"},{"id":27159,"tag_type":"SkillTag","name":"c/c++","display_name":"C/C++","angellist_url":"http://angel.co/c-c-1"},{"id":83919,"tag_type":"SkillTag","name":"rattle","display_name":"Rattle","angellist_url":"http://angel.co/rattle"},{"id":1626,"tag_type":"LocationTag","name":"chicago","display_name":"Chicago","angellist_url":"http://angel.co/chicago"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1653,"tag_type":"LocationTag","name":"los
155
+ angeles","display_name":"Los Angeles","angellist_url":"http://angel.co/los-angeles"},{"id":1664,"tag_type":"LocationTag","name":"new
156
+ york, ny","display_name":"New York City","angellist_url":"http://angel.co/new-york-ny-1"},{"id":1681,"tag_type":"LocationTag","name":"silicon
157
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1692,"tag_type":"LocationTag","name":"san
158
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2633,"title":"SEO
159
+ intern summer","description":"Interns are given the opportunity to work on
160
+ a wide variety of fields including SEO, UX, Joomla software installation,
161
+ web anylitics. Technologies leveraged during the work include network virtualization
162
+ and different automation techniques.\r\n","job_type":"fulltime","created_at":"2012-04-22T14:31:49Z","updated_at":"2012-04-22T14:35:16Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":1.5,"equity_vest":4.0,"salary_min":1000,"salary_max":2000,"angellist_url":"http://angel.co/style-me-part-of-sb-intern-limited/recruiting/2633-seo-intern-summer","startup":{"id":84854,"hidden":false,"community_profile":false,"name":"Style.me!
163
+ (part of SB Intern Limited)","angellist_url":"http://angel.co/style-me-part-of-sb-intern-limited","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84854-db350fc89c4bbe1b06076740fc36d02b-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84854-db350fc89c4bbe1b06076740fc36d02b-thumb.png","product_desc":"Among
164
+ a mass of high-street websites, our new boutiqe 88stlye.me is presenting the
165
+ most exciting independent luxury fashion brands. It\u2019s an online collection
166
+ of the next season\u2019s hottest hits and stand out from the mass. Our products
167
+ are not avalible elsewhere online, we are the only company bringing independent
168
+ designers from Central Europe to the international market. \n","high_concept":"independent
169
+ fashion designer e-market","follower_count":2,"company_url":"http://www.88style.me"},"tags":[{"id":15877,"tag_type":"SkillTag","name":"seo/sem","display_name":"SEO/SEM","angellist_url":"http://angel.co/seo-sem"},{"id":28446,"tag_type":"SkillTag","name":"ux
170
+ design and strategy","display_name":"UX Design and Strategy","angellist_url":"http://angel.co/ux-design-and-strategy"},{"id":1695,"tag_type":"LocationTag","name":"london","display_name":"London","angellist_url":"http://angel.co/london"},{"id":2164,"tag_type":"LocationTag","name":"budapest","display_name":"Budapest","angellist_url":"http://angel.co/budapest"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2627,"title":"Front-end
171
+ Dev","description":"An experienced backbonejs dev familiar with bootstrap,
172
+ socketio, media-specific css and backbone-specific stuff including local and
173
+ remote sync and transport configuration (for socketio using juggernaut), AMD
174
+ (requirejs) deployment, jqueryui and other effects (multilayered drag/drop
175
+ zones, touch), page-transitions and history.\r\n\r\nWe''re looking to hire
176
+ a consultant for a 6 month gig with the possibility of a full time hire. Compensation
177
+ listed below is actually for a consulting assignment.","job_type":"fulltime","created_at":"2012-04-22T02:57:15Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":2.0,"equity_vest":1.0,"salary_min":10000,"salary_max":13000,"angellist_url":"http://angel.co/awesome-contracts/recruiting/2627-front-end-dev","startup":{"id":31523,"hidden":false,"community_profile":false,"name":"Awesome
178
+ Contracts","angellist_url":"http://angel.co/awesome-contracts","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31523-23a5815e39741428dd4ef7368aefd966-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31523-23a5815e39741428dd4ef7368aefd966-thumb.jpg","product_desc":"Build,
179
+ store and retrieve contracts.\n\n- One of the largest open-source community-curated
180
+ warehouses of contracts, clauses, definitions and rich content that you can
181
+ customize, adapt or incorporate in your own contracts.\n\n- Upload, email
182
+ or dropbox your contracts and have them automatically indexed for search,
183
+ clause extraction, template creation and tons of other stuff you cannot possible
184
+ do on your desktop\n","high_concept":"Cloudify your Contracts","follower_count":14,"company_url":"https://awesome-contracts.com"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":17000,"tag_type":"SkillTag","name":"node.js","display_name":"Node.js","angellist_url":"http://angel.co/node-js"},{"id":20263,"tag_type":"SkillTag","name":"front
185
+ end development","display_name":"Front-End Development","angellist_url":"http://angel.co/front-end-development"},{"id":31944,"tag_type":"SkillTag","name":"socket.io","display_name":"Socket.io","angellist_url":"http://angel.co/socket-io"},{"id":33096,"tag_type":"SkillTag","name":"backbone.js","display_name":"Backbone.js","angellist_url":"http://angel.co/backbone-js"},{"id":80376,"tag_type":"SkillTag","name":"html5
186
+ & css3","display_name":"HTML5 & CSS3","angellist_url":"http://angel.co/html5-css3"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1682,"tag_type":"LocationTag","name":"singapore","display_name":"Singapore","angellist_url":"http://angel.co/singapore"},{"id":8581,"tag_type":"LocationTag","name":"madras","display_name":"Chennai","angellist_url":"http://angel.co/madras-1"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2626,"title":"Senior
187
+ Back-End Developer MongoDB","description":"Back end architect and engineer
188
+ of scalable Mongo solution.","job_type":"fulltime","created_at":"2012-04-22T02:56:22Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":2.0,"equity_vest":4.0,"salary_min":75000,"salary_max":125000,"angellist_url":"http://angel.co/onspring-technologies/recruiting/2626-senior-back-end-developer-mongodb","startup":{"id":84766,"hidden":false,"community_profile":false,"name":"Onspring
189
+ Technologies","angellist_url":"http://angel.co/onspring-technologies","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84766-5e4a2fc71b22c82be8255d098ecfacdc-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84766-5e4a2fc71b22c82be8255d098ecfacdc-thumb.png","product_desc":"Onspring
190
+ Technologies is a visionary software start-up focused on enhancing enterprise
191
+ productivity. Providing a more modern approach to the user experience, Onspring
192
+ Technologies offers intuitive interfaces and personalized workflow to liberate
193
+ employees from burdensome and time-consuming processes. \n\nThe initial release
194
+ of the Onspring Technologies solutions are scheduled in the near future and
195
+ will be available soon.","high_concept":"Flexible Document and Workflow Platform","follower_count":1,"company_url":"http://www.onspring.com/"},"tags":[{"id":16020,"tag_type":"SkillTag","name":"c#","display_name":"C#","angellist_url":"http://angel.co/c-1"},{"id":16999,"tag_type":"SkillTag","name":"mongodb","display_name":"MongoDB","angellist_url":"http://angel.co/mongodb"},{"id":2011,"tag_type":"LocationTag","name":"overland
196
+ park","display_name":"Overland Park","angellist_url":"http://angel.co/overland-park"},{"id":2680,"tag_type":"LocationTag","name":"kansas
197
+ city, mo","display_name":"Kansas City, MO","angellist_url":"http://angel.co/kansas-city-mo"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2621,"title":"Senior
198
+ Front-End Developer MVC","description":"Expert level .NET web development.
199
+ Preferred experience with MVC 3. Priority given to those with NoSQL or document
200
+ database experience.\r\n","job_type":"fulltime","created_at":"2012-04-22T01:19:48Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":2.0,"equity_vest":4.0,"salary_min":75000,"salary_max":120000,"angellist_url":"http://angel.co/onspring-technologies/recruiting/2621-senior-front-end-developer-mvc","startup":{"id":84766,"hidden":false,"community_profile":false,"name":"Onspring
201
+ Technologies","angellist_url":"http://angel.co/onspring-technologies","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84766-5e4a2fc71b22c82be8255d098ecfacdc-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84766-5e4a2fc71b22c82be8255d098ecfacdc-thumb.png","product_desc":"Onspring
202
+ Technologies is a visionary software start-up focused on enhancing enterprise
203
+ productivity. Providing a more modern approach to the user experience, Onspring
204
+ Technologies offers intuitive interfaces and personalized workflow to liberate
205
+ employees from burdensome and time-consuming processes. \n\nThe initial release
206
+ of the Onspring Technologies solutions are scheduled in the near future and
207
+ will be available soon.","high_concept":"Flexible Document and Workflow Platform","follower_count":1,"company_url":"http://www.onspring.com/"},"tags":[{"id":16999,"tag_type":"SkillTag","name":"mongodb","display_name":"MongoDB","angellist_url":"http://angel.co/mongodb"},{"id":17240,"tag_type":"SkillTag","name":"asp.net","display_name":"ASP.NET","angellist_url":"http://angel.co/asp-net"},{"id":18962,"tag_type":"SkillTag","name":"asp.net
208
+ mvc","display_name":"ASP.NET MVC","angellist_url":"http://angel.co/asp-net-mvc"},{"id":30685,"tag_type":"SkillTag","name":"ravendb","display_name":"Ravendb","angellist_url":"http://angel.co/ravendb"},{"id":41075,"tag_type":"SkillTag","name":"mvc
209
+ 3","display_name":"MVC 3","angellist_url":"http://angel.co/mvc-3"},{"id":2011,"tag_type":"LocationTag","name":"overland
210
+ park","display_name":"Overland Park","angellist_url":"http://angel.co/overland-park"},{"id":2680,"tag_type":"LocationTag","name":"kansas
211
+ city, mo","display_name":"Kansas City, MO","angellist_url":"http://angel.co/kansas-city-mo"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2618,"title":"User
212
+ Experience Director","description":"Looking for someone capable of creating
213
+ a fresh and unique UI/UX for our products. Clean, modern style and a great
214
+ portfolio is a big plus.","job_type":"fulltime","created_at":"2012-04-21T20:31:06Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":0.25,"equity_max":1.0,"equity_vest":4.0,"salary_min":60000,"salary_max":80000,"angellist_url":"http://angel.co/pivotshare/recruiting/2618-user-experience-director","startup":{"id":19105,"hidden":false,"community_profile":false,"name":"Pivotshare","angellist_url":"http://angel.co/pivotshare","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19105-f0fbdcbab770ac85aeb795c491930c3d-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19105-f0fbdcbab770ac85aeb795c491930c3d-thumb.png","product_desc":"Pivotshare
215
+ helps publishers and content creators distribute and monetize their digital
216
+ media. \n\nWe allow our users to create online communities, which are a set
217
+ of websites and applications, to showcase their media. Communities may contain
218
+ video, audio and articles. They can then be used to sell content with a monthly
219
+ subscription, a pay-per-view model or advertising. It\u2019s free to get started
220
+ and it can all be setup within 5 minutes.\n\nPivotshare now supports Web,
221
+ Android, iOS and Playbook.","high_concept":"Monetize Digital Media","follower_count":18,"company_url":"http://www.pivotshare.com"},"tags":[{"id":15537,"tag_type":"SkillTag","name":"user
222
+ experience design","display_name":"User Experience Design","angellist_url":"http://angel.co/user-experience-design-1"},{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":15650,"tag_type":"SkillTag","name":"product
223
+ design","display_name":"Product Design","angellist_url":"http://angel.co/product-design-1"},{"id":15888,"tag_type":"SkillTag","name":"motion
224
+ graphics","display_name":"Motion Graphics","angellist_url":"http://angel.co/motion-graphics"},{"id":17897,"tag_type":"SkillTag","name":"user
225
+ interface design","display_name":"User Interface Design","angellist_url":"http://angel.co/user-interface-design"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1653,"tag_type":"LocationTag","name":"los
226
+ angeles","display_name":"Los Angeles","angellist_url":"http://angel.co/los-angeles"},{"id":1705,"tag_type":"LocationTag","name":"irvine","display_name":"Irvine","angellist_url":"http://angel.co/irvine"},{"id":1962,"tag_type":"LocationTag","name":"southern
227
+ california","display_name":"Southern California","angellist_url":"http://angel.co/southern-california"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2617,"title":"Best
228
+ Web Engineer Ever","description":"Looking for the best HTML5/JS person on
229
+ the planet. Will help to create new experiences around digital media.","job_type":"fulltime","created_at":"2012-04-21T20:26:59Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":0.25,"equity_max":1.0,"equity_vest":4.0,"salary_min":70000,"salary_max":85000,"angellist_url":"http://angel.co/pivotshare/recruiting/2617-best-web-engineer-ever","startup":{"id":19105,"hidden":false,"community_profile":false,"name":"Pivotshare","angellist_url":"http://angel.co/pivotshare","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19105-f0fbdcbab770ac85aeb795c491930c3d-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19105-f0fbdcbab770ac85aeb795c491930c3d-thumb.png","product_desc":"Pivotshare
230
+ helps publishers and content creators distribute and monetize their digital
231
+ media. \n\nWe allow our users to create online communities, which are a set
232
+ of websites and applications, to showcase their media. Communities may contain
233
+ video, audio and articles. They can then be used to sell content with a monthly
234
+ subscription, a pay-per-view model or advertising. It\u2019s free to get started
235
+ and it can all be setup within 5 minutes.\n\nPivotshare now supports Web,
236
+ Android, iOS and Playbook.","high_concept":"Monetize Digital Media","follower_count":18,"company_url":"http://www.pivotshare.com"},"tags":[{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":16814,"tag_type":"SkillTag","name":"html5","display_name":"HTML5","angellist_url":"http://angel.co/html5"},{"id":33096,"tag_type":"SkillTag","name":"backbone.js","display_name":"Backbone.js","angellist_url":"http://angel.co/backbone-js"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1653,"tag_type":"LocationTag","name":"los
237
+ angeles","display_name":"Los Angeles","angellist_url":"http://angel.co/los-angeles"},{"id":1705,"tag_type":"LocationTag","name":"irvine","display_name":"Irvine","angellist_url":"http://angel.co/irvine"},{"id":1962,"tag_type":"LocationTag","name":"southern
238
+ california","display_name":"Southern California","angellist_url":"http://angel.co/southern-california"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2603,"title":"Senior
239
+ Software Developer","description":"Lead the architecture for the product,
240
+ write and review code, scope projects and milestones. Its ultimately up to
241
+ you how you get things done, but we think in you will spend roughly 60-70%
242
+ of your time coding, and the other 20-30% focused on building the engineering
243
+ organization and scoping/designing product. In many ways, you will be part
244
+ product manager and part engineer - we respect your opinion and believe you
245
+ should feel passionate ownership for the things you make.\r\n\r\nWe ask that
246
+ you write scalable, maintainable, secure code and set the bar high when it
247
+ comes to best practices of a professional software engineering organization
248
+ including testing, source control, a dev/stage/prod release cycle and continuous
249
+ integration and deployment processes.\r\n\r\nYou have demonstrated ability
250
+ to lead engineers and build a team. You are a prolific coder who can take
251
+ a project and run with it, and have a track record of successfully building
252
+ products that scale to large numbers of users. You have made significant
253
+ architectural decisions. You are passionate about the engineering process,
254
+ and you\u2019ve used tools like Pivotal Tracker, Trac, Jira, FogBugz, or even
255
+ post it notes to make sure everyone is on the same page. You\u2019re down
256
+ with open source. You''re constantly experimenting with new technologies. You
257
+ follow the Redis, Mongrel2 and the NoSQL drama with curiousity, interest,
258
+ disdain, etc. Formal training in computer science (bachelors, masters, school
259
+ of hard knocks, whatever)","job_type":"fulltime","created_at":"2012-04-21T03:34:41Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":1.0,"equity_max":3.0,"equity_vest":4.0,"salary_min":60000,"salary_max":100000,"angellist_url":"http://angel.co/referly/recruiting/2603-senior-software-developer","startup":{"id":83136,"hidden":false,"community_profile":false,"name":"Referly","angellist_url":"http://angel.co/referly","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83136-b39ffbcbf00a99ccd2261c893d51b97a-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83136-b39ffbcbf00a99ccd2261c893d51b97a-thumb.png","product_desc":"Referly
260
+ provides customer acquisition as a service. \n\nOur simple marketplace connects
261
+ brands with the people who love their products, making it easy for them to
262
+ reward their advocates for generating sales. Consumers get access to perks,
263
+ deals, and rewards for sharing their opinions and expertise.\n\nWe''re disrupting
264
+ the performance marketing space with transparent transactions, beautiful design,
265
+ and straightforward monetization.\n\nBusiness can stop guessing on CPC, and
266
+ pay for actual customers.","high_concept":"Customer Acquisition as a Service
267
+ OR \"Commission Junction 2.0\"","follower_count":19,"company_url":"http://refer.ly"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":18014,"tag_type":"SkillTag","name":"apis","display_name":"APIs","angellist_url":"http://angel.co/apis"},{"id":43048,"tag_type":"SkillTag","name":"amazon
268
+ web services","display_name":"Amazon Web Services","angellist_url":"http://angel.co/amazon-web-services-2"},{"id":82614,"tag_type":"SkillTag","name":"rails","display_name":"Rails","angellist_url":"http://angel.co/rails-1"},{"id":1692,"tag_type":"LocationTag","name":"san
269
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2611,"title":"Technical
270
+ Co-Founder","description":"We need a Co Founder that share our vision to make
271
+ the world a better place for everyone.","job_type":"fulltime","created_at":"2012-04-21T14:19:07Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":20.0,"equity_max":60.0,"equity_vest":4.0,"salary_min":1000,"salary_max":10000000000,"angellist_url":"http://angel.co/moov-1/recruiting/2611-technical-co-founder","startup":{"id":84572,"hidden":false,"community_profile":false,"name":"MOOV","angellist_url":"http://angel.co/moov-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84572-e154b97c9b29d25f596f9675727b163d-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84572-e154b97c9b29d25f596f9675727b163d-thumb.png","product_desc":null,"high_concept":"","follower_count":2,"company_url":"http://moov.co"},"tags":[{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":16022,"tag_type":"SkillTag","name":"ajax","display_name":"AJAX","angellist_url":"http://angel.co/ajax"},{"id":16309,"tag_type":"SkillTag","name":"mysql","display_name":"MySQL","angellist_url":"http://angel.co/mysql-1"},{"id":16814,"tag_type":"SkillTag","name":"html5","display_name":"HTML5","angellist_url":"http://angel.co/html5"},{"id":80376,"tag_type":"SkillTag","name":"html5
272
+ & css3","display_name":"HTML5 & CSS3","angellist_url":"http://angel.co/html5-css3"},{"id":1624,"tag_type":"LocationTag","name":"california","display_name":"California","angellist_url":"http://angel.co/california"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1692,"tag_type":"LocationTag","name":"san
273
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1848,"tag_type":"LocationTag","name":"copenhagen","display_name":"Copenhagen","angellist_url":"http://angel.co/copenhagen"},{"id":12169,"tag_type":"LocationTag","name":"bergen","display_name":"Bergen","angellist_url":"http://angel.co/bergen"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2608,"title":"Web/App/API
274
+ Developer","description":"This is an equal equity/partner based position at
275
+ this time. This will lead to a salary once we are fully funded or reach profitable
276
+ revenue.\r\n\r\nWe need a talented developer to become part of our team and
277
+ assist us in finishing our vision. Proficient with css, java script, jquery,
278
+ php, database construction & management, ... Experience with api development,
279
+ app development, & GWT is a plus.\r\n\r\nWe are in the beginning phases and
280
+ do have our site up but we still need to add a lot of features and upgrades.
281
+ \r\n\r\nThis project is a travel platform that is integrating new and traditional
282
+ methods of travel service sites with social networks and technological applications.\r\n\r\nIf
283
+ you are seriously interested in this project please contact me and upon review
284
+ I will provide you with more details.\r\n\r\nRelocation to the Fort Myers,
285
+ FL area or to the Myrtle Beach, SC area upon full funding or profitable revenue
286
+ of the project is negotiable but encouraged.","job_type":"fulltime","created_at":"2012-04-21T11:42:52Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":5.0,"equity_max":15.0,"equity_vest":4.0,"salary_min":28000,"salary_max":100000,"angellist_url":"http://angel.co/mapapalooza/recruiting/2608-web-app-api-developer","startup":{"id":83082,"hidden":false,"community_profile":false,"name":"Mapapalooza","angellist_url":"http://angel.co/mapapalooza","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83082-cde695e5861f0cd9a8eb28c96adee87d-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83082-cde695e5861f0cd9a8eb28c96adee87d-thumb.jpg","product_desc":"Mapapalooza
287
+ will allow users to browse around our maps and search for fun things to do,
288
+ great places to stay, read reviews, see pictures and videos of the area and
289
+ more. Think of every time you have dreamed of visiting a destination, how
290
+ did the desire to visit that destination start? Probably with seeing pictures,
291
+ a clip in a movie, or someone sharing their great experiences with you. Mapapalooza
292
+ will allow professional and amateur travelers to share their knowledge and
293
+ experience of the world.","high_concept":"Dream, Plan, Explore, Map, and Share","follower_count":3,"company_url":"http://mapapalooza.com"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":16814,"tag_type":"SkillTag","name":"html5","display_name":"HTML5","angellist_url":"http://angel.co/html5"},{"id":35238,"tag_type":"SkillTag","name":"and
294
+ much more.","display_name":"And Much More.","angellist_url":"http://angel.co/and-much-more"},{"id":44410,"tag_type":"SkillTag","name":"json","display_name":"JSON","angellist_url":"http://angel.co/json"},{"id":79947,"tag_type":"SkillTag","name":"xhtml
295
+ and xml","display_name":"xHTML and XML","angellist_url":"http://angel.co/xhtml-and-xml"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":2265,"tag_type":"LocationTag","name":"fort
296
+ myers","display_name":"Fort Myers","angellist_url":"http://angel.co/fort-myers"},{"id":60539,"tag_type":"LocationTag","name":"north
297
+ myrtle beach","display_name":"North Myrtle Beach","angellist_url":"http://angel.co/north-myrtle-beach"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2604,"title":"Lead
298
+ Designer","description":"We''re looking for a designer who wants to contribute
299
+ an integral part to the end-to-end User Experience for StartupDigest VIP.","job_type":"fulltime","created_at":"2012-04-21T03:58:22Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":2.0,"equity_vest":4.0,"salary_min":1000,"salary_max":70000,"angellist_url":"http://angel.co/startupdigest-1/recruiting/2604-lead-designer","startup":{"id":815,"hidden":false,"community_profile":false,"name":"StartupDigest","angellist_url":"http://angel.co/startupdigest-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/815-b42c45292e6591f3a9920ba1de3da2ca-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/815-b42c45292e6591f3a9920ba1de3da2ca-thumb.txt","product_desc":"We''ve
300
+ created a semi automated scalable model to produce high-quality curated technology
301
+ content and run a private hiring system behind it.\n\nOur proof of concept
302
+ of the former is StartupDigest, a free curated weekly email of the best startup
303
+ events in 91 cities.\n\nOur proof of concept of the latter is StartupDigest
304
+ VIP, a private community of engineers, designers, and product managers who
305
+ want to meet the best startups.","high_concept":"Democratizing tech information","follower_count":57,"company_url":"http://startupdigest.com"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15520,"tag_type":"SkillTag","name":"graphic
306
+ design","display_name":"Graphic Design","angellist_url":"http://angel.co/graphic-design"},{"id":15537,"tag_type":"SkillTag","name":"user
307
+ experience design","display_name":"User Experience Design","angellist_url":"http://angel.co/user-experience-design-1"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":17897,"tag_type":"SkillTag","name":"user
308
+ interface design","display_name":"User Interface Design","angellist_url":"http://angel.co/user-interface-design"},{"id":20918,"tag_type":"SkillTag","name":"ui
309
+ / ux design","display_name":"UI / UX Design","angellist_url":"http://angel.co/ui-ux-design"},{"id":1694,"tag_type":"LocationTag","name":"palo
310
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2600,"title":"Engineer","description":"We''re
311
+ adding people to our back-end dev team, experience with Natural Language Processing
312
+ and pattern recognition is a must.","job_type":"fulltime","created_at":"2012-04-20T23:54:06Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":0.5,"equity_vest":3.0,"salary_min":30000,"salary_max":50000,"angellist_url":"http://angel.co/clara/recruiting/2600-engineer","startup":{"id":83339,"hidden":false,"community_profile":false,"name":"CLARA","angellist_url":"http://angel.co/clara","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83339-771433381806e382c54d7feede3c112e-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83339-771433381806e382c54d7feede3c112e-thumb.png","product_desc":"CLARA
313
+ offers Community Analytics to PlayStation, Final Fantasy, EverQuest, EVE Online
314
+ and many others leaders in the Gaming Industry.\n\nCLARA helps:\n- Community
315
+ Managers improve their efficiency by analyzing sentiment and trending discussions\n-
316
+ Marketing Managers getting deeper insights into their community with actionable
317
+ metrics\n- Increase Retention and Organic Growth\n- Answer questions like;
318
+ \"What are my big spenders saying about the new expansion, and how is that
319
+ different from n00bs\"","high_concept":"Community Analytics for Gaming Companies.
320
+ Focused on Retention and Organic Growth.","follower_count":13,"company_url":"http://www.clarahq.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":16999,"tag_type":"SkillTag","name":"mongodb","display_name":"MongoDB","angellist_url":"http://angel.co/mongodb"},{"id":25892,"tag_type":"SkillTag","name":"nlp","display_name":"NLP","angellist_url":"http://angel.co/nlp"},{"id":29160,"tag_type":"SkillTag","name":"pattern
321
+ recognition","display_name":"Pattern Recognition","angellist_url":"http://angel.co/pattern-recognition"},{"id":57045,"tag_type":"SkillTag","name":"backend
322
+ development","display_name":"Backend Development","angellist_url":"http://angel.co/backend-development"},{"id":13641,"tag_type":"LocationTag","name":"reykjavik","display_name":"Reykjavik","angellist_url":"http://angel.co/reykjavik"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2575,"title":"QA
323
+ Engineer","description":"CLARA is seeking talented Software Engineers with
324
+ a passion for building test automation frameworks. Do you thrive on test-driven
325
+ development? Are you not just writing tests, but hacking on the framework
326
+ itself? \r\n\r\nAs this is our first dedicated position in QA responsibilities
327
+ include designing and implementing more robust testing frameworks from A to
328
+ Z.\r\n\r\nThis position is full-time and based in our Reykjavik office.","job_type":"fulltime","created_at":"2012-04-19T22:19:21Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":0.5,"equity_vest":3.0,"salary_min":30000,"salary_max":50000,"angellist_url":"http://angel.co/clara/recruiting/2575-qa-engineer","startup":{"id":83339,"hidden":false,"community_profile":false,"name":"CLARA","angellist_url":"http://angel.co/clara","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83339-771433381806e382c54d7feede3c112e-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83339-771433381806e382c54d7feede3c112e-thumb.png","product_desc":"CLARA
329
+ offers Community Analytics to PlayStation, Final Fantasy, EverQuest, EVE Online
330
+ and many others leaders in the Gaming Industry.\n\nCLARA helps:\n- Community
331
+ Managers improve their efficiency by analyzing sentiment and trending discussions\n-
332
+ Marketing Managers getting deeper insights into their community with actionable
333
+ metrics\n- Increase Retention and Organic Growth\n- Answer questions like;
334
+ \"What are my big spenders saying about the new expansion, and how is that
335
+ different from n00bs\"","high_concept":"Community Analytics for Gaming Companies.
336
+ Focused on Retention and Organic Growth.","follower_count":13,"company_url":"http://www.clarahq.com"},"tags":[{"id":23394,"tag_type":"SkillTag","name":"qa","display_name":"QA","angellist_url":"http://angel.co/qa-1"},{"id":13641,"tag_type":"LocationTag","name":"reykjavik","display_name":"Reykjavik","angellist_url":"http://angel.co/reykjavik"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2593,"title":"Senior
337
+ Analytical Chemist","description":"Responsible for all steps of the analytical
338
+ testing process, from project planning and the operation of analytical instrumentation,
339
+ to data collection, interpretation, and reporting. Must be able to comprehend
340
+ the client\u2019s problem and then work independently to solve the problem
341
+ in the most efficient manner possible. Ability to perform multi-tasking in
342
+ a fast-paced, deadline-driven environment is a requirement for success at
343
+ Avomeen.\r\n\r\nCandidates must possess a B.S., M.S., or Ph.D. degree in Chemistry.
344
+ Top candidates will demonstrate a desire to advance and excel in their position
345
+ while contributing to overall company growth.\r\n\r\nThis position requires
346
+ hands-on skills utilizing modern analytical instrumentation such as GC/MS,
347
+ LC/MS, HPLC, NMR, GC-FID, FT-IR, DSC, and TGA. The position primarily requires
348
+ extensive experience in advanced chromatography techniques. Experience in
349
+ the analysis of volatile organic compounds using GC/MS, along with the use
350
+ of spectral libraries, is recommended. Additionally, knowledge and experience
351
+ in using LC/MS is highly desirable.\r\n\r\nThe position offers major benefits,
352
+ competitive salary, and the opportunity to quickly advance to positions of
353
+ higher responsibility with advanced salary and bonuses.","job_type":"fulltime","created_at":"2012-04-20T17:14:56Z","updated_at":"2012-04-23T03:40:41Z","equity_cliff":0.0,"equity_min":0.0,"equity_max":0.1,"equity_vest":0.0,"salary_min":50000,"salary_max":80000,"angellist_url":"http://angel.co/avomeen-analytical-services/recruiting/2593-senior-analytical-chemist","startup":{"id":79070,"hidden":false,"community_profile":false,"name":"Avomeen
354
+ Analytical Services","angellist_url":"http://angel.co/avomeen-analytical-services","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/79070-cf0d188fa3a037f1a0872dc1a8938817-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/79070-cf0d188fa3a037f1a0872dc1a8938817-thumb.jpg","product_desc":"Avomeen
355
+ Analytical Services is a full-service chemical testing laboratory specializing
356
+ in deformulation, pharmaceutical testing, product development, and chemical
357
+ litigation support services.","high_concept":"Chemical analysis for product
358
+ development","follower_count":1,"company_url":"http://www.avomeen.com"},"tags":[{"id":18051,"tag_type":"SkillTag","name":"chemistry
359
+ phd","display_name":"Chemistry PhD","angellist_url":"http://angel.co/chemistry-phd"},{"id":27061,"tag_type":"SkillTag","name":"communication
360
+ skills","display_name":"Communication Skills","angellist_url":"http://angel.co/communication-skills"},{"id":27974,"tag_type":"SkillTag","name":"technical
361
+ writing.","display_name":"Technical Writing.","angellist_url":"http://angel.co/technical-writing"},{"id":83841,"tag_type":"SkillTag","name":"chromatography","display_name":"Chromatography","angellist_url":"http://angel.co/chromatography"},{"id":83842,"tag_type":"SkillTag","name":"spectroscopy","display_name":"Spectroscopy","angellist_url":"http://angel.co/spectroscopy"},{"id":83843,"tag_type":"SkillTag","name":"data
362
+ interpretation","display_name":"Data Interpretation","angellist_url":"http://angel.co/data-interpretation"},{"id":1688,"tag_type":"LocationTag","name":"united
363
+ states","display_name":"United States","angellist_url":"http://angel.co/united-states"},{"id":1723,"tag_type":"LocationTag","name":"ann
364
+ arbor","display_name":"Ann Arbor","angellist_url":"http://angel.co/ann-arbor"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2587,"title":"Junior
365
+ ASP.NET Programmer","description":"Junior programmer is under the supervision
366
+ of a senior programmer. They provide support to design, development, implementation
367
+ and maintenance of the applications that they developed for their clients.
368
+ Qualified candidates will be required to complete software lifecycle support.
369
+ ","job_type":"fulltime","created_at":"2012-04-20T08:35:14Z","updated_at":"2012-04-23T03:40:41Z","equity_cliff":1.0,"equity_min":1.5,"equity_max":2.0,"equity_vest":4.0,"salary_min":40000,"salary_max":50000,"angellist_url":"http://angel.co/vinylmint/recruiting/2587-junior-asp-net-programmer","startup":{"id":84324,"hidden":false,"community_profile":false,"name":"Vinylmint","angellist_url":"http://angel.co/vinylmint","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84324-91bbda8808fc6fd201680d011b34a6a7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84324-91bbda8808fc6fd201680d011b34a6a7-thumb.png","product_desc":"Vinylmint
370
+ is creating a suite of powerful workflow solutions for its users to create
371
+ and edit content, collaborate socially with their colleagues or other freelancers,
372
+ and store and transfer media content without the necessity of being on-location
373
+ or in the same location through the use of both cloud storage and an open-sourced
374
+ API. ","high_concept":"Collaborative content creation platform","follower_count":5,"company_url":"http://www.vinylmint.com"},"tags":[{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":17240,"tag_type":"SkillTag","name":"asp.net","display_name":"ASP.NET","angellist_url":"http://angel.co/asp-net"},{"id":29120,"tag_type":"SkillTag","name":"windows
375
+ azure","display_name":"Windows Azure","angellist_url":"http://angel.co/windows-azure"},{"id":80376,"tag_type":"SkillTag","name":"html5
376
+ & css3","display_name":"HTML5 & CSS3","angellist_url":"http://angel.co/html5-css3"},{"id":83583,"tag_type":"SkillTag","name":"recording
377
+ engineer video engineer","display_name":"Recording Engineer Video Engineer","angellist_url":"http://angel.co/recording-engineer-video-engineer"},{"id":2425,"tag_type":"LocationTag","name":"richmond","display_name":"Richmond","angellist_url":"http://angel.co/richmond"},{"id":8865,"tag_type":"LocationTag","name":"norfolk","display_name":"Norfolk","angellist_url":"http://angel.co/norfolk"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2585,"title":"Senior
378
+ ASP.NET Programmer","description":"You should have eight+ years of programming
379
+ experience with multiple languages. You may be managing a team of programmers.
380
+ Programmers will write, test, and maintain the detailed instructions - called
381
+ programs - that computers follow to perform their functions. Programmers will
382
+ also conceive, design, and test logical structures for solving problems by
383
+ computer. With the help of other computer specialists, they will figure out
384
+ which instructions to use to make computers do specific tasks. Many technical
385
+ innovations in programming - advanced computing technologies and sophisticated
386
+ new languages and programming tools will occur during our time together. Programmers
387
+ will redefined the role of a programmer in the enterprise with Vinylmint.","job_type":"fulltime","created_at":"2012-04-20T08:28:25Z","updated_at":"2012-04-23T03:40:41Z","equity_cliff":3.0,"equity_min":3.0,"equity_max":6.0,"equity_vest":4.0,"salary_min":90000,"salary_max":105000,"angellist_url":"http://angel.co/vinylmint/recruiting/2585-senior-asp-net-programmer","startup":{"id":84324,"hidden":false,"community_profile":false,"name":"Vinylmint","angellist_url":"http://angel.co/vinylmint","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84324-91bbda8808fc6fd201680d011b34a6a7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84324-91bbda8808fc6fd201680d011b34a6a7-thumb.png","product_desc":"Vinylmint
388
+ is creating a suite of powerful workflow solutions for its users to create
389
+ and edit content, collaborate socially with their colleagues or other freelancers,
390
+ and store and transfer media content without the necessity of being on-location
391
+ or in the same location through the use of both cloud storage and an open-sourced
392
+ API. ","high_concept":"Collaborative content creation platform","follower_count":5,"company_url":"http://www.vinylmint.com"},"tags":[{"id":14779,"tag_type":"SkillTag","name":"c++","display_name":"C++","angellist_url":"http://angel.co/c"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":17240,"tag_type":"SkillTag","name":"asp.net","display_name":"ASP.NET","angellist_url":"http://angel.co/asp-net"},{"id":29120,"tag_type":"SkillTag","name":"windows
393
+ azure","display_name":"Windows Azure","angellist_url":"http://angel.co/windows-azure"},{"id":32813,"tag_type":"SkillTag","name":"database
394
+ and systems design","display_name":"Database and Systems Design","angellist_url":"http://angel.co/database-and-systems-design"},{"id":80247,"tag_type":"SkillTag","name":"ruby
395
+ rails","display_name":"Ruby Rails","angellist_url":"http://angel.co/ruby-rails"},{"id":2425,"tag_type":"LocationTag","name":"richmond","display_name":"Richmond","angellist_url":"http://angel.co/richmond"},{"id":8865,"tag_type":"LocationTag","name":"norfolk","display_name":"Norfolk","angellist_url":"http://angel.co/norfolk"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2584,"title":"Senior
396
+ ASP.NET Programmer","description":"You should have eight+ years of programming
397
+ experience with multiple languages. You may be managing a team of programmers.
398
+ Programmers will write, test, and maintain the detailed instructions - called
399
+ programs - that computers follow to perform their functions. Programmers will
400
+ also conceive, design, and test logical structures for solving problems by
401
+ computer. With the help of other computer specialists, you will figure out
402
+ which instructions to use to make software do specific tasks. Many technical
403
+ innovations in programming - advanced computing technologies and sophisticated
404
+ new languages and programming tools will be made. Programmers will assist
405
+ in redefining the role of a programmer in the enterprise.","job_type":"fulltime","created_at":"2012-04-20T08:18:52Z","updated_at":"2012-04-23T03:40:41Z","equity_cliff":3.0,"equity_min":4.0,"equity_max":6.0,"equity_vest":4.0,"salary_min":90000,"salary_max":100000,"angellist_url":"http://angel.co/vinylmint/recruiting/2584-senior-asp-net-programmer","startup":{"id":84324,"hidden":false,"community_profile":false,"name":"Vinylmint","angellist_url":"http://angel.co/vinylmint","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84324-91bbda8808fc6fd201680d011b34a6a7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84324-91bbda8808fc6fd201680d011b34a6a7-thumb.png","product_desc":"Vinylmint
406
+ is creating a suite of powerful workflow solutions for its users to create
407
+ and edit content, collaborate socially with their colleagues or other freelancers,
408
+ and store and transfer media content without the necessity of being on-location
409
+ or in the same location through the use of both cloud storage and an open-sourced
410
+ API. ","high_concept":"Collaborative content creation platform","follower_count":5,"company_url":"http://www.vinylmint.com"},"tags":[{"id":14779,"tag_type":"SkillTag","name":"c++","display_name":"C++","angellist_url":"http://angel.co/c"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":17240,"tag_type":"SkillTag","name":"asp.net","display_name":"ASP.NET","angellist_url":"http://angel.co/asp-net"},{"id":29120,"tag_type":"SkillTag","name":"windows
411
+ azure","display_name":"Windows Azure","angellist_url":"http://angel.co/windows-azure"},{"id":32813,"tag_type":"SkillTag","name":"database
412
+ and systems design","display_name":"Database and Systems Design","angellist_url":"http://angel.co/database-and-systems-design"},{"id":2425,"tag_type":"LocationTag","name":"richmond","display_name":"Richmond","angellist_url":"http://angel.co/richmond"},{"id":8865,"tag_type":"LocationTag","name":"norfolk","display_name":"Norfolk","angellist_url":"http://angel.co/norfolk"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2583,"title":"Junior
413
+ UI/UX Designer","description":"The designer\u2019s job is to contribute various
414
+ forms of U.I. design and production support to the team. You will be primarily
415
+ designing interfaces for web, social, and mobile platforms.\r\n","job_type":"fulltime","created_at":"2012-04-20T08:11:26Z","updated_at":"2012-04-23T03:40:41Z","equity_cliff":1.0,"equity_min":1.0,"equity_max":3.0,"equity_vest":4.0,"salary_min":70000,"salary_max":85000,"angellist_url":"http://angel.co/vinylmint/recruiting/2583-junior-ui-ux-designer","startup":{"id":84324,"hidden":false,"community_profile":false,"name":"Vinylmint","angellist_url":"http://angel.co/vinylmint","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84324-91bbda8808fc6fd201680d011b34a6a7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84324-91bbda8808fc6fd201680d011b34a6a7-thumb.png","product_desc":"Vinylmint
416
+ is creating a suite of powerful workflow solutions for its users to create
417
+ and edit content, collaborate socially with their colleagues or other freelancers,
418
+ and store and transfer media content without the necessity of being on-location
419
+ or in the same location through the use of both cloud storage and an open-sourced
420
+ API. ","high_concept":"Collaborative content creation platform","follower_count":5,"company_url":"http://www.vinylmint.com"},"tags":[{"id":14779,"tag_type":"SkillTag","name":"c++","display_name":"C++","angellist_url":"http://angel.co/c"},{"id":17240,"tag_type":"SkillTag","name":"asp.net","display_name":"ASP.NET","angellist_url":"http://angel.co/asp-net"},{"id":21251,"tag_type":"SkillTag","name":"java
421
+ script","display_name":"JAVA SCRIPT","angellist_url":"http://angel.co/java-script"},{"id":80376,"tag_type":"SkillTag","name":"html5
422
+ & css3","display_name":"HTML5 & CSS3","angellist_url":"http://angel.co/html5-css3"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":2425,"tag_type":"LocationTag","name":"richmond","display_name":"Richmond","angellist_url":"http://angel.co/richmond"},{"id":8865,"tag_type":"LocationTag","name":"norfolk","display_name":"Norfolk","angellist_url":"http://angel.co/norfolk"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2591,"title":"PHP
423
+ Developer","description":"Looking for PHP Developers with minimum two years
424
+ of experience with very good knowledge in Zend framework and/or Joomla!","job_type":"fulltime","created_at":"2012-04-20T12:42:01Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":1.0,"equity_vest":4.0,"salary_min":4000,"salary_max":6000,"angellist_url":"http://angel.co/thagatpam-tech-private-limited/recruiting/2591-php-developer","startup":{"id":84394,"hidden":false,"community_profile":false,"name":"Thagatpam
425
+ Tech Private Limited","angellist_url":"http://angel.co/thagatpam-tech-private-limited","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84394-6d530429c45053b0e9019b160aff1346-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84394-6d530429c45053b0e9019b160aff1346-thumb.png","product_desc":null,"high_concept":"IT
426
+ services company specializing in Mobile Applications and Rich Internet Applications","follower_count":1,"company_url":"http://thagatpam.com"},"tags":[{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":21245,"tag_type":"SkillTag","name":"joomla","display_name":"JOOMLA","angellist_url":"http://angel.co/joomla"},{"id":49483,"tag_type":"SkillTag","name":"zend
427
+ framework","display_name":"Zend Framework","angellist_url":"http://angel.co/zend-framework"},{"id":8581,"tag_type":"LocationTag","name":"madras","display_name":"Chennai","angellist_url":"http://angel.co/madras-1"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2588,"title":"User
428
+ Interface Designer","description":"You will be responsible for creating frameworks
429
+ and diagrams that represent exactly what our users will see on various applications.
430
+ In addition, you will be describing what the different elements of the interface
431
+ do and how they interact. We need someone who is familiar with web and desktop
432
+ application interface design.","job_type":"fulltime","created_at":"2012-04-20T10:19:16Z","updated_at":"2012-04-23T03:40:41Z","equity_cliff":1.0,"equity_min":5.0,"equity_max":5.0,"equity_vest":4.0,"salary_min":65000,"salary_max":85000,"angellist_url":"http://angel.co/emitcode/recruiting/2588-user-interface-designer","startup":{"id":84387,"hidden":false,"community_profile":false,"name":"EmitCode","angellist_url":"http://angel.co/emitcode","logo_url":"http://angel.co/images/icons/startup-nopic.png","thumb_url":"http://angel.co/images/icons/startup-nopic.png","product_desc":"EmitCode
433
+ lets you explore the world of programming for the first time or build upon
434
+ existing knowledge. You can learn how to build software in a variety of programming
435
+ languages and show off your skills by creating your own project and gathering
436
+ others to come help you out. Once you have a cool project, you can sell it!","high_concept":"Learn
437
+ to code and get a job","follower_count":2,"company_url":"http://www.emitcode.com"},"tags":[{"id":27974,"tag_type":"SkillTag","name":"technical
438
+ writing.","display_name":"Technical Writing.","angellist_url":"http://angel.co/technical-writing"},{"id":38078,"tag_type":"SkillTag","name":"adobe
439
+ photoshop","display_name":"Adobe Photoshop","angellist_url":"http://angel.co/adobe-photoshop"},{"id":41403,"tag_type":"SkillTag","name":"drawing","display_name":"Drawing","angellist_url":"http://angel.co/drawing"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2586,"title":"Design
440
+ Lead","description":"Our Design Lead will own Breakthrough''s interaction
441
+ and graphic design. We value sharp problem-solving skills, a strong work ethic,
442
+ excellent communication skills, excitement about helping people, relentless
443
+ resourcefulness, and a sense of humor.\r\n\r\n3+ years of designing beautiful,
444
+ easy-to-use web interfaces\r\nProven ability to deliver prototypes quickly\r\nA
445
+ love of minimal design\r\nStrong attention to detail - little mistakes should
446
+ bother you!\r\nExperience with graphic design\r\nFamiliarity with Ruby on
447
+ Rails\r\n","job_type":"fulltime","created_at":"2012-04-20T08:29:13Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":2.0,"equity_max":4.0,"equity_vest":4.0,"salary_min":80000000,"salary_max":120000000,"angellist_url":"http://angel.co/breakthrough-com/recruiting/2586-design-lead","startup":{"id":820,"hidden":false,"community_profile":false,"name":"Breakthrough.com","angellist_url":"http://angel.co/breakthrough-com","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/820-4f7f0edb640eb36874a19b660f95c31e-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/820-4f7f0edb640eb36874a19b660f95c31e-thumb.","product_desc":"We
448
+ connect therapy consumers, providers, and payers for online therapy and telepsychiatry.
449
+ We are live at http://breakthrough.com.","high_concept":"Video therapy platform","follower_count":54,"company_url":"http://www.breakthrough.com"},"tags":[{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":15706,"tag_type":"SkillTag","name":"photoshop","display_name":"Photoshop","angellist_url":"http://angel.co/photoshop"},{"id":1694,"tag_type":"LocationTag","name":"palo
450
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2481,"title":"Two
451
+ certified personal fitness trainers / aerobics instructors.","description":"Two
452
+ dynamic certified personal fitness trainers / aerobics instructors needed
453
+ to launch an Employee Wellness Program company in Las Vegas, Nevada. This
454
+ position requires 3+ years experience as a fitness trainer, with proven sales
455
+ ability and the ability to cold call to build a clientele.","job_type":"fulltime","created_at":"2012-04-16T19:49:56Z","updated_at":"2012-04-23T03:40:40Z","equity_cliff":1.0,"equity_min":0.75,"equity_max":2.0,"equity_vest":4.0,"salary_min":30000,"salary_max":40000,"angellist_url":"http://angel.co/well-program/recruiting/2481-two-certified-personal-fitness-trainers-aerobics-instructors","startup":{"id":83552,"hidden":false,"community_profile":false,"name":"Well
456
+ Program","angellist_url":"http://angel.co/well-program","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83552-1aa2bce5acf130e6bd9c928dedb8ecdf-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83552-1aa2bce5acf130e6bd9c928dedb8ecdf-thumb.jpg","product_desc":"WellProgram.com
457
+ will provide employee wellness programs that are safe, fun, and effective.
458
+ Employees can participate in online health screening provided by the Mayo
459
+ Clinic, small group personal fitness training and exercise classes, receive
460
+ nutrition education and routine fitness assessments, and learn stress management
461
+ techniques. WellProgram.com will provide exceptional wellness programs by
462
+ hiring dedicated fitness professionals who develop and implement our wellness
463
+ programs.","high_concept":"Lowering health care costs while improving the
464
+ quality of life of your employees!","follower_count":5,"company_url":"http://WellProgram.com"},"tags":[{"id":80856,"tag_type":"SkillTag","name":"excellent
465
+ communication skills","display_name":"Excellent Communication Skills","angellist_url":"http://angel.co/excellent-communication-skills"},{"id":1704,"tag_type":"LocationTag","name":"las
466
+ vegas","display_name":"Las Vegas","angellist_url":"http://angel.co/las-vegas"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2573,"title":"UI/Graphic
467
+ Designer","description":"We''re seeking a web/Graphic Designer to help our
468
+ growing team building a multi-platform product.\r\n\r\nGood candidates should
469
+ be well versed in all stages of interaction concepting and design -- from
470
+ wireframes through hi-fidelity mockups -- and have basic front-end web development
471
+ skills (HTML, CSS, etc.). \r\n\r\nCandidates must have an understanding of
472
+ user-centric design principles and how they drive the software development
473
+ process, as well as a demonstrated ability to work both independently with
474
+ limited creative direction as well as collaborate effectively with others.\r\n\r\nWant
475
+ to join a startup with genuine potential? Send us some of your past work and
476
+ we''ll get back to you! ","job_type":"fulltime","created_at":"2012-04-19T21:05:43Z","updated_at":"2012-04-23T03:20:42Z","equity_cliff":1.0,"equity_min":0.05,"equity_max":0.25,"equity_vest":4.0,"salary_min":30000,"salary_max":50000,"angellist_url":"http://angel.co/playerpro/recruiting/2573-ui-graphic-designer","startup":{"id":15617,"hidden":false,"community_profile":false,"name":"PLAYERPRO","angellist_url":"http://angel.co/playerpro","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/15617-bded49393d7fffdd9ea3a1fe93247178-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/15617-bded49393d7fffdd9ea3a1fe93247178-thumb.jpg","product_desc":"We''re
477
+ building a social network for sports players & teams - An IMDB for sports.
478
+ Behind this is a market proven freemium revenue model. We''re in private Beta
479
+ and are releasing the PLAYERPRO Beta in May 2012. ","high_concept":"An IMDB
480
+ for Sports Players & Teams","follower_count":4,"company_url":"http://www.getplayerpro.com"},"tags":[{"id":17897,"tag_type":"SkillTag","name":"user
481
+ interface design","display_name":"User Interface Design","angellist_url":"http://angel.co/user-interface-design"},{"id":20918,"tag_type":"SkillTag","name":"ui
482
+ / ux design","display_name":"UI / UX Design","angellist_url":"http://angel.co/ui-ux-design"},{"id":80376,"tag_type":"SkillTag","name":"html5
483
+ & css3","display_name":"HTML5 & CSS3","angellist_url":"http://angel.co/html5-css3"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1692,"tag_type":"LocationTag","name":"san
484
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1697,"tag_type":"LocationTag","name":"berkeley","display_name":"Berkeley","angellist_url":"http://angel.co/berkeley"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2427,"title":"Front-end
485
+ Web Developers","description":"We''re seeking a junior or mid-level web developer
486
+ to join a growing team building a multi-platform product.\r\n\r\nCandidates
487
+ should be well-versed in cutting-edge front-end and middle-tier technologies,
488
+ such as HTML5, CSS3, JavaScript, AJAX, and PHP (MVC framework experience a
489
+ plus). \r\n\r\nExperience building and optimizing for mobile devices preferred.\r\n\r\nIdeal
490
+ candidates will have an understanding of user-centric design principles and
491
+ how they drive the development process, as well as an appreciation for the
492
+ importance of user experience. \r\n\r\nYou must have a demonstrated ability
493
+ to both work independently on complex problems and collaborate effectively
494
+ with others.\r\n\r\nAdditionally, candidates should be active participants
495
+ in the social web and have a keen sense of technology trends and emerging
496
+ use cases.\r\n\r\nA keen interest in sports and/or video games is a big plus!","job_type":"fulltime","created_at":"2012-04-15T01:50:22Z","updated_at":"2012-04-23T04:00:53Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":0.5,"equity_vest":4.0,"salary_min":30000,"salary_max":60000,"angellist_url":"http://angel.co/playerpro/recruiting/2427-front-end-web-developers","startup":{"id":15617,"hidden":false,"community_profile":false,"name":"PLAYERPRO","angellist_url":"http://angel.co/playerpro","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/15617-bded49393d7fffdd9ea3a1fe93247178-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/15617-bded49393d7fffdd9ea3a1fe93247178-thumb.jpg","product_desc":"We''re
497
+ building a social network for sports players & teams - An IMDB for sports.
498
+ Behind this is a market proven freemium revenue model. We''re in private Beta
499
+ and are releasing the PLAYERPRO Beta in May 2012. ","high_concept":"An IMDB
500
+ for Sports Players & Teams","follower_count":4,"company_url":"http://www.getplayerpro.com"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":16022,"tag_type":"SkillTag","name":"ajax","display_name":"AJAX","angellist_url":"http://angel.co/ajax"},{"id":16814,"tag_type":"SkillTag","name":"html5","display_name":"HTML5","angellist_url":"http://angel.co/html5"},{"id":78682,"tag_type":"SkillTag","name":"html/css/php/mysql","display_name":"HTML/CSS/PHP/MYSQL","angellist_url":"http://angel.co/html-css-php-mysql"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1692,"tag_type":"LocationTag","name":"san
501
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1695,"tag_type":"LocationTag","name":"london","display_name":"London","angellist_url":"http://angel.co/london"},{"id":1697,"tag_type":"LocationTag","name":"berkeley","display_name":"Berkeley","angellist_url":"http://angel.co/berkeley"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2572,"title":"Developer
502
+ Co-Founder","description":"Back-end, API''s, Database, Algorithm.","job_type":"fulltime","created_at":"2012-04-19T20:14:53Z","updated_at":"2012-04-23T03:20:42Z","equity_cliff":1.0,"equity_min":20.0,"equity_max":33.0,"equity_vest":4.0,"salary_min":1000,"salary_max":5000,"angellist_url":"http://angel.co/wufasta/recruiting/2572-developer-co-founder","startup":{"id":27850,"hidden":false,"community_profile":false,"name":"Wufasta","angellist_url":"http://angel.co/wufasta","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/27850-b89bb752f8f007d827dcd5817231728c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/27850-b89bb752f8f007d827dcd5817231728c-thumb.png","product_desc":"Rewarding
503
+ User-Generated Content & Social Media Activity with monetary ($) compensation.","high_concept":"Adsense
504
+ for Social Media","follower_count":10,"company_url":"http://wufasta.co"},"tags":[{"id":15731,"tag_type":"SkillTag","name":"data
505
+ analysis","display_name":"Data Analysis","angellist_url":"http://angel.co/data-analysis"},{"id":16071,"tag_type":"SkillTag","name":"back
506
+ end programming","display_name":"Back End Programming","angellist_url":"http://angel.co/back-end-programming"},{"id":17236,"tag_type":"SkillTag","name":"web
507
+ development","display_name":"Web Development","angellist_url":"http://angel.co/web-development-2"},{"id":17237,"tag_type":"SkillTag","name":"mobile
508
+ development","display_name":"Mobile Development","angellist_url":"http://angel.co/mobile-development"},{"id":17473,"tag_type":"SkillTag","name":"databases","display_name":"Databases","angellist_url":"http://angel.co/databases-1"},{"id":24952,"tag_type":"SkillTag","name":"algorithms","display_name":"Algorithms","angellist_url":"http://angel.co/algorithms-1"},{"id":1686,"tag_type":"LocationTag","name":"texas","display_name":"Texas","angellist_url":"http://angel.co/texas"},{"id":1688,"tag_type":"LocationTag","name":"united
509
+ states","display_name":"United States","angellist_url":"http://angel.co/united-states"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2571,"title":"Co-Founder","description":"Help
510
+ build App","job_type":"fulltime","created_at":"2012-04-19T20:03:15Z","updated_at":"2012-04-23T03:20:41Z","equity_cliff":1.0,"equity_min":10.0,"equity_max":20.0,"equity_vest":3.0,"salary_min":10000,"salary_max":20000,"angellist_url":"http://angel.co/plugg-ed/recruiting/2571-co-founder","startup":{"id":70928,"hidden":false,"community_profile":false,"name":"plugg-ed","angellist_url":"http://angel.co/plugg-ed","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/70928-5c8d212b49bd08f34ef0523a915bf90c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/70928-5c8d212b49bd08f34ef0523a915bf90c-thumb.png","product_desc":"A
511
+ FREE For Equity Crowd Funding Platform with Team Building and Idea Protection
512
+ Capabilities.\n\nProviding a Start-up Eco-system to help Founders, Investors
513
+ and anyone else who would like to be involved in the exciting world of Start-ups.","high_concept":"For
514
+ Equity Crowdfunding + Idea Protection + Team Building (AngelList + Kickstarter)
515
+ ","follower_count":1,"company_url":"http://www.plugg-ed.com"},"tags":[{"id":81212,"tag_type":"SkillTag","name":"ruby
516
+ rails jquery javascript","display_name":"Ruby Rails jQuery JavaScript","angellist_url":"http://angel.co/ruby-rails-jquery-javascript"},{"id":1626,"tag_type":"LocationTag","name":"chicago","display_name":"Chicago","angellist_url":"http://angel.co/chicago"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":1704,"title":"Ruby
517
+ on Rails developer","description":"We need a gun Ruby on Rails developer to
518
+ work on the web based interface. You''ll work closely with our iOS team to
519
+ build out a sexy interface for the web.\r\n\r\nYou''ll be surrounded by a
520
+ bunch of lovely people who are passionate and chillaxed!","job_type":"fulltime","created_at":"2012-03-14T17:27:38Z","updated_at":"2012-04-23T04:00:48Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":2.5,"equity_vest":4.0,"salary_min":60000,"salary_max":80000,"angellist_url":"http://angel.co/happy-inspector/recruiting/1704-ruby-on-rails-developer","startup":{"id":26179,"hidden":false,"community_profile":false,"name":"Happy
521
+ Inspector","angellist_url":"http://angel.co/happy-inspector","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26179-5bbb6f18c318c61742e2aebf4260d1d9-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26179-5bbb6f18c318c61742e2aebf4260d1d9-thumb.png","product_desc":"Happy
522
+ Inspector is an iPad app for property managers that save up to 75% of time
523
+ it takes to perform inspections. In our first few months of launching we have
524
+ over 300 paying customers. Our simple, intuitive and customizable interface
525
+ lets our users inspect any type of assets from residential and commercial
526
+ property, cruise ships, aged care facilities to aviation. ","high_concept":"Revolutionizing
527
+ inspections of rental housing (SM12)","follower_count":140,"company_url":"http://www.happyinspector.com"},"tags":[{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":36354,"tag_type":"SkillTag","name":"jquery
528
+ mobile","display_name":"jQuery Mobile","angellist_url":"http://angel.co/jquery-mobile"},{"id":80247,"tag_type":"SkillTag","name":"ruby
529
+ rails","display_name":"Ruby Rails","angellist_url":"http://angel.co/ruby-rails"},{"id":81212,"tag_type":"SkillTag","name":"ruby
530
+ rails jquery javascript","display_name":"Ruby Rails jQuery JavaScript","angellist_url":"http://angel.co/ruby-rails-jquery-javascript"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1694,"tag_type":"LocationTag","name":"palo
531
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2566,"title":"Software
532
+ Architect Cloud Solutions","description":"We offer a salary and benefits which
533
+ are extremely competitive and a can\u2019t be beaten work environment.\r\n\r\nResponsibilities:\r\nDesign
534
+ and development of a \u201cBig Data\u201d based contextual service\r\nDesigning
535
+ and developing applications towards simplicity, efficiency and supportability\r\nDrive
536
+ continuous improvement software development framework and processes\r\nLeading
537
+ and mentoring of junior software engineers\r\nDesired Experience and Qualities:\r\nStartup
538
+ company mindset\r\n5+ years of designing and delivering cloud based systems\r\nExpert
539
+ understanding of internet protocols and technologies\r\nIntegration of cross-platform
540
+ applications (including iOS and Android) \r\nSees ambiguity as an opportunity\r\nLanguages
541
+ - one or more of Java, C++, C#\r\nLAMP, Java, SQL, JSON, Apache, RESTful server,
542
+ Cassandra\r\nFamiliarity with Social Network APIs, OAuth implementation\r\nContextual
543
+ database and Semantic knowledge a plus\r\nHadoop, Scala a plus\r\nMinimum
544
+ B.S. Computer Science, Masters preferred, or related experience","job_type":"fulltime","created_at":"2012-04-19T15:33:32Z","updated_at":"2012-04-23T04:00:55Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":1.0,"equity_vest":0.0,"salary_min":100000,"salary_max":120000,"angellist_url":"http://angel.co/meshin/recruiting/2566-software-architect-cloud-solutions","startup":{"id":73232,"hidden":false,"community_profile":false,"name":"Meshin","angellist_url":"http://angel.co/meshin","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/73232-e317db2d503ff28766271e698bd45b6b-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/73232-e317db2d503ff28766271e698bd45b6b-thumb.png","product_desc":"Meshin
545
+ Recall brings intelligence to your calendars on mobile devices using patented
546
+ PARC technology. Meshin connects meetings, contacts, communications and Evernote
547
+ so what you need is all in one place. We are available on Google Play with
548
+ User Feedback of 4.8 stars. Just launched limited seat private IOS beta. ","high_concept":"Connecting
549
+ Information ... Smartly with Context","follower_count":29,"company_url":"http://www.meshin.com"},"tags":[{"id":15605,"tag_type":"SkillTag","name":"hadoop","display_name":"Hadoop","angellist_url":"http://angel.co/hadoop"},{"id":16035,"tag_type":"SkillTag","name":"mobile
550
+ platform","display_name":"Mobile Platform","angellist_url":"http://angel.co/mobile-platform"},{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":19608,"tag_type":"SkillTag","name":"lean
551
+ startups","display_name":"Lean Startups","angellist_url":"http://angel.co/lean-startups"},{"id":28966,"tag_type":"SkillTag","name":"cassandra","display_name":"Cassandra","angellist_url":"http://angel.co/cassandra"},{"id":1694,"tag_type":"LocationTag","name":"palo
552
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2558,"title":"Senior
553
+ Back-End Engeneer","description":"Assisting CTO in development of core functionalities
554
+ to manage VIP clients, park administration, etc","job_type":"fulltime","created_at":"2012-04-19T07:47:58Z","updated_at":"2012-04-23T03:40:41Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":1.0,"equity_vest":4.0,"salary_min":50000,"salary_max":100000,"angellist_url":"http://angel.co/mailjet/recruiting/2558-senior-back-end-engeneer","startup":{"id":74240,"hidden":false,"community_profile":false,"name":"Mailjet","angellist_url":"http://angel.co/mailjet","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/74240-daecc6a375d5cb8f0225840c72df90c6-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/74240-daecc6a375d5cb8f0225840c72df90c6-thumb.jpg","product_desc":"Mailjet
555
+ is an all-in-one solution to send, track and deliver both marketing and transactional
556
+ emails. Its Cloud-Based infrastructure is unique and highly scalable. A proprietary
557
+ technology optimizes the sending and the deliverability of the emails.","high_concept":"Cloud
558
+ based email delivery infrastructure service","follower_count":6,"company_url":""},"tags":[{"id":83785,"tag_type":"SkillTag","name":"php
559
+ expert","display_name":"PHP Expert","angellist_url":"http://angel.co/php-expert"},{"id":1695,"tag_type":"LocationTag","name":"london","display_name":"London","angellist_url":"http://angel.co/london"},{"id":1842,"tag_type":"LocationTag","name":"paris","display_name":"Paris","angellist_url":"http://angel.co/paris"},{"id":2119,"tag_type":"LocationTag","name":"brussels","display_name":"Brussels","angellist_url":"http://angel.co/brussels"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2553,"title":"WordPress
560
+ Theme Designer","description":"CyberChimps WordPress Themes is looking for
561
+ a WordPress Theme designer, illustrator, and web designer all wrapped in one.\r\n\r\nWe
562
+ are looking for someone who understands modern graphic and web design trends,
563
+ and who loves designing for WordPress as much as we do.","job_type":"fulltime","created_at":"2012-04-18T23:33:51Z","updated_at":"2012-04-23T03:01:06Z","equity_cliff":0.0,"equity_min":1.0,"equity_max":1.0,"equity_vest":0.0,"salary_min":1000,"salary_max":1000,"angellist_url":"http://angel.co/cyberchimps-wordpress-themes/recruiting/2553-wordpress-theme-designer","startup":{"id":84117,"hidden":false,"community_profile":false,"name":"CyberChimps
564
+ WordPress Themes","angellist_url":"http://angel.co/cyberchimps-wordpress-themes","logo_url":"http://angel.co/images/icons/startup-nopic.png","thumb_url":"http://angel.co/images/icons/startup-nopic.png","product_desc":"CyberChimps
565
+ designs and develops premium WordPress themes including iFeature Pro, Business
566
+ Pro, and Response Pro.\n\nOur WordPress Themes are user friendly, responsive
567
+ (they adjust to mobile devices such the iPad and iPhone), and are priced reasonably
568
+ compared to our competitors. \n\nOur themes feature drag and drop content
569
+ management from within WordPress itself allowing customers to manage their
570
+ content easily and effectively on a per-page basis.","high_concept":"High
571
+ quality user friendly WordPress themes at reasonable prices.","follower_count":2,"company_url":"http://cyberchimps.com"},"tags":[{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":15706,"tag_type":"SkillTag","name":"photoshop","display_name":"Photoshop","angellist_url":"http://angel.co/photoshop"},{"id":17284,"tag_type":"SkillTag","name":"illustrator","display_name":"Illustrator","angellist_url":"http://angel.co/illustrator"},{"id":19006,"tag_type":"SkillTag","name":"wordpress","display_name":"Wordpress","angellist_url":"http://angel.co/wordpress-1"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2550,"title":"Ruby
572
+ Developer","description":"Developers at Authntk do more than just put out
573
+ fires and close tickets. They build new and exciting features, start to finish.
574
+ Developers are expected to help us figure out what to build and how to build
575
+ it, then work with a small team to get it done.\r\n\r\nWhat we use:\r\n\r\nRuby
576
+ on Rails\r\nJava\r\nLinux\r\nFlash\r\nGit\r\nTornado Twister II\r\nWhat you\u2019ll
577
+ do:\r\n\r\nHelp design and architect new functionality\r\nArgue about the
578
+ right way to do things\r\nWork closely with the entire team to help develop
579
+ features\r\nTake ownership of your code, and help test, release and maintain
580
+ it\r\nResearch new technologies that will help Authntk remain competitive\r\nWhat
581
+ we\u2019re looking for:\r\n\r\nWeb programming experience using an MVC framework\r\nExperience
582
+ with a dynamic language (Ruby, Python, C#3.0, etc.)\r\nJavascript\r\nHistory
583
+ of writing quality code\r\nDesire to stay current in the latest software technology\r\nPassion
584
+ for a fast-paced, venture-backed startup environment","job_type":"fulltime","created_at":"2012-04-18T20:45:10Z","updated_at":"2012-04-23T03:40:40Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":1.0,"equity_vest":4.0,"salary_min":60000,"salary_max":75000,"angellist_url":"http://angel.co/authntk-1/recruiting/2550-ruby-developer","startup":{"id":83605,"hidden":false,"community_profile":false,"name":"Authntk","angellist_url":"http://angel.co/authntk-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83605-1671465935601f5f3839f86ff192d16d-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83605-1671465935601f5f3839f86ff192d16d-thumb.png","product_desc":"Authntk
585
+ is an easy-to-use, cloud-based social video marketing platform that enables
586
+ organizations to easily capture, moderate, manage, analyze and amplify their
587
+ consumer generated content. Companies can easily request, moderate and add
588
+ video testimonials, product reviews and other engaging video content to their
589
+ website and other social presence in just minutes.","high_concept":"Social
590
+ Video Marketing Platform","follower_count":6,"company_url":"http://www.authntk.com"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":21135,"tag_type":"SkillTag","name":"git","display_name":"Git","angellist_url":"http://angel.co/git"},{"id":21893,"tag_type":"SkillTag","name":"flash","display_name":"Flash","angellist_url":"http://angel.co/flash"},{"id":31586,"tag_type":"SkillTag","name":"linux","display_name":"Linux","angellist_url":"http://angel.co/linux-1"},{"id":32149,"tag_type":"SkillTag","name":"experienced
591
+ rails developer","display_name":"Experienced Rails Developer","angellist_url":"http://angel.co/experienced-rails-developer"},{"id":47425,"tag_type":"SkillTag","name":"amazon
592
+ s3","display_name":"Amazon S3","angellist_url":"http://angel.co/amazon-s3"},{"id":56191,"tag_type":"SkillTag","name":"wowza
593
+ server","display_name":"Wowza Server","angellist_url":"http://angel.co/wowza-server"},{"id":79456,"tag_type":"SkillTag","name":"github","display_name":"Github","angellist_url":"http://angel.co/github-1"},{"id":81212,"tag_type":"SkillTag","name":"ruby
594
+ rails jquery javascript","display_name":"Ruby Rails jQuery JavaScript","angellist_url":"http://angel.co/ruby-rails-jquery-javascript"},{"id":8816,"tag_type":"LocationTag","name":"columbia,
595
+ md","display_name":"Columbia, MD","angellist_url":"http://angel.co/columbia-md"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2548,"title":"Ruby
596
+ on Rails Developer/Engineer","description":"As a Ruby on Rails Engineer you
597
+ will be responsible for developing and managing our apps, integrations and
598
+ environment. \r\n\r\nThe ideal candidate will demonstrate experience and skills
599
+ with: \r\n* MySQL \r\n* Solr \r\n* Ruby on Rails\r\n* Java Script\r\n\r\nHave
600
+ hands-on experience with:\r\n* Google Adwords API''s \r\n* Facebook APIS\r\n*
601
+ Engine Yard\r\n* New Relic \r\n* Sendgrid\r\n\r\nIf you know php and want
602
+ to come to the dark side ( :) ) we will train the right candidate. \r\n\r\nWe
603
+ use: \r\n* Pivotal Tracker\r\n* Github\r\n* Airbrake\r\n* New Relic\r\n\r\n\r\n","job_type":"fulltime","created_at":"2012-04-18T19:58:45Z","updated_at":"2012-04-23T03:01:06Z","equity_cliff":1.0,"equity_min":1.0,"equity_max":2.0,"equity_vest":3.0,"salary_min":45000,"salary_max":60000,"angellist_url":"http://angel.co/dealer-ignition-1/recruiting/2548-ruby-on-rails-developer-engineer","startup":{"id":84062,"hidden":false,"community_profile":false,"name":"Dealer
604
+ Ignition ","angellist_url":"http://angel.co/dealer-ignition-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84062-cbfcb3d8aa695031ccefeb1e3755ee7a-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/84062-cbfcb3d8aa695031ccefeb1e3755ee7a-thumb.png","product_desc":"We
605
+ supply an online platform for brands, buying groups and manufacturers to automate
606
+ their dealers merchandising and promoting of their brands and products. It
607
+ does this on the web, facebook, mobile (iPad) and email. \n\nWe charge a subscription
608
+ to corporate clients and to their dealers for using the service. \n\nWe have
609
+ a 90% dealer subscription renewal rate. ","high_concept":"Hubspot for Brands
610
+ and Dealers","follower_count":11,"company_url":"http://dealerignition.com"},"tags":[{"id":14780,"tag_type":"SkillTag","name":"java","display_name":"Java","angellist_url":"http://angel.co/java"},{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":16309,"tag_type":"SkillTag","name":"mysql","display_name":"MySQL","angellist_url":"http://angel.co/mysql-1"},{"id":17274,"tag_type":"SkillTag","name":"solr","display_name":"SOLR","angellist_url":"http://angel.co/solr"},{"id":21349,"tag_type":"SkillTag","name":"facebook
611
+ api","display_name":"Facebook API","angellist_url":"http://angel.co/facebook-api"},{"id":24753,"tag_type":"SkillTag","name":"adwords","display_name":"AdWords","angellist_url":"http://angel.co/adwords"},{"id":36354,"tag_type":"SkillTag","name":"jquery
612
+ mobile","display_name":"jQuery Mobile","angellist_url":"http://angel.co/jquery-mobile"},{"id":49271,"tag_type":"SkillTag","name":"yaml
613
+ css framework","display_name":"YAML CSS Framework","angellist_url":"http://angel.co/yaml-css-framework"},{"id":80376,"tag_type":"SkillTag","name":"html5
614
+ & css3","display_name":"HTML5 & CSS3","angellist_url":"http://angel.co/html5-css3"},{"id":81566,"tag_type":"SkillTag","name":"google
615
+ api","display_name":"Google Api","angellist_url":"http://angel.co/google-api"},{"id":82532,"tag_type":"SkillTag","name":"ruby
616
+ on rails","display_name":"Ruby on Rails","angellist_url":"http://angel.co/ruby-on-rails-1"},{"id":83760,"tag_type":"SkillTag","name":"chargify","display_name":"Chargify","angellist_url":"http://angel.co/chargify-2"},{"id":1616,"tag_type":"LocationTag","name":"atlanta","display_name":"Atlanta","angellist_url":"http://angel.co/atlanta"},{"id":1995,"tag_type":"LocationTag","name":"raleigh","display_name":"Raleigh","angellist_url":"http://angel.co/raleigh"},{"id":2086,"tag_type":"LocationTag","name":"charlotte","display_name":"Charlotte","angellist_url":"http://angel.co/charlotte"},{"id":2197,"tag_type":"LocationTag","name":"charleston","display_name":"Charleston","angellist_url":"http://angel.co/charleston"},{"id":2227,"tag_type":"LocationTag","name":"greenville,
617
+ sc","display_name":"Greenville, SC","angellist_url":"http://angel.co/greenville-sc"},{"id":9135,"tag_type":"LocationTag","name":"columbia","display_name":"Columbia","angellist_url":"http://angel.co/columbia-2"},{"id":11538,"tag_type":"LocationTag","name":"asheville","display_name":"Asheville","angellist_url":"http://angel.co/asheville"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2546,"title":"Front
618
+ End Engineer","description":"All aspects of front end engineering and design.
619
+ Good knowledge of Ruby on Rails and Javascript is preferred. Experience with
620
+ platforms and business applications is also helpful.","job_type":"fulltime","created_at":"2012-04-18T19:51:57Z","updated_at":"2012-04-23T04:00:54Z","equity_cliff":0.5,"equity_min":0.5,"equity_max":2.0,"equity_vest":3.0,"salary_min":70000,"salary_max":80000,"angellist_url":"http://angel.co/caplinked/recruiting/2546-front-end-engineer","startup":{"id":12650,"hidden":false,"community_profile":false,"name":"CapLinked","angellist_url":"http://angel.co/caplinked","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12650-cc38c399f3a8e01610ac248065641d9b-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/12650-cc38c399f3a8e01610ac248065641d9b-thumb.jpg","product_desc":"CapLinked
621
+ is a secure platform for private investing that allows companies, investors,
622
+ and advisors to network, manage transactions, and exchange private updates.","high_concept":"DropBox-meets-LinkedIn
623
+ for finance","follower_count":371,"company_url":"https://secure.caplinked.com/"},"tags":[{"id":80376,"tag_type":"SkillTag","name":"html5
624
+ & css3","display_name":"HTML5 & CSS3","angellist_url":"http://angel.co/html5-css3"},{"id":81212,"tag_type":"SkillTag","name":"ruby
625
+ rails jquery javascript","display_name":"Ruby Rails jQuery JavaScript","angellist_url":"http://angel.co/ruby-rails-jquery-javascript"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":2301,"tag_type":"LocationTag","name":"manhattan
626
+ beach","display_name":"Manhattan Beach","angellist_url":"http://angel.co/manhattan-beach"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2545,"title":"Ruby
627
+ Developer","description":"Ruby, Mysql, Coffescript","job_type":"fulltime","created_at":"2012-04-18T19:30:37Z","updated_at":"2012-04-23T02:20:39Z","equity_cliff":1.0,"equity_min":1.0,"equity_max":4.0,"equity_vest":4.0,"salary_min":1000,"salary_max":100000,"angellist_url":"http://angel.co/robot-recruit-1/recruiting/2545-ruby-developer","startup":{"id":19211,"hidden":false,"community_profile":false,"name":"Robot
628
+ Recruit","angellist_url":"http://angel.co/robot-recruit-1","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19211-b5c87e8dd3552240050da48db4e5a03a-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19211-b5c87e8dd3552240050da48db4e5a03a-thumb.png","product_desc":"Robot
629
+ Recruit is a new job site that algorithmically matches and applies people
630
+ to jobs. Our site is focused on helping the Job Seeker first and making the
631
+ process of finding a job easier. We eliminate the frantic find / search /
632
+ apply loop that everyone goes through when trying to find a job. Employers
633
+ can sign up, and its so simple that they can immediately start reviewing prospective
634
+ candidates and offer an interviews with a single click.\n\nhttp://www.robotrecruit.com","high_concept":"Algorithmic
635
+ Hiring","follower_count":27,"company_url":"http://www.robotrecruit.com"},"tags":[{"id":16309,"tag_type":"SkillTag","name":"mysql","display_name":"MySQL","angellist_url":"http://angel.co/mysql-1"},{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":21133,"tag_type":"SkillTag","name":"coffeescript","display_name":"Coffeescript","angellist_url":"http://angel.co/coffeescript"},{"id":1664,"tag_type":"LocationTag","name":"new
636
+ york, ny","display_name":"New York City","angellist_url":"http://angel.co/new-york-ny-1"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2539,"title":"Senior
637
+ Front-End Engineer / Designer","description":"-Five years building front-end
638
+ experience\r\n-Great looking design portfolio\r\n-UI / UX experience (enterprise
639
+ software preferred)","job_type":"fulltime","created_at":"2012-04-18T05:59:58Z","updated_at":"2012-04-23T04:00:54Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":1.0,"equity_vest":4.0,"salary_min":60000,"salary_max":80000,"angellist_url":"http://angel.co/rescale/recruiting/2539-senior-front-end-engineer-designer","startup":{"id":80503,"hidden":false,"community_profile":false,"name":"Rescale","angellist_url":"http://angel.co/rescale","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80503-cbe9d7fb3c5ae4479a5a9d6e68dc62e8-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/80503-cbe9d7fb3c5ae4479a5a9d6e68dc62e8-thumb.jpg","product_desc":"Rescale''s
640
+ cloud simulation platform lets any engineer, build, compute, and analyze simulation
641
+ workflows in the cloud.","high_concept":"Cloud Simulation Platform","follower_count":64,"company_url":"http://rescale.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":16135,"tag_type":"SkillTag","name":"django","display_name":"Django","angellist_url":"http://angel.co/django"},{"id":1692,"tag_type":"LocationTag","name":"san
642
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2533,"title":"Back-End
643
+ Engineer","description":"We''re looking for a rock star back-end developer
644
+ experienced with a strong background with Yii Framework and Mootools. \r\n\r\nJoin
645
+ our small development team to change the way people find restaurants!","job_type":"fulltime","created_at":"2012-04-17T22:14:38Z","updated_at":"2012-04-23T04:00:54Z","equity_cliff":0.0,"equity_min":0.0,"equity_max":1.0,"equity_vest":0.0,"salary_min":18000,"salary_max":36000,"angellist_url":"http://angel.co/cibando/recruiting/2533-back-end-engineer","startup":{"id":2915,"hidden":false,"community_profile":false,"name":"Cibando","angellist_url":"http://angel.co/cibando","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2915-98409893f6b7ccf9f032aa444053f6ad-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2915-98409893f6b7ccf9f032aa444053f6ad-thumb.jpg","product_desc":"Cibando
646
+ is a content and communications company for restaurants and other dining enterprises.
647
+ With innovative technology and state-of-the-art promotional strategies, Cibando
648
+ creates and distributes quality content on the web and social media, which
649
+ generate positive business response, and image-boosting buzz for its clientele.
650
+ \n\niPhone: http://bit.ly/Cibando\nAndroid: http://bit.ly/H0fRbN\nFacebook:
651
+ http://facebook.com/Cibando\n","high_concept":"Your Guide to Food","follower_count":8,"company_url":"http://www.cibando.com"},"tags":[{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":49270,"tag_type":"SkillTag","name":"yii
652
+ php framework","display_name":"Yii PHP Framework","angellist_url":"http://angel.co/yii-php-framework"},{"id":76563,"tag_type":"SkillTag","name":"html/css/php/mysql
653
+ (intermediate)","display_name":"HTML/CSS/PHP/MYSQL (Intermediate)","angellist_url":"http://angel.co/html-css-php-mysql-intermediate"},{"id":1971,"tag_type":"LocationTag","name":"ukraine","display_name":"Ukraine","angellist_url":"http://angel.co/ukraine"},{"id":2127,"tag_type":"LocationTag","name":"italy","display_name":"Italy","angellist_url":"http://angel.co/italy"},{"id":2137,"tag_type":"LocationTag","name":"rome","display_name":"Rome","angellist_url":"http://angel.co/rome"},{"id":2337,"tag_type":"LocationTag","name":"belarus","display_name":"Belarus","angellist_url":"http://angel.co/belarus"},{"id":2338,"tag_type":"LocationTag","name":"minsk","display_name":"Minsk","angellist_url":"http://angel.co/minsk"},{"id":80155,"tag_type":"LocationTag","name":"kiev","display_name":"Kiev","angellist_url":"http://angel.co/kiev"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2534,"title":"Mobile
654
+ Android Programmer for Augmented Reality Eyewear Apps ","description":"Solid
655
+ Android programmer with portfolio of app experience. Must know the meaning
656
+ of Minimum Viable Product. Exceptional candidates will be offered an equity
657
+ stake in the company.\r\n\r\nOur company is in the process of developing augmented
658
+ vision applications and have six apps on our roadmap that need to be produced. \r\n\r\nAugmate
659
+ provides visual efficiency tools for businesses and consumers by merging the
660
+ digital and physical worlds using eye-wear (AR Glasses) and mobile devices.\r\n\r\nSkills
661
+ desired: motivated, energetic, self-starter who is skilled at software development
662
+ on the Android platform, having OpenCV (computer vision), C++ , Java programming
663
+ and CMS (Drupal & Joomla) knowledge is a plus. \r\n\r\nThis position requires
664
+ the individual to be solution oriented, creative, and have the ability to
665
+ break through obstacles to complete the task.","job_type":"fulltime","created_at":"2012-04-17T22:33:54Z","updated_at":"2012-04-23T04:00:54Z","equity_cliff":1.0,"equity_min":3.0,"equity_max":5.0,"equity_vest":2.0,"salary_min":75000,"salary_max":100000,"angellist_url":"http://angel.co/augmate/recruiting/2534-mobile-android-programmer-for-augmented-reality-eyewear-apps","startup":{"id":2457,"hidden":false,"community_profile":false,"name":"Augmate","angellist_url":"http://angel.co/augmate","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2457-4bbe96ed145d93fc7a241d7c5bd6a5c2-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2457-4bbe96ed145d93fc7a241d7c5bd6a5c2-thumb.jpg","product_desc":"Augmate
666
+ provides visual efficiency tools for businesses and consumers by merging the
667
+ digital and physical worlds using eye-wear and mobile devices.\n\nWe create
668
+ a ubiquitous computing environment so that the world becomes our desktop.
669
+ Our business is divided into 2 segments. The consumer segment offers augmented
670
+ reality features within our Immersiverse product that shows advertisements
671
+ and the other segment is an non-marketing counterpart for industries named
672
+ Augmetaverse, that can be licensed on a yearly basis. In both these segments,
673
+ revenue is achieved by either licensing or advertising.","high_concept":"Terminator
674
+ Vision via Augmented Reality","follower_count":37,"company_url":"http://www.augmate.com"},"tags":[{"id":14780,"tag_type":"SkillTag","name":"java","display_name":"Java","angellist_url":"http://angel.co/java"},{"id":16301,"tag_type":"SkillTag","name":"computer
675
+ vision","display_name":"Computer Vision","angellist_url":"http://angel.co/computer-vision-1"},{"id":18169,"tag_type":"SkillTag","name":"ios
676
+ app development","display_name":"iOS App Development","angellist_url":"http://angel.co/ios-app-development"},{"id":18170,"tag_type":"SkillTag","name":"android
677
+ app development","display_name":"Android App Development","angellist_url":"http://angel.co/android-app-development"},{"id":20918,"tag_type":"SkillTag","name":"ui
678
+ / ux design","display_name":"UI / UX Design","angellist_url":"http://angel.co/ui-ux-design"},{"id":1664,"tag_type":"LocationTag","name":"new
679
+ york, ny","display_name":"New York City","angellist_url":"http://angel.co/new-york-ny-1"},{"id":1713,"tag_type":"LocationTag","name":"connecticut","display_name":"Connecticut","angellist_url":"http://angel.co/connecticut"},{"id":2071,"tag_type":"LocationTag","name":"new
680
+ york","display_name":"New York","angellist_url":"http://angel.co/new-york"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2530,"title":"Front-End
681
+ Engineer","description":"We''re looking to hire a talented with at least +3
682
+ years of experience in front-end development with great strength coding in
683
+ Javascript, CSS and HTML.\r\n\r\nYou''ll be working with a top-notch designer
684
+ to a create beautiful GUI and UX for all hungry people looking for restaurants.","job_type":"fulltime","created_at":"2012-04-17T21:57:32Z","updated_at":"2012-04-23T04:00:54Z","equity_cliff":0.0,"equity_min":0.0,"equity_max":1.0,"equity_vest":0.0,"salary_min":18000,"salary_max":36000,"angellist_url":"http://angel.co/cibando/recruiting/2530-front-end-engineer","startup":{"id":2915,"hidden":false,"community_profile":false,"name":"Cibando","angellist_url":"http://angel.co/cibando","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2915-98409893f6b7ccf9f032aa444053f6ad-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2915-98409893f6b7ccf9f032aa444053f6ad-thumb.jpg","product_desc":"Cibando
685
+ is a content and communications company for restaurants and other dining enterprises.
686
+ With innovative technology and state-of-the-art promotional strategies, Cibando
687
+ creates and distributes quality content on the web and social media, which
688
+ generate positive business response, and image-boosting buzz for its clientele.
689
+ \n\niPhone: http://bit.ly/Cibando\nAndroid: http://bit.ly/H0fRbN\nFacebook:
690
+ http://facebook.com/Cibando\n","high_concept":"Your Guide to Food","follower_count":8,"company_url":"http://www.cibando.com"},"tags":[{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":29388,"tag_type":"SkillTag","name":"mootools","display_name":"Mootools","angellist_url":"http://angel.co/mootools"},{"id":49270,"tag_type":"SkillTag","name":"yii
691
+ php framework","display_name":"Yii PHP Framework","angellist_url":"http://angel.co/yii-php-framework"},{"id":78759,"tag_type":"SkillTag","name":"css/html","display_name":"CSS/HTML","angellist_url":"http://angel.co/css-html"},{"id":80376,"tag_type":"SkillTag","name":"html5
692
+ & css3","display_name":"HTML5 & CSS3","angellist_url":"http://angel.co/html5-css3"},{"id":1971,"tag_type":"LocationTag","name":"ukraine","display_name":"Ukraine","angellist_url":"http://angel.co/ukraine"},{"id":2127,"tag_type":"LocationTag","name":"italy","display_name":"Italy","angellist_url":"http://angel.co/italy"},{"id":2137,"tag_type":"LocationTag","name":"rome","display_name":"Rome","angellist_url":"http://angel.co/rome"},{"id":2337,"tag_type":"LocationTag","name":"belarus","display_name":"Belarus","angellist_url":"http://angel.co/belarus"},{"id":2338,"tag_type":"LocationTag","name":"minsk","display_name":"Minsk","angellist_url":"http://angel.co/minsk"},{"id":80155,"tag_type":"LocationTag","name":"kiev","display_name":"Kiev","angellist_url":"http://angel.co/kiev"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2531,"title":"Talented
693
+ .NET / C# Gurus Needed","description":"Immediate openings available for two
694
+ talented, creative and dedicated .NET / C# developers looking to join a promising
695
+ start-up in the Raleigh, NC area.\r\n\r\nFor more detailed information, please
696
+ contact us at: hello@redcoin.com .\r\n\r\nThank you!","job_type":"fulltime","created_at":"2012-04-17T22:01:01Z","updated_at":"2012-04-23T04:00:54Z","equity_cliff":1.0,"equity_min":2.0,"equity_max":4.0,"equity_vest":3.0,"salary_min":70000,"salary_max":100000,"angellist_url":"http://angel.co/redcoin/recruiting/2531-talented-net-c-gurus-needed","startup":{"id":83850,"hidden":false,"community_profile":false,"name":"RedCoin","angellist_url":"http://angel.co/redcoin","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83850-c1cae0f897c02845a2b85f569ce1d98f-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/83850-c1cae0f897c02845a2b85f569ce1d98f-thumb.jpg","product_desc":"We''re
697
+ a B2C start-up in stealth mode, with plans to beta launch in June 2012. \n\nNearly
698
+ 200 merchants have already expressed an interest in joining us when we launch.\n\nIf
699
+ you would like to know more, feel free to contact us; we would be happy to
700
+ explain what we''re doing and why we''re doing it.\n\nAnd perhaps we''ll even
701
+ provide you access to our super-secret demo site...","high_concept":"","follower_count":1,"company_url":"http://www.redcoin.com"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":14782,"tag_type":"SkillTag","name":".net","display_name":".NET","angellist_url":"http://angel.co/net"},{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":15850,"tag_type":"SkillTag","name":"sql","display_name":"SQL","angellist_url":"http://angel.co/sql"},{"id":16020,"tag_type":"SkillTag","name":"c#","display_name":"C#","angellist_url":"http://angel.co/c-1"},{"id":1995,"tag_type":"LocationTag","name":"raleigh","display_name":"Raleigh","angellist_url":"http://angel.co/raleigh"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2528,"title":"Senior
702
+ Mobile Developer (iOS & Android)","description":"Buddy is building the web
703
+ services and server-side infrastructure to power the world\u2019s connected
704
+ apps on any operating system. We have an amazing product, happy customers,
705
+ and amazing partners. We think big, we deliver big, we work with some of the
706
+ biggest brands in the world.\r\n\r\nTo help developers focus on building amazing
707
+ applications, we deliver an \u201cit just works\u201d cloud solution. We don''t
708
+ deliver a database or CPU cycles in the cloud, we deliver an end to end scenario
709
+ set.\r\n\r\nToday we might be working with a developer building the next great
710
+ game; tomorrow it might be a new shopping application. Our customers are literally
711
+ building everything you can imagine, and lots you can\u2019t \u2013 our web
712
+ services platform needs to be able to support it all.\r\n\r\nWe are looking
713
+ to hire a new team member to own and drive our iOS and Android developer experience
714
+ strategy. We need to ensure we have \"best in class\" tooling, and we need
715
+ to ensure iOS and Android compatibility. This individual will also be creating
716
+ several apps to help demonstrate the Buddy Platform. \r\n\r\nResponsibilities
717
+ will include 1) work in a team environment to design, develop and ship scenarios/features,
718
+ 2) directly engage with customers, providing developer support above and beyond
719
+ expectations to build customer love, 3) help with operations, documentation,
720
+ samples, customer support, and everything a startup needs, 4) drive our iOS
721
+ and Android developer experience strategy, 5) build the Buddy Platform iOS
722
+ & Android SDKs.","job_type":"fulltime","created_at":"2012-04-17T21:31:06Z","updated_at":"2012-04-23T04:00:54Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":1.0,"equity_vest":4.0,"salary_min":50000,"salary_max":80000,"angellist_url":"http://angel.co/buddy/recruiting/2528-senior-mobile-developer-ios-android","startup":{"id":14034,"hidden":false,"community_profile":false,"name":"Buddy","angellist_url":"http://angel.co/buddy","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/14034-a13d38b45fd92f873b09d29de8bf4240-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/14034-a13d38b45fd92f873b09d29de8bf4240-thumb.png","product_desc":"Buddy
723
+ helps *app publishers* understand the who, what and where of their app usage
724
+ sliced by demographics, locations and more.\n\nBuddy helps *app developers*
725
+ build better apps faster by offering hosted cloud scenarios (such as location
726
+ services, messaging, media albums, friends/chat, crash reporting, etc...)
727
+ without them having to write server-side code or invest in the infrastructure,
728
+ technology and resources otherwise required to support these features. \n\nLive
729
+ today @ http://buddy.com.","high_concept":"Instant cloud backend & rich analytics
730
+ for apps on any mobile OS.","follower_count":107,"company_url":"http://buddy.com"},"tags":[{"id":16035,"tag_type":"SkillTag","name":"mobile
731
+ platform","display_name":"Mobile Platform","angellist_url":"http://angel.co/mobile-platform"},{"id":16680,"tag_type":"SkillTag","name":"android","display_name":"Android","angellist_url":"http://angel.co/android-2"},{"id":17237,"tag_type":"SkillTag","name":"mobile
732
+ development","display_name":"Mobile Development","angellist_url":"http://angel.co/mobile-development"},{"id":17363,"tag_type":"SkillTag","name":"ios
733
+ development","display_name":"iOS Development","angellist_url":"http://angel.co/ios-development"},{"id":18169,"tag_type":"SkillTag","name":"ios
734
+ app development","display_name":"iOS App Development","angellist_url":"http://angel.co/ios-app-development"},{"id":18170,"tag_type":"SkillTag","name":"android
735
+ app development","display_name":"Android App Development","angellist_url":"http://angel.co/android-app-development"},{"id":28062,"tag_type":"SkillTag","name":"iphone
736
+ / ipad development","display_name":"iPhone / iPad Development","angellist_url":"http://angel.co/iphone-ipad-development"},{"id":29121,"tag_type":"SkillTag","name":"windows
737
+ phone","display_name":"Windows Phone","angellist_url":"http://angel.co/windows-phone"},{"id":32388,"tag_type":"SkillTag","name":"android
738
+ development","display_name":"Android Development","angellist_url":"http://angel.co/android-development"},{"id":80398,"tag_type":"SkillTag","name":"windows
739
+ phone development","display_name":"Windows Phone Development","angellist_url":"http://angel.co/windows-phone-development"},{"id":1673,"tag_type":"LocationTag","name":"portland","display_name":"Portland","angellist_url":"http://angel.co/portland"},{"id":1680,"tag_type":"LocationTag","name":"seattle","display_name":"Seattle","angellist_url":"http://angel.co/seattle"},{"id":1698,"tag_type":"LocationTag","name":"vancouver","display_name":"Vancouver","angellist_url":"http://angel.co/vancouver"},{"id":2138,"tag_type":"LocationTag","name":"redmond","display_name":"Redmond","angellist_url":"http://angel.co/redmond"},{"id":2228,"tag_type":"LocationTag","name":"bellevue","display_name":"Bellevue","angellist_url":"http://angel.co/bellevue"},{"id":2295,"tag_type":"LocationTag","name":"kirkland","display_name":"Kirkland","angellist_url":"http://angel.co/kirkland"},{"id":8748,"tag_type":"LocationTag","name":"tacoma","display_name":"Tacoma","angellist_url":"http://angel.co/tacoma"},{"id":8774,"tag_type":"LocationTag","name":"everett","display_name":"Everett","angellist_url":"http://angel.co/everett-1"},{"id":30822,"tag_type":"LocationTag","name":"seatac","display_name":"Seatac","angellist_url":"http://angel.co/seatac"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2527,"title":"Senior
740
+ .NET Web Services Developer","description":"Buddy is building the web services
741
+ and server-side infrastructure to power the world\u2019s connected apps on
742
+ any operating system. We have an amazing product, happy customers, and amazing
743
+ partners. We think big, we deliver big, we work with some of the biggest brands
744
+ in the world.\r\n\r\nTo help developers focus on building amazing applications,
745
+ we deliver an \u201cit just works\u201d cloud solution. We don''t deliver
746
+ a database or CPU cycles in the cloud, we deliver an end to end scenario set.\r\n\r\nToday
747
+ we might be working with a developer building the next great game; tomorrow
748
+ it might be a new shopping application. Our customers are literally building
749
+ everything you can imagine, and lots you can\u2019t \u2013 our web services
750
+ platform needs to be able to support it all.\r\n\r\nWe are looking to hire
751
+ a new Senior .NET Web Services Developer to join our team. This position will
752
+ eventually take over responsibility for the set of web services which power
753
+ our platform. This includes an existing code base, expanding it, writing unit
754
+ tests, debugging failures and handling scalability issues. \r\n\r\nResponsibilities
755
+ will include 1) work in a team environment to design, develop, ship, and maintain
756
+ scenarios/features, 2) directly engage with customers, providing developer
757
+ support above and beyond expectations to build customer love, 3) help with
758
+ operations, documentation, samples, customer support, and everything a startup
759
+ needs, 4) primary ownership of our public and private web service, and unit
760
+ test framework.","job_type":"fulltime","created_at":"2012-04-17T21:28:52Z","updated_at":"2012-04-23T04:00:54Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":1.0,"equity_vest":4.0,"salary_min":50000,"salary_max":80000,"angellist_url":"http://angel.co/buddy/recruiting/2527-senior-net-web-services-developer","startup":{"id":14034,"hidden":false,"community_profile":false,"name":"Buddy","angellist_url":"http://angel.co/buddy","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/14034-a13d38b45fd92f873b09d29de8bf4240-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/14034-a13d38b45fd92f873b09d29de8bf4240-thumb.png","product_desc":"Buddy
761
+ helps *app publishers* understand the who, what and where of their app usage
762
+ sliced by demographics, locations and more.\n\nBuddy helps *app developers*
763
+ build better apps faster by offering hosted cloud scenarios (such as location
764
+ services, messaging, media albums, friends/chat, crash reporting, etc...)
765
+ without them having to write server-side code or invest in the infrastructure,
766
+ technology and resources otherwise required to support these features. \n\nLive
767
+ today @ http://buddy.com.","high_concept":"Instant cloud backend & rich analytics
768
+ for apps on any mobile OS.","follower_count":107,"company_url":"http://buddy.com"},"tags":[{"id":14782,"tag_type":"SkillTag","name":".net","display_name":".NET","angellist_url":"http://angel.co/net"},{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":15651,"tag_type":"SkillTag","name":"large
769
+ scale distributed systems","display_name":"Large-Scale Distributed Systems","angellist_url":"http://angel.co/large-scale-distributed-systems"},{"id":15850,"tag_type":"SkillTag","name":"sql","display_name":"SQL","angellist_url":"http://angel.co/sql"},{"id":16020,"tag_type":"SkillTag","name":"c#","display_name":"C#","angellist_url":"http://angel.co/c-1"},{"id":17237,"tag_type":"SkillTag","name":"mobile
770
+ development","display_name":"Mobile Development","angellist_url":"http://angel.co/mobile-development"},{"id":18962,"tag_type":"SkillTag","name":"asp.net
771
+ mvc","display_name":"ASP.NET MVC","angellist_url":"http://angel.co/asp-net-mvc"},{"id":23973,"tag_type":"SkillTag","name":"aws","display_name":"AWS","angellist_url":"http://angel.co/aws-2"},{"id":29120,"tag_type":"SkillTag","name":"windows
772
+ azure","display_name":"Windows Azure","angellist_url":"http://angel.co/windows-azure"},{"id":41075,"tag_type":"SkillTag","name":"mvc
773
+ 3","display_name":"MVC 3","angellist_url":"http://angel.co/mvc-3"},{"id":47429,"tag_type":"SkillTag","name":"iis","display_name":"IIS","angellist_url":"http://angel.co/iis"},{"id":80164,"tag_type":"SkillTag","name":"razor","display_name":"Razor","angellist_url":"http://angel.co/razor"},{"id":1673,"tag_type":"LocationTag","name":"portland","display_name":"Portland","angellist_url":"http://angel.co/portland"},{"id":1680,"tag_type":"LocationTag","name":"seattle","display_name":"Seattle","angellist_url":"http://angel.co/seattle"},{"id":1698,"tag_type":"LocationTag","name":"vancouver","display_name":"Vancouver","angellist_url":"http://angel.co/vancouver"},{"id":2138,"tag_type":"LocationTag","name":"redmond","display_name":"Redmond","angellist_url":"http://angel.co/redmond"},{"id":2228,"tag_type":"LocationTag","name":"bellevue","display_name":"Bellevue","angellist_url":"http://angel.co/bellevue"},{"id":2295,"tag_type":"LocationTag","name":"kirkland","display_name":"Kirkland","angellist_url":"http://angel.co/kirkland"},{"id":8748,"tag_type":"LocationTag","name":"tacoma","display_name":"Tacoma","angellist_url":"http://angel.co/tacoma"},{"id":8774,"tag_type":"LocationTag","name":"everett","display_name":"Everett","angellist_url":"http://angel.co/everett-1"},{"id":30822,"tag_type":"LocationTag","name":"seatac","display_name":"Seatac","angellist_url":"http://angel.co/seatac"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2512,"title":"Senior
774
+ Engineer","description":"We are looking for someone who is willing to tackle
775
+ the whole gamut of web-application development. Rails and Coffeescript are
776
+ required skills. Must be willing to learn and experiment with new things and
777
+ stay up-to-date on cutting edge technologies. Work includes (but is not limited
778
+ to):\r\n* Ruby on Rails back-end\r\n* Javascript/Coffeescript heavy front-end
779
+ with backbone.js\r\n* Collecting, consuming and analyzing large amounts of
780
+ relational data. \r\n* MySQL or Postgres DB with memcache.\r\n* Design and
781
+ implement the whole system towards best user experience (ajax, instant availability,
782
+ async caching etc.)\r\n\r\n\r\nAs you can see in this profile, a lot of credible
783
+ people are backing us because it is about time someone fixed the car repair
784
+ industry. Mobile apps are central to this new experience and you can play
785
+ a very important role in changing a massive and antiquated market.\r\n\r\nSalary,
786
+ equity, benefits, lunch every day and your choice of the best computer equipment
787
+ all come standard.\r\n\r\nAnd of course, free car repair and maintenance -
788
+ a perk no one can beat ;-).\r\n\r\nSend us your resume, github etc to dongyi@yourmechanic.com.
789
+ ","job_type":"fulltime","created_at":"2012-04-17T14:44:26Z","updated_at":"2012-04-23T04:00:54Z","equity_cliff":1.0,"equity_min":0.25,"equity_max":1.0,"equity_vest":4.0,"salary_min":80000,"salary_max":120000,"angellist_url":"http://angel.co/yourmechanic/recruiting/2512-senior-engineer","startup":{"id":16683,"hidden":false,"community_profile":false,"name":"YourMechanic","angellist_url":"http://angel.co/yourmechanic","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/16683-b4435ae37d491386d65eea12d4481f63-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/16683-b4435ae37d491386d65eea12d4481f63-thumb.png","product_desc":"Imagine
790
+ when you have a car problem, a top rated mechanic comes to your home or office,
791
+ fixes your car, and it cost you 30-50% less than shops and dealers. Sounds
792
+ crazy, right?\n\nWe are making that happen. We are disrupting the car repair
793
+ market by creating a marketplace for top mechanics (peer to peer disruption
794
+ of a large antiquated market). ","high_concept":"The Mechanic That Comes To
795
+ You! ","follower_count":284,"company_url":"https://www.YourMechanic.com"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":17000,"tag_type":"SkillTag","name":"node.js","display_name":"Node.js","angellist_url":"http://angel.co/node-js"},{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":21133,"tag_type":"SkillTag","name":"coffeescript","display_name":"Coffeescript","angellist_url":"http://angel.co/coffeescript"},{"id":21247,"tag_type":"SkillTag","name":"ms
796
+ sql","display_name":"Ms SQL","angellist_url":"http://angel.co/ms-sql"},{"id":22286,"tag_type":"SkillTag","name":"postgresql","display_name":"PostgreSQL","angellist_url":"http://angel.co/postgresql"},{"id":33096,"tag_type":"SkillTag","name":"backbone.js","display_name":"Backbone.js","angellist_url":"http://angel.co/backbone-js"},{"id":35110,"tag_type":"SkillTag","name":"memcached","display_name":"Memcached","angellist_url":"http://angel.co/memcached"},{"id":45429,"tag_type":"SkillTag","name":"javascript
797
+ ninja","display_name":"JavaScript Ninja","angellist_url":"http://angel.co/javascript-ninja"},{"id":1681,"tag_type":"LocationTag","name":"silicon
798
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1694,"tag_type":"LocationTag","name":"palo
799
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":2511,"title":"User
800
+ Experience & Interface Designer","description":"We are looking for a lead
801
+ UI designer. You will be responsible for all the landing pages, website,
802
+ mobile app design, branding on the vans and the uniforms....\r\n\r\nAlthough
803
+ you will be heavily involved in all the decisions surrounding UI/UX - the
804
+ core skill set that you will bring to table is user interface design. \r\n\r\nAs
805
+ you can see in this profile, a lot of credible people are backing us because
806
+ it is about time someone fixed the car repair industry. As our lead designer,
807
+ your creative work will be the first thing people will come in contact with
808
+ when they engage with us. You will give us the voice and an identity. \r\n\r\nSalary,
809
+ equity, benefits, lunch every day and your choice of the best computer equipment
810
+ all come standard.\r\n\r\nAnd of course, free car repair and maintenance -
811
+ a perk that no one can beat ;-).\r\n\r\nSend us the links to the sites/apps
812
+ you have designed instead of a resume. (art@yourmechanic.com)","job_type":"fulltime","created_at":"2012-04-17T14:31:36Z","updated_at":"2012-04-23T04:00:54Z","equity_cliff":1.0,"equity_min":0.25,"equity_max":1.0,"equity_vest":4.0,"salary_min":80000,"salary_max":120000,"angellist_url":"http://angel.co/yourmechanic/recruiting/2511-user-experience-interface-designer","startup":{"id":16683,"hidden":false,"community_profile":false,"name":"YourMechanic","angellist_url":"http://angel.co/yourmechanic","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/16683-b4435ae37d491386d65eea12d4481f63-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/16683-b4435ae37d491386d65eea12d4481f63-thumb.png","product_desc":"Imagine
813
+ when you have a car problem, a top rated mechanic comes to your home or office,
814
+ fixes your car, and it cost you 30-50% less than shops and dealers. Sounds
815
+ crazy, right?\n\nWe are making that happen. We are disrupting the car repair
816
+ market by creating a marketplace for top mechanics (peer to peer disruption
817
+ of a large antiquated market). ","high_concept":"The Mechanic That Comes To
818
+ You! ","follower_count":284,"company_url":"https://www.YourMechanic.com"},"tags":[{"id":15519,"tag_type":"SkillTag","name":"web
819
+ design","display_name":"Web Design","angellist_url":"http://angel.co/web-design-2"},{"id":15537,"tag_type":"SkillTag","name":"user
820
+ experience design","display_name":"User Experience Design","angellist_url":"http://angel.co/user-experience-design-1"},{"id":15650,"tag_type":"SkillTag","name":"product
821
+ design","display_name":"Product Design","angellist_url":"http://angel.co/product-design-1"},{"id":17897,"tag_type":"SkillTag","name":"user
822
+ interface design","display_name":"User Interface Design","angellist_url":"http://angel.co/user-interface-design"},{"id":20918,"tag_type":"SkillTag","name":"ui
823
+ / ux design","display_name":"UI / UX Design","angellist_url":"http://angel.co/ui-ux-design"},{"id":1681,"tag_type":"LocationTag","name":"silicon
824
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1694,"tag_type":"LocationTag","name":"palo
825
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":2510,"title":"Mobile
826
+ Apps Developer","description":"We are looking for an iOS and Android app developer. Ideally
827
+ we prefer someone who has experience building apps in both platforms, but
828
+ we are open to hiring two engineers (one for each platform). Must have extensive
829
+ experience building awesome apps! \r\n\r\nWe develop everything using cutting
830
+ edge technologies. Eager to learn and try new things is a must. Job will involve
831
+ evaluating and experimenting with different technologies and approach for
832
+ mobile app development, and potential of working with external hardware devices.
833
+ Willingness to venture into other areas of the ecosystem (back-end, javascript,
834
+ computer-car communication etc.) is a big plus.\r\n\r\n\r\nAs you can see
835
+ in this profile, a lot of credible people are backing us because it is about
836
+ time someone fixed the car repair industry. Mobile apps are central to this
837
+ new experience and you can play a very important role in changing a massive
838
+ and antiquated market. \r\n\r\nSalary, equity, benefits, lunch every day
839
+ and your choice of the best computer equipment all come standard.\r\n\r\nAnd
840
+ of course, free car repair and maintenance - a perk no one can beat ;-). \r\n\r\nSend
841
+ us the links to the apps that you have built instead of a resume. (art@yourmechanic.com)","job_type":"fulltime","created_at":"2012-04-17T14:18:26Z","updated_at":"2012-04-23T04:00:54Z","equity_cliff":1.0,"equity_min":0.25,"equity_max":1.0,"equity_vest":4.0,"salary_min":80000,"salary_max":120000,"angellist_url":"http://angel.co/yourmechanic/recruiting/2510-mobile-apps-developer","startup":{"id":16683,"hidden":false,"community_profile":false,"name":"YourMechanic","angellist_url":"http://angel.co/yourmechanic","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/16683-b4435ae37d491386d65eea12d4481f63-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/16683-b4435ae37d491386d65eea12d4481f63-thumb.png","product_desc":"Imagine
842
+ when you have a car problem, a top rated mechanic comes to your home or office,
843
+ fixes your car, and it cost you 30-50% less than shops and dealers. Sounds
844
+ crazy, right?\n\nWe are making that happen. We are disrupting the car repair
845
+ market by creating a marketplace for top mechanics (peer to peer disruption
846
+ of a large antiquated market). ","high_concept":"The Mechanic That Comes To
847
+ You! ","follower_count":284,"company_url":"https://www.YourMechanic.com"},"tags":[{"id":18169,"tag_type":"SkillTag","name":"ios
848
+ app development","display_name":"iOS App Development","angellist_url":"http://angel.co/ios-app-development"},{"id":18170,"tag_type":"SkillTag","name":"android
849
+ app development","display_name":"Android App Development","angellist_url":"http://angel.co/android-app-development"},{"id":1681,"tag_type":"LocationTag","name":"silicon
850
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1694,"tag_type":"LocationTag","name":"palo
851
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]}]'
852
+ http_version: !!null
853
+ recorded_at: Mon, 23 Apr 2012 04:12:51 GMT
854
+ - request:
855
+ method: get
856
+ uri: https://api.angel.co/1/jobs/2450
857
+ body:
858
+ encoding: US-ASCII
859
+ string: ''
860
+ headers:
861
+ Accept:
862
+ - application/json
863
+ User-Agent:
864
+ - AngellistApi Ruby Gem 1.0.1
865
+ response:
866
+ status:
867
+ code: 200
868
+ message: !!null
869
+ headers:
870
+ server:
871
+ - nginx/1.0.6
872
+ date:
873
+ - Mon, 23 Apr 2012 04:12:52 GMT
874
+ content-type:
875
+ - application/json; charset=utf-8
876
+ transfer-encoding:
877
+ - chunked
878
+ connection:
879
+ - close
880
+ vary:
881
+ - Accept-Encoding, Accept-Encoding
882
+ status:
883
+ - '200'
884
+ x-powered-by:
885
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
886
+ x-ratelimit-limit:
887
+ - '1000'
888
+ x-ratelimit-remaining:
889
+ - '996'
890
+ x-thanks:
891
+ - For using AngelList. Rock on.
892
+ x-runtime:
893
+ - '34'
894
+ etag:
895
+ - ! '"6a86fd82a0ec57c8044457e4c227bdf3"'
896
+ cache-control:
897
+ - private, max-age=0, must-revalidate
898
+ body:
899
+ encoding: ASCII-8BIT
900
+ string: ! '{"id":2450,"title":"Software Engineer","description":"Software Engineer\r\n\r\nWe
901
+ are looking for awesome people to join our engineering team to make products
902
+ that do real work for our users.\r\n\r\nSome problems that we\u2019re tackling
903
+ at Kloudless:\r\n\r\nReal-time, cross-platform collaboration\r\nThere are
904
+ so many collaborative platforms, and everyone has their own favorite. We\u2019re
905
+ solving collaborative content generation with real-time syncing and sharing.\r\n\r\nDocument
906
+ recommendations\r\nWe want the user to think as little as possible. That requires
907
+ us to be as intelligent as possible. Whether you\u2019re trying to rediscover
908
+ old documents or you\u2019re in process of creating new ones, \r\n\r\nHandling
909
+ LOTS of data\r\nNot only do we need speedy indexers to make information immediately
910
+ available to our users, we collect a ton of usage data in order to make recommendations
911
+ and improve user experience.\r\n\r\n\r\nMust-haves\r\nNo specific requirements.
912
+ You must be an exceptional problem solver with an understanding of current
913
+ web technology and have a passion for writing great code and building impactful
914
+ products. \r\n\r\nBonus Points\r\nExperience with a scripting language and
915
+ be able to pick up similar languages quickly (we use Python)\r\n","job_type":"fulltime","created_at":"2012-04-16T09:01:07Z","updated_at":"2012-04-23T01:20:40Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":2.0,"equity_vest":4.0,"salary_min":80000,"salary_max":100000,"angellist_url":"http://angel.co/kloudless/recruiting/2450-software-engineer","startup":{"id":24248,"hidden":false,"community_profile":false,"name":"Kloudless","angellist_url":"http://angel.co/kloudless","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24248-82142422e4fbce9a7375264c82489982-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24248-82142422e4fbce9a7375264c82489982-thumb.png","product_desc":"Kloudless
916
+ is a free service that offloads files from your inbox to your favorite storage
917
+ system (Dropbox, Box, local). We enable better management, search, and collaboration
918
+ for your email attachments.\n\nKloudless was founded by a team of four UC
919
+ Berkeley graduates in August 2011. Kloudless has received many accolades both
920
+ in the U.S. and internationally. We are part of the inaugural class at the
921
+ new Skydeck Incubator, which is backed by UC Berkeley and the Lawrence Berkeley
922
+ National Laboratory.","high_concept":"Making your inbox better and your attachments
923
+ smarter","follower_count":143,"company_url":"http://kloudless.com/"},"tags":[{"id":14766,"tag_type":"SkillTag","name":"software
924
+ engineering","display_name":"Software Engineering","angellist_url":"http://angel.co/software-engineering"},{"id":15670,"tag_type":"SkillTag","name":"software
925
+ development","display_name":"Software Development","angellist_url":"http://angel.co/software-development"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1681,"tag_type":"LocationTag","name":"silicon
926
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1692,"tag_type":"LocationTag","name":"san
927
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1697,"tag_type":"LocationTag","name":"berkeley","display_name":"Berkeley","angellist_url":"http://angel.co/berkeley"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]}'
928
+ http_version: !!null
929
+ recorded_at: Mon, 23 Apr 2012 04:12:52 GMT
930
+ - request:
931
+ method: get
932
+ uri: https://api.angel.co/1/startups/1124/jobs
933
+ body:
934
+ encoding: US-ASCII
935
+ string: ''
936
+ headers:
937
+ Accept:
938
+ - application/json
939
+ User-Agent:
940
+ - AngellistApi Ruby Gem 1.0.1
941
+ response:
942
+ status:
943
+ code: 200
944
+ message: !!null
945
+ headers:
946
+ server:
947
+ - nginx/1.0.6
948
+ date:
949
+ - Mon, 23 Apr 2012 04:12:53 GMT
950
+ content-type:
951
+ - application/json; charset=utf-8
952
+ transfer-encoding:
953
+ - chunked
954
+ connection:
955
+ - close
956
+ vary:
957
+ - Accept-Encoding, Accept-Encoding
958
+ status:
959
+ - '200'
960
+ x-powered-by:
961
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
962
+ x-ratelimit-limit:
963
+ - '1000'
964
+ x-ratelimit-remaining:
965
+ - '995'
966
+ x-thanks:
967
+ - For using AngelList. Rock on.
968
+ x-runtime:
969
+ - '103'
970
+ etag:
971
+ - ! '"78a8517b914dac0e001db7397c55878a"'
972
+ cache-control:
973
+ - private, max-age=0, must-revalidate
974
+ body:
975
+ encoding: ASCII-8BIT
976
+ string: ! '[{"id":619,"title":"Facebook Distribution Manager","description":"Learn
977
+ more about the role here: http://500.co/2012/03/14/want-to-help-our-startups-do-better-on-facebook-join-the-500-team/","job_type":"fulltime","created_at":"2012-01-21T21:34:22Z","updated_at":"2012-04-23T03:20:24Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":0.1,"equity_vest":4.0,"salary_min":90000,"salary_max":100000,"angellist_url":"http://angel.co/500-startups-fund/recruiting/619-facebook-distribution-manager","startup":{"id":1124,"hidden":false,"community_profile":false,"name":"500
978
+ 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
979
+ Startups is a Silicon Valley venture capital seed fund & startup accelerator.
980
+ We invest in internet startups on search, social, & mobile platforms. We run
981
+ an incubation and accelerator program emphasizing design & user experience,
982
+ distribution & customer acquisition, and lean startup practices & metrics.
983
+ Our investment team and mentor network has operational experience at companies
984
+ including PayPal, Google, YouTube, Yahoo, AOL, Zynga, LinkedIn, Twitter, Apple
985
+ & Facebook.","high_concept":"Silicon Valley micro-VC fund & accelerator founded
986
+ by ex-PayPal, Google, YouTube alums.","follower_count":3322,"company_url":"http://500.co"},"tags":[{"id":15669,"tag_type":"SkillTag","name":"social
987
+ media","display_name":"Social Media","angellist_url":"http://angel.co/social-media-1"},{"id":15853,"tag_type":"SkillTag","name":"sem","display_name":"SEM","angellist_url":"http://angel.co/sem"},{"id":19484,"tag_type":"SkillTag","name":"facebook
988
+ platform","display_name":"Facebook Platform","angellist_url":"http://angel.co/facebook-platform"},{"id":24753,"tag_type":"SkillTag","name":"adwords","display_name":"AdWords","angellist_url":"http://angel.co/adwords"},{"id":27581,"tag_type":"SkillTag","name":"facebook
989
+ ads","display_name":"Facebook Ads","angellist_url":"http://angel.co/facebook-ads"},{"id":28380,"tag_type":"SkillTag","name":"paid
990
+ search advertising","display_name":"Paid Search Advertising","angellist_url":"http://angel.co/paid-search-advertising"},{"id":83119,"tag_type":"SkillTag","name":"facebook
991
+ apis","display_name":"Facebook Apis","angellist_url":"http://angel.co/facebook-apis"},{"id":1701,"tag_type":"LocationTag","name":"mountain
992
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]}]'
993
+ http_version: !!null
994
+ recorded_at: Mon, 23 Apr 2012 04:12:53 GMT
995
+ - request:
996
+ method: get
997
+ uri: https://api.angel.co/1/tags/1692/jobs
998
+ body:
999
+ encoding: US-ASCII
1000
+ string: ''
1001
+ headers:
1002
+ Accept:
1003
+ - application/json
1004
+ User-Agent:
1005
+ - AngellistApi Ruby Gem 1.0.1
1006
+ response:
1007
+ status:
1008
+ code: 200
1009
+ message: !!null
1010
+ headers:
1011
+ server:
1012
+ - nginx/1.0.6
1013
+ date:
1014
+ - Mon, 23 Apr 2012 04:12:57 GMT
1015
+ content-type:
1016
+ - application/json; charset=utf-8
1017
+ transfer-encoding:
1018
+ - chunked
1019
+ connection:
1020
+ - close
1021
+ vary:
1022
+ - Accept-Encoding, Accept-Encoding
1023
+ status:
1024
+ - '200'
1025
+ x-powered-by:
1026
+ - Phusion Passenger (mod_rails/mod_rack) 3.0.9
1027
+ x-ratelimit-limit:
1028
+ - '1000'
1029
+ x-ratelimit-remaining:
1030
+ - '994'
1031
+ x-thanks:
1032
+ - For using AngelList. Rock on.
1033
+ x-runtime:
1034
+ - '2738'
1035
+ etag:
1036
+ - ! '"0e1dfe70d0109e03e9b6783491a3c043"'
1037
+ cache-control:
1038
+ - private, max-age=0, must-revalidate
1039
+ body:
1040
+ encoding: ASCII-8BIT
1041
+ string: ! '{"jobs":[{"id":649,"title":"Galactic Core","description":"We''re
1042
+ PubNub, the real-time engine in the cloud that developers use to build massively
1043
+ scalable real-time apps. We''ve got hundreds of customers, and process billions
1044
+ of real-time messages each month. We develop software close to the bare iron
1045
+ and measure performance in nanoseconds. We are looking for an exceptional
1046
+ developer to help lead our \"core\" engine development and future technology
1047
+ strategy.\r\n\r\nOur ideal person is someone which lives and breathes code,
1048
+ understands the difference between C, Python, and JavaScript and when to use
1049
+ the right language for the right job. Someone who isn''t a primadonna about
1050
+ a specific framework or tech. Someone cool to work with who''s comfortable
1051
+ helping grow a business and works well with others. ","job_type":"fulltime","created_at":"2012-01-23T18:36:29Z","updated_at":"2012-01-25T00:00:41Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":0.0,"equity_vest":4.0,"salary_min":0,"salary_max":0,"angellist_url":"http://angel.co/pubnub/recruiting/649-galactic-core","startup":{"id":20390,"hidden":false,"community_profile":false,"name":"PubNub","angellist_url":"http://angel.co/pubnub","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20390-ac2aabcb893880eea132414f368283e5-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20390-ac2aabcb893880eea132414f368283e5-thumb.png","product_desc":"PubNub
1052
+ is a blazingly fast cloud-hosted messaging service for building real-time
1053
+ web and mobile apps. Hundreds of apps and thousands of developers rely on
1054
+ PubNub for delivering \u201chuman-perceptive\u201d real-time experiences that
1055
+ scale to millions of users worldwide. PubNub delivers the infrastructure needed
1056
+ to build amazing MMO games, social apps, business collaborative solutions,
1057
+ and more.","high_concept":"A Revolutionary Cloud Service for Building Massively
1058
+ Scalable Real-Time Apps ","follower_count":324,"company_url":"http://www.pubnub.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":23388,"tag_type":"SkillTag","name":"c","display_name":"C","angellist_url":"http://angel.co/c-2"},{"id":1692,"tag_type":"LocationTag","name":"san
1059
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":455,"title":"Interaction
1060
+ & UI Designer","description":"Want to make your mark as a designer? This is
1061
+ your spot. Thumbtack is not just a toy product or a dream. It\u2019s a real
1062
+ service operating at scale, and what you make will have real and immediate
1063
+ impact.\r\n\r\nFor two years we focused on backend tools and building a huge
1064
+ network of businesses around the country. We feel like we have yet to hit
1065
+ v1 of our product. If you think our website is already beautiful, we don''t
1066
+ want you. We want someone who sees a thousand flaws and can imagine how much
1067
+ better our design and user experience can be.\r\n\r\nYou\u2019ll work directly
1068
+ with product engineers and our business team to conceptualize, design, and
1069
+ prototype new products and features.\r\n\r\nSpecific requirements\r\n- Strong
1070
+ portfolio with examples of self-started projects\r\n- Exceptional visual talent
1071
+ that explains ideas with sketches and wireframes\r\n- Ability to prototype
1072
+ and build what you design, HTML & CSS are strongly encouraged\r\n- Communication
1073
+ skills that can deftly articulate your decisions\r\n- Real curiosity for user
1074
+ experience and crafting products that delight\r\n- Self-starter (we really
1075
+ mean this)\r\n- We hire talent, not pedigree or years of experience\r\n\r\nBonus
1076
+ points\r\n- Knowledge of PHP, Python, or other scripting languages\r\n- Mobile
1077
+ design/development experience\r\n- Active in the design community\r\n\r\nYou
1078
+ should know your way around a whiteboard, know how to push pixels, and be
1079
+ comfortable explaining your ideas with CSS. You will communicate well and
1080
+ work hard.","job_type":"fulltime","created_at":"2012-01-10T01:37:03Z","updated_at":"2012-01-24T23:40:25Z","equity_cliff":1.0,"equity_min":null,"equity_max":null,"equity_vest":4.0,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/thumbtack/recruiting/455-interaction-ui-designer","startup":{"id":19155,"hidden":false,"community_profile":false,"name":"Thumbtack","angellist_url":"http://angel.co/thumbtack","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19155-23ca814e9ffa91ace83f87d497d91778-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19155-23ca814e9ffa91ace83f87d497d91778-thumb.png","product_desc":"Thumbtack
1081
+ : Time :: eBay : Things\n\nWe''re creating a marketplace where buyers and
1082
+ sellers of local services can easily find and transact with each other --
1083
+ in effect, facilitating the exchange of time and money.\n\nFor service buyers
1084
+ we offer a vetted network of professionals and tools to facilitate finding,
1085
+ comparing, and booking their services.\n\nFor service providers we offer a
1086
+ beautiful online storefront, reputation management, and a true pay-for-performance
1087
+ marketing channel.","high_concept":"Your marketplace for local services","follower_count":260,"company_url":"http://www.thumbtack.com/"},"tags":[{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":17121,"tag_type":"SkillTag","name":"interaction
1088
+ design","display_name":"Interaction Design","angellist_url":"http://angel.co/interaction-design"},{"id":17897,"tag_type":"SkillTag","name":"user
1089
+ interface design","display_name":"User Interface Design","angellist_url":"http://angel.co/user-interface-design"},{"id":20918,"tag_type":"SkillTag","name":"ui
1090
+ / ux design","display_name":"UI / UX Design","angellist_url":"http://angel.co/ui-ux-design"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1692,"tag_type":"LocationTag","name":"san
1091
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":454,"title":"Software
1092
+ Engineer","description":"We are looking for great people to join our engineering
1093
+ team to make real products that hundreds of thousands of people use every
1094
+ month.\r\n\r\nSome interesting problems we\u2019ve tackled at Thumbtack:\r\n\r\n-
1095
+ Powerful event tracking, reporting, and experiment framework.\r\nWe track
1096
+ and test everything, and needed a tool to log, aggregate, and analyze all
1097
+ that data. We built a tracking powerhouse whose crowning feature is an experimentation
1098
+ framework with beautiful statistics and visualizations that instantly tell
1099
+ us how code changes are affecting metrics across the board.\r\n\r\n- Dynamic
1100
+ web crawling.\r\nWe built a fast, distributed crawler with custom data processing.
1101
+ It quickly scales up or down depending on our needs and the cost of machine
1102
+ time.\r\n\r\n- Elegant peer-to-peer payments.\r\nWe\u2019re making a true
1103
+ marketplace where buyers and sellers transact through our trusted payments.
1104
+ Building a fresh, engaging user experience is as important as protecting data
1105
+ security and integrity. \r\n\r\nRequirements\r\nWe have no specific requirements,
1106
+ other than this: you must be a great problem solver who understands modern
1107
+ web technology and has a passion for great code.\r\n\r\nBonus points\r\n-
1108
+ Experience with a scripting language, and the ability to pick up similar languages
1109
+ quickly (we use Python and PHP)\r\n- Battle-tested knowledge of Javascript,
1110
+ CSS, and modern web browsers\r\n- A basic understanding of relational and
1111
+ NoSQL databases (we use Postgres and Mongo)\r\n- Mobile web or application
1112
+ experience","job_type":"fulltime","created_at":"2012-01-10T01:25:24Z","updated_at":"2012-01-24T23:40:25Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":0.0,"equity_vest":4.0,"salary_min":0,"salary_max":0,"angellist_url":"http://angel.co/thumbtack/recruiting/454-software-engineer","startup":{"id":19155,"hidden":false,"community_profile":false,"name":"Thumbtack","angellist_url":"http://angel.co/thumbtack","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19155-23ca814e9ffa91ace83f87d497d91778-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19155-23ca814e9ffa91ace83f87d497d91778-thumb.png","product_desc":"Thumbtack
1113
+ : Time :: eBay : Things\n\nWe''re creating a marketplace where buyers and
1114
+ sellers of local services can easily find and transact with each other --
1115
+ in effect, facilitating the exchange of time and money.\n\nFor service buyers
1116
+ we offer a vetted network of professionals and tools to facilitate finding,
1117
+ comparing, and booking their services.\n\nFor service providers we offer a
1118
+ beautiful online storefront, reputation management, and a true pay-for-performance
1119
+ marketing channel.","high_concept":"Your marketplace for local services","follower_count":260,"company_url":"http://www.thumbtack.com/"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":16309,"tag_type":"SkillTag","name":"mysql","display_name":"MySQL","angellist_url":"http://angel.co/mysql-1"},{"id":22286,"tag_type":"SkillTag","name":"postgresql","display_name":"PostgreSQL","angellist_url":"http://angel.co/postgresql"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1692,"tag_type":"LocationTag","name":"san
1120
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":416,"title":"Server
1121
+ Engineer","description":"Responsibilities\r\nCollaborate around the creation
1122
+ of new and existing features.\r\nCraft and maintain backend services and APIs.\r\nBuild
1123
+ scalable infrastructure to support fast growing product.\r\nRequirements\r\nB.S.,
1124
+ M.S., or Ph.D. in Computer Science or equivalent.\r\nExtraordinary software
1125
+ engineering talent.\r\nHigh proficiency in Python.\r\nExperience with MongoDB
1126
+ or similar document-oriented data stores.\r\nNeeds to be a self-starter with
1127
+ attention to detail.\r\nAn iterative approach to building software.\r\nAbility
1128
+ to collaborate closely with client teams.\r\nExpert ability to get things
1129
+ done on a small team.\r\nIdeally\r\nExpert level Python ability.\r\nExperience
1130
+ working on a high traffic web application.","job_type":"fulltime","created_at":"2012-01-05T03:37:10Z","updated_at":"2012-01-24T23:20:23Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":0.0,"equity_vest":4.0,"salary_min":0,"salary_max":0,"angellist_url":"http://angel.co/path/recruiting/416-server-engineer","startup":{"id":7269,"hidden":false,"community_profile":false,"name":"Path","angellist_url":"http://angel.co/path","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/7269-eb528b91bce5dd2f54e11ee7cc76627d-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/7269-eb528b91bce5dd2f54e11ee7cc76627d-thumb.jpg","product_desc":"Path
1131
+ is a modern journal that helps you share life with the ones you love \u2014
1132
+ your thoughts, the music you\u2019re listening to, where you are, who you\u2019re
1133
+ with, when you wake and when you sleep, and beautiful high quality photos
1134
+ and videos. And for those of you who like to share on public networks like
1135
+ Twitter, Foursquare, Tumblr, and Facebook, you can easily check-in, upload
1136
+ photos and videos, blog, and tweet directly from Path.","high_concept":"The
1137
+ modern journal that helps you share life with family and close friends","follower_count":388,"company_url":"http://path.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1692,"tag_type":"LocationTag","name":"san
1138
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":415,"title":"Android
1139
+ Engineer","description":"Responsibilities\r\nCollaborate around the creation
1140
+ of new and existing features.\r\nCraft and maintain world class Android experiences.\r\nImplement
1141
+ beautiful user interfaces.\r\nRequirements\r\nB.S., M.S., or Ph.D. in Computer
1142
+ Science or equivalent.\r\nExtraordinary software engineering talent.\r\nExperience
1143
+ engineering, releasing, and supporting Android applications.\r\nProficiency
1144
+ in Java.\r\nPassion for implementing beautiful user interfaces.\r\nAn iterative
1145
+ approach to building software.\r\nExpert ability to get things done on a small
1146
+ team.\r\n Ideally\r\nExpert knowledge of Java.\r\nExperience building consumer
1147
+ products.","job_type":"fulltime","created_at":"2012-01-05T03:36:10Z","updated_at":"2012-01-24T23:20:23Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":0.0,"equity_vest":4.0,"salary_min":0,"salary_max":0,"angellist_url":"http://angel.co/path/recruiting/415-android-engineer","startup":{"id":7269,"hidden":false,"community_profile":false,"name":"Path","angellist_url":"http://angel.co/path","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/7269-eb528b91bce5dd2f54e11ee7cc76627d-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/7269-eb528b91bce5dd2f54e11ee7cc76627d-thumb.jpg","product_desc":"Path
1148
+ is a modern journal that helps you share life with the ones you love \u2014
1149
+ your thoughts, the music you\u2019re listening to, where you are, who you\u2019re
1150
+ with, when you wake and when you sleep, and beautiful high quality photos
1151
+ and videos. And for those of you who like to share on public networks like
1152
+ Twitter, Foursquare, Tumblr, and Facebook, you can easily check-in, upload
1153
+ photos and videos, blog, and tweet directly from Path.","high_concept":"The
1154
+ modern journal that helps you share life with family and close friends","follower_count":388,"company_url":"http://path.com"},"tags":[{"id":14780,"tag_type":"SkillTag","name":"java","display_name":"Java","angellist_url":"http://angel.co/java"},{"id":16680,"tag_type":"SkillTag","name":"android","display_name":"Android","angellist_url":"http://angel.co/android-2"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1692,"tag_type":"LocationTag","name":"san
1155
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":417,"title":"Operations
1156
+ Engineer","description":"See: https://hire.jobvite.com/CompanyJobs/Careers.aspx?c=qd29Vfw3&cs=9et9Vfwv&j=opOEVfww&page=job%20description","job_type":"fulltime","created_at":"2012-01-05T03:38:00Z","updated_at":"2012-01-24T23:20:23Z","equity_cliff":1.0,"equity_min":null,"equity_max":null,"equity_vest":4.0,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/path/recruiting/417-operations-engineer","startup":{"id":7269,"hidden":false,"community_profile":false,"name":"Path","angellist_url":"http://angel.co/path","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/7269-eb528b91bce5dd2f54e11ee7cc76627d-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/7269-eb528b91bce5dd2f54e11ee7cc76627d-thumb.jpg","product_desc":"Path
1157
+ is a modern journal that helps you share life with the ones you love \u2014
1158
+ your thoughts, the music you\u2019re listening to, where you are, who you\u2019re
1159
+ with, when you wake and when you sleep, and beautiful high quality photos
1160
+ and videos. And for those of you who like to share on public networks like
1161
+ Twitter, Foursquare, Tumblr, and Facebook, you can easily check-in, upload
1162
+ photos and videos, blog, and tweet directly from Path.","high_concept":"The
1163
+ modern journal that helps you share life with family and close friends","follower_count":388,"company_url":"http://path.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1692,"tag_type":"LocationTag","name":"san
1164
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":444,"title":"Sr.
1165
+ Front-End Developer at Gigwalk","description":"Gigwalk is reinventing what
1166
+ it means to find work in a mobile world. In just the last 6 months the Gigwalk
1167
+ workforce has completed over 1.5 millions tasks on behalf of our Fortune 500
1168
+ clients. We are experiencing explosive organic growth.\r\n\r\nWe are funded
1169
+ by top tier Silicon Valley venture capitalists including Reid Hoffman (LinkedIn
1170
+ founder), Michael Dearing (AdMob, Heroku), Jeff Clavier (Mint.com), and the
1171
+ founder of AdMob Omar Hamoui. \r\n\r\nWe are looking for fearless, talented,
1172
+ and persistent engineers.\r\n\r\nThings We''re Looking For In You:\r\nObject
1173
+ oriented javascript experience\r\nPrevious work with javascript libraries
1174
+ (we use jQuery)\r\nPassion about great user interfaces\r\nExpert knowledge
1175
+ of CSS\r\nLEMP stack experience (Linux, Nginx, MySQL, PHP)\r\nVersion-control
1176
+ (SVN, Git)\r\nBug Tracking\r\nMVC design patterns\r\nCross browser development
1177
+ expertise\r\nLiving in the San Francisco Bay Area or willing to relocate (Valid
1178
+ US work authorization). We''re headquartered in Mountain View, CA.\r\nExcitement
1179
+ at the thought of finally being able to work on a product written the RIGHT
1180
+ way.\r\nExtra Bonus Experience:\r\nMemcache\r\nFacebook API\r\nAmazon Web
1181
+ Services (Cloud front, EC2, S3, RDS)\r\nKey/value store systems (Redis, Membase,
1182
+ etc)\r\nWhat We Offer:\r\nCompetitive salary\r\nEquity consistent with an
1183
+ early founding employee position\r\nHealth/Dental/Vision, etc\r\nLatest technology
1184
+ to get your job done\r\nAwesome working environment. (dog friendly)","job_type":"fulltime","created_at":"2012-01-09T03:45:54Z","updated_at":"2012-01-24T23:20:24Z","equity_cliff":1.0,"equity_min":null,"equity_max":null,"equity_vest":4.0,"salary_min":75000,"salary_max":110000,"angellist_url":"http://angel.co/gigwalk/recruiting/444-sr-front-end-developer-at-gigwalk","startup":{"id":31544,"hidden":false,"community_profile":false,"name":"Gigwalk","angellist_url":"http://angel.co/gigwalk","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31544-6dfa59857c795d4c20280779e9647e75-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31544-6dfa59857c795d4c20280779e9647e75-thumb.png","product_desc":"Gigwalk
1185
+ is a labor marketplace that connects individuals with flexible work and businesses
1186
+ with a skilled mobile workforce","high_concept":"Mobile based labor marketplace","follower_count":33,"company_url":"http://gigwalk.com"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":16309,"tag_type":"SkillTag","name":"mysql","display_name":"MySQL","angellist_url":"http://angel.co/mysql-1"},{"id":76264,"tag_type":"SkillTag","name":"html+css","display_name":"HTML+CSS","angellist_url":"http://angel.co/html-css-1"},{"id":1692,"tag_type":"LocationTag","name":"san
1187
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1701,"tag_type":"LocationTag","name":"mountain
1188
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":443,"title":"Sr.
1189
+ Middle Tier Developer (PHP)","description":"Gigwalk is reinventing what it
1190
+ means to find work in a mobile world. In just the last 6 months the Gigwalk
1191
+ workforce has completed over 1.5 millions tasks on behalf of our Fortune 500
1192
+ clients. We are experiencing explosive organic growth. The company is headquartered
1193
+ in sunny Silicon Valley, California. \r\n\r\nWe are funded by top tier Silicon
1194
+ Valley venture capitalists including Reid Hoffman (LinkedIn founder), Michael
1195
+ Dearing (AdMob, Heroku), Jeff Clavier (Mint.com), and the founder of AdMob
1196
+ Omar Hamoui. \r\n\r\nWe are looking for fearless, talented, and persistent
1197
+ folks across engineers.\r\n\r\nThings We''re Looking For In You:\r\nLEMP stack
1198
+ (Linux, Nginx, MySQL, PHP)\r\nDeveloper API design and development\r\nVersion-control
1199
+ (SVN, Git)\r\nBug Tracking\r\nEfficient MySQL query design\r\nMemcache\r\nMVC
1200
+ design patterns\r\nExcitement at the thought of finally being able to work
1201
+ on a product written the RIGHT way.\r\nExtra Bonus:\r\nJavascript frameworks
1202
+ (we use jQuery)\r\nAmazon Web Services (Cloud front, EC2, S3, RDS)\r\nKey/value
1203
+ store systems (Redis, Membase, etc)\r\nExperience with mobile development
1204
+ (iPhone/Android)\r\nUnderstanding of the binary language of moisture vaporators\r\nWhat
1205
+ We Offer:\r\nCompetitive salary\r\nEquity consistent with an early founding
1206
+ employee position\r\nHealth/Dental/Vision, etc\r\nLatest technology to get
1207
+ your job done\r\nAwesome working environment. (dog friendly)\r\n","job_type":"fulltime","created_at":"2012-01-09T03:41:22Z","updated_at":"2012-01-24T23:20:24Z","equity_cliff":1.0,"equity_min":null,"equity_max":null,"equity_vest":4.0,"salary_min":100000,"salary_max":120000,"angellist_url":"http://angel.co/gigwalk/recruiting/443-sr-middle-tier-developer-php","startup":{"id":31544,"hidden":false,"community_profile":false,"name":"Gigwalk","angellist_url":"http://angel.co/gigwalk","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31544-6dfa59857c795d4c20280779e9647e75-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31544-6dfa59857c795d4c20280779e9647e75-thumb.png","product_desc":"Gigwalk
1208
+ is a labor marketplace that connects individuals with flexible work and businesses
1209
+ with a skilled mobile workforce","high_concept":"Mobile based labor marketplace","follower_count":33,"company_url":"http://gigwalk.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":16309,"tag_type":"SkillTag","name":"mysql","display_name":"MySQL","angellist_url":"http://angel.co/mysql-1"},{"id":32958,"tag_type":"SkillTag","name":"nginx","display_name":"Nginx","angellist_url":"http://angel.co/nginx"},{"id":35110,"tag_type":"SkillTag","name":"memcached","display_name":"Memcached","angellist_url":"http://angel.co/memcached"},{"id":1692,"tag_type":"LocationTag","name":"san
1210
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1701,"tag_type":"LocationTag","name":"mountain
1211
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":447,"title":"Talented
1212
+ Engineering Colleagues","description":"card.io is an early stage, well-funded
1213
+ mobile payments start-up located in San Francisco. Company founders were early
1214
+ employees at AdMob, and are now building software to enable simple, low-friction
1215
+ transactions on a mobile device.\r\n\r\nWhy you might want to work with us:\r\n-
1216
+ Tackle interesting, hard technical problems with immediate real world application.\r\n-
1217
+ Maintain a work-life balance and have fun.\r\n- Generous comp, benefits, and
1218
+ vacation.\r\n\r\nRequirements:\r\n- Be an amazing engineer.\r\n- Love writing
1219
+ code. Love deleting code.\r\n- Live in or move to the Bay Area.\r\n\r\nNice
1220
+ to have:\r\n- Python\r\n- Computer vision\r\n- Machine learning\r\n- Theano\r\n-
1221
+ OpenCV\r\n- Payment or transaction processing\r\n- Scaling\r\n- CUDA, OpenCL,
1222
+ or other GPGPU/HPC\r\n- iOS\r\n- Android\r\n- Knack for elegant UI\r\n- Previous
1223
+ start-up experience\r\n\r\nInterested?\r\nDrop Josh (CTO) or Mike (CEO) an
1224
+ email at hello@card.io, showing us what you''ve done -- a resume, a letter,
1225
+ an open source project, etc.","job_type":"fulltime","created_at":"2012-01-09T18:33:36Z","updated_at":"2012-01-24T23:40:25Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":0.0,"equity_vest":4.0,"salary_min":0,"salary_max":0,"angellist_url":"http://angel.co/card-io/recruiting/447-talented-engineering-colleagues","startup":{"id":31579,"hidden":false,"community_profile":false,"name":"card.io","angellist_url":"http://angel.co/card-io","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31579-256aaaf04a27debb757f4d0e8b0c09bc-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/31579-256aaaf04a27debb757f4d0e8b0c09bc-thumb.png","product_desc":"Typing
1226
+ in credit card info on a mobile keypad is slow, and most consumers don\u2019t
1227
+ have separate hardware to swipe a credit card. card.io is trying to solve
1228
+ both of these problems: you just hold a credit card up to the phone, and card.io
1229
+ automatically reads the card information using the phone''s camera.","high_concept":"Mobile
1230
+ credit card scanning","follower_count":60,"company_url":"http://card.io"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":14777,"tag_type":"SkillTag","name":"objective
1231
+ c","display_name":"Objective C","angellist_url":"http://angel.co/objective-c"},{"id":14780,"tag_type":"SkillTag","name":"java","display_name":"Java","angellist_url":"http://angel.co/java"},{"id":15666,"tag_type":"SkillTag","name":"mobile","display_name":"Mobile","angellist_url":"http://angel.co/mobile-2"},{"id":16135,"tag_type":"SkillTag","name":"django","display_name":"Django","angellist_url":"http://angel.co/django"},{"id":16680,"tag_type":"SkillTag","name":"android","display_name":"Android","angellist_url":"http://angel.co/android-2"},{"id":16681,"tag_type":"SkillTag","name":"ios","display_name":"iOS","angellist_url":"http://angel.co/ios-1"},{"id":1692,"tag_type":"LocationTag","name":"san
1232
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":28,"title":"
1233
+ Designer","description":"You''re NOT bummed that you have to work with design
1234
+ detail freak Matthew Smith (@whale and formerly from Squared Eye http://squaredeye.com).
1235
+ You are not bummed that you will be creating, refining, and nuancing an interface
1236
+ that will be used and enjoyed by millions and millions of people. In fact
1237
+ you are rarely bummed because you don''t let things bum you out, you see problems
1238
+ and you move to the position necessary to find the solution angle, you attack,
1239
+ you kung fu, you say something heroic and blamo, you''re pretty darn happy
1240
+ again. You love when simple things surprise you with their perfect simplicity.
1241
+ You solve interface and interaction problems in your head while your friends
1242
+ are talking to you about their water bills. You have always wanted to have
1243
+ a pimped out place to work in San Francisco.","job_type":"fulltime","created_at":"2011-11-28T23:47:16Z","updated_at":"2012-01-24T22:27:12Z","equity_cliff":1.0,"equity_min":null,"equity_max":null,"equity_vest":4.0,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/zaarly/recruiting/28-designer","startup":{"id":29321,"hidden":false,"community_profile":false,"name":"Zaarly","angellist_url":"http://angel.co/zaarly","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/29321-d3ad02c35e8ba080a9b0f4a5d4538fac-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/29321-d3ad02c35e8ba080a9b0f4a5d4538fac-thumb.png","product_desc":"Zaarly
1244
+ is a proximity based, real-time buyer powered market. Buyers make an offer
1245
+ for an immediate need and sellers cash in on an infinite marketplace for items
1246
+ and services they never knew were for sale.","high_concept":"Zaarly is a proximity
1247
+ based, real-time buyer powered market","follower_count":231,"company_url":"http://www.zaarly.com"},"tags":[{"id":1692,"tag_type":"LocationTag","name":"san
1248
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":27,"title":"Android
1249
+ Developer","description":"We''re ecstatic about our Zaarly Android app and
1250
+ we''re looking for an Android developer to take charge of keeping it fresh
1251
+ and up to date. Check out the Zaarly app here: https://market.android.com/details?id=com.zaarly.client\r\n
1252
+ \r\nHere is what our users are saying so far:\r\n \r\n\"Most aesthetically
1253
+ appealing app I''ve come across. Just knocked out three Zaarlys and had one
1254
+ fulfilled for me using the android app! No issues so far.\" -Brian B\r\n\"My
1255
+ all time favorite android app. Very user friendly app. Time to make some more
1256
+ money!!! Good luck keeping up with me.\" - burkes\r\n\"Usually Android apps
1257
+ look like crap in comparison to the iPhone version. However zaarly did a great
1258
+ job in making them both look beautiful!\" - philbenabaum\r\n \r\nResponsibilities:\r\n
1259
+ \r\nArchitect, build and maintain the Zaarly Android app.\r\nCreate new, exciting
1260
+ features and push code to hundreds of thousands of Android Zaarly users.\r\nKeepup-to-date
1261
+ on the latest Android SDK developments, respond to customer feedback& testing.\r\n
1262
+ ","job_type":"fulltime","created_at":"2011-11-28T23:43:11Z","updated_at":"2012-01-24T22:27:12Z","equity_cliff":1.0,"equity_min":null,"equity_max":null,"equity_vest":4.0,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/zaarly/recruiting/27-android-developer","startup":{"id":29321,"hidden":false,"community_profile":false,"name":"Zaarly","angellist_url":"http://angel.co/zaarly","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/29321-d3ad02c35e8ba080a9b0f4a5d4538fac-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/29321-d3ad02c35e8ba080a9b0f4a5d4538fac-thumb.png","product_desc":"Zaarly
1263
+ is a proximity based, real-time buyer powered market. Buyers make an offer
1264
+ for an immediate need and sellers cash in on an infinite marketplace for items
1265
+ and services they never knew were for sale.","high_concept":"Zaarly is a proximity
1266
+ based, real-time buyer powered market","follower_count":231,"company_url":"http://www.zaarly.com"},"tags":[{"id":1692,"tag_type":"LocationTag","name":"san
1267
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":26,"title":"iOS
1268
+ Developer","description":"You''re a geek at heart, and you dream in mobile.
1269
+ You download apps from the App Store to dissect them and figure out how they
1270
+ were built. You ache to be part of a startup where your work is front and
1271
+ center. You''re tired of working on boring projects that you don''t believe
1272
+ in. You''re ready to work with a team that is doing something big, something
1273
+ worthwhile, something ridiculously cool. Right on! You''re hired.\r\n \r\nResponsibilities:\r\nArchitect,
1274
+ build and maintain the Zaarly iPhone app.\r\nCreate new, exciting features
1275
+ and push code to hundreds of thousands of iPhone Zaarly users.\r\nKeep up-to-date
1276
+ on the latest iPhone SDK developments, respond to customer feedback & testing.\r\n
1277
+ \r\n \r\n","job_type":"fulltime","created_at":"2011-11-28T23:35:44Z","updated_at":"2012-01-24T22:27:12Z","equity_cliff":1.0,"equity_min":null,"equity_max":null,"equity_vest":4.0,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/zaarly/recruiting/26-ios-developer","startup":{"id":29321,"hidden":false,"community_profile":false,"name":"Zaarly","angellist_url":"http://angel.co/zaarly","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/29321-d3ad02c35e8ba080a9b0f4a5d4538fac-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/29321-d3ad02c35e8ba080a9b0f4a5d4538fac-thumb.png","product_desc":"Zaarly
1278
+ is a proximity based, real-time buyer powered market. Buyers make an offer
1279
+ for an immediate need and sellers cash in on an infinite marketplace for items
1280
+ and services they never knew were for sale.","high_concept":"Zaarly is a proximity
1281
+ based, real-time buyer powered market","follower_count":231,"company_url":"http://www.zaarly.com"},"tags":[{"id":1692,"tag_type":"LocationTag","name":"san
1282
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":808,"title":"Web
1283
+ Developer (Django/Python)","description":"SeatMe is searching for a talented
1284
+ software engineer who is highly skilled in web application development using
1285
+ Python and has experience building non-trivial JavaScript applications utilizing
1286
+ HTML5 and CSS3.\r\n\r\nOur stack is predominately built on top of Django and
1287
+ Backbone.js, so familiarity with either of these is a plus (but we are absolutely
1288
+ willing to help you learn if you are a newcomer).\r\n\r\nResponsibilities:\r\n\r\n Implement
1289
+ public-facing pages for diners and restaurants\r\n Wear various hats throughout
1290
+ the day: from dev to designer to QA to architect\r\n Build reusable CSS/JS
1291
+ frameworks\r\n Help SeatMe scale through implementing various infrastructure
1292
+ improvements\r\n Solve complex restaurant management problems\r\n Continually
1293
+ prototype, test, and ship new features\r\n\r\nRequirements:\r\n\r\n Expert
1294
+ in HTML/CSS\r\n Expert in JavaScript\r\n Strong in Python\r\n Solid
1295
+ relational database experience\r\n\r\nPreferred:\r\n\r\n Experience using
1296
+ the Django framework\r\n Experience using Backbone.js\r\n Experience
1297
+ using jQuery\r\n Experience with PostgreSQL or similar RDBMS\r\n Experience
1298
+ with Nginx, Green Unicorn or Apache\r\n Experience building web applications
1299
+ in another technology (e.g. time spent in the PHP/Perl trenches)\r\n Can
1300
+ speak at length about your text editor preference(s)\r\n Basic networking
1301
+ skills\r\n Experience with Linux\r\n Experience with AWS\r\n Experience
1302
+ in an agile environment","job_type":"fulltime","created_at":"2012-01-27T23:02:04Z","updated_at":"2012-04-23T03:20:26Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":0.2,"equity_vest":4.0,"salary_min":80000,"salary_max":110000,"angellist_url":"http://angel.co/seatme/recruiting/808-web-developer-django-python","startup":{"id":20123,"hidden":false,"community_profile":false,"name":"SeatMe","angellist_url":"http://angel.co/seatme","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20123-f212fffac40b05303846b714d989fdc1-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20123-f212fffac40b05303846b714d989fdc1-thumb.png","product_desc":"SeatMe
1303
+ is a complete restaurant management system and online reservation system.
1304
+ SeatMe''s offering includes iPad software to manage their guests, floor, servers,
1305
+ free/paid reservations, waitlists as well as a guest-focused restaurant website.","high_concept":"Restaurant
1306
+ mangement software, online reservations & ticketing","follower_count":54,"company_url":"http://www.seatme.com/"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":16135,"tag_type":"SkillTag","name":"django","display_name":"Django","angellist_url":"http://angel.co/django"},{"id":33096,"tag_type":"SkillTag","name":"backbone.js","display_name":"Backbone.js","angellist_url":"http://angel.co/backbone-js"},{"id":1692,"tag_type":"LocationTag","name":"san
1307
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":410,"title":"User
1308
+ Experience Designer for music apps and games","description":"Help us design
1309
+ new motion based interactions for music games and apps. With our Air Guitar
1310
+ Move hardware, there are lots of new possible interaction models possible.
1311
+ We''re looking for a creative and smart person to come up and implement them.
1312
+ \r\n\r\nBackground in Industrial Design preferred. Bonus points if you have
1313
+ programmed before and/or if you have a graphic design experience and/or game
1314
+ design.","job_type":"fulltime","created_at":"2012-01-05T02:25:24Z","updated_at":"2012-01-24T23:00:33Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":0.0,"equity_vest":4.0,"salary_min":0,"salary_max":0,"angellist_url":"http://angel.co/yobble/recruiting/410-user-experience-designer-for-music-apps-and-games","startup":{"id":1464,"hidden":false,"community_profile":false,"name":"Yobble","angellist_url":"http://angel.co/yobble","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1464-ab806b7af02d5dc24e3366225bf47936-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1464-ab806b7af02d5dc24e3366225bf47936-thumb.txt","product_desc":"Yobble
1315
+ is Xbox Kinect for mobile. We''re bringing console motion control gaming experiences
1316
+ to mobile.\n\nOur first product is Air Guitar Move, an ''appcessory'' where
1317
+ your air guitar moves and rock star poses control the game. We want our users
1318
+ to feel like rock stars (minus the hangovers).\n\nAir Guitar Move will launch
1319
+ in retail summer 2012 along with nationwide Air Guitar Move events sponsored
1320
+ by Red Bull.","high_concept":"Xbox Kinect for iPhone: bringing motion control
1321
+ console game experiences to mobile","follower_count":78,"company_url":"http://airguitarmove.com"},"tags":[{"id":15520,"tag_type":"SkillTag","name":"graphic
1322
+ design","display_name":"Graphic Design","angellist_url":"http://angel.co/graphic-design"},{"id":15537,"tag_type":"SkillTag","name":"user
1323
+ experience design","display_name":"User Experience Design","angellist_url":"http://angel.co/user-experience-design-1"},{"id":15889,"tag_type":"SkillTag","name":"mobile
1324
+ application design","display_name":"Mobile Application Design","angellist_url":"http://angel.co/mobile-application-design"},{"id":17237,"tag_type":"SkillTag","name":"mobile
1325
+ development","display_name":"Mobile Development","angellist_url":"http://angel.co/mobile-development"},{"id":17897,"tag_type":"SkillTag","name":"user
1326
+ interface design","display_name":"User Interface Design","angellist_url":"http://angel.co/user-interface-design"},{"id":29854,"tag_type":"SkillTag","name":"user
1327
+ interaction design","display_name":"User Interaction Design","angellist_url":"http://angel.co/user-interaction-design"},{"id":1692,"tag_type":"LocationTag","name":"san
1328
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":409,"title":"iOS
1329
+ developer for music apps and games.","description":"We don''t care about resumes.
1330
+ We''re looking for creative and smart people who are eager to learn new things.\r\n\r\nYou''ll
1331
+ working in our small team of iOS developers on music games/apps and connecting
1332
+ the apps to our hardware. No prior work experience necessary. \r\n\r\nBackground
1333
+ in CS, EE or industrial design preferred. Bonus points for user experience
1334
+ design and/or game design background.","job_type":"fulltime","created_at":"2012-01-04T23:58:34Z","updated_at":"2012-01-24T23:00:33Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":0.0,"equity_vest":4.0,"salary_min":0,"salary_max":0,"angellist_url":"http://angel.co/yobble/recruiting/409-ios-developer-for-music-apps-and-games","startup":{"id":1464,"hidden":false,"community_profile":false,"name":"Yobble","angellist_url":"http://angel.co/yobble","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1464-ab806b7af02d5dc24e3366225bf47936-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1464-ab806b7af02d5dc24e3366225bf47936-thumb.txt","product_desc":"Yobble
1335
+ is Xbox Kinect for mobile. We''re bringing console motion control gaming experiences
1336
+ to mobile.\n\nOur first product is Air Guitar Move, an ''appcessory'' where
1337
+ your air guitar moves and rock star poses control the game. We want our users
1338
+ to feel like rock stars (minus the hangovers).\n\nAir Guitar Move will launch
1339
+ in retail summer 2012 along with nationwide Air Guitar Move events sponsored
1340
+ by Red Bull.","high_concept":"Xbox Kinect for iPhone: bringing motion control
1341
+ console game experiences to mobile","follower_count":78,"company_url":"http://airguitarmove.com"},"tags":[{"id":15587,"tag_type":"SkillTag","name":"game
1342
+ design","display_name":"Game Design","angellist_url":"http://angel.co/game-design"},{"id":17237,"tag_type":"SkillTag","name":"mobile
1343
+ development","display_name":"Mobile Development","angellist_url":"http://angel.co/mobile-development"},{"id":18169,"tag_type":"SkillTag","name":"ios
1344
+ app development","display_name":"iOS App Development","angellist_url":"http://angel.co/ios-app-development"},{"id":27644,"tag_type":"SkillTag","name":"mobile
1345
+ games","display_name":"Mobile Games","angellist_url":"http://angel.co/mobile-games-2"},{"id":30520,"tag_type":"SkillTag","name":"game
1346
+ development","display_name":"Game Development","angellist_url":"http://angel.co/game-development"},{"id":1692,"tag_type":"LocationTag","name":"san
1347
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":273,"title":"Senior
1348
+ Software Engineer","description":"We''re looking for a (frontend & backend)
1349
+ javascript badass to be the 4th member of our team. We''re hard at work on
1350
+ a revolutionary platform for online language tutoring. \r\n\r\nYou''ll work
1351
+ with cutting-edge tech like node.js, mongodb, backbone.js, socket.io, SkypeKit,
1352
+ and python. \r\n\r\nWe''re committed to a constant process of learning, iterating
1353
+ quickly, and working closely with our customers.\r\n\r\nBig pluses for prior
1354
+ experience with test-driven-development, node.js, agile practices, large-scale
1355
+ javascript work, CSS3 skills, and backbone.\r\n\r\nWe are a small and tight
1356
+ team solving a huge problem for hundreds of millions of language-learners
1357
+ who need to stop studying and start speaking. Join us as we conquer this opportunity!","job_type":"fulltime","created_at":"2011-12-19T22:43:45Z","updated_at":"2012-01-24T22:27:19Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":99.999,"equity_vest":4.0,"salary_min":0,"salary_max":10000000000,"angellist_url":"http://angel.co/colingo/recruiting/273-senior-software-engineer","startup":{"id":13300,"hidden":false,"community_profile":false,"name":"Colingo","angellist_url":"http://angel.co/colingo","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13300-3d817dac624c7d756da67ff41590b9e2-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13300-3d817dac624c7d756da67ff41590b9e2-thumb.png","product_desc":"Colingo
1358
+ is creating a P2P marketplace of buyers and sellers in the $110B language-learning
1359
+ market through data-driven instant speaking sessions over videochat powered
1360
+ by SpeakAssist teaching tools.\n\n ","high_concept":"Skype meets the Khan
1361
+ Academy for live language tutoring","follower_count":128,"company_url":"http://colingo.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":15769,"tag_type":"SkillTag","name":"agile
1362
+ project management","display_name":"Agile Project Management","angellist_url":"http://angel.co/agile-project-management"},{"id":16999,"tag_type":"SkillTag","name":"mongodb","display_name":"MongoDB","angellist_url":"http://angel.co/mongodb"},{"id":17000,"tag_type":"SkillTag","name":"node.js","display_name":"Node.js","angellist_url":"http://angel.co/node-js"},{"id":31944,"tag_type":"SkillTag","name":"socket.io","display_name":"Socket.io","angellist_url":"http://angel.co/socket-io"},{"id":33096,"tag_type":"SkillTag","name":"backbone.js","display_name":"Backbone.js","angellist_url":"http://angel.co/backbone-js"},{"id":1692,"tag_type":"LocationTag","name":"san
1363
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":1131,"title":"Software
1364
+ Engineer - Ruby ","description":"We\u2019re building.\r\n\r\nWe are looking
1365
+ for a talented engineer to become one of our first hires and join our team
1366
+ at Kout. \u00a0We pride ourselves on beautiful code and creating simple solutions
1367
+ to complex problems. \r\n\r\nYou\u2019ll be one of our first engineering hires
1368
+ at Kout, and you\u2019ll be influential in shaping the company and what we
1369
+ build. You\u2019ll be working on crafting all aspects of our platform from
1370
+ our ecommerce platform to our payments infrastructure.\r\n\r\nWe do not care
1371
+ about degrees, but if you''ve had formal training or a degree please share!
1372
+ We do care about passion, experience, & motivation a lot more though.\r\n\r\nInterested?
1373
+ Contact us - founders@kout.me\r\n\u00a0\r\n\u2028= Requirements =\r\n\r\nExperience
1374
+ with JavaScript and jQuery\r\nExperience with Ruby on Rails \r\nLogical and
1375
+ Analytical problem solving skills\r\nHeavy web application experience in any
1376
+ language.\r\nAbility to make engineering decisions in a short amount of time\r\nAbility
1377
+ to craft secure, well structured, and elegant code\r\nSQL experience\r\nComfortable
1378
+ accepting and managing feedback as well as constructive criticism\r\nSelf-motivated
1379
+ with the ability to work independently, we do not micromanage.\r\nExcellent
1380
+ collaboration skills.\r\n\r\n= Even better =\r\n\r\nBackground in payments,
1381
+ ecommerce, or security\r\nGreat sense of design\r\nWriting Skills\r\nProfessional
1382
+ Ruby/PHP development experience\r\nExperience scaling web services\r\nExperience
1383
+ building APIs \r\nServer/System Administration Skills\r\n\r\n\r\n\r\n","job_type":"fulltime","created_at":"2012-02-14T08:30:16Z","updated_at":"2012-04-23T00:20:29Z","equity_cliff":1.0,"equity_min":0.33,"equity_max":1.0,"equity_vest":4.0,"salary_min":70000,"salary_max":80000,"angellist_url":"http://angel.co/kout/recruiting/1131-software-engineer-ruby","startup":{"id":18618,"hidden":false,"community_profile":false,"name":"Kout","angellist_url":"http://angel.co/kout","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18618-6c333f59cf22e99faf7ccfabae68c7ff-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18618-6c333f59cf22e99faf7ccfabae68c7ff-thumb.png","product_desc":"Anyone
1384
+ can be a merchant. We make it fast & easy to sell items and\ncollect payment
1385
+ online. We do this by generating a simple and elegant\none-page checkout that
1386
+ corresponds to a unique URL.","high_concept":"Dead-simple e-commerce (w/ payments)
1387
+ across social, mobile, and web. AngelPad S11.","follower_count":636,"company_url":"http://www.kout.me"},"tags":[{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":15665,"tag_type":"SkillTag","name":"e
1388
+ commerce","display_name":"E-Commerce","angellist_url":"http://angel.co/e-commerce-1"},{"id":16309,"tag_type":"SkillTag","name":"mysql","display_name":"MySQL","angellist_url":"http://angel.co/mysql-1"},{"id":16310,"tag_type":"SkillTag","name":"payments","display_name":"Payments","angellist_url":"http://angel.co/payments-1"},{"id":16450,"tag_type":"SkillTag","name":"information
1389
+ security","display_name":"Information Security","angellist_url":"http://angel.co/information-security-1"},{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":17291,"tag_type":"SkillTag","name":"system
1390
+ architecture","display_name":"System Architecture","angellist_url":"http://angel.co/system-architecture"},{"id":18252,"tag_type":"SkillTag","name":"system
1391
+ administration","display_name":"System Administration","angellist_url":"http://angel.co/system-administration"},{"id":33819,"tag_type":"SkillTag","name":"server
1392
+ deployment & management","display_name":"Server Deployment & Management","angellist_url":"http://angel.co/server-deployment-management"},{"id":52277,"tag_type":"SkillTag","name":"full
1393
+ stack development","display_name":"Full Stack Development","angellist_url":"http://angel.co/full-stack-development"},{"id":1681,"tag_type":"LocationTag","name":"silicon
1394
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1692,"tag_type":"LocationTag","name":"san
1395
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":137,"title":"VP
1396
+ Engineering","description":"Looking for a leader who is also a player/coach. Ecommerce
1397
+ experience a must. Magento, experience a bonus. Great team, great culture,
1398
+ funded company. If you love helping make the world a better place, this is
1399
+ your dream job.","job_type":"fulltime","created_at":"2011-12-08T20:01:21Z","updated_at":"2012-01-24T22:27:14Z","equity_cliff":null,"equity_min":null,"equity_max":null,"equity_vest":null,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/ecomom/recruiting/137-vp-engineering","startup":{"id":179,"hidden":false,"community_profile":false,"name":"ecomom","angellist_url":"http://angel.co/ecomom","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/179-dabf1b8030b1a2c738e3cc3f5955c0a5-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/179-dabf1b8030b1a2c738e3cc3f5955c0a5-thumb.","product_desc":"ecomom
1400
+ helps moms raise healthy families. Moms who are newly pregnant through families
1401
+ with late grade school-aged children are ecomom''s loyal customers. We use
1402
+ our 70-point criteria to evaluate and identify products that are safe to put
1403
+ in, on, and around a growing family, and then we offer these products for
1404
+ sale.\n\nMoms repeatedly tell us that we make them feel safe because we take
1405
+ the guess work out of what products are authentically good for their families.","high_concept":"Its
1406
+ all good","follower_count":348,"company_url":"http://www.ecomom.com"},"tags":[{"id":15665,"tag_type":"SkillTag","name":"e
1407
+ commerce","display_name":"E-Commerce","angellist_url":"http://angel.co/e-commerce-1"},{"id":15850,"tag_type":"SkillTag","name":"sql","display_name":"SQL","angellist_url":"http://angel.co/sql"},{"id":17249,"tag_type":"SkillTag","name":"scalable
1408
+ systems","display_name":"Scalable Systems","angellist_url":"http://angel.co/scalable-systems"},{"id":21244,"tag_type":"SkillTag","name":"magento","display_name":"MAGENTO","angellist_url":"http://angel.co/magento-2"},{"id":1704,"tag_type":"LocationTag","name":"las
1409
+ vegas","display_name":"Las Vegas","angellist_url":"http://angel.co/las-vegas"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":127,"title":"Lead
1410
+ Mobile Play Developer","description":"\r\nOn the look for a pretty amazing
1411
+ mobile developer. Your job is to help us make everyday things we do a hell
1412
+ of a lot more fun -- with little wireless sticker sensors.\r\n\r\nGreenGoose
1413
+ makes life more playful. We make little wireless sensors. They stick on
1414
+ things and track activities like putting the toilet seat down, getting exercise,
1415
+ playing with toys, walking the dog, playing with your pets, going for a hike,
1416
+ riding your bike, brushing your teeth, flossing, drinking water, taking your
1417
+ vitamins; lots more.\r\n\r\n\r\nAbout Your Role\r\nYou\u2019re the mobile
1418
+ and gamification lead developer. You\u2019ll be working with the founder (me)
1419
+ to help build out a bunch of apps in the pipeline.\r\n\r\nAbout You\r\nRequired\r\n-
1420
+ Previous launch of several mobile apps, preferably with nifty game elements.\r\n-
1421
+ At least 2-3 years of previous experience coding on a mobile platform, either
1422
+ iOS, Android, or HTML5.\r\n\r\nPlease apply here: greengoose.theresumator.com\r\n","job_type":"fulltime","created_at":"2011-12-08T01:12:12Z","updated_at":"2012-01-24T22:27:14Z","equity_cliff":null,"equity_min":null,"equity_max":null,"equity_vest":null,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/greengoose/recruiting/127-lead-mobile-play-developer","startup":{"id":2237,"hidden":false,"community_profile":false,"name":"GreenGoose","angellist_url":"http://angel.co/greengoose","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2237-aa2cae38c1655341826194beb8648f5a-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/2237-aa2cae38c1655341826194beb8648f5a-thumb.png","product_desc":"GreenGoose
1423
+ makes doing everyday things more playful with tiny wireless sensors that automatically
1424
+ measure what you do. They''re ultra-low-cost stickers with a circuit inside
1425
+ and simply stick on to things like water bottles, pet leashes, toothbrushes,
1426
+ toys, pill bottles, toilet seats, and lots more. They''re smart. They wirelessly
1427
+ communicate with all kinds of apps on your mobile phone to make what we do
1428
+ in the real-world more fun.\n","high_concept":"Live more playfully, with wireless
1429
+ sensors","follower_count":256,"company_url":"http://greengoose.com"},"tags":[{"id":16680,"tag_type":"SkillTag","name":"android","display_name":"Android","angellist_url":"http://angel.co/android-2"},{"id":16814,"tag_type":"SkillTag","name":"html5","display_name":"HTML5","angellist_url":"http://angel.co/html5"},{"id":18169,"tag_type":"SkillTag","name":"ios
1430
+ app development","display_name":"iOS App Development","angellist_url":"http://angel.co/ios-app-development"},{"id":38829,"tag_type":"SkillTag","name":"juggling
1431
+ and unicycling","display_name":"Juggling and Unicycling","angellist_url":"http://angel.co/juggling-and-unicycling"},{"id":1681,"tag_type":"LocationTag","name":"silicon
1432
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1692,"tag_type":"LocationTag","name":"san
1433
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1694,"tag_type":"LocationTag","name":"palo
1434
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":21,"title":"Smart,
1435
+ Driven Generalist Hacker","description":"We''re looking for a generalist hacker
1436
+ to be one of our first hires. You''ll be working closely with us to collect,
1437
+ analyze, and interpret massive amounts of advertising performance data. \r\nAbout
1438
+ You:\r\n-You\u2019re a highly productive coder, self-motivated and able to
1439
+ learn new skills quickly\r\n-You''re hungry, ambitious, independent, curious
1440
+ and driven\r\n-We''re based in San Francisco, so you should be local to the
1441
+ Bay Area or willing to relocate\r\n-You develop on Linux or OSX\r\n-Some of
1442
+ the technologies we use every day include Python, PostgreSQL, Javascript,
1443
+ Git, Bash, and Unix/Linux; experience in any of these is nice, but we like
1444
+ generalists that can pick up new things quickly\r\n-Big data, statistics,
1445
+ machine learning, and analytics expertise is very helpful but not required","job_type":"fulltime","created_at":"2011-11-17T23:16:43Z","updated_at":"2012-01-24T22:27:12Z","equity_cliff":null,"equity_min":null,"equity_max":null,"equity_vest":null,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/mixrank/recruiting/21-smart-driven-generalist-hacker","startup":{"id":26190,"hidden":false,"community_profile":false,"name":"MixRank","angellist_url":"http://angel.co/mixrank","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26190-04587e2414625bf725ef9da8a23d4dbe-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/26190-04587e2414625bf725ef9da8a23d4dbe-thumb.jpg","product_desc":"Over
1446
+ 3,300 businesses have joined MixRank since our July launch.\nWe just came
1447
+ out of beta and have been growing revenues by 44% a week.\n\nWe save performance
1448
+ advertisers huge amounts of time and money by showing them exactly how to
1449
+ target their display advertising campaigns.\n\nBy tracking millions of ads
1450
+ daily, we can automatically recommend ad copy and targeting opportunities
1451
+ that are likely to perform well for our customers.\n\nThe product is live
1452
+ at http://mixrank.com","high_concept":"Spy on Competitors'' Display Ads (YC
1453
+ S11)","follower_count":441,"company_url":"http://mixrank.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":16132,"tag_type":"SkillTag","name":"big
1454
+ data","display_name":"Big Data","angellist_url":"http://angel.co/big-data-1"},{"id":16309,"tag_type":"SkillTag","name":"mysql","display_name":"MySQL","angellist_url":"http://angel.co/mysql-1"},{"id":31586,"tag_type":"SkillTag","name":"linux","display_name":"Linux","angellist_url":"http://angel.co/linux-1"},{"id":1692,"tag_type":"LocationTag","name":"san
1455
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1694,"tag_type":"LocationTag","name":"palo
1456
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":1701,"tag_type":"LocationTag","name":"mountain
1457
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":10,"title":"Front-End
1458
+ Engineer","description":"HTML and CSS skills: be able to see a mock and formulate
1459
+ its DOM structure with ease. We do many iterations and move quickly.\r\n\r\nJavascript
1460
+ wizardry: there is a lot of it and it is complex; it makes our app feel like,
1461
+ well, an app. If DOM manipulation or event binding confuses you, this job
1462
+ will not be your cup of tea.\r\n\r\nEnthusiasm and work ethic: we work hard,
1463
+ and it shows. We are building the best user experience around and we are
1464
+ looking for someone who can set the bar even higher!\r\n\r\n*bonus points
1465
+ awarded for nerding out to Eddie Izzard, Kraftwerk or Francis Ford Coppola''s:
1466
+ Dracula","job_type":"fulltime","created_at":"2011-11-12T01:37:44Z","updated_at":"2012-01-24T22:27:12Z","equity_cliff":null,"equity_min":null,"equity_max":null,"equity_vest":null,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/lovely/recruiting/10-front-end-engineer","startup":{"id":24260,"hidden":false,"community_profile":false,"name":"Lovely","angellist_url":"http://angel.co/lovely","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24260-292a2c5b11a309d2d890caea1246d31d-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24260-292a2c5b11a309d2d890caea1246d31d-thumb.png","product_desc":"Lovely
1467
+ lets renters search for apartments visually on a map, with trustworthy real-time
1468
+ data, while providing tools along the way to help them land the place they
1469
+ want.","high_concept":"Simplify your apartment search.","follower_count":358,"company_url":"http://livelovely.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":20918,"tag_type":"SkillTag","name":"ui
1470
+ / ux design","display_name":"UI / UX Design","angellist_url":"http://angel.co/ui-ux-design"},{"id":1692,"tag_type":"LocationTag","name":"san
1471
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":22,"title":"Lead
1472
+ Designer","description":"Who we''re looking for:\r\nWe''re looking for a UI
1473
+ product designer who can create world class interfaces that visually amaze
1474
+ but are simple to use. You''ll be working side by side with the head of product
1475
+ design and have much creative control over the end product.\r\n\r\nYou will:\r\n*
1476
+ Help ensure the usability and appearance of the site is world class\r\n* Play
1477
+ a key role in the visual design of new features launching on the site\r\n*
1478
+ Strive for design perfection but love to release and iterate\r\n* Work collaboratively,
1479
+ accepting and managing feedback, with our team and our customers\r\n\r\nRequirements:\r\n*
1480
+ Solid portfolio with examples design work (the more we can click through the
1481
+ better)\r\n* Enthusiasm and work ethic: Go the extra mile to launch the best
1482
+ possible design\r\n* Ability to solve tough design problems, not just make
1483
+ things pretty\r\n* You don''t have to be a coder but you do need a familiarity
1484
+ with HTML, CSS, and JavaScript, prototyping these technologies is a strong
1485
+ plus","job_type":"fulltime","created_at":"2011-11-18T01:03:19Z","updated_at":"2012-01-24T22:27:12Z","equity_cliff":null,"equity_min":null,"equity_max":null,"equity_vest":null,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/lovely/recruiting/22-lead-designer","startup":{"id":24260,"hidden":false,"community_profile":false,"name":"Lovely","angellist_url":"http://angel.co/lovely","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24260-292a2c5b11a309d2d890caea1246d31d-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24260-292a2c5b11a309d2d890caea1246d31d-thumb.png","product_desc":"Lovely
1486
+ lets renters search for apartments visually on a map, with trustworthy real-time
1487
+ data, while providing tools along the way to help them land the place they
1488
+ want.","high_concept":"Simplify your apartment search.","follower_count":358,"company_url":"http://livelovely.com"},"tags":[{"id":15537,"tag_type":"SkillTag","name":"user
1489
+ experience design","display_name":"User Experience Design","angellist_url":"http://angel.co/user-experience-design-1"},{"id":15650,"tag_type":"SkillTag","name":"product
1490
+ design","display_name":"Product Design","angellist_url":"http://angel.co/product-design-1"},{"id":15706,"tag_type":"SkillTag","name":"photoshop","display_name":"Photoshop","angellist_url":"http://angel.co/photoshop"},{"id":15707,"tag_type":"SkillTag","name":"fireworks","display_name":"Fireworks","angellist_url":"http://angel.co/fireworks"},{"id":17121,"tag_type":"SkillTag","name":"interaction
1491
+ design","display_name":"Interaction Design","angellist_url":"http://angel.co/interaction-design"},{"id":17284,"tag_type":"SkillTag","name":"illustrator","display_name":"Illustrator","angellist_url":"http://angel.co/illustrator"},{"id":17897,"tag_type":"SkillTag","name":"user
1492
+ interface design","display_name":"User Interface Design","angellist_url":"http://angel.co/user-interface-design"},{"id":1692,"tag_type":"LocationTag","name":"san
1493
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":23,"title":"Ruby
1494
+ Engineer","description":"UserVoice is looking for a talented and experience
1495
+ Rubyist to help us change the world of customer service. You will work with
1496
+ other developers building out core functionality. You''re not just some cog
1497
+ in a wheel. We''re a small team and everyone is in charge of important components.\r\n\r\n==
1498
+ Skills ==\r\nRuby on Rails 2.3.x & 3.1\r\nMySQL\r\nGit\r\njQuery\r\nCapistrano\r\nAsync
1499
+ job queues\r\n\r\n== Bonus Points ==\r\nNon-relational / NOSQL database experience\r\nProfiling
1500
+ (httperf, kcachegrind, etc)\r\nObsessive compulsive tendencies to details\r\nOther
1501
+ languages: Python, C, C++, Java, Perl, Smalltalk etc\r\nSaaS experience (subscriptions,
1502
+ white labelling, etc).\r\nContributions to open source projects\r\nMaintaining
1503
+ a blog\r\n","job_type":"fulltime","created_at":"2011-11-18T11:42:28Z","updated_at":"2012-01-24T22:27:12Z","equity_cliff":null,"equity_min":null,"equity_max":null,"equity_vest":null,"salary_min":100000,"salary_max":100000,"angellist_url":"http://angel.co/uservoice/recruiting/23-ruby-engineer","startup":{"id":22317,"hidden":false,"community_profile":false,"name":"UserVoice","angellist_url":"http://angel.co/uservoice","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22317-0e1c6c3c6c9ac18eb5a39093ddd157e6-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/22317-0e1c6c3c6c9ac18eb5a39093ddd157e6-thumb.png","product_desc":"UserVoice
1504
+ is the only tool companies need to deliver great customer service.\n\nWe excel
1505
+ in the 3 most important areas for any web business: collecting (and responding
1506
+ to) customer feedback, quickly dealing with support issues and automatically
1507
+ deflecting common questions.\n\nOur combination of community and helpdesk
1508
+ in one simple solution is what our customers love.\n\nOur unique focus on
1509
+ killer UX for agents and end-users alike is why we''re the tool that you''ll
1510
+ want every company on the web to use.","high_concept":"Apple of Customer Service
1511
+ (SaaS)","follower_count":257,"company_url":"http://uservoice.com"},"tags":[{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":16999,"tag_type":"SkillTag","name":"mongodb","display_name":"MongoDB","angellist_url":"http://angel.co/mongodb"},{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":21691,"tag_type":"SkillTag","name":"redis","display_name":"Redis","angellist_url":"http://angel.co/redis"},{"id":1692,"tag_type":"LocationTag","name":"san
1512
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1995,"tag_type":"LocationTag","name":"raleigh","display_name":"Raleigh","angellist_url":"http://angel.co/raleigh"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":138,"title":"Senior
1513
+ Hacker","description":"You will be responsible for delivering elegant, scalable
1514
+ answers to technology problems for our website and/or backend. You can easily
1515
+ whip together a blend of open-source, proprietary software, and your own voodoo
1516
+ magic into a stable, efficient and reliable solution, with minimal defects.","job_type":"fulltime","created_at":"2011-12-08T20:27:07Z","updated_at":"2012-01-24T22:27:14Z","equity_cliff":0.5,"equity_min":1.0,"equity_max":4.0,"equity_vest":4.0,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/urbantag/recruiting/138-senior-hacker","startup":{"id":19025,"hidden":false,"community_profile":false,"name":"urbantag","angellist_url":"http://angel.co/urbantag","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19025-d8ae1331cdeaeb8064ba743a4beaeb90-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19025-d8ae1331cdeaeb8064ba743a4beaeb90-thumb.png","product_desc":"urbantag
1517
+ is the easy, beautiful way to:\n\u2022 leave a short opinion on real-world
1518
+ places\n\u2022 discover new places from trusted sources\n\u2022 curate once,
1519
+ publish anywhere\n\u2022 explore your personal history\n\nYour city, with
1520
+ social proof.\n\nYou can view a hand-crafted map from one of our users at
1521
+ http://urbant.ag/33gsgi \n","high_concept":"A community to share places you
1522
+ love with the people that matter.","follower_count":159,"company_url":"http://www.urbantag.com"},"tags":[{"id":14776,"tag_type":"SkillTag","name":"php","display_name":"PHP","angellist_url":"http://angel.co/php"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":15843,"tag_type":"SkillTag","name":"nosql","display_name":"noSQL","angellist_url":"http://angel.co/nosql"},{"id":16022,"tag_type":"SkillTag","name":"ajax","display_name":"AJAX","angellist_url":"http://angel.co/ajax"},{"id":16999,"tag_type":"SkillTag","name":"mongodb","display_name":"MongoDB","angellist_url":"http://angel.co/mongodb"},{"id":17236,"tag_type":"SkillTag","name":"web
1523
+ development","display_name":"Web Development","angellist_url":"http://angel.co/web-development-2"},{"id":23973,"tag_type":"SkillTag","name":"aws","display_name":"AWS","angellist_url":"http://angel.co/aws-2"},{"id":44410,"tag_type":"SkillTag","name":"json","display_name":"JSON","angellist_url":"http://angel.co/json"},{"id":1692,"tag_type":"LocationTag","name":"san
1524
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":157,"title":"Full
1525
+ Stack Rails Developer","description":"SourceNinja is looking for people who
1526
+ are developers who want to solve real world problems around using open source
1527
+ software.\r\n\r\nOur goal is to constantly learn new things. We are looking
1528
+ for developers who share our passion.\r\n\r\nWe are VC backed and are looking
1529
+ for people who want to get in at the ground floor and build a huge San Francisco-based
1530
+ company.","job_type":"fulltime","created_at":"2011-12-09T21:23:52Z","updated_at":"2012-01-24T22:27:18Z","equity_cliff":null,"equity_min":null,"equity_max":null,"equity_vest":null,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/sourceninja/recruiting/157-full-stack-rails-developer","startup":{"id":13320,"hidden":false,"community_profile":false,"name":"SourceNinja","angellist_url":"http://angel.co/sourceninja","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13320-666a3ab50cd5076b851a593c7fed2253-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13320-666a3ab50cd5076b851a593c7fed2253-thumb.png","product_desc":"SourceNinja
1531
+ prevents problems in applications that use open source. \n\nSourceNinja notifies
1532
+ developers when updates are released or problems occur. Issues we prevent
1533
+ include license changes, security vulnerabilities, and performance problems.\n\nSourceNinja
1534
+ offers a product for individual developers and large enterprises.\n\n- 80%
1535
+ of commercial products contain open source software.\n- 47% of developers
1536
+ don''t know if their open source is out of date.","high_concept":"Preventing
1537
+ Open Source Headaches (AngelPad S11)","follower_count":145,"company_url":"http://www.sourceninja.com"},"tags":[{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":22286,"tag_type":"SkillTag","name":"postgresql","display_name":"PostgreSQL","angellist_url":"http://angel.co/postgresql"},{"id":28966,"tag_type":"SkillTag","name":"cassandra","display_name":"Cassandra","angellist_url":"http://angel.co/cassandra"},{"id":1692,"tag_type":"LocationTag","name":"san
1538
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1693,"tag_type":"LocationTag","name":"san
1539
+ jose","display_name":"San Jose","angellist_url":"http://angel.co/san-jose"},{"id":1701,"tag_type":"LocationTag","name":"mountain
1540
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":196,"title":"Software
1541
+ Engineer: Front-end ","description":"Our engineers\r\n- Demonstrate world-class
1542
+ programming ability.\r\n- Build the tools they need to move fast.\r\n- Care
1543
+ deeply about system reliability, code quality, and frontend architecture.\r\n-
1544
+ Will dig through source code other people wrote to fix problems no matter
1545
+ what.\r\n- Are 80% vim and 20% emacs.\r\n\r\nMixpanel front-end engineers
1546
+ write massive amounts of Javascript, as well as Python, HTML, and CSS. \r\n\r\nInterfaces
1547
+ as complex as ours are extremely challenging to build, and we take the challenge
1548
+ seriously - Javascript makes up 56% of our entire codebase. We use excellent
1549
+ tools like jQuery, underscore, and Backbone, as well as a variety of internal
1550
+ frameworks and systems.\r\n\r\nExpectations\r\n\r\n- You have mastered one
1551
+ (any) programming language. We write C, Python, and Javascript heavily.\r\n-
1552
+ You have a core understanding of fundamental computer science concepts.\r\n-
1553
+ You have built (and are dying to show us) something you''re proud of, outside
1554
+ of work/school.","job_type":"fulltime","created_at":"2011-12-13T18:32:08Z","updated_at":"2012-01-24T22:27:18Z","equity_cliff":null,"equity_min":null,"equity_max":null,"equity_vest":null,"salary_min":80000,"salary_max":80000,"angellist_url":"http://angel.co/mixpanel/recruiting/196-software-engineer-front-end","startup":{"id":14239,"hidden":false,"community_profile":false,"name":"Mixpanel","angellist_url":"http://angel.co/mixpanel","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/14239-db322c6c0e91db6324cffa9333fc56bf-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/14239-db322c6c0e91db6324cffa9333fc56bf-thumb.png","product_desc":"Mixpanel''s
1555
+ mission is to help the world learn from their data. We offer the most sophisticated
1556
+ analytics platform companies online can use to understand how users behave.
1557
+ We do all of our data analysis in real-time.","high_concept":"The most advanced
1558
+ analytics platform for mobile & web.","follower_count":98,"company_url":"http://mixpanel.com"},"tags":[{"id":14772,"tag_type":"SkillTag","name":"programming
1559
+ languages","display_name":"Programming Languages","angellist_url":"http://angel.co/programming-languages-1"},{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":20263,"tag_type":"SkillTag","name":"front
1560
+ end development","display_name":"Front-End Development","angellist_url":"http://angel.co/front-end-development"},{"id":1692,"tag_type":"LocationTag","name":"san
1561
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":919,"title":"Lead
1562
+ Front End Developer","description":"We are searching for a great engineer
1563
+ and leader to join the team and take long-term ownership of Read It Later\u2019s
1564
+ Javascript & HTML based platform. This is a unique opportunity to craft an
1565
+ approach that enables our team to quickly iterate across our entire portfolio
1566
+ of apps and extensions. You will work within our small team, making decisions
1567
+ and building software that changes the way people consume content in the mobile
1568
+ age.\r\n\r\nWhat you\u2019ll do:\r\n\r\n- Own the core HTML platform used
1569
+ by all of Read It Later\u2019s web and mobile apps and browser extensions.\r\n-
1570
+ Contribute daily to decisions affecting the future of Read It Later and its
1571
+ platform.\r\n- Work directly with designers to create pixel-perfect implementations
1572
+ of designs, animations, and interactions.\r\n- Work within our office in the
1573
+ heart of downtown San Francisco.\r\n\r\nWhat you already do:\r\n\r\n- Build
1574
+ web experiences that demonstrate mastery of Javascript, CSS and HTML5.\r\n-
1575
+ Experience owning the full trip from designer hand-off to live implementation.\r\n-
1576
+ Constantly learn and experiment with new technologies.","job_type":"fulltime","created_at":"2012-02-01T17:49:50Z","updated_at":"2012-04-23T02:20:26Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":2.0,"equity_vest":4.0,"salary_min":100000,"salary_max":130000,"angellist_url":"http://angel.co/read-it-later/recruiting/919-lead-front-end-developer","startup":{"id":52769,"hidden":false,"community_profile":false,"name":"Read
1577
+ It Later","angellist_url":"http://angel.co/read-it-later","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/52769-f3eb73829486a009abeeead5c94270c4-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/52769-f3eb73829486a009abeeead5c94270c4-thumb.","product_desc":"Read
1578
+ It Later lets you save what you find on the web to watch and read on any device,
1579
+ at any time. It''s been called \"a DVR for the web\" by the New York Times,
1580
+ Business Week, Time, TechCrunch and more. \n\nSome stats (as of December 2011):\n-
1581
+ 4M+ users\n- 10.5M+ monthly saves\n- #1 paid news app on Android and Kindle
1582
+ Fire\n- Top 10 paid news app on the iPad\n- Integrated into 300+ apps (such
1583
+ as Zite, Reeder, Twitter, Pulse and Flipboard)\n\nWe have real users, real
1584
+ revenue, real funding and big plans.","high_concept":"","follower_count":79,"company_url":"http://readitlaterlist.com/"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":15666,"tag_type":"SkillTag","name":"mobile","display_name":"Mobile","angellist_url":"http://angel.co/mobile-2"},{"id":16814,"tag_type":"SkillTag","name":"html5","display_name":"HTML5","angellist_url":"http://angel.co/html5"},{"id":17237,"tag_type":"SkillTag","name":"mobile
1585
+ development","display_name":"Mobile Development","angellist_url":"http://angel.co/mobile-development"},{"id":1692,"tag_type":"LocationTag","name":"san
1586
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":1180,"title":"Software
1587
+ Engineer","description":"Responsibilities:\r\n* Circa''s Software Engineers
1588
+ will be responsible for the design, development, and maintenance of a full
1589
+ stack of scalable services, from web indexing and visualization to an API
1590
+ for the real-time delivery of content and metadata.\r\n* Build a data warehousing
1591
+ and analytics system for measuring and refining what our systems create.\r\nRefine
1592
+ and improve our text processing algorithms.\r\n\r\nRequirements:\r\n* Minimum
1593
+ 2 years experience developing and deploying production-quality code.\r\n*
1594
+ Experience with both frontend and backend development.\r\n* Practical experience
1595
+ with at least two of the following languages: Python, Java, Ruby, JavaScript.\r\n*
1596
+ Experience with relational databases, especially MySQL.\r\n\r\nBonus Points:\r\n*
1597
+ You have experience developing and deploying systems using Amazon Web Services
1598
+ (EC2, S3, EBS).\r\n* You''ve worked with Hadoop/HDFS and MapReduce.\r\n* Knowledge
1599
+ or experience with NoSQL systems (CouchDB, MongoDB, Redis, Riak, etc).\r\n*
1600
+ If you have experience NLP, keyword extraction, or machine learning experience,
1601
+ that would be extrafantastic.\r\n* You''re comfortable with agile software
1602
+ development methodologies.\r\n* You''re passionate about news and new media.\r\n*
1603
+ You have a degree in computer science.\r\n\r\nPerks:\r\n* Excellent health,
1604
+ dental, and vision insurance plans\r\n* Open vacation policy\r\n* Lunch provided
1605
+ at office\r\n* Kegerator - we''re craft beer nuts so we''ll constantly have
1606
+ some delicious stuff on tap","job_type":"fulltime","created_at":"2012-02-17T00:26:48Z","updated_at":"2012-04-23T03:00:53Z","equity_cliff":1.0,"equity_min":0.25,"equity_max":1.0,"equity_vest":4.0,"salary_min":90000,"salary_max":150000,"angellist_url":"http://angel.co/circa/recruiting/1180-software-engineer","startup":{"id":30586,"hidden":false,"community_profile":false,"name":"Circa","angellist_url":"http://angel.co/circa","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30586-64f2b6fc4c7755b53ab8cd29f0d9acdd-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/30586-64f2b6fc4c7755b53ab8cd29f0d9acdd-thumb.png","product_desc":"At
1607
+ Circa, we''re changing the way everyone will consume news. By creating an
1608
+ experience that is currently missing from today''s world of news, we''re building
1609
+ the news experience that we as consumers want.","high_concept":"News, re-imagined","follower_count":496,"company_url":"http://cir.ca"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":14780,"tag_type":"SkillTag","name":"java","display_name":"Java","angellist_url":"http://angel.co/java"},{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15609,"tag_type":"SkillTag","name":"machine
1610
+ learning","display_name":"Machine Learning","angellist_url":"http://angel.co/machine-learning-1"},{"id":15843,"tag_type":"SkillTag","name":"nosql","display_name":"noSQL","angellist_url":"http://angel.co/nosql"},{"id":16309,"tag_type":"SkillTag","name":"mysql","display_name":"MySQL","angellist_url":"http://angel.co/mysql-1"},{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":25892,"tag_type":"SkillTag","name":"nlp","display_name":"NLP","angellist_url":"http://angel.co/nlp"},{"id":1681,"tag_type":"LocationTag","name":"silicon
1611
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1692,"tag_type":"LocationTag","name":"san
1612
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":1141,"title":"Product
1613
+ Designer","description":"We''re looking for awesome interaction designers.
1614
+ Front-end coding skills are a plus.\r\n","job_type":"fulltime","created_at":"2012-02-14T20:53:09Z","updated_at":"2012-04-22T20:00:41Z","equity_cliff":1.0,"equity_min":0.25,"equity_max":0.25,"equity_vest":4.0,"salary_min":100000,"salary_max":100000,"angellist_url":"http://angel.co/angellist/recruiting/1141-product-designer","startup":{"id":6702,"hidden":false,"community_profile":false,"name":"AngelList","angellist_url":"http://angel.co/angellist","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/6702-766d1ce00c99ce9a5cbc19d0c87a436e-medium.","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/6702-766d1ce00c99ce9a5cbc19d0c87a436e-thumb.","product_desc":"AngelList
1615
+ is a platform for startups to meet investors and talent. ","high_concept":"A
1616
+ platform for startups","follower_count":1100,"company_url":"http://angel.co"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15537,"tag_type":"SkillTag","name":"user
1617
+ experience design","display_name":"User Experience Design","angellist_url":"http://angel.co/user-experience-design-1"},{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":15650,"tag_type":"SkillTag","name":"product
1618
+ design","display_name":"Product Design","angellist_url":"http://angel.co/product-design-1"},{"id":17121,"tag_type":"SkillTag","name":"interaction
1619
+ design","display_name":"Interaction Design","angellist_url":"http://angel.co/interaction-design"},{"id":1692,"tag_type":"LocationTag","name":"san
1620
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":1031,"title":"Generalist
1621
+ Engineer","description":"We are looking for smart people with iOS, Android,
1622
+ and/or Django skills.\r\n\r\nKey skills and traits:\r\n\r\nStrong problem-solving
1623
+ skills\r\nExperience shipping at least one mobile application or website\r\nHigh
1624
+ attention to detail and user experience\r\nSoftware development best practices\r\nA
1625
+ love for games\r\n\r\nBonus Points:\r\n\r\nExperience with Game Development.\r\n","job_type":"fulltime","created_at":"2012-02-08T23:04:58Z","updated_at":"2012-04-22T17:20:31Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":1.0,"equity_vest":4.0,"salary_min":70000,"salary_max":150000,"angellist_url":"http://angel.co/mindsnacks/recruiting/1031-generalist-engineer","startup":{"id":1023,"hidden":false,"community_profile":false,"name":"MindSnacks","angellist_url":"http://angel.co/mindsnacks","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1023-0e4f9d4a79828f0964a70720d695d2d7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1023-0e4f9d4a79828f0964a70720d695d2d7-thumb.png","product_desc":"MindSnacks
1626
+ builds touch-based educational games for foreign language learning, test prep
1627
+ and other subjects. \n\nMindSnacks Spanish, French, English, Mandarin, German,
1628
+ Italian, Portuguese and SAT Vocab are available in the App Store today. \n\nSelected
1629
+ as 2011 Education App of the Year by Apple. \n\nMindSnacks is a profitable
1630
+ 13-person company with significant traction.","high_concept":"Mobile educational
1631
+ games","follower_count":407,"company_url":"http://www.mindsnacks.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":16135,"tag_type":"SkillTag","name":"django","display_name":"Django","angellist_url":"http://angel.co/django"},{"id":16680,"tag_type":"SkillTag","name":"android","display_name":"Android","angellist_url":"http://angel.co/android-2"},{"id":17363,"tag_type":"SkillTag","name":"ios
1632
+ development","display_name":"iOS Development","angellist_url":"http://angel.co/ios-development"},{"id":18169,"tag_type":"SkillTag","name":"ios
1633
+ app development","display_name":"iOS App Development","angellist_url":"http://angel.co/ios-app-development"},{"id":30520,"tag_type":"SkillTag","name":"game
1634
+ development","display_name":"Game Development","angellist_url":"http://angel.co/game-development"},{"id":1681,"tag_type":"LocationTag","name":"silicon
1635
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1692,"tag_type":"LocationTag","name":"san
1636
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":1030,"title":"Lead
1637
+ UI Designer","description":"We''re after somebody with taste. \r\n\r\nWe''re
1638
+ looking for a senior level designer who appreciates & executes communication
1639
+ in design exceptionally, with a lick of personality. You''ll get to have an
1640
+ influence on a very exciting product & work with an exceptional team.\r\n\r\nRequirements:\r\n\r\nStrong
1641
+ design Portfolio.\r\n\r\nBonus points:\r\n\r\nExperience in Mobile.\r\nExperience
1642
+ in Game Interface Design.","job_type":"fulltime","created_at":"2012-02-08T22:59:19Z","updated_at":"2012-04-22T17:20:31Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":1.0,"equity_vest":4.0,"salary_min":70000,"salary_max":130000,"angellist_url":"http://angel.co/mindsnacks/recruiting/1030-lead-ui-designer","startup":{"id":1023,"hidden":false,"community_profile":false,"name":"MindSnacks","angellist_url":"http://angel.co/mindsnacks","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1023-0e4f9d4a79828f0964a70720d695d2d7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1023-0e4f9d4a79828f0964a70720d695d2d7-thumb.png","product_desc":"MindSnacks
1643
+ builds touch-based educational games for foreign language learning, test prep
1644
+ and other subjects. \n\nMindSnacks Spanish, French, English, Mandarin, German,
1645
+ Italian, Portuguese and SAT Vocab are available in the App Store today. \n\nSelected
1646
+ as 2011 Education App of the Year by Apple. \n\nMindSnacks is a profitable
1647
+ 13-person company with significant traction.","high_concept":"Mobile educational
1648
+ games","follower_count":407,"company_url":"http://www.mindsnacks.com"},"tags":[{"id":15587,"tag_type":"SkillTag","name":"game
1649
+ design","display_name":"Game Design","angellist_url":"http://angel.co/game-design"},{"id":15666,"tag_type":"SkillTag","name":"mobile","display_name":"Mobile","angellist_url":"http://angel.co/mobile-2"},{"id":15706,"tag_type":"SkillTag","name":"photoshop","display_name":"Photoshop","angellist_url":"http://angel.co/photoshop"},{"id":16280,"tag_type":"SkillTag","name":"ui
1650
+ design","display_name":"UI Design","angellist_url":"http://angel.co/ui-design"},{"id":17284,"tag_type":"SkillTag","name":"illustrator","display_name":"Illustrator","angellist_url":"http://angel.co/illustrator"},{"id":20918,"tag_type":"SkillTag","name":"ui
1651
+ / ux design","display_name":"UI / UX Design","angellist_url":"http://angel.co/ui-ux-design"},{"id":27644,"tag_type":"SkillTag","name":"mobile
1652
+ games","display_name":"Mobile Games","angellist_url":"http://angel.co/mobile-games-2"},{"id":60692,"tag_type":"SkillTag","name":"ui","display_name":"UI","angellist_url":"http://angel.co/ui-1"},{"id":1681,"tag_type":"LocationTag","name":"silicon
1653
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1692,"tag_type":"LocationTag","name":"san
1654
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":986,"title":"Mobile
1655
+ Engineer (iOS and/or Android)","description":"We are looking for exceptional
1656
+ Android and iOS engineers.\r\n\r\nYou will play a vital role in getting our
1657
+ product into the hands of more people via Android and iOS phones, tablets
1658
+ and other touch-based devices. The impact that you''ll have on the success
1659
+ of the company will be enormous.\r\n\r\nYou will be joining a world-class
1660
+ engineering team that prides itself on shipping great products that people
1661
+ love.\r\n\r\nKey skills and traits:\r\n\r\nStrong problem-solving skills\r\nExperience
1662
+ shipping at least one mobile application \r\nHigh attention to detail and
1663
+ user experience\r\nSoftware development best practices\r\nA love for games\r\n\r\nBonus
1664
+ Points:\r\n\r\nExperience with Game Development","job_type":"fulltime","created_at":"2012-02-06T17:43:12Z","updated_at":"2012-04-22T17:20:30Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":1.0,"equity_vest":4.0,"salary_min":70000,"salary_max":150000,"angellist_url":"http://angel.co/mindsnacks/recruiting/986-mobile-engineer-ios-and-or-android","startup":{"id":1023,"hidden":false,"community_profile":false,"name":"MindSnacks","angellist_url":"http://angel.co/mindsnacks","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1023-0e4f9d4a79828f0964a70720d695d2d7-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1023-0e4f9d4a79828f0964a70720d695d2d7-thumb.png","product_desc":"MindSnacks
1665
+ builds touch-based educational games for foreign language learning, test prep
1666
+ and other subjects. \n\nMindSnacks Spanish, French, English, Mandarin, German,
1667
+ Italian, Portuguese and SAT Vocab are available in the App Store today. \n\nSelected
1668
+ as 2011 Education App of the Year by Apple. \n\nMindSnacks is a profitable
1669
+ 13-person company with significant traction.","high_concept":"Mobile educational
1670
+ games","follower_count":407,"company_url":"http://www.mindsnacks.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":16680,"tag_type":"SkillTag","name":"android","display_name":"Android","angellist_url":"http://angel.co/android-2"},{"id":18169,"tag_type":"SkillTag","name":"ios
1671
+ app development","display_name":"iOS App Development","angellist_url":"http://angel.co/ios-app-development"},{"id":30520,"tag_type":"SkillTag","name":"game
1672
+ development","display_name":"Game Development","angellist_url":"http://angel.co/game-development"},{"id":80474,"tag_type":"SkillTag","name":"shipped
1673
+ non-trivial mobile apps","display_name":"Shipped Non-Trivial Mobile Apps","angellist_url":"http://angel.co/shipped-non-trivial-mobile-apps"},{"id":80477,"tag_type":"SkillTag","name":"web
1674
+ service integration","display_name":"Web Service Integration","angellist_url":"http://angel.co/web-service-integration"},{"id":80478,"tag_type":"SkillTag","name":"automated
1675
+ testing","display_name":"Automated Testing","angellist_url":"http://angel.co/automated-testing"},{"id":80479,"tag_type":"SkillTag","name":"standard
1676
+ android/ios apis","display_name":"Standard Android/iOS APIs","angellist_url":"http://angel.co/standard-android-ios-apis"},{"id":1681,"tag_type":"LocationTag","name":"silicon
1677
+ valley","display_name":"Silicon Valley","angellist_url":"http://angel.co/silicon-valley"},{"id":1692,"tag_type":"LocationTag","name":"san
1678
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":1002,"title":"Data
1679
+ Architect","description":"BranchOut is growing exponentially, and with growth
1680
+ comes scaling challenges. It''s a great problem to have, and now we need to
1681
+ hire great engineers that have the experience and creative problem-solving
1682
+ skills necessary to build a top-tier data architecture.\r\n\r\nYou: You have
1683
+ hands-on, in-the-trenches experience scaling large social applications (on
1684
+ scale of Facebook). You can design and capacity-plan for tomorrow''s load
1685
+ today. You have a keen eye for identifying common use cases and decoupling
1686
+ logical services. You are very familiar with MySQL (esp. Percona) as well
1687
+ as various NoSQL technologies (Mongo, Redis, Riak, HBase, Hadoop, etc.). You
1688
+ are passionate about learning new technologies, but can pick the right tool
1689
+ for the job -- even if it''s a boring old relational database. You can code.
1690
+ Really well. Finally, you excel as an independent actor in a fast-paced start-up
1691
+ environment.\r\n\r\nUs: We are an exciting, well-funded, growing company that
1692
+ is changing the way the world thinks about careers, job boards, and personal
1693
+ networking. We are in the SOMA. We offer competitive salaries, equity, full
1694
+ benefits, unlimited PTO, foosball/ping-pong/free-throw challenge/Nerf, and
1695
+ multiple catered meals per week. We are a really fun group of people that
1696
+ work hard and play hard together.\r\n\r\nPrimary tech: Java, Spring 3, MySQL,
1697
+ Percona, memcached, Solr, Lucene, Maven 3\r\nSecondary tech: Python, Ruby/RoR,
1698
+ MongoDB, Gerrit, RabbitMQ, Git, TeamCity, Xen\r\nPlatform: Currently AWS-based","job_type":"fulltime","created_at":"2012-02-07T19:59:58Z","updated_at":"2012-04-22T22:00:47Z","equity_cliff":1.0,"equity_min":0.05,"equity_max":0.2,"equity_vest":4.0,"salary_min":90000,"salary_max":130000,"angellist_url":"http://angel.co/branchout/recruiting/1002-data-architect","startup":{"id":19169,"hidden":false,"community_profile":false,"name":"BranchOut","angellist_url":"http://angel.co/branchout","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19169-a50d499908b3f38fc21e179d5d22a34c-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19169-a50d499908b3f38fc21e179d5d22a34c-thumb.jpg","product_desc":"Career
1699
+ networking on Facebook. Browse over 3 million job listings. Over 20 million
1700
+ inside connections.","high_concept":"The largest professional network on Facebook","follower_count":300,"company_url":"http://branchout.com/"},"tags":[{"id":14780,"tag_type":"SkillTag","name":"java","display_name":"Java","angellist_url":"http://angel.co/java"},{"id":16309,"tag_type":"SkillTag","name":"mysql","display_name":"MySQL","angellist_url":"http://angel.co/mysql-1"},{"id":17274,"tag_type":"SkillTag","name":"solr","display_name":"SOLR","angellist_url":"http://angel.co/solr"},{"id":27146,"tag_type":"SkillTag","name":"lucene","display_name":"Lucene","angellist_url":"http://angel.co/lucene"},{"id":35110,"tag_type":"SkillTag","name":"memcached","display_name":"Memcached","angellist_url":"http://angel.co/memcached"},{"id":47417,"tag_type":"SkillTag","name":"maven2","display_name":"Maven2","angellist_url":"http://angel.co/maven2"},{"id":75914,"tag_type":"SkillTag","name":"spring
1701
+ framework","display_name":"Spring Framework","angellist_url":"http://angel.co/spring-framework"},{"id":79004,"tag_type":"SkillTag","name":"percona","display_name":"Percona","angellist_url":"http://angel.co/percona"},{"id":1692,"tag_type":"LocationTag","name":"san
1702
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":192,"title":"Director
1703
+ of Engineering","description":"Ever wonder why you can''t fly on a private
1704
+ jet as easily as you can fly with the airlines? Want to change that?\r\n\r\nWe''re
1705
+ in search for you, a driven director of engineering who is passionate about
1706
+ aviation, data or just like solving problems. Has experience in building cloud
1707
+ data infrastructures and CRM''s from the ground up. You''ll have a ton of
1708
+ responsibility and be apart of creating and managing this company at the early
1709
+ stages. \r\n\r\nIf you''re interested in being apart of a company that''s
1710
+ going to change our entire air service marketplace...we would love to have
1711
+ a chat.\r\n\r\n","job_type":"fulltime","created_at":"2011-12-12T23:46:38Z","updated_at":"2012-01-24T22:27:18Z","equity_cliff":null,"equity_min":null,"equity_max":null,"equity_vest":null,"salary_min":null,"salary_max":null,"angellist_url":"http://angel.co/lyfft/recruiting/192-director-of-engineering","startup":{"id":1316,"hidden":false,"community_profile":false,"name":"Lyfft","angellist_url":"http://angel.co/lyfft","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1316-9d93e739e10c986c79bcbd96e310b0f5-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1316-9d93e739e10c986c79bcbd96e310b0f5-thumb.jpg","product_desc":"Lyfft
1712
+ is the infrastructure for private aviation to become cost effective and accessible.
1713
+ ","high_concept":"Private Aviation Infrastructure","follower_count":62,"company_url":"http://www.lyfft.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":1621,"tag_type":"LocationTag","name":"boulder","display_name":"Boulder","angellist_url":"http://angel.co/boulder"},{"id":1692,"tag_type":"LocationTag","name":"san
1714
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":207,"title":"Senior
1715
+ Android Developer","description":"Life360 is\r\n - a utility used by over
1716
+ 11,000,000 family members\r\n - set on making a difference in people''s lives\r\n -
1717
+ working on some very ambitious goals\r\n - backed by top-notch investors\r\n\r\nLife360
1718
+ is not\r\n - another photo sharing app\r\n - a Groupon clone\r\n - built
1719
+ on the FB platform\r\n\r\nLife360 offers\r\n - interesting and engaging work\r\n -
1720
+ great pay and awesome equity\r\n - lots of freedom\r\n\r\nLife360 would love
1721
+ to tell you more\r\n - alex@life360.com\r\n - http://life360.jobscore.com/list","job_type":"fulltime","created_at":"2011-12-14T05:01:51Z","updated_at":"2012-04-22T16:40:19Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":0.5,"equity_vest":4.0,"salary_min":100000,"salary_max":150000,"angellist_url":"http://angel.co/life360/recruiting/207-senior-android-developer","startup":{"id":18275,"hidden":false,"community_profile":false,"name":"Life360","angellist_url":"http://angel.co/life360","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18275-b7a953b8fa6c5997b7fc4a44d8fa7d9c-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/18275-b7a953b8fa6c5997b7fc4a44d8fa7d9c-thumb.png","product_desc":"Turn
1722
+ your smartphone into the ultimate safety device--think next generation OnStar. See
1723
+ where your family members are, know what is nearby, and get Check In alerts
1724
+ when loved ones are safe or need help.\n\nLife360 is one of the largest and
1725
+ fastest growing geolocation apps on the market and is spearheading the push
1726
+ to turn smartphones into a utility.\n\nNote: Life360''s long-term vision extends
1727
+ far beyond mobile. We want to be the next generation Symantec or ADT.","high_concept":"Keep
1728
+ your family safe and in sync using your smartphone","follower_count":182,"company_url":"http://www.life360.com"},"tags":[{"id":14780,"tag_type":"SkillTag","name":"java","display_name":"Java","angellist_url":"http://angel.co/java"},{"id":16366,"tag_type":"SkillTag","name":"location
1729
+ based services","display_name":"Location Based Services","angellist_url":"http://angel.co/location-based-services-1"},{"id":16680,"tag_type":"SkillTag","name":"android","display_name":"Android","angellist_url":"http://angel.co/android-2"},{"id":1692,"tag_type":"LocationTag","name":"san
1730
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":947,"title":"Part
1731
+ time web designer","description":"Looking for a top flight part-time web designer
1732
+ to build our website","job_type":"fulltime","created_at":"2012-02-02T18:36:13Z","updated_at":"2012-04-22T15:40:27Z","equity_cliff":0.0,"equity_min":0.0,"equity_max":0.01,"equity_vest":0.0,"salary_min":50000,"salary_max":75000,"angellist_url":"http://angel.co/alpha-2/recruiting/947-part-time-web-designer","startup":{"id":64238,"hidden":false,"community_profile":false,"name":"Alpha","angellist_url":"http://angel.co/alpha-2","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/64238-b55d48d9aa3c45ee0c33c91e4cc88c8f-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/64238-b55d48d9aa3c45ee0c33c91e4cc88c8f-thumb.jpg","product_desc":"Alpha
1733
+ is a private, invitation only network of founders, CEOs and leading influencers
1734
+ passionate about the next generation of the internet. Prospective members
1735
+ must be nominated by at least 3 current members.","high_concept":"Private
1736
+ networking group for those passionate about the web","follower_count":276,"company_url":"http://www.facebook.com/groups/160606364003445/"},"tags":[{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":1692,"tag_type":"LocationTag","name":"san
1737
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1850,"tag_type":"LocationTag","name":"menlo
1738
+ park","display_name":"Menlo Park","angellist_url":"http://angel.co/menlo-park"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":796,"title":"Lead
1739
+ Architect","description":"Visual.ly is looking for a lead architect. You like
1740
+ working on the bleeding edge? You are comfortable designing software systems?
1741
+ You are excited about data? And like problem solving? Help us build the next
1742
+ generation visualization software as a state-of-the art web application.\r\n\r\nMore
1743
+ here: http://visual.ly/about/jobs/lead-architect","job_type":"fulltime","created_at":"2012-01-27T19:49:49Z","updated_at":"2012-04-22T23:40:25Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":1.0,"equity_vest":4.0,"salary_min":80000,"salary_max":120000,"angellist_url":"http://angel.co/visually/recruiting/796-lead-architect","startup":{"id":13152,"hidden":false,"community_profile":false,"name":"Visually","angellist_url":"http://angel.co/visually","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13152-f87853ee0045cb55866532afbdba2885-medium.gif","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/13152-f87853ee0045cb55866532afbdba2885-thumb.gif","product_desc":"http://visual.ly
1744
+ is the largest community for data visualization. This platform allows users
1745
+ to create and distribute visualizations in their publication, presentations,
1746
+ and throughout social media. \n\nThe result is higher engagement , greater
1747
+ distribution (30X sharing), and better understanding.","high_concept":"We
1748
+ are the Data Visualization platform for Big Data","follower_count":708,"company_url":"http://visual.ly"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":17114,"tag_type":"SkillTag","name":"software
1749
+ architecture","display_name":"Software Architecture","angellist_url":"http://angel.co/software-architecture"},{"id":1692,"tag_type":"LocationTag","name":"san
1750
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":1005,"title":"Senior
1751
+ Data Scientist","description":"The Job:\r\nDo you eat, sleep and drink Big
1752
+ Data? Do your colleagues describe you as a bad-a**? Then we want you on our
1753
+ team. You will become the primary driver of our algorithm and technology decisions.
1754
+ You will be neck-deep in coding, and ultimately build out a team that''s as
1755
+ bad-a** as you are.\r\n\r\nMust have:\r\n- Advanced degree in Computer Science,
1756
+ Mathematics, Statistics or related field\r\n- 3+ years experience in Natural
1757
+ Language Processing, Computational Linguistics, Machine-Learning - in industry
1758
+ or on a large-scale academic project\r\n- Practical experience in a Linux
1759
+ environment\r\n- Experience with one or more of the following programming
1760
+ languages: Scala, Java, Ruby, Python\r\n- Solid understanding of statistical
1761
+ methods: experimental design, analysis of variance / regression, logistic
1762
+ regression, non-parametric statistics\r\n\r\nGood to have:\r\n- Familiarity
1763
+ with existing NLP resources: Wordnet, POS taggers, parsers, LingPipe, SVMLight,
1764
+ NLTK, Weka, and similar tools.\r\n- Experience with Mahout and the Hadoop
1765
+ ecosystem\r\n- Experience with NoSQL and graph databases\r\n- Experience with
1766
+ streaming APIs\r\n- Experience with Amazon Web Services\r\n\r\nWhat''s in
1767
+ it for you:\r\n- Competitive salary and early-stage stock options\r\n- Fun
1768
+ office in SOMA with ping-pong and a loaded beer fridge\r\n- Flexible work
1769
+ hours and telecommuting\r\n- Quarterly company volunteer activities (e.g.
1770
+ SF Food Bank, Glide, Exploratorium)\r\n- Quarterly company fun activities
1771
+ (e.g. snowboarding, go-karting, sailing) \r\n","job_type":"fulltime","created_at":"2012-02-08T00:34:58Z","updated_at":"2012-04-22T18:20:27Z","equity_cliff":1.0,"equity_min":0.5,"equity_max":1.0,"equity_vest":4.0,"salary_min":100000,"salary_max":150000,"angellist_url":"http://angel.co/fliptop/recruiting/1005-senior-data-scientist","startup":{"id":1892,"hidden":false,"community_profile":false,"name":"Fliptop","angellist_url":"http://angel.co/fliptop","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1892-c64808bcbadc966dc9debf64effbfe5c-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/1892-c64808bcbadc966dc9debf64effbfe5c-thumb.jpg","product_desc":"Fliptop
1772
+ lets you search for social information on people and brands from email addresses
1773
+ or URLs.\n\nPeople and company-related data is a $25 Billion a year industry.
1774
+ But most of it is centered on the physical world (phone numbers, mailing address),
1775
+ not the digital world (emails, social networks). That''s where Fliptop comes
1776
+ in.\n\nFliptop mines the public web to help companies fill in the digital
1777
+ blanks in their customer and company databases.\n\nContact doug@fliptop.com
1778
+ to arrange for a live demo.","high_concept":"Jigsaw.com for Social Data","follower_count":191,"company_url":"http://www.fliptop.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":14780,"tag_type":"SkillTag","name":"java","display_name":"Java","angellist_url":"http://angel.co/java"},{"id":15605,"tag_type":"SkillTag","name":"hadoop","display_name":"Hadoop","angellist_url":"http://angel.co/hadoop"},{"id":15608,"tag_type":"SkillTag","name":"data
1779
+ mining","display_name":"Data Mining","angellist_url":"http://angel.co/data-mining-1"},{"id":15609,"tag_type":"SkillTag","name":"machine
1780
+ learning","display_name":"Machine Learning","angellist_url":"http://angel.co/machine-learning-1"},{"id":15843,"tag_type":"SkillTag","name":"nosql","display_name":"noSQL","angellist_url":"http://angel.co/nosql"},{"id":16132,"tag_type":"SkillTag","name":"big
1781
+ data","display_name":"Big Data","angellist_url":"http://angel.co/big-data-1"},{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":18501,"tag_type":"SkillTag","name":"amazon
1782
+ ec2","display_name":"Amazon EC2","angellist_url":"http://angel.co/amazon-ec2"},{"id":24953,"tag_type":"SkillTag","name":"natural
1783
+ language processing","display_name":"Natural Language Processing","angellist_url":"http://angel.co/natural-language-processing-1"},{"id":37332,"tag_type":"SkillTag","name":"scala","display_name":"Scala","angellist_url":"http://angel.co/scala"},{"id":1692,"tag_type":"LocationTag","name":"san
1784
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":313,"title":"Software
1785
+ Engineer - iOS","description":"You\u2019ve built great apps for iPhone or
1786
+ iPad that people love to use. Now you want to take your talents to the next
1787
+ level with Chromatik.\r\n\r\nMust have\u2026\r\n\r\n- Fluency with Objective-C
1788
+ and Cocoa Touch, with understanding of Objective-C blocks\r\n- Background
1789
+ in developing high performance applications that must function in \u201cmission
1790
+ critical\u201d environments\r\n- Experience with git (or willing and able
1791
+ to learn it quickly)\r\n- Must have working knowledge of at least one backend
1792
+ framework, such as Rails, node.js, Python, or Spring\r\n- Expert ability to
1793
+ get things done with a small team on aggressive deadlines\r\n- Passionate,
1794
+ reliable, self-motivated, and good communications skills\r\n- BA, MS, or PhD
1795
+ in Computer Science or equivalent\r\n\r\nGreat to have\u2026\r\n\r\n- Strong
1796
+ preference for experience with concurrent programming, especially using Grand
1797
+ Central Dispatch\r\n- Deep CoreGraphics and/or OpenGL experience\r\n- Experience
1798
+ with ARC\r\n- Non-trivial work with C++ and/or audio software development\r\n-
1799
+ Can point to an app or open source project on GitHub that\u2019s \u201cyours\u201d\r\n-
1800
+ Understanding of music notation and basic music theory","job_type":"fulltime","created_at":"2011-12-23T01:31:04Z","updated_at":"2012-04-23T03:40:20Z","equity_cliff":1.0,"equity_min":0.25,"equity_max":1.0,"equity_vest":4.0,"salary_min":90000,"salary_max":140000,"angellist_url":"http://angel.co/chromatik/recruiting/313-software-engineer-ios","startup":{"id":3033,"hidden":false,"community_profile":false,"name":"Chromatik","angellist_url":"http://angel.co/chromatik","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3033-12dcf022d2904ddf696349a3792a4120-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3033-12dcf022d2904ddf696349a3792a4120-thumb.jpg","product_desc":"Chromatik
1801
+ is a music technology company redefining how people practice, perform, and
1802
+ teach music. The \"learning platform for true musicians\" provides all of
1803
+ the tools needed to play music and collaborate with educators via mobile and
1804
+ web applications. \n\nChromatik is currently in private beta, but users already
1805
+ include American Idol, Juilliard, UCLA, and the Los Angeles Unified School
1806
+ District. \n","high_concept":"Learning Platform for True Musicians","follower_count":271,"company_url":"http://www.chromatik.com"},"tags":[{"id":14777,"tag_type":"SkillTag","name":"objective
1807
+ c","display_name":"Objective C","angellist_url":"http://angel.co/objective-c"},{"id":1653,"tag_type":"LocationTag","name":"los
1808
+ angeles","display_name":"Los Angeles","angellist_url":"http://angel.co/los-angeles"},{"id":1692,"tag_type":"LocationTag","name":"san
1809
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":314,"title":"Software
1810
+ Engineer - Web","description":"You\u2019re a web generalist who has built
1811
+ scalable web applications that users adore. Now you want to take your talents
1812
+ to the next level with Chromatik.\r\n\r\nMust have\u2026\r\n\r\n- JavaScript
1813
+ heavy experience, with understanding of its fundamental language concepts\r\n-
1814
+ Required knowledge of HTML, CSS, and jQuery\r\n- Fluency with git (or willing
1815
+ and able to learn it quickly)\r\n- Must have working knowledge of at least
1816
+ one backend framework, such as Rails, node.js, Python, or Spring\r\n- Expert
1817
+ ability to get things done with a small team on aggressive deadlines\r\n-
1818
+ Flexible, cross-functional, and an outstanding learner\r\n- BA, MS, or PhD
1819
+ in Computer Science or equivalent\r\n\r\nGreat to have\u2026\r\n\r\n- Strong
1820
+ preference for experience with node.js, Backbone.js, and MongoDB\r\n- CoffeeScript
1821
+ experience is a plus, as an addition to (but not replacement for) a strong
1822
+ JavaScript background\r\n- A knack for creating compelling UIs\r\n- Non-trivial
1823
+ experience with HTML5 and/or OpenGL\r\n- Can point to an open source project
1824
+ on GitHub that\u2019s \u201cyours\u201d\r\n- Understanding of music notation
1825
+ and basic music theory","job_type":"fulltime","created_at":"2011-12-23T01:37:06Z","updated_at":"2012-04-23T03:40:20Z","equity_cliff":1.0,"equity_min":0.25,"equity_max":1.0,"equity_vest":4.0,"salary_min":80000,"salary_max":130000,"angellist_url":"http://angel.co/chromatik/recruiting/314-software-engineer-web","startup":{"id":3033,"hidden":false,"community_profile":false,"name":"Chromatik","angellist_url":"http://angel.co/chromatik","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3033-12dcf022d2904ddf696349a3792a4120-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/3033-12dcf022d2904ddf696349a3792a4120-thumb.jpg","product_desc":"Chromatik
1826
+ is a music technology company redefining how people practice, perform, and
1827
+ teach music. The \"learning platform for true musicians\" provides all of
1828
+ the tools needed to play music and collaborate with educators via mobile and
1829
+ web applications. \n\nChromatik is currently in private beta, but users already
1830
+ include American Idol, Juilliard, UCLA, and the Los Angeles Unified School
1831
+ District. \n","high_concept":"Learning Platform for True Musicians","follower_count":271,"company_url":"http://www.chromatik.com"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":16814,"tag_type":"SkillTag","name":"html5","display_name":"HTML5","angellist_url":"http://angel.co/html5"},{"id":17000,"tag_type":"SkillTag","name":"node.js","display_name":"Node.js","angellist_url":"http://angel.co/node-js"},{"id":1653,"tag_type":"LocationTag","name":"los
1832
+ angeles","display_name":"Los Angeles","angellist_url":"http://angel.co/los-angeles"},{"id":1692,"tag_type":"LocationTag","name":"san
1833
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":831,"title":"Lead
1834
+ Product Designer","description":"Chart.io is re-imagining how businesses analyze
1835
+ their critical data. Right now, the most important data businesses have is
1836
+ stuck in databases, which are essentially black boxes. As a result, organizations
1837
+ don''t have the data they need to understand their business and make good
1838
+ decisions. \r\n\r\nWe''re disrupting the massive Enterprise Analytics market.
1839
+ We recently raised our Series A from Avalon Ventures and are about to open
1840
+ our product up to the public. We have a very large waiting list and our current
1841
+ customers truly love the product. \r\n\r\nWe''re still a small team, and we''re
1842
+ looking for our first design hire to be the creative voice in our company
1843
+ and lead product design. As lead designer, you would be working at the exciting
1844
+ edge of data visualization and interface design. \r\n\r\nWhat we''re looking
1845
+ for:\r\nExperience in product design\r\nStrong background in UI design\r\nDeep
1846
+ understanding of UX principles\r\nFluency with HTML and CSS\r\nJavascript
1847
+ knowledge a plus (but not necessary) \r\n\r\nOur benefits: \r\nMassages\r\nA
1848
+ beautiful office\r\nVery flexible vacation/time-off\r\nPlus all the standard
1849
+ benefits (health, dental, etc.)\r\n\r\nSalary and equity would depend on experience.
1850
+ As a general guideline, you are joining us at a very early stage, so both
1851
+ salary and equity would reflect the fact that you are part of the core initial
1852
+ team. \r\n\r\nIf interested, please send over a resume and a link to a portfolio
1853
+ to dbeyer@chart.io. ","job_type":"fulltime","created_at":"2012-01-29T05:49:55Z","updated_at":"2012-04-22T06:40:25Z","equity_cliff":1.0,"equity_min":0.15,"equity_max":0.5,"equity_vest":4.0,"salary_min":70000,"salary_max":100000,"angellist_url":"http://angel.co/chart-io/recruiting/831-lead-product-designer","startup":{"id":19671,"hidden":false,"community_profile":false,"name":"Chart.io","angellist_url":"http://angel.co/chart-io","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19671-88e300ade718ba101e788facd19338cb-medium.gif","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/19671-88e300ade718ba101e788facd19338cb-thumb.gif","product_desc":"Chart.io
1854
+ (http://chart.io), Y Combinator 2010, is Google Analytics for databases. All
1855
+ businesses have databases, but asking business questions of those databases
1856
+ and tracking important metrics in real time is a nightmare. Right now, the
1857
+ process involves burdening IT to produce report after report (which means
1858
+ complex SQL, CSV formatting, etc.). Chart.io sits on top of a company''s database
1859
+ and lets anyone in the company analyze, explore and track their data in real
1860
+ time on a company dashboard. ","high_concept":"Google Analytics for Databases","follower_count":375,"company_url":"http://chart.io"},"tags":[{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":15650,"tag_type":"SkillTag","name":"product
1861
+ design","display_name":"Product Design","angellist_url":"http://angel.co/product-design-1"},{"id":16280,"tag_type":"SkillTag","name":"ui
1862
+ design","display_name":"UI Design","angellist_url":"http://angel.co/ui-design"},{"id":20918,"tag_type":"SkillTag","name":"ui
1863
+ / ux design","display_name":"UI / UX Design","angellist_url":"http://angel.co/ui-ux-design"},{"id":1692,"tag_type":"LocationTag","name":"san
1864
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1694,"tag_type":"LocationTag","name":"palo
1865
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":804,"title":"Front-End
1866
+ Engineer/Designer","description":"We''ve got addicted users, incredible investors,
1867
+ and are now putting together a \"hot team.\"\r\n\r\nWhat is a \"hot\" team,
1868
+ you ask? It''s a team of exuberantly-confident individuals who come together
1869
+ to collaborate on solving an overwhelmingly-challenging task and work together
1870
+ in an environment of excitement, chaos and joy, stretching their limits, exploring,
1871
+ making mistakes and thinking big - all resulting in a peak experience.\r\n\r\nWe
1872
+ are looking for full-stack engineers whose goal is to have a huge impact at
1873
+ a promising, ambitious early startup. You will have autonomy and freedom.
1874
+ You will be the driver (not the passenger) of your own destiny and your goals
1875
+ for our startup. You will be passionate about what we\u2019re building. You
1876
+ will choose when and how you will get your work done.\r\n\r\nWe are a Java
1877
+ and Ruby shop.","job_type":"fulltime","created_at":"2012-01-27T22:20:30Z","updated_at":"2012-04-22T22:40:28Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":1.0,"equity_vest":4.0,"salary_min":100000,"salary_max":100000,"angellist_url":"http://angel.co/wanelo/recruiting/804-front-end-engineer-designer","startup":{"id":21180,"hidden":false,"community_profile":false,"name":"Wanelo","angellist_url":"http://angel.co/wanelo","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21180-f2d687c33d14ab7b6f42c284ac7732fd-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21180-f2d687c33d14ab7b6f42c284ac7732fd-thumb.png","product_desc":"Wanelo
1878
+ (from Want, Need, Love) is a social store curated by the community. Users
1879
+ post, collect and organize products and follow people and stores they like.","high_concept":"A
1880
+ social store curated by users.","follower_count":462,"company_url":"http://www.wanelo.com/"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":15592,"tag_type":"SkillTag","name":"html","display_name":"HTML","angellist_url":"http://angel.co/html"},{"id":15593,"tag_type":"SkillTag","name":"css","display_name":"CSS","angellist_url":"http://angel.co/css"},{"id":20918,"tag_type":"SkillTag","name":"ui
1881
+ / ux design","display_name":"UI / UX Design","angellist_url":"http://angel.co/ui-ux-design"},{"id":1692,"tag_type":"LocationTag","name":"san
1882
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":807,"title":"Visual/UX
1883
+ Designer","description":"We''ve got addicted users, incredible investors,
1884
+ and are now putting together a \"hot team.\"\r\n\r\nWhat is a \"hot\" team,
1885
+ you ask? It''s a team of exuberantly-confident individuals who come together
1886
+ to collaborate on solving an overwhelmingly-challenging task and work together
1887
+ in an environment of excitement, chaos and joy, stretching their limits, exploring,
1888
+ making mistakes and thinking big - all resulting in a peak experience.\r\n\r\nWe
1889
+ are looking for a visual/UX designer whose goal is to have a huge impact at
1890
+ a promising, ambitious early startup. You will have autonomy and freedom.
1891
+ You will be the driver (not the passenger) of your own destiny and your goals
1892
+ for our startup. You will be passionate about what we\u2019re building. You
1893
+ will choose when and how you will get your work done.\r\n\r\nYou have a strong
1894
+ aesthetic and an eye for simple, clean design, and are extremely well-versed
1895
+ in design tools including the Adobe CS.","job_type":"fulltime","created_at":"2012-01-27T23:00:26Z","updated_at":"2012-04-23T01:20:27Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":1.0,"equity_vest":4.0,"salary_min":80000,"salary_max":110000,"angellist_url":"http://angel.co/wanelo/recruiting/807-visual-ux-designer","startup":{"id":21180,"hidden":false,"community_profile":false,"name":"Wanelo","angellist_url":"http://angel.co/wanelo","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21180-f2d687c33d14ab7b6f42c284ac7732fd-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/21180-f2d687c33d14ab7b6f42c284ac7732fd-thumb.png","product_desc":"Wanelo
1896
+ (from Want, Need, Love) is a social store curated by the community. Users
1897
+ post, collect and organize products and follow people and stores they like.","high_concept":"A
1898
+ social store curated by users.","follower_count":462,"company_url":"http://www.wanelo.com/"},"tags":[{"id":15537,"tag_type":"SkillTag","name":"user
1899
+ experience design","display_name":"User Experience Design","angellist_url":"http://angel.co/user-experience-design-1"},{"id":15650,"tag_type":"SkillTag","name":"product
1900
+ design","display_name":"Product Design","angellist_url":"http://angel.co/product-design-1"},{"id":19659,"tag_type":"SkillTag","name":"visual
1901
+ design","display_name":"Visual Design","angellist_url":"http://angel.co/visual-design"},{"id":20918,"tag_type":"SkillTag","name":"ui
1902
+ / ux design","display_name":"UI / UX Design","angellist_url":"http://angel.co/ui-ux-design"},{"id":22690,"tag_type":"SkillTag","name":"adobe
1903
+ creative suite","display_name":"Adobe Creative Suite","angellist_url":"http://angel.co/adobe-creative-suite"},{"id":1692,"tag_type":"LocationTag","name":"san
1904
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":756,"title":"Lead
1905
+ UX Designer / Creative","description":"Need a lead designer experienced in
1906
+ making data understandable. \"There is nothing as mysterious as a fact clearly
1907
+ defined\" should be your mantra.","job_type":"fulltime","created_at":"2012-01-26T06:40:52Z","updated_at":"2012-04-22T08:00:41Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":1.0,"equity_vest":4.0,"salary_min":70000,"salary_max":95000,"angellist_url":"http://angel.co/pagelever/recruiting/756-lead-ux-designer-creative","startup":{"id":24541,"hidden":false,"community_profile":false,"name":"PageLever","angellist_url":"http://angel.co/pagelever","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24541-75931a8296c162813019d3bb216eaefc-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24541-75931a8296c162813019d3bb216eaefc-thumb.png","product_desc":"PageLever
1908
+ makes marketers more effective through social analytics. \n\nWe''ve started
1909
+ with Facebook, and our customers include YouTube, Baskin Robbins, the Phoenix
1910
+ Suns, etc.\n\nWhen MTV India started using PageLever, they went from 3,000''ish
1911
+ engagements per photo post to 7,000''ish engagements per photo post. \n\nTourism
1912
+ Australia started using PageLever and immediately realized they were wasting
1913
+ $5,000 a week in their social marketing budget.\n\nFour of the ten largest
1914
+ Facebook pages rely on PageLever. ","high_concept":"Detailed Social Analytics
1915
+ for Marketers, Brands, and Agencies (YC S11)","follower_count":296,"company_url":"http://pagelever.com/"},"tags":[{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":15668,"tag_type":"SkillTag","name":"video","display_name":"Video","angellist_url":"http://angel.co/video-1"},{"id":15706,"tag_type":"SkillTag","name":"photoshop","display_name":"Photoshop","angellist_url":"http://angel.co/photoshop"},{"id":17284,"tag_type":"SkillTag","name":"illustrator","display_name":"Illustrator","angellist_url":"http://angel.co/illustrator"},{"id":1692,"tag_type":"LocationTag","name":"san
1916
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1694,"tag_type":"LocationTag","name":"palo
1917
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":1701,"tag_type":"LocationTag","name":"mountain
1918
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":755,"title":"Senior
1919
+ Engineer (Ruby/CoffeeScript)","description":"Looking specifically for someone
1920
+ to help lead development on our newest applications on the horizon. Current
1921
+ projects are Rails + node.js based. ","job_type":"fulltime","created_at":"2012-01-26T06:36:25Z","updated_at":"2012-04-22T08:00:41Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":1.0,"equity_vest":4.0,"salary_min":85000,"salary_max":120000,"angellist_url":"http://angel.co/pagelever/recruiting/755-senior-engineer-ruby-coffeescript","startup":{"id":24541,"hidden":false,"community_profile":false,"name":"PageLever","angellist_url":"http://angel.co/pagelever","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24541-75931a8296c162813019d3bb216eaefc-medium.png","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/24541-75931a8296c162813019d3bb216eaefc-thumb.png","product_desc":"PageLever
1922
+ makes marketers more effective through social analytics. \n\nWe''ve started
1923
+ with Facebook, and our customers include YouTube, Baskin Robbins, the Phoenix
1924
+ Suns, etc.\n\nWhen MTV India started using PageLever, they went from 3,000''ish
1925
+ engagements per photo post to 7,000''ish engagements per photo post. \n\nTourism
1926
+ Australia started using PageLever and immediately realized they were wasting
1927
+ $5,000 a week in their social marketing budget.\n\nFour of the ten largest
1928
+ Facebook pages rely on PageLever. ","high_concept":"Detailed Social Analytics
1929
+ for Marketers, Brands, and Agencies (YC S11)","follower_count":296,"company_url":"http://pagelever.com/"},"tags":[{"id":15594,"tag_type":"SkillTag","name":"jquery","display_name":"jQuery","angellist_url":"http://angel.co/jquery"},{"id":17000,"tag_type":"SkillTag","name":"node.js","display_name":"Node.js","angellist_url":"http://angel.co/node-js"},{"id":17184,"tag_type":"SkillTag","name":"ruby","display_name":"Ruby","angellist_url":"http://angel.co/ruby"},{"id":1616,"tag_type":"LocationTag","name":"atlanta","display_name":"Atlanta","angellist_url":"http://angel.co/atlanta"},{"id":1643,"tag_type":"LocationTag","name":"earth","display_name":"Earth","angellist_url":"http://angel.co/earth"},{"id":1664,"tag_type":"LocationTag","name":"new
1930
+ york, ny","display_name":"New York City","angellist_url":"http://angel.co/new-york-ny-1"},{"id":1691,"tag_type":"LocationTag","name":"washington,
1931
+ dc","display_name":"Washington, DC","angellist_url":"http://angel.co/washington-dc"},{"id":1692,"tag_type":"LocationTag","name":"san
1932
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":1694,"tag_type":"LocationTag","name":"palo
1933
+ alto","display_name":"Palo Alto","angellist_url":"http://angel.co/palo-alto"},{"id":1701,"tag_type":"LocationTag","name":"mountain
1934
+ view","display_name":"Mountain View","angellist_url":"http://angel.co/mountain-view-1"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":730,"title":"Devangelist","description":"Looking
1935
+ for a user acquisition developer evangelist -- a position we like to refer
1936
+ to as \"devangelist.\" You''d need to be technical enough to work with developers
1937
+ implementing our API and iOS & Android SDKs, have a really outgoing personality,
1938
+ and *love* going to meetups and related events.\r\n\r\nLearn about life at
1939
+ Socialize at http://go.GetSocialize.com/jobs\r\n\r\nAbout us:\r\nSocialize
1940
+ is the fastest way to make any app social. Our drop-in platform drives mobile
1941
+ app discovery (more downloads) and user re-engagement (more impressions),
1942
+ spawning a viral loop of users socializing in-app and out to their social
1943
+ networks. Details at http://go.GetSocialize.com/key-benefits and a full feature
1944
+ list at http://go.GetSocialize.com/features .","job_type":"fulltime","created_at":"2012-01-26T00:20:46Z","updated_at":"2012-04-23T03:40:25Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":1.0,"equity_vest":4.0,"salary_min":50000,"salary_max":100000,"angellist_url":"http://angel.co/socialize/recruiting/730-devangelist","startup":{"id":287,"hidden":false,"community_profile":false,"name":"Socialize","angellist_url":"http://angel.co/socialize","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/287-936a024f121d9bc7dbafa80705bb5352-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/287-936a024f121d9bc7dbafa80705bb5352-thumb.txt","product_desc":"An
1945
+ app publisher''s users are his best marketers. Socialize puts them to work
1946
+ boosting app downloads and user re-engagement by using their social actions
1947
+ to attract new users.\n\nApps that integrate Socialize experience up to a
1948
+ 551% boost in installs & 316% increase in impressions. \n\nThe developer
1949
+ only pays for new app users via a CPC model. It''s a win-win.\n\nMobile app
1950
+ distribution will be an $8.1 Billion market by 2016. Socialize has the unique
1951
+ drop-in social platform to capitalize on it.","high_concept":"Put Your Users
1952
+ To Work Boosting Your App Installs.","follower_count":577,"company_url":"http://www.GetSocialize.com"},"tags":[{"id":14775,"tag_type":"SkillTag","name":"python","display_name":"Python","angellist_url":"http://angel.co/python"},{"id":16135,"tag_type":"SkillTag","name":"django","display_name":"Django","angellist_url":"http://angel.co/django"},{"id":18014,"tag_type":"SkillTag","name":"apis","display_name":"APIs","angellist_url":"http://angel.co/apis"},{"id":18171,"tag_type":"SkillTag","name":"open
1953
+ api mashups","display_name":"Open API Mashups","angellist_url":"http://angel.co/open-api-mashups"},{"id":21251,"tag_type":"SkillTag","name":"java
1954
+ script","display_name":"JAVA SCRIPT","angellist_url":"http://angel.co/java-script"},{"id":22826,"tag_type":"SkillTag","name":"user
1955
+ acquisition","display_name":"User Acquisition","angellist_url":"http://angel.co/user-acquisition"},{"id":23989,"tag_type":"SkillTag","name":"sales
1956
+ and marketing","display_name":"Sales and Marketing","angellist_url":"http://angel.co/sales-and-marketing-2"},{"id":75858,"tag_type":"SkillTag","name":"ios
1957
+ sdk","display_name":"iOS SDK","angellist_url":"http://angel.co/ios-sdk"},{"id":79760,"tag_type":"SkillTag","name":"android
1958
+ sdk","display_name":"Android SDK","angellist_url":"http://angel.co/android-sdk"},{"id":79836,"tag_type":"SkillTag","name":"python
1959
+ framework","display_name":"Python Framework","angellist_url":"http://angel.co/python-framework"},{"id":1692,"tag_type":"LocationTag","name":"san
1960
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":728,"title":"Lead
1961
+ Designer","description":"Looking for a lead designer with mad design chops
1962
+ in both native app and web. You''ll be doing work used by millions of users
1963
+ over thousands of apps, so it''s gotta be top-notch.\r\n\r\nMore about life
1964
+ at Socialize at http://go.GetSocialize.com/jobs\r\n\r\nMore about Socialize:\r\nSocialize
1965
+ is the fastest way to make any app social. Our drop-in platform drives mobile
1966
+ app discovery (more downloads) and user re-engagement (more impressions),
1967
+ spawning a viral loop of users socializing in-app and out to their social
1968
+ networks. Details at http://go.GetSocialize.com/key-benefits and a full feature
1969
+ list at http://go.GetSocialize.com/features .","job_type":"fulltime","created_at":"2012-01-26T00:18:13Z","updated_at":"2012-04-23T03:40:25Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":1.0,"equity_vest":4.0,"salary_min":50000,"salary_max":150000,"angellist_url":"http://angel.co/socialize/recruiting/728-lead-designer","startup":{"id":287,"hidden":false,"community_profile":false,"name":"Socialize","angellist_url":"http://angel.co/socialize","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/287-936a024f121d9bc7dbafa80705bb5352-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/287-936a024f121d9bc7dbafa80705bb5352-thumb.txt","product_desc":"An
1970
+ app publisher''s users are his best marketers. Socialize puts them to work
1971
+ boosting app downloads and user re-engagement by using their social actions
1972
+ to attract new users.\n\nApps that integrate Socialize experience up to a
1973
+ 551% boost in installs & 316% increase in impressions. \n\nThe developer
1974
+ only pays for new app users via a CPC model. It''s a win-win.\n\nMobile app
1975
+ distribution will be an $8.1 Billion market by 2016. Socialize has the unique
1976
+ drop-in social platform to capitalize on it.","high_concept":"Put Your Users
1977
+ To Work Boosting Your App Installs.","follower_count":577,"company_url":"http://www.GetSocialize.com"},"tags":[{"id":15519,"tag_type":"SkillTag","name":"web
1978
+ design","display_name":"Web Design","angellist_url":"http://angel.co/web-design-2"},{"id":15537,"tag_type":"SkillTag","name":"user
1979
+ experience design","display_name":"User Experience Design","angellist_url":"http://angel.co/user-experience-design-1"},{"id":15650,"tag_type":"SkillTag","name":"product
1980
+ design","display_name":"Product Design","angellist_url":"http://angel.co/product-design-1"},{"id":15706,"tag_type":"SkillTag","name":"photoshop","display_name":"Photoshop","angellist_url":"http://angel.co/photoshop"},{"id":17897,"tag_type":"SkillTag","name":"user
1981
+ interface design","display_name":"User Interface Design","angellist_url":"http://angel.co/user-interface-design"},{"id":20918,"tag_type":"SkillTag","name":"ui
1982
+ / ux design","display_name":"UI / UX Design","angellist_url":"http://angel.co/ui-ux-design"},{"id":36755,"tag_type":"SkillTag","name":"ios
1983
+ design","display_name":"iOS Design","angellist_url":"http://angel.co/ios-design"},{"id":37405,"tag_type":"SkillTag","name":"wireframes","display_name":"Wireframes","angellist_url":"http://angel.co/wireframes"},{"id":72398,"tag_type":"SkillTag","name":"android
1984
+ design","display_name":"Android Design","angellist_url":"http://angel.co/android-design"},{"id":1692,"tag_type":"LocationTag","name":"san
1985
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":1171,"title":"Front-End
1986
+ Engineer","description":"Koding is seeking innovative engineer with a broad
1987
+ understanding of current web technologies to focus on front-end development.
1988
+ You should be passionate about architecting and building user interfaces that
1989
+ are a pleasure to use. We need a strong personality to take on some of the
1990
+ frontend load from our one and only UI engineer. You will be the second in
1991
+ command, and you will be expected to lead.\r\n\r\nResponsibilities\r\n\r\nOwn
1992
+ product design, UI architecture, and client/server interaction and networking\r\nDevelop
1993
+ full front-end stack, from HTML/CSS, Javascript to NodeJS\r\nWork closely
1994
+ with engineers\r\nRapidly fix bugs and solve problems\r\n\r\nQualifications\r\n\r\nDemonstrable
1995
+ experience building world-class consumer web application interfaces\r\nExpert
1996
+ Javascript/HTML/CSS/Ajax coding skills\r\nExcellent programming skills in
1997
+ Ruby, Java, Javascript, Python, or PHP (pick one)\r\nGood understanding of
1998
+ web technologies (HTTP, Socket.IO) and familiarity with Unix/Linux\r\nGreat
1999
+ written communication and documentation abilities\r\nExperience with Stylus,
2000
+ SASS, Node.js, backbone.js a big plus\r\n\r\nSkills & Requirements\r\n\r\nPassion
2001
+ for elegance and simplicity\r\nYou take pride in designing solutions that
2002
+ will outlive the problem\r\nYou have a deep and abiding appreciation for memes.\r\nYou
2003
+ can provide a link to your public github repo, personal website or blog.\r\nA
2004
+ BS or higher in Computer Science OR equivalent work experience is preferred.\r\nYou
2005
+ are awesome, passionate, and nice.\r\n","job_type":"fulltime","created_at":"2012-02-16T08:57:49Z","updated_at":"2012-04-23T02:00:41Z","equity_cliff":1.0,"equity_min":0.1,"equity_max":0.5,"equity_vest":4.0,"salary_min":90000,"salary_max":130000,"angellist_url":"http://angel.co/koding/recruiting/1171-front-end-engineer","startup":{"id":20199,"hidden":false,"community_profile":false,"name":"Koding","angellist_url":"http://angel.co/koding","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20199-ca1eaa354ddb06a0edb1697d6586c4b6-medium.jpg","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/20199-ca1eaa354ddb06a0edb1697d6586c4b6-thumb.jpg","product_desc":"40th
2006
+ most installed Google Chrome App : http://d.pr/pfR9 \n\nYou want to have a
2007
+ blog or a web app. Do you want to go to GoDaddy, MediaTemple,Odesk,Github,Amazon,Heroku
2008
+ and many others to get started? Or do you just call your tech-savvy friend?\n\nWelcome
2009
+ to Koding, it is a social, browser based IDE that can host and deploy Php/Ruby/Python/JS
2010
+ applications, helps you find developers, and gives you collaborative environment,
2011
+ simple tools to work together.\n\nSo no need to call, Koding is your new friend.","high_concept":"Browser-based
2012
+ IDE and cloud computing platform (Check it out: http://bit.ly/KodingDemo)","follower_count":142,"company_url":"http://koding.com"},"tags":[{"id":14781,"tag_type":"SkillTag","name":"javascript","display_name":"Javascript","angellist_url":"http://angel.co/javascript"},{"id":17000,"tag_type":"SkillTag","name":"node.js","display_name":"Node.js","angellist_url":"http://angel.co/node-js"},{"id":21133,"tag_type":"SkillTag","name":"coffeescript","display_name":"Coffeescript","angellist_url":"http://angel.co/coffeescript"},{"id":76264,"tag_type":"SkillTag","name":"html+css","display_name":"HTML+CSS","angellist_url":"http://angel.co/html-css-1"},{"id":1692,"tag_type":"LocationTag","name":"san
2013
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"},{"id":14883,"tag_type":"RoleTag","name":"designer","display_name":"Designer","angellist_url":"http://angel.co/designer"}]},{"id":726,"title":"iOS
2014
+ Developer","description":"Looking for senior iOS developers. More about life
2015
+ at Socialize at http://go.GetSocialize.com/jobs\r\n\r\nAbout Socialize:\r\n\r\nSocialize
2016
+ is the fastest way to make any app social. Our drop-in platform drives mobile
2017
+ app discovery (more downloads) and user re-engagement (more impressions),
2018
+ spawning a viral loop of users socializing in-app and out to their social
2019
+ networks. Details at http://go.GetSocialize.com/key-benefits and a full feature
2020
+ list at http://go.GetSocialize.com/features .","job_type":"fulltime","created_at":"2012-01-26T00:12:22Z","updated_at":"2012-04-23T03:40:25Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":1.0,"equity_vest":4.0,"salary_min":50000,"salary_max":100000,"angellist_url":"http://angel.co/socialize/recruiting/726-ios-developer","startup":{"id":287,"hidden":false,"community_profile":false,"name":"Socialize","angellist_url":"http://angel.co/socialize","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/287-936a024f121d9bc7dbafa80705bb5352-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/287-936a024f121d9bc7dbafa80705bb5352-thumb.txt","product_desc":"An
2021
+ app publisher''s users are his best marketers. Socialize puts them to work
2022
+ boosting app downloads and user re-engagement by using their social actions
2023
+ to attract new users.\n\nApps that integrate Socialize experience up to a
2024
+ 551% boost in installs & 316% increase in impressions. \n\nThe developer
2025
+ only pays for new app users via a CPC model. It''s a win-win.\n\nMobile app
2026
+ distribution will be an $8.1 Billion market by 2016. Socialize has the unique
2027
+ drop-in social platform to capitalize on it.","high_concept":"Put Your Users
2028
+ To Work Boosting Your App Installs.","follower_count":577,"company_url":"http://www.GetSocialize.com"},"tags":[{"id":16681,"tag_type":"SkillTag","name":"ios","display_name":"iOS","angellist_url":"http://angel.co/ios-1"},{"id":17363,"tag_type":"SkillTag","name":"ios
2029
+ development","display_name":"iOS Development","angellist_url":"http://angel.co/ios-development"},{"id":18169,"tag_type":"SkillTag","name":"ios
2030
+ app development","display_name":"iOS App Development","angellist_url":"http://angel.co/ios-app-development"},{"id":1692,"tag_type":"LocationTag","name":"san
2031
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]},{"id":727,"title":"Android
2032
+ Developer","description":"Seeking senior Android developers. More about life
2033
+ at Socialize at http://go.GetSocialize.com/jobs\r\n\r\nAbout Socialize:\r\nSocialize
2034
+ is the fastest way to make any app social. Our drop-in platform drives mobile
2035
+ app discovery (more downloads) and user re-engagement (more impressions),
2036
+ spawning a viral loop of users socializing in-app and out to their social
2037
+ networks. Details at http://go.GetSocialize.com/key-benefits and a full feature
2038
+ list at http://go.GetSocialize.com/features .","job_type":"fulltime","created_at":"2012-01-26T00:17:16Z","updated_at":"2012-04-23T03:40:25Z","equity_cliff":1.0,"equity_min":0.0,"equity_max":1.0,"equity_vest":4.0,"salary_min":50000,"salary_max":100000,"angellist_url":"http://angel.co/socialize/recruiting/727-android-developer","startup":{"id":287,"hidden":false,"community_profile":false,"name":"Socialize","angellist_url":"http://angel.co/socialize","logo_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/287-936a024f121d9bc7dbafa80705bb5352-medium.txt","thumb_url":"https://s3.amazonaws.com/photos.angel.co/startups/i/287-936a024f121d9bc7dbafa80705bb5352-thumb.txt","product_desc":"An
2039
+ app publisher''s users are his best marketers. Socialize puts them to work
2040
+ boosting app downloads and user re-engagement by using their social actions
2041
+ to attract new users.\n\nApps that integrate Socialize experience up to a
2042
+ 551% boost in installs & 316% increase in impressions. \n\nThe developer
2043
+ only pays for new app users via a CPC model. It''s a win-win.\n\nMobile app
2044
+ distribution will be an $8.1 Billion market by 2016. Socialize has the unique
2045
+ drop-in social platform to capitalize on it.","high_concept":"Put Your Users
2046
+ To Work Boosting Your App Installs.","follower_count":577,"company_url":"http://www.GetSocialize.com"},"tags":[{"id":16680,"tag_type":"SkillTag","name":"android","display_name":"Android","angellist_url":"http://angel.co/android-2"},{"id":18170,"tag_type":"SkillTag","name":"android
2047
+ app development","display_name":"Android App Development","angellist_url":"http://angel.co/android-app-development"},{"id":32388,"tag_type":"SkillTag","name":"android
2048
+ development","display_name":"Android Development","angellist_url":"http://angel.co/android-development"},{"id":1692,"tag_type":"LocationTag","name":"san
2049
+ francisco","display_name":"San Francisco","angellist_url":"http://angel.co/san-francisco"},{"id":14726,"tag_type":"RoleTag","name":"developer","display_name":"Developer","angellist_url":"http://angel.co/developer"}]}],"total":107,"per_page":50,"page":1,"last_page":3}'
2050
+ http_version: !!null
2051
+ recorded_at: Mon, 23 Apr 2012 04:12:58 GMT
2052
+ recorded_with: VCR 2.1.0