stackable 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c774978dba6c2f8a6f79414c3c9e51f8584c755d
4
+ data.tar.gz: 118b1bac98ff88cbf725e27deccf231e8ee6d010
5
+ SHA512:
6
+ metadata.gz: 63870cc8bfb5ef9c068ffef8e9107db7a2246beecfb4313346a1a42b13b303ffcbbb5758700dd89a03a1dee5fae3dc9cecd940edc724d53c092301d58a0013f9
7
+ data.tar.gz: 05dfc0e5f7613d42528bb2531f35176222550e512b62bd6d5b883520bfddd0af83b1a63332c8004d6be1d735179d8d92a57e9b1b4babb9d63968d505081b2be5
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rake'
4
+ gem 'json'
5
+ gem 'httparty'
6
+
7
+ group :test, :development do
8
+ gem 'rspec'
9
+ gem 'capybara'
10
+ gem 'webmock'
11
+ end
12
+
13
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Michael Fisher , Erica Salvaneschi, Kumaran Veluppillai
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # Stackable
2
+
3
+ Stackable is a an Ruby API wrapper for the unoffical Stack Over Flow jobs API.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'stackable'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself via rubygems:
16
+
17
+ $ gem install stackable
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Known Bugs
24
+ <ul>
25
+ <li>?????</li>
26
+ </ul>
27
+
28
+ ## Contributing
29
+
30
+ 1. Fork it ( http://github.com/<my-github-username>/stackable/fork )
31
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
32
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
33
+ 4. Push to the branch (`git push origin my-new-feature`)
34
+ 5. Create new Pull Request
35
+
36
+ ## Desired Features
37
+ <ul>
38
+ <li>????????????????????????????</li>
39
+ </ul>
40
+
41
+ ## Contributors
42
+ <ul>
43
+ <li><a href="https://github.com/Ericat">Erica Salvaneschi</a></li>
44
+ <li><a href="https://github.com/mfisher90">Michael Fisher</a></li>
45
+ <li><a href="https://github.com/koomerang">Kumaran Veluppillai</a></li>
46
+ </ul>
47
+
48
+ ## License
49
+
50
+ Bookable is released under the <a href="https://github.com/mfisher90/stackable/LICENSE.txt">MIT License</a>.
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,3 @@
1
+ # module StackableV
2
+ # VERSION = "0.0.1"
3
+ # end
data/lib/stackable.rb ADDED
@@ -0,0 +1,61 @@
1
+ require 'json'
2
+ require 'httparty'
3
+
4
+ class Stackable
5
+
6
+
7
+ def get(url)
8
+ response = HTTParty.get(url)
9
+ JSON.parse(response.body)
10
+ end
11
+
12
+ def all_jobs
13
+ get('http://stackable.herokuapp.com/api/jobs')
14
+ end
15
+
16
+ def get_job(job_id)
17
+ get("http://stackable.herokuapp.com/api/jobs/#{job_id}")
18
+ end
19
+
20
+ def get_jobs_by_tags(tags=[])
21
+ params = tags.join('&')
22
+ get("http://stackable.herokuapp.com/api/jobs/tags/#{params}")
23
+ end
24
+
25
+ def all_companies
26
+ get('http://stackable.herokuapp.com/api/companies')
27
+ end
28
+
29
+ def get_company(company_id)
30
+ get("http://stackable.herokuapp.com/api/companies/#{company_id}")
31
+ end
32
+
33
+ def get_companies_by_tags(tags=[])
34
+ params = tags.join('&')
35
+ get("http://stackable.herokuapp.com/api/companies/tags/#{params}")
36
+ end
37
+
38
+ def relocation_offered?
39
+ get("http://stackable.herokuapp.com/api/relocation")
40
+ end
41
+
42
+ def remote_working?
43
+ get("http://stackable.herokuapp.com/api/remote")
44
+ end
45
+
46
+ def senior
47
+ get("http://stackable.herokuapp.com/api/senior")
48
+ end
49
+
50
+ def companies_by_benefits(benefits=[])
51
+ params = benefits.join('&')
52
+ get("http://stackable.herokuapp.com/api/companies/benefits/#{params}")
53
+ end
54
+
55
+ def jobs_by_location(location)
56
+ params = location
57
+ get("http://stackable.herokuapp.com/api/jobs/location/#{params}")
58
+ end
59
+
60
+
61
+ end
@@ -0,0 +1 @@
1
+ [{"id":1,"name":"The App Business","avatar":"//i.stack.imgur.com/igtcH.png","size":"11-50","status":"2009","founded":null,"url":"http://www.theappbusiness.com","company_id":"app-business"},{"id":2,"name":"CareCore National","avatar":"//i.stack.imgur.com/6sDZA.png","size":"1,001-5,000","status":"Private","founded":1994,"url":"http://www.carecorenational.com/careers/","company_id":"carecore-national"},{"id":3,"name":"Trike Apps","avatar":"//i.stack.imgur.com/gKlYG.png","size":"1-10","status":"Private","founded":null,"url":"http://trikeapps.com/","company_id":"trikeapps"},{"id":4,"name":"Yext","avatar":"//i.stack.imgur.com/0awZz.png","size":"51-200","status":"VC Funded","founded":2006,"url":"http://www.yext.com/","company_id":"yext"},{"id":5,"name":"Brightcove","avatar":"//i.stack.imgur.com/A88Vu.png","size":"201-500","status":"Public","founded":2004,"url":"http://www.brightcove.com/en/","company_id":"brightcove"},{"id":6,"name":"Mobiquity","avatar":"//i.stack.imgur.com/mi8DD.png","size":"51-200","status":"VC Funded","founded":2012,"url":"http://www.mobiquityinc.com","company_id":"mobiquity"},{"id":7,"name":"SmartThings","avatar":"//i.stack.imgur.com/SP2YF.png","size":"51-200","status":"VC Funded","founded":2011,"url":"http://www.smartthings.com","company_id":"smartthings"},{"id":8,"name":"Sharewave","avatar":"//i.stack.imgur.com/8Xzr3.png","size":"1-10","status":"Private","founded":2012,"url":"http://sharewave.com","company_id":"sharewave"},{"id":9,"name":"Mediasmiths","avatar":"//i.stack.imgur.com/sDTkJ.png","size":"11-50","status":"Private","founded":2007,"url":"http://www.Mediasmiths.com","company_id":"mediasmiths"},{"id":10,"name":"Spot Trading LLC","avatar":"//i.stack.imgur.com/LtNhK.png","size":"51-200","status":"Private","founded":1999,"url":"http://www.spottradingllc.com/","company_id":"spot-trading"},{"id":11,"name":"Glossre.com","avatar":"//i.stack.imgur.com/AqFEC.png","size":"1-10","status":"Private","founded":2012,"url":"http://www.glossre.com","company_id":"glossre"},{"id":12,"name":"Crisply","avatar":"//i.stack.imgur.com/Lzlgy.png","size":"1-10","status":"Private","founded":2010,"url":"http://crisply.com","company_id":"crisply"},{"id":13,"name":"Squarespace","avatar":"//i.stack.imgur.com/ZOmNx.png","size":"201-500","status":"Private","founded":2004,"url":"http://squarespace.com","company_id":"squarespace"},{"id":14,"name":"viagogo Group","avatar":"//i.stack.imgur.com/ELtjQ.jpg","size":"Private","status":"2005","founded":null,"url":"http://www.viagogo.com/","company_id":"viagogo-group"},{"id":15,"name":"dotMailer","avatar":"//i.stack.imgur.com/keIIe.png","size":"51-200","status":"1999","founded":null,"url":"http://www.dotmailer.co.uk","company_id":"dotmailer"},{"id":16,"name":"Box UK","avatar":"//i.stack.imgur.com/ZuIu7.png","size":"51-200","status":"Private","founded":1998,"url":"http://www.boxuk.com/","company_id":"box-uk"},{"id":17,"name":"Silktide","avatar":"//i.stack.imgur.com/fJzfY.png","size":"1-10","status":"Private","founded":2001,"url":"http://silktide.com/","company_id":"silktide"},{"id":18,"name":"Skyscanner","avatar":"//i.stack.imgur.com/pbU5t.png","size":"201-500","status":"2001","founded":null,"url":"http://www.skyscanner.net/","company_id":"skyscanner"},{"id":19,"name":"YPlan","avatar":"//i.stack.imgur.com/BpB49.png","size":"51-200","status":"VC Funded","founded":2012,"url":"http://www.yplanapp.com","company_id":"YPlan"},{"id":20,"name":"Sky","avatar":"//i.stack.imgur.com/6pfCz.png","size":null,"status":null,"founded":null,"url":"","company_id":"sky"}]
@@ -0,0 +1 @@
1
+ {"id":1,"name":"The App Business","avatar":"//i.stack.imgur.com/igtcH.png","size":"11-50","status":"2009","founded":null,"url":"http://www.theappbusiness.com","company_id":"app-business"}
@@ -0,0 +1 @@
1
+ [{"id":15,"name":"Amazon - US","avatar":"//i.stack.imgur.com/DCP6v.png","size":"10,000+","status":"Public","founded":1994,"url":"http://amazon.jobs","company_id":"amazon-us","created_at":"2014-02-12T11:06:19+00:00","scraping_round":1}]
@@ -0,0 +1 @@
1
+ [{"name":"Clarity Consulting, Inc.","avatar":"//i.stack.imgur.com/XGuYT.png","size":"51-200","status":"Private","founded":1994,"url":"http://claritycon.com/","company_id":"clarity-consulting"},{"name":"Lending Club","avatar":"//i.stack.imgur.com/oHz3a.png","size":"201-500","status":"VC Funded","founded":2007,"url":"http://www.lendingclub.com/","company_id":"lending-club"}]
@@ -0,0 +1 @@
1
+ [{"id":21,"name":"The App Business","avatar":"//i.stack.imgur.com/igtcH.png","size":"11-50","status":"2009","founded":null,"url":"http://www.theappbusiness.com","company_id":"app-business","created_at":null},{"id":22,"name":"CareCore National","avatar":"//i.stack.imgur.com/6sDZA.png","size":"1,001-5,000","status":"Private","founded":1994,"url":"http://www.carecorenational.com/careers/","company_id":"carecore-national","created_at":null},{"id":24,"name":"Yext","avatar":"//i.stack.imgur.com/0awZz.png","size":"51-200","status":"VC Funded","founded":2006,"url":"http://www.yext.com/","company_id":"yext","created_at":null}]
@@ -0,0 +1 @@
1
+ [{"id":1,"name":"The App Business","avatar":"//i.stack.imgur.com/igtcH.png","size":"11-50","status":"2009","founded":null,"url":"http://www.theappbusiness.com","company_id":"app-business"},{"id":6,"name":"Mobiquity","avatar":"//i.stack.imgur.com/mi8DD.png","size":"51-200","status":"VC Funded","founded":2012,"url":"http://www.mobiquityinc.com","company_id":"mobiquity"},{"id":7,"name":"SmartThings","avatar":"//i.stack.imgur.com/SP2YF.png","size":"51-200","status":"VC Funded","founded":2011,"url":"http://www.smartthings.com","company_id":"smartthings"},{"id":11,"name":"Glossre.com","avatar":"//i.stack.imgur.com/AqFEC.png","size":"1-10","status":"Private","founded":2012,"url":"http://www.glossre.com","company_id":"glossre"},{"id":12,"name":"Crisply","avatar":"//i.stack.imgur.com/Lzlgy.png","size":"1-10","status":"Private","founded":2010,"url":"http://crisply.com","company_id":"crisply"},{"id":16,"name":"Box UK","avatar":"//i.stack.imgur.com/ZuIu7.png","size":"51-200","status":"Private","founded":1998,"url":"http://www.boxuk.com/","company_id":"box-uk"},{"id":18,"name":"Skyscanner","avatar":"//i.stack.imgur.com/pbU5t.png","size":"201-500","status":"2001","founded":null,"url":"http://www.skyscanner.net/","company_id":"skyscanner"}]
@@ -0,0 +1 @@
1
+ [{"id":1,"job_id":"46369","title":"Full Stack Web Engineer","description":"Do you want to be a part of innovative software company and work on an awesome web app that changes the…","url":"/jobs/46369/full-stack-web-engineer-follow-up-boss?a=UycMEXm0","jscore":0,"location":"Cheyenne, WY (allows remote)","company_name":"Follow Up Boss","scraping_round":1,"company_id":null},{"id":2,"job_id":"48438","title":"Are you a passionate Java developer? Does Aviation inspire you? We want you!","description":"Software Engineer (Java)Fulltime, Sofia (BG)\r\nIf you ......are a passionate software developer......have…","url":"/jobs/48438/are-you-a-passionate-java-developer-does-aviaso?a=X4Ez30Xu","jscore":0,"location":"Sofia, Bulgaria","company_name":"Aviaso","scraping_round":1,"company_id":null},{"id":3,"job_id":"40166","title":"Systems Developer - Hong Kong","description":"Jane Street is a technology-focused proprietary trading firm. We are looking to hire great software…","url":"/jobs/40166/systems-developer-hong-kong-jane-street?a=MZac9LjO","jscore":0,"location":"Hong Kong","company_name":"Jane Street","scraping_round":1,"company_id":null},{"id":4,"job_id":"45514","title":"Engineer, Application Development (f/m)","description":"We’re looking for someone who is enthusiastic to join us in evolving our main products, Live and Push.…","url":"/jobs/45514/engineer-application-development-f-m-ableton-ag?a=TvypSpYQ","jscore":0,"location":"Berlin, Deutschland (relocation offered)","company_name":"Ableton AG","scraping_round":1,"company_id":null},{"id":5,"job_id":"48437","title":"Sr. Software Engineer (Rovi Cloud team)","description":"At Rovi, we connect people to the entertainment they love. Our products and services power some of the…","url":"/jobs/48437/sr-software-engineer-rovi-cloud-team-rovi-corporation?a=X4zSnLLq","jscore":0,"location":"Santa Clara, CA","company_name":"Rovi Corporation","scraping_round":1,"company_id":null},{"id":6,"job_id":"46366","title":"Front-End Web-Entwickler/in HTML5/CSS3/PHP/SQL","description":"Zur Verstärkung unseres Entwicklungsteams suchen wir ab sofort einen erfahrenen und cleveren Web…","url":"/jobs/46366/front-end-web-entwickler-in-html5-css3-php-sql-s%C3%BCdwest-presse-online-dienste?a=UxZiZSq4","jscore":10,"location":"Ulm, Germany","company_name":"Südwest Presse Online-Dienste GmbH","scraping_round":1,"company_id":null},{"id":7,"job_id":"48436","title":"Ruby Engineer wanted for epic start up","description":"ABOUT YOU\r\nThe App Business is looking for a passionate Ruby engineer with a strong commitment to…","url":"/jobs/48436/ruby-engineer-wanted-for-epic-start-up-the-app-business?a=X4vbIwzm","jscore":10,"location":"London, United Kingdom","company_name":"The App Business","scraping_round":1,"company_id":1},{"id":8,"job_id":"26833","title":"Software Engineer - Ruby/JavaScript","description":"Want to join a self-funded startup aiming to revolutionize retail management and point of sale software?…","url":"/jobs/26833/software-engineer-ruby-javascript-springboard-retail?a=wIZ6tbRC","jscore":0,"location":"Boston, MA (allows remote)","company_name":"Springboard Retail","scraping_round":1,"company_id":null},{"id":9,"job_id":"48432","title":"Developers & UI Designers","description":"http://www.wizehive.com/make/\r\nWizeHive is growing rapidly and looking for bright, motivated developers…","url":"/jobs/48432/developers-ui-designers-wizehive?a=X4cr3xN6","jscore":12,"location":"Philadelphia, PA (allows remote)","company_name":"WizeHive","scraping_round":1,"company_id":null},{"id":10,"job_id":"44348","title":"Software Developer Level 2 - Transform Healthcare!!!","description":"Postition Overview:  Develop, implement and maintain custom software solutions in support of the…","url":"/jobs/44348/software-developer-level-2-transform-carecore-national?a=S5o2cF5C","jscore":0,"location":"Bluffton, SC (allows remote) (relocation offered)","company_name":"CareCore National","scraping_round":1,"company_id":2},{"id":11,"job_id":"48431","title":"Senior Developer / Architect (Java/AWS)","description":"We are seeking a bright and capable developer to help build out an increasingly powerful cloud engine…","url":"/jobs/48431/senior-developer-architect-java-aws-nara-logics-inc?a=X47KoiB2","jscore":0,"location":"Cambridge, MA","company_name":"Nara Logics Inc","scraping_round":1,"company_id":null},{"id":12,"job_id":"48430","title":"Ruby Developer","description":"TrikeApps is looking for a skilled Ruby developer with a passion for programming to join the team. You’d…","url":"/jobs/48430/ruby-developer-trike-apps?a=X433J3oY","jscore":0,"location":"Melbourne, Australia","company_name":"Trike Apps","scraping_round":1,"company_id":3},{"id":13,"job_id":"48428","title":"iOS Engineer","description":"We’re looking for an iOS Engineer to be a key member of a small, skilled, results-oriented team of…","url":"/jobs/48428/ios-engineer-flint-mobile?a=X3TGoz0Q","jscore":12,"location":"Redwood City, CA (relocation offered)","company_name":"Flint Mobile","scraping_round":1,"company_id":null},{"id":14,"job_id":"48427","title":"DevOps Engineer","description":"We're looking for a Linux systems administrator who likes to be part of product development. You'll be a…","url":"/jobs/48427/devops-engineer-flint-mobile?a=X3OZJjOM","jscore":12,"location":"Redwood City, CA (relocation offered)","company_name":"Flint Mobile","scraping_round":1,"company_id":null},{"id":15,"job_id":"48426","title":"Senior Front End Engineer -30018479","description":"Changing the world is all in a day's work at Apple. If you love innovation, here's your chance to make a…","url":"/jobs/48426/senior-front-end-engineer-30018479-apple-inc?a=X3Kj44CI","jscore":0,"location":"Cupertino, CA","company_name":"Apple, Inc","scraping_round":1,"company_id":null},{"id":16,"job_id":"46353","title":"Security and Privacy Analyst (J.D. Power)","description":"Job DescriptionJ.D. Power is currently seeking a Security/Privacy Analyst to work closely with the…","url":"/jobs/46353/security-and-privacy-analyst-j-d-power-mcgraw-hill-financial?a=UwZM12eY","jscore":0,"location":"Westlake Village, CA","company_name":"McGraw Hill Financial","scraping_round":1,"company_id":null},{"id":17,"job_id":"48425","title":"Cloud Technical Account Manager","description":"In this role, you will have the opportunity to help shape and execute a strategy to build mindshare and…","url":"/jobs/48425/cloud-technical-account-manager-amazon?a=X3FCoPqE","jscore":0,"location":"San Francisco, CA (relocation offered)","company_name":"Amazon","scraping_round":1,"company_id":null},{"id":18,"job_id":"48424","title":"Instructional Support Technician","description":"San Jose State UniversityInstructional Support TechnicianJob ID: 22798Full/Part time: Full-time Regular…","url":"/jobs/48424/instructional-support-technician-san-jose-state-university?a=X3AVJAeA","jscore":0,"location":"San Jose, CA","company_name":"San Jose State University","scraping_round":1,"company_id":null},{"id":19,"job_id":"48421","title":"Software Developer","description":"Stanford UniversitySoftware Developer - 61585Description1 year fixed term with possibility to extend…","url":"/jobs/48421/software-developer-stanford-university?a=X3mRJQEo","jscore":0,"location":"Stanford, CA","company_name":"Stanford University","scraping_round":1,"company_id":null},{"id":20,"job_id":"48419","title":"Build and Infrastructure Programmer","description":"If you want an instrumental role in making the Unity product successful, addressing new problems every…","url":"/jobs/48419/build-and-infrastructure-programmer-unity-technologies?a=X3dupmgg","jscore":0,"location":"Copenhagen, Denmark (relocation offered)","company_name":"Unity Technologies","scraping_round":1,"company_id":null},{"id":21,"job_id":"48414","title":"A FUN SENIOR RUBY DEVELOPER - FULLY FUNDED STARTUP","description":"SENIOR RUBY DEVELOPERFlat World KnowledgeWashington, DC\r\nATTENTION RUBY DEVELOPERSFLAT WORLD KNOWLEDGE…","url":"/jobs/48414/a-fun-senior-ruby-developer-fully-funded-startup-flat-world-knowledge?a=X2Q358hW","jscore":0,"location":"Washington, DC","company_name":"Flat World Knowledge","scraping_round":1,"company_id":null},{"id":22,"job_id":"46896","title":"Senior iOS Engineer","description":"\r\nInvolved in all aspects of development and maintenance of our Gyft iOS apps.\r\nWork within a small team…","url":"/jobs/46896/senior-ios-engineer-gyft?a=Vc41zLyg","jscore":0,"location":"Palo Alto, CA","company_name":"Gyft","scraping_round":1,"company_id":null},{"id":23,"job_id":"14780","title":"Web Application Developer","description":"Description:  This is a telecommute job.  Do you like large-scale challenges and writing code that gets…","url":"/jobs/14780/web-application-developer-deviantart?a=i1AQiju0","jscore":0,"location":"Los Angeles, CA (allows remote)","company_name":"deviantART","scraping_round":1,"company_id":null},{"id":24,"job_id":"48409","title":"Software Engineer","description":"Position: Software Engineer\r\n\r\nOverview: \r\nWolfram, makers of Mathematica and Wolfram|Alpha, are seeking…","url":"/jobs/48409/software-engineer-wolfram-research-inc?a=X2sBKUjC","jscore":0,"location":"Champaign, IL","company_name":"Wolfram Research Inc. & Wolfram|Apla","scraping_round":1,"company_id":null},{"id":25,"job_id":"47228","title":"Server-Side Software Engineer - Videogames","description":"Demiurge Studios is seeking a server-side software engineer to join our game development team!  In this…","url":"/jobs/47228/server-side-software-engineer-videogames-demiurge-studios?a=VB9U6tvq","jscore":0,"location":"Cambridge, MA","company_name":"Demiurge Studios","scraping_round":1,"company_id":null},{"id":26,"job_id":"48402","title":"Software Developer","description":"LegitScript is looking for talented, professional software developers to help build our growing team in…","url":"/jobs/48402/software-developer-legitscript?a=X1VN6bXa","jscore":0,"location":"Portland, OR","company_name":"LegitScript","scraping_round":1,"company_id":null},{"id":27,"job_id":"48401","title":"Research Scientist","description":"Amazon.com is looking for a motivated individual with strong analytical skills to join our IPC Inventory…","url":"/jobs/48401/research-scientist-amazon?a=X1R6qWL6","jscore":0,"location":"Seattle, WA (relocation offered)","company_name":"Amazon","scraping_round":1,"company_id":null},{"id":28,"job_id":"46341","title":"Senior Director, Infrastructure Architecture (McGraw Hill Financial)","description":"When you work at McGraw Hill Financial and its respected global brands, your contributions are essential…","url":"/jobs/46341/senior-director-infrastructure-architecture-mcgraw-hill-financial?a=Uw5w25Uc","jscore":0,"location":"New York, NY","company_name":"McGraw Hill Financial","scraping_round":1,"company_id":null},{"id":29,"job_id":"46232","title":"Sr. Operations Engineer | DevOps","description":"Summary\r\nThe Wikimedia Foundation is looking for a skilled, experienced operations engineer with both…","url":"/jobs/46232/sr-operations-engineer-devops-wikimedia-foundation?a=UnQvwnHa","jscore":0,"location":"San Francisco, CA (allows remote)","company_name":"Wikimedia Foundation","scraping_round":1,"company_id":null},{"id":30,"job_id":"46248","title":"Operations Engineer","description":"The Wikimedia Foundation is looking for an experienced Operations Infrastructure Engineer to join our…","url":"/jobs/46248/operations-engineer-wikimedia-foundation?a=Up3waiOc","jscore":0,"location":"San Francisco, CA (allows remote)","company_name":"Wikimedia Foundation","scraping_round":1,"company_id":null},{"id":31,"job_id":"48397","title":"DevOps Engineer","description":"Join the Yext engineering team! We’re looking for a Mid-Level DevOps Engineer to help design, implement…","url":"/jobs/48397/devops-engineer-yext?a=X1ylLXYQ","jscore":12,"location":"New York, NY","company_name":"Yext","scraping_round":1,"company_id":4},{"id":32,"job_id":"48395","title":"Front End Developer","description":"LIVEauctioneers is looking for a front end web developer with strong hands-on skills and 2-5 years…","url":"/jobs/48395/front-end-developer-liveauctioneers?a=X1oYrtAI","jscore":0,"location":"New York, NY","company_name":"LIVEauctioneers","scraping_round":1,"company_id":null},{"id":33,"job_id":"48392","title":"Site Reliability Engineer","description":"Come work on one of the world's biggest video software deployments. Every minute, Zencoder transcodes…","url":"/jobs/48392/site-reliability-engineer-zencoder?a=X1aUrK0w","jscore":0,"location":"San Francisco, CA (relocation offered)","company_name":"Zencoder","scraping_round":1,"company_id":5},{"id":34,"job_id":"48391","title":"Senior Software Engineer","description":"Brightcove's Video Cloud product is the industry leading online video platform for media and marketing.…","url":"/jobs/48391/senior-software-engineer-zencoder?a=X16dMuOs","jscore":0,"location":"San Francisco, CA (relocation offered)","company_name":"Zencoder","scraping_round":1,"company_id":5},{"id":35,"job_id":"48389","title":"Web Frontend Developer with expert knowledge in JS/CSS3/angularJS","description":"Dear All,\r\nthe topic/usecase ist quite simple but the technologies and the requirements are highly…","url":"/jobs/48389/web-frontend-developer-with-expert-knowledge-in-favattic?a=X0WQs0qk","jscore":0,"location":"Hamburg, Germany (allows remote)","company_name":"favattic","scraping_round":1,"company_id":null},{"id":36,"job_id":"48382","title":"Senior Magento Developer","description":"Pod1 is looking for a Snr Magento PHP Developer with at least 5+ years of PHP5, object-oriented…","url":"/jobs/48382/senior-magento-developer-pod1-inc?a=X0q1Ni3S","jscore":0,"location":"New York, NY","company_name":"Pod1 Inc","scraping_round":1,"company_id":null},{"id":37,"job_id":"48387","title":"Solution Architect","description":"In the time it takes you to read this sentence, the Brightcove Video Player has been loaded over 9,000…","url":"/jobs/48387/solution-architect-brightcove?a=X0Nt7w2c","jscore":0,"location":"Boston, MA (relocation offered)","company_name":"Brightcove","scraping_round":1,"company_id":5},{"id":38,"job_id":"48386","title":"Data Scientist","description":"Are you an ambitious developer with a passion for disrupting and innovating the digital media space? We…","url":"/jobs/48386/data-scientist-ndn-inc?a=X0IMsgQ8","jscore":0,"location":"Los Angeles, CA","company_name":"NDN, Inc.","scraping_round":1,"company_id":null},{"id":39,"job_id":"48385","title":"Front End Web Developer","description":"Are you passionate about existing and emerging web technologies?  Do you want to work in a development…","url":"/jobs/48385/front-end-web-developer-mobiquity?a=X0E5N1E4","jscore":0,"location":"Gainesville, FL (allows remote) (relocation offered)","company_name":"Mobiquity","scraping_round":1,"company_id":6},{"id":40,"job_id":"48384","title":"Data Scientist","description":"Are you an ambitious developer with a passion for disrupting and innovating the digital media space? We…","url":"/jobs/48384/data-scientist-ndn-inc?a=X0zp7Ms0","jscore":0,"location":"Atlanta, GA","company_name":"NDN, Inc.","scraping_round":1,"company_id":null},{"id":41,"job_id":"48383","title":"Lead JavaScript Engineer","description":"DO YOU:\r\nWant to work on something new and exciting?\r\n\r\nin node?\r\nwith mongo?\r\nand backbone?\r\n\r\nWant to…","url":"/jobs/48383/lead-javascript-engineer-brightcove?a=X0uIsxfW","jscore":0,"location":"Boston, MA (relocation offered)","company_name":"Brightcove","scraping_round":1,"company_id":5},{"id":42,"job_id":"48381","title":"JavaScript Engineer","description":"DO YOU:\r\n\r\nLove building end user facing applications for millions of people to see?\r\nKnow JS inside and…","url":"/jobs/48381/javascript-engineer-brightcove?a=X0ll82RO","jscore":0,"location":"Boston, MA (relocation offered)","company_name":"Brightcove","scraping_round":1,"company_id":5},{"id":43,"job_id":"48379","title":"Cloud Operations Engineer","description":"Brightcove's Video Cloud product is the industry leading online video platform for media and marketing.…","url":"/jobs/48379/cloud-operations-engineer-brightcove?a=X0bXNytG","jscore":0,"location":"Seattle, WA (relocation offered)","company_name":"Brightcove","scraping_round":1,"company_id":5},{"id":44,"job_id":"48378","title":"Senior Quality Assurance / Software Developer In Test","description":"JOB DESCRIPTION\r\n\r\nAs a SQA/SDT, you are the gatekeeper of the integrity and full usability of our…","url":"/jobs/48378/senior-quality-assurance-software-developer-in-nara-logics-inc?a=X07h8jhC","jscore":0,"location":"Cambridge, MA","company_name":"Nara Logics Inc","scraping_round":1,"company_id":null},{"id":45,"job_id":"48376","title":"Software Development Engineer - Search Experience Platform","description":"Amazon Search Experience is looking for a passionate and innovative senior Software Development Engineer…","url":"/jobs/48376/software-development-engineer-search-experience-amazon?a=WZXTNOTu","jscore":0,"location":"Seattle, WA (relocation offered)","company_name":"Amazon","scraping_round":1,"company_id":null},{"id":46,"job_id":"48375","title":"Software Development Engineer - Performance","description":"Amazon Search Experience is looking for a passionate and innovative Software Development Engineer to…","url":"/jobs/48375/software-development-engineer-performance-amazon?a=WZTd8zHq","jscore":0,"location":"Seattle, WA (relocation offered)","company_name":"Amazon","scraping_round":1,"company_id":null},{"id":47,"job_id":"48374","title":"If You Code in Python, Come and Work on Wall Street","description":"Break into Wall Street's tightly knit technology community with this job opportunity. Prior experience…","url":"/jobs/48374/if-you-code-in-python-come-and-work-on-wall-vt-enterprise?a=WZOwtkvm","jscore":0,"location":"New York, NY","company_name":"VT Enterprise","scraping_round":1,"company_id":null},{"id":48,"job_id":"47229","title":"Support Engineer - We need YOU to tie it all together!","description":"Overview: We’ve got some sensors. We got some switches. We’ve got what Wired calls “arguably the most…","url":"/jobs/47229/support-engineer-we-need-you-to-tie-it-all-smartthings?a=VBeALIHu","jscore":0,"location":"Washington, DC","company_name":"SmartThings","scraping_round":1,"company_id":7},{"id":49,"job_id":"46621","title":"Software/DevOps Engineer","description":"Your mission at Sharewave will be to act as a catalyst who improves the effectiveness of our application…","url":"/jobs/46621/software-devops-engineer-sharewave?a=URgMDn2w","jscore":10,"location":"New York, NY","company_name":"Sharewave","scraping_round":1,"company_id":8},{"id":50,"job_id":"14497","title":"UI Code Developer","description":"We are looking for a talented, enthusiastic front end developer to join our team here at Crate. â€¦","url":"/jobs/14497/ui-code-developer-crate-enterprises?a=hGc61XpK","jscore":11,"location":"London, United Kingdom","company_name":"Crate Enterprises","scraping_round":1,"company_id":null},{"id":51,"job_id":"48371","title":"Software Engineer/Senior Software Engineer","description":"Tricension is seeking an organized and flexible Software Engineer with excellent communication skills to…","url":"/jobs/48371/software-engineer-senior-software-engineer-tricension?a=WZAstAVa","jscore":0,"location":"Kansas City, MO","company_name":"Tricension","scraping_round":1,"company_id":null},{"id":52,"job_id":"48370","title":"Java Developer - Forge Media Technology Solutions","description":"We are looking for two developers who will be part of a team responsible for designing and delivering…","url":"/jobs/48370/java-developer-forge-media-technology-solutions-mediasmiths-international?a=WZwm90nm","jscore":0,"location":"Manchester, United Kingdom","company_name":"Mediasmiths International","scraping_round":1,"company_id":9},{"id":53,"job_id":"48369","title":"DevOps Engineer","description":"We believe that Trading is an engineering problem.  Evolving our platform for dynamic markets presents…","url":"/jobs/48369/devops-engineer-spot-trading-llc?a=WZr596x2","jscore":0,"location":"Chicago, IL","company_name":"Spot Trading LLC","scraping_round":1,"company_id":10},{"id":54,"job_id":"45494","title":"Exciting Startup seeking Senior Rails Developer","description":"Phenomenal opportunity to bring your rails experience and can-do attitude to a positive and productive…","url":"/jobs/45494/exciting-startup-seeking-senior-rails-developer-glossre-com?a=Tu2Ezw5y","jscore":0,"location":"Chicago, IL","company_name":"Glossre.com","scraping_round":1,"company_id":11},{"id":55,"job_id":"48367","title":"DevOps Engineer","description":"We believe that Trading is an engineering problem.  Evolving our platform for dynamic markets presents…","url":"/jobs/48367/devops-engineer-spot-trading-llc?a=WZhHOC8U","jscore":0,"location":"Chicago, IL","company_name":"Spot Trading LLC","scraping_round":1,"company_id":10},{"id":56,"job_id":"48365","title":"Java or PHP Software Developer (medium and senior level)","description":"We are a rapidly growing company and are looking to hire for our successful Agile development team. We…","url":"/jobs/48365/java-or-php-software-developer-medium-and-senior-brightpearl?a=WZ8ku7KM","jscore":0,"location":"Bristol, United Kingdom","company_name":"Brightpearl","scraping_round":1,"company_id":null},{"id":57,"job_id":"48363","title":"Senior Applications Engineer","description":"Senior Applications Engineer, Mobile AppsOur StoryGrindr is among the top highest grossing apps in the…","url":"/jobs/48363/senior-applications-engineer-grindr?a=WYYX9DmE","jscore":0,"location":"Los Angeles, CA","company_name":"Grindr","scraping_round":1,"company_id":null},{"id":58,"job_id":"48362","title":"Senior Android Mobile Developer, Java","description":"Senior Android DeveloperOur StoryGrindr is among the top highest grossing apps in the iOS app store and…","url":"/jobs/48362/senior-android-mobile-developer-java-grindr?a=WYUguoaA","jscore":0,"location":"Los Angeles, CA","company_name":"Grindr","scraping_round":1,"company_id":null},{"id":59,"job_id":"48361","title":"Ruby Software Engineer to Help Invent a New Type of Software","description":"We are currently seeking a passionate software development professional for the role of Software…","url":"/jobs/48361/ruby-software-engineer-to-help-invent-a-new-type-crisply?a=WYPzP8Yw","jscore":12,"location":"Cambridge, MA (relocation offered)","company_name":"Crisply","scraping_round":1,"company_id":12},{"id":60,"job_id":"48359","title":"Front-end Software Engineer","description":"Be A Part Of It\r\nWhen you interview at Squarespace, we’ll invite you and your spouse or partner to…","url":"/jobs/48359/front-end-software-engineer-squarespace?a=WYGcuEAo","jscore":8,"location":"New York, NY (relocation offered)","company_name":"Squarespace","scraping_round":1,"company_id":13},{"id":61,"job_id":"34813","title":"Software Engineer","description":"Responsibilities\r\n\r\nParticipate in full life-cycle software development\r\nDesign, implement, and deploy…","url":"/jobs/34813/software-engineer-yext?a=Gsox6SGs","jscore":11,"location":"New York, NY","company_name":"Yext","scraping_round":1,"company_id":4},{"id":62,"job_id":"48357","title":"Senior Front End Web Developer - JavaScript, HTML, CSS","description":"Are you passionate about web development and front end technologies? Excited to work with JavaScript? Do…","url":"/jobs/48357/senior-front-end-web-developer-javascript-html-viagogo-group?a=WYwPaacg","jscore":12,"location":"London, United Kingdom","company_name":"viagogo Group","scraping_round":1,"company_id":14},{"id":63,"job_id":"45598","title":"Ruby engineers","description":"We’ve got ambitious plans for our business and platform – 2014 is going to be exciting and challenging.…","url":"/jobs/45598/ruby-engineers-homeserve-alliance?a=TBUdL0kg","jscore":10,"location":"London, United Kingdom","company_name":"HomeServe Alliance","scraping_round":1,"company_id":null},{"id":64,"job_id":"48356","title":"Senior Systems Administrator","description":"The traffic of our primary revenue generating products has been growing about 40% year on year for the…","url":"/jobs/48356/senior-systems-administrator-dotmailer?a=WYsIPzEs","jscore":12,"location":"Croydon, United Kingdom","company_name":"dotMailer","scraping_round":1,"company_id":15},{"id":65,"job_id":"48354","title":"Software Engineer - Developer Tools (m/f)","description":"We’re looking for software engineers with a passion to work on our revolutionary new platform. You will…","url":"/jobs/48354/software-engineer-developer-tools-m-f-numberfour-ag?a=WYiLaqC4","jscore":0,"location":"Berlin, Germany","company_name":"NumberFour AG","scraping_round":1,"company_id":null},{"id":66,"job_id":"48355","title":"Experienced PHP Software Engineers","description":"Box UK is looking for experienced PHP software engineers to join our dynamic Cardiff team. Your…","url":"/jobs/48355/experienced-php-software-engineers-box-uk?a=WYnrPFO8","jscore":10,"location":"Cardiff, United Kingdom","company_name":"Box UK","scraping_round":1,"company_id":16},{"id":67,"job_id":"48349","title":"Web Applications Developer - Quartz","description":"About Quartz\r\nQuartz is a digitally native news outlet launched by Atlantic Media in September 2012. It…","url":"/jobs/48349/web-applications-developer-quartz-atlantic-media?a=WXVUaRi0","jscore":0,"location":"New York, NY","company_name":"Atlantic Media","scraping_round":1,"company_id":null},{"id":68,"job_id":"48346","title":"Software engineer","description":"An opportunity for a developer to join a growing development team and gain knowledge of capital…","url":"/jobs/48346/software-engineer-dealogic?a=WXHfQt3y","jscore":10,"location":"Budapest, Hungary","company_name":"Dealogic","scraping_round":1,"company_id":null},{"id":69,"job_id":"48345","title":".Net Ontwikkelaar","description":"Ben jij een ervaren .Net Ontwikkelaar en wil je jouw carrière voortzetten binnen 1 van de grotere…","url":"/jobs/48345/net-ontwikkelaar-vcd-it-groep?a=WXCzbdRu","jscore":0,"location":"Groningen, Netherlands","company_name":"VCD IT Groep","scraping_round":1,"company_id":null},{"id":70,"job_id":"48343","title":"PHP Software Developer","description":"Silktide is a small, successful company that makes website testing software. We’re looking for three new…","url":"/jobs/48343/php-software-developer-silktide?a=WXtbQJtm","jscore":0,"location":"Derby, United Kingdom","company_name":"Silktide","scraping_round":1,"company_id":17},{"id":71,"job_id":"48341","title":"Senior Python Programmer [Wargaming - World of Tanks]","description":"Due to the dynamic growth of our company, Wargaming is looking to hire a Senior / Lead Software Engineer…","url":"/jobs/48341/senior-python-programmer-wargaming-world-of-wargaming-net?a=WXjOwf5e","jscore":0,"location":"Minsk, Belarus (relocation offered)","company_name":"Wargaming.net","scraping_round":1,"company_id":null},{"id":72,"job_id":"48143","title":"Senior software developer PHP / SQL (m/w)","description":"We are growing our development team and are currently looking for a\r\nSenior software developer PHP / SQL…","url":"/jobs/48143/senior-software-developer-php-sql-m-w-applicata-gmbh?a=WIlyNIys","jscore":0,"location":"Berlin, Germany","company_name":"Applicata GmbH","scraping_round":1,"company_id":null},{"id":73,"job_id":"45596","title":"Software Engineer, Car Hire Team","description":"Location: Edinburgh or Glasgow\r\nOur Car Hire programme provides car hire search to help the user find…","url":"/jobs/45596/software-engineer-car-hire-team-skyscanner?a=TBKQqvW8","jscore":10,"location":"Glasgow, United Kingdom","company_name":"Skyscanner","scraping_round":1,"company_id":18},{"id":74,"job_id":"48340","title":"Sr Web Developer","description":"We're Hiring!CBS Interactive, a division of CBS Corporation, is the best online content network for…","url":"/jobs/48340/sr-web-developer-cbs-interactive?a=WXf7QZTa","jscore":0,"location":"San Francisco, CA","company_name":"CBS Interactive","scraping_round":1,"company_id":null},{"id":75,"job_id":"48339","title":"IT Tech Support Analyst","description":"IT Tech Support Analyst (Salary dependant on experience)\r\nThis is a remarkable opportunity to join a fun…","url":"/jobs/48339/it-tech-support-analyst-haygrove-ltd?a=WXarbKH6","jscore":0,"location":"Ledbury, United Kingdom","company_name":"Haygrove Ltd","scraping_round":1,"company_id":null}]
@@ -0,0 +1 @@
1
+ {"id":1,"job_id":"46369","title":"Full Stack Web Engineer","description":"Do you want to be a part of innovative software company and work on an awesome web app that changes the…","url":"/jobs/46369/full-stack-web-engineer-follow-up-boss?a=UycMEXm0","jscore":0,"location":"Cheyenne, WY (allows remote)","company_name":"Follow Up Boss","scraping_round":1,"company_id":null}
@@ -0,0 +1 @@
1
+ [{"id":4,"job_id":"48824","title":"C# Full Stack Developer","description":"Are you looking to work for a cutting edge, innovative and creative company where ideas are valued?  Are…","url":"http://careers.stackoverflow.com//jobs/48824/c-sharp-full-stack-developer-safespeed-llc","jscore":10,"location":"Chicago, IL","company_name":"SafeSpeed, LLC","scraping_round":1,"created_at":"2014-02-12T01:04:38.000+00:00","company_id":null},{"id":76,"job_id":"48736","title":"Lead Software Engineer","description":"Lead Software Engineer\r\nLead Engineers report to one of our Engineering Managers, and work closely with…","url":"http://careers.stackoverflow.com//jobs/48736/lead-software-engineer-enova","jscore":0,"location":"Chicago, IL","company_name":"Enova","scraping_round":1,"created_at":"2014-02-12T01:04:40.000+00:00","company_id":null},{"id":202,"job_id":"16738","title":"Software Engineer","description":"We are growing our team and are seeking developers with all levels of experience.\r\nInstead of including…","url":"http://careers.stackoverflow.com//jobs/16738/software-engineer-braintree","jscore":0,"location":"Chicago, IL; San Francisco, CA (relocation offered)","company_name":"Braintree","scraping_round":1,"created_at":"2014-02-12T01:04:43.000+00:00","company_id":null},{"id":336,"job_id":"48369","title":"DevOps Engineer","description":"We believe that Trading is an engineering problem.  Evolving our platform for dynamic markets presents…","url":"http://careers.stackoverflow.com//jobs/48369/devops-engineer-spot-trading-llc","jscore":0,"location":"Chicago, IL","company_name":"Spot Trading LLC","scraping_round":1,"created_at":"2014-02-12T01:04:46.000+00:00","company_id":null},{"id":337,"job_id":"45494","title":"Exciting Startup seeking Senior Rails Developer","description":"Phenomenal opportunity to bring your rails experience and can-do attitude to a positive and productive…","url":"http://careers.stackoverflow.com//jobs/45494/exciting-startup-seeking-senior-rails-developer-glossre-com","jscore":0,"location":"Chicago, IL","company_name":"Glossre.com","scraping_round":1,"created_at":"2014-02-12T01:04:46.000+00:00","company_id":null},{"id":338,"job_id":"48367","title":"DevOps Engineer","description":"We believe that Trading is an engineering problem.  Evolving our platform for dynamic markets presents…","url":"http://careers.stackoverflow.com//jobs/48367/devops-engineer-spot-trading-llc","jscore":0,"location":"Chicago, IL","company_name":"Spot Trading LLC","scraping_round":1,"created_at":"2014-02-12T01:04:46.000+00:00","company_id":null},{"id":536,"job_id":"44758","title":"Senior Java Developer","description":"We're looking for experienced Java engineers with a desire to collaborate, innovate, and grow in new…","url":"http://careers.stackoverflow.com//jobs/44758/senior-java-developer-vodori","jscore":12,"location":"Chicago, IL (relocation offered)","company_name":"Vodori","scraping_round":1,"created_at":"2014-02-12T01:04:51.000+00:00","company_id":null},{"id":544,"job_id":"48101","title":"Lead Software Engineer","description":"AnApplication Development (App Dev) Lead is responsible for establishing the low level design on one or…","url":"http://careers.stackoverflow.com//jobs/48101/lead-software-engineer-huron-consulting-group","jscore":0,"location":"Chicago, IL (allows remote) (relocation offered)","company_name":"Huron Consulting Group (recognized, Best Firms to Work For)","scraping_round":1,"created_at":"2014-02-12T01:04:51.000+00:00","company_id":null},{"id":547,"job_id":"44456","title":"Java Developer","description":"We’re looking for enthusiastic Java developers to grow the technical firepower on our Chicago-based…","url":"http://careers.stackoverflow.com//jobs/44456/java-developer-vodori","jscore":12,"location":"Chicago, IL (relocation offered)","company_name":"Vodori","scraping_round":1,"created_at":"2014-02-12T01:04:52.000+00:00","company_id":null},{"id":653,"job_id":"43584","title":"Senior Developer, Integrated Web Tools","description":"The Team: Fueling the technologies that drive our products and support our company`s infrastructure, the…","url":"http://careers.stackoverflow.com//jobs/43584/senior-developer-integrated-web-tools-morningstar-inc","jscore":0,"location":"Chicago, IL (relocation offered)","company_name":"Morningstar, Inc.","scraping_round":1,"created_at":"2014-02-12T01:04:55.000+00:00","company_id":null},{"id":654,"job_id":"45394","title":"C++ Developer","description":"The Team: Fueling the technologies that drive our products and support our company’s infrastructure, the…","url":"http://careers.stackoverflow.com//jobs/45394/c-plus-plus-developer-morningstar-inc","jscore":0,"location":"Chicago, IL (relocation offered)","company_name":"Morningstar, Inc.","scraping_round":1,"created_at":"2014-02-12T01:04:55.000+00:00","company_id":null},{"id":655,"job_id":"44533","title":"Storage and Backup Engineer","description":"The Team: Fueling the technologies that drive our products and support our company`s infrastructure, the…","url":"http://careers.stackoverflow.com//jobs/44533/storage-and-backup-engineer-morningstar-inc","jscore":0,"location":"Chicago, IL (relocation offered)","company_name":"Morningstar, Inc.","scraping_round":1,"created_at":"2014-02-12T01:04:55.000+00:00","company_id":null},{"id":656,"job_id":"44534","title":"Back-End Test Engineer","description":"The Team: Fueling the technologies that drive our products and support our company’s infrastructure, the…","url":"http://careers.stackoverflow.com//jobs/44534/back-end-test-engineer-morningstar-inc","jscore":0,"location":"Chicago, IL (relocation offered)","company_name":"Morningstar, Inc.","scraping_round":1,"created_at":"2014-02-12T01:04:55.000+00:00","company_id":null},{"id":657,"job_id":"44538","title":"Quality Assurance Manager","description":"The Team: Fueling the technologies that drive our products and support our company`s infrastructure, the…","url":"http://careers.stackoverflow.com//jobs/44538/quality-assurance-manager-morningstar-inc","jscore":0,"location":"Chicago, IL (relocation offered)","company_name":"Morningstar, Inc.","scraping_round":1,"created_at":"2014-02-12T01:04:55.000+00:00","company_id":null},{"id":767,"job_id":"12149","title":".NET Developer","description":"This person will work on a team developing, testing, deploying and supporting data-driven Internet,…","url":"http://careers.stackoverflow.com//jobs/12149/net-developer-sonoma-partners-llc","jscore":11,"location":"Indianapolis, IN; Chicago, IL","company_name":"Sonoma Partners LLC","scraping_round":1,"created_at":"2014-02-12T01:04:58.000+00:00","company_id":null},{"id":808,"job_id":"47617","title":"Get 'er Done Developer","description":"Ask one of our developers what they like about their job. 9 times out of 10, it will be they love…","url":"http://careers.stackoverflow.com//jobs/47617/get-er-done-developer-sonoma-partners-llc","jscore":11,"location":"Chicago, IL","company_name":"Sonoma Partners LLC","scraping_round":1,"created_at":"2014-02-12T01:04:59.000+00:00","company_id":null},{"id":830,"job_id":"47580","title":"Senior Software Engineer - Python, PHP","description":"Senior Software EngineerAbout This Role:The Threadless digital team is building the world's best…","url":"http://careers.stackoverflow.com//jobs/47580/senior-software-engineer-python-php-threadless","jscore":0,"location":"Chicago, IL","company_name":"Threadless","scraping_round":1,"created_at":"2014-02-12T01:05:00.000+00:00","company_id":null},{"id":952,"job_id":"36790","title":"Salesforce Architect","description":"Does thinking about architecting salesforce.com solutions for clients get you giddy?  When you see that…","url":"http://careers.stackoverflow.com//jobs/36790/salesforce-architect-sonoma-partners-llc","jscore":11,"location":"Chicago, IL","company_name":"Sonoma Partners LLC","scraping_round":1,"created_at":"2014-02-12T01:05:03.000+00:00","company_id":null},{"id":1119,"job_id":"47126","title":"Jr. Database Administrator","description":"Spot Trading LLC is a technology-driven proprietary trading firm based in Chicago’s financial district. â€¦","url":"http://careers.stackoverflow.com//jobs/47126/jr-database-administrator-spot-trading-llc","jscore":0,"location":"Chicago, IL","company_name":"Spot Trading LLC","scraping_round":1,"created_at":"2014-02-12T01:05:08.000+00:00","company_id":null},{"id":1206,"job_id":"46987","title":"Trading Algorithm Developer","description":"Spot Trading LLC is a technology-driven proprietary trading firm based in Chicago’s financial district. â€¦","url":"http://careers.stackoverflow.com//jobs/46987/trading-algorithm-developer-spot-trading-llc","jscore":0,"location":"Chicago, IL","company_name":"Spot Trading LLC","scraping_round":1,"created_at":"2014-02-12T01:05:11.000+00:00","company_id":null},{"id":1208,"job_id":"46983","title":"Applications Developer","description":"The Applications Developer will work closely with the Portfolio Managers to create and maintain tools,…","url":"http://careers.stackoverflow.com//jobs/46983/applications-developer-ronin-capital-llc","jscore":0,"location":"Chicago, IL","company_name":"Ronin Capital, LLC","scraping_round":1,"created_at":"2014-02-12T01:05:11.000+00:00","company_id":null},{"id":1250,"job_id":"46901","title":"Django/Python Developer","description":"We're a small digital design and development agency that makes apps, websites, and other fun stuff in…","url":"http://careers.stackoverflow.com//jobs/46901/django-python-developer-mess","jscore":11,"location":"Chicago, IL (relocation offered)","company_name":"Mess","scraping_round":1,"created_at":"2014-02-12T01:05:11.000+00:00","company_id":null},{"id":1287,"job_id":"44410","title":"Sr. Ruby Developer","description":"DRW’s technology teams pride themselves on technical excellence, and on building a culture that we are…","url":"http://careers.stackoverflow.com//jobs/44410/sr-ruby-developer-drw-trading-group","jscore":11,"location":"Chicago, IL (relocation offered)","company_name":"DRW Trading Group","scraping_round":1,"created_at":"2014-02-12T01:05:13.000+00:00","company_id":null}]
@@ -0,0 +1 @@
1
+ [{"id":2,"job_id":"48438","title":"Are you a passionate Java developer? Does Aviation inspire you? We want you!","description":"Software Engineer (Java)Fulltime, Sofia (BG)\r\nIf you ......are a passionate software developer......have…","url":"/jobs/48438/are-you-a-passionate-java-developer-does-aviaso?a=X4Ez30Xu","jscore":0,"location":"Sofia, Bulgaria","company_name":"Aviaso","scraping_round":1,"company_id":null},{"id":5,"job_id":"48437","title":"Sr. Software Engineer (Rovi Cloud team)","description":"At Rovi, we connect people to the entertainment they love. Our products and services power some of the…","url":"/jobs/48437/sr-software-engineer-rovi-cloud-team-rovi-corporation?a=X4zSnLLq","jscore":0,"location":"Santa Clara, CA","company_name":"Rovi Corporation","scraping_round":1,"company_id":null},{"id":11,"job_id":"48431","title":"Senior Developer / Architect (Java/AWS)","description":"We are seeking a bright and capable developer to help build out an increasingly powerful cloud engine…","url":"/jobs/48431/senior-developer-architect-java-aws-nara-logics-inc?a=X47KoiB2","jscore":0,"location":"Cambridge, MA","company_name":"Nara Logics Inc","scraping_round":1,"company_id":null},{"id":14,"job_id":"48427","title":"DevOps Engineer","description":"We're looking for a Linux systems administrator who likes to be part of product development. You'll be a…","url":"/jobs/48427/devops-engineer-flint-mobile?a=X3OZJjOM","jscore":12,"location":"Redwood City, CA (relocation offered)","company_name":"Flint Mobile","scraping_round":1,"company_id":null},{"id":22,"job_id":"46896","title":"Senior iOS Engineer","description":"\r\nInvolved in all aspects of development and maintenance of our Gyft iOS apps.\r\nWork within a small team…","url":"/jobs/46896/senior-ios-engineer-gyft?a=Vc41zLyg","jscore":0,"location":"Palo Alto, CA","company_name":"Gyft","scraping_round":1,"company_id":null},{"id":24,"job_id":"48409","title":"Software Engineer","description":"Position: Software Engineer\r\n\r\nOverview: \r\nWolfram, makers of Mathematica and Wolfram|Alpha, are seeking…","url":"/jobs/48409/software-engineer-wolfram-research-inc?a=X2sBKUjC","jscore":0,"location":"Champaign, IL","company_name":"Wolfram Research Inc. \u0026 Wolfram|Apla","scraping_round":1,"company_id":null},{"id":27,"job_id":"48401","title":"Research Scientist","description":"Amazon.com is looking for a motivated individual with strong analytical skills to join our IPC Inventory…","url":"/jobs/48401/research-scientist-amazon?a=X1R6qWL6","jscore":0,"location":"Seattle, WA (relocation offered)","company_name":"Amazon","scraping_round":1,"company_id":null},{"id":34,"job_id":"48391","title":"Senior Software Engineer","description":"Brightcove's Video Cloud product is the industry leading online video platform for media and marketing.…","url":"/jobs/48391/senior-software-engineer-zencoder?a=X16dMuOs","jscore":0,"location":"San Francisco, CA (relocation offered)","company_name":"Zencoder","scraping_round":1,"company_id":5},{"id":36,"job_id":"48382","title":"Senior Magento Developer","description":"Pod1 is looking for a Snr Magento PHP Developer with at least 5+ years of PHP5, object-oriented…","url":"/jobs/48382/senior-magento-developer-pod1-inc?a=X0q1Ni3S","jscore":0,"location":"New York, NY","company_name":"Pod1 Inc","scraping_round":1,"company_id":null},{"id":44,"job_id":"48378","title":"Senior Quality Assurance / Software Developer In Test","description":"JOB DESCRIPTION\r\n\r\nAs a SQA/SDT, you are the gatekeeper of the integrity and full usability of our…","url":"/jobs/48378/senior-quality-assurance-software-developer-in-nara-logics-inc?a=X07h8jhC","jscore":0,"location":"Cambridge, MA","company_name":"Nara Logics Inc","scraping_round":1,"company_id":null},{"id":52,"job_id":"48370","title":"Java Developer - Forge Media Technology Solutions","description":"We are looking for two developers who will be part of a team responsible for designing and delivering…","url":"/jobs/48370/java-developer-forge-media-technology-solutions-mediasmiths-international?a=WZwm90nm","jscore":0,"location":"Manchester, United Kingdom","company_name":"Mediasmiths International","scraping_round":1,"company_id":9},{"id":56,"job_id":"48365","title":"Java or PHP Software Developer (medium and senior level)","description":"We are a rapidly growing company and are looking to hire for our successful Agile development team. We…","url":"/jobs/48365/java-or-php-software-developer-medium-and-senior-brightpearl?a=WZ8ku7KM","jscore":0,"location":"Bristol, United Kingdom","company_name":"Brightpearl","scraping_round":1,"company_id":null},{"id":57,"job_id":"48363","title":"Senior Applications Engineer","description":"Senior Applications Engineer, Mobile AppsOur StoryGrindr is among the top highest grossing apps in the…","url":"/jobs/48363/senior-applications-engineer-grindr?a=WYYX9DmE","jscore":0,"location":"Los Angeles, CA","company_name":"Grindr","scraping_round":1,"company_id":null},{"id":58,"job_id":"48362","title":"Senior Android Mobile Developer, Java","description":"Senior Android DeveloperOur StoryGrindr is among the top highest grossing apps in the iOS app store and…","url":"/jobs/48362/senior-android-mobile-developer-java-grindr?a=WYUguoaA","jscore":0,"location":"Los Angeles, CA","company_name":"Grindr","scraping_round":1,"company_id":null},{"id":61,"job_id":"34813","title":"Software Engineer","description":"Responsibilities\r\n\r\nParticipate in full life-cycle software development\r\nDesign, implement, and deploy…","url":"/jobs/34813/software-engineer-yext?a=Gsox6SGs","jscore":11,"location":"New York, NY","company_name":"Yext","scraping_round":1,"company_id":4}]
@@ -0,0 +1 @@
1
+ [{"id":82,"job_id":"48436","title":"Ruby Engineer wanted for epic start up","description":"ABOUT YOU\r\nThe App Business is looking for a passionate Ruby engineer with a strong commitment to…","url":"/jobs/48436/ruby-engineer-wanted-for-epic-start-up-the-app-business?a=X4vbIwzm","jscore":10,"location":"London, United Kingdom","company_name":"The App Business","scraping_round":2,"created_at":null,"company_id":null},{"id":83,"job_id":"26833","title":"Software Engineer - Ruby/JavaScript","description":"Want to join a self-funded startup aiming to revolutionize retail management and point of sale software?…","url":"/jobs/26833/software-engineer-ruby-javascript-springboard-retail?a=wIZ6tbRC","jscore":0,"location":"Boston, MA (allows remote)","company_name":"Springboard Retail","scraping_round":2,"created_at":null,"company_id":null},{"id":87,"job_id":"48430","title":"Ruby Developer","description":"TrikeApps is looking for a skilled Ruby developer with a passion for programming to join the team. You’d…","url":"/jobs/48430/ruby-developer-trike-apps?a=X433J3oY","jscore":0,"location":"Melbourne, Australia","company_name":"Trike Apps","scraping_round":2,"created_at":null,"company_id":null},{"id":96,"job_id":"48414","title":"A FUN SENIOR RUBY DEVELOPER - FULLY FUNDED STARTUP","description":"SENIOR RUBY DEVELOPERFlat World KnowledgeWashington, DC\r\nATTENTION RUBY DEVELOPERSFLAT WORLD KNOWLEDGE…","url":"/jobs/48414/a-fun-senior-ruby-developer-fully-funded-startup-flat-world-knowledge?a=X2Q358hW","jscore":0,"location":"Washington, DC","company_name":"Flat World Knowledge","scraping_round":2,"created_at":null,"company_id":null},{"id":101,"job_id":"48402","title":"Software Developer","description":"LegitScript is looking for talented, professional software developers to help build our growing team in…","url":"/jobs/48402/software-developer-legitscript?a=X1VN6bXa","jscore":0,"location":"Portland, OR","company_name":"LegitScript","scraping_round":2,"created_at":null,"company_id":null},{"id":108,"job_id":"48392","title":"Site Reliability Engineer","description":"Come work on one of the world's biggest video software deployments. Every minute, Zencoder transcodes…","url":"/jobs/48392/site-reliability-engineer-zencoder?a=X1aUrK0w","jscore":0,"location":"San Francisco, CA (relocation offered)","company_name":"Zencoder","scraping_round":2,"created_at":null,"company_id":null},{"id":109,"job_id":"48391","title":"Senior Software Engineer","description":"Brightcove's Video Cloud product is the industry leading online video platform for media and marketing.…","url":"/jobs/48391/senior-software-engineer-zencoder?a=X16dMuOs","jscore":0,"location":"San Francisco, CA (relocation offered)","company_name":"Zencoder","scraping_round":2,"created_at":null,"company_id":null},{"id":77,"job_id":"48438","title":"Are you a passionate Java developer? Does Aviation inspire you? We want you!","description":"Software Engineer (Java)Fulltime, Sofia (BG)\r\nIf you ......are a passionate software developer......have…","url":"/jobs/48438/are-you-a-passionate-java-developer-does-aviaso?a=X4Ez30Xu","jscore":0,"location":"Sofia, Bulgaria","company_name":"Aviaso","scraping_round":2,"created_at":null,"company_id":null},{"id":80,"job_id":"48437","title":"Sr. Software Engineer (Rovi Cloud team)","description":"At Rovi, we connect people to the entertainment they love. Our products and services power some of the…","url":"/jobs/48437/sr-software-engineer-rovi-cloud-team-rovi-corporation?a=X4zSnLLq","jscore":0,"location":"Santa Clara, CA","company_name":"Rovi Corporation","scraping_round":2,"created_at":null,"company_id":null},{"id":86,"job_id":"48431","title":"Senior Developer / Architect (Java/AWS)","description":"We are seeking a bright and capable developer to help build out an increasingly powerful cloud engine…","url":"/jobs/48431/senior-developer-architect-java-aws-nara-logics-inc?a=X47KoiB2","jscore":0,"location":"Cambridge, MA","company_name":"Nara Logics Inc","scraping_round":2,"created_at":null,"company_id":null},{"id":89,"job_id":"48427","title":"DevOps Engineer","description":"We're looking for a Linux systems administrator who likes to be part of product development. You'll be a…","url":"/jobs/48427/devops-engineer-flint-mobile?a=X3OZJjOM","jscore":12,"location":"Redwood City, CA (relocation offered)","company_name":"Flint Mobile","scraping_round":2,"created_at":null,"company_id":null},{"id":97,"job_id":"46896","title":"Senior iOS Engineer","description":"\r\nInvolved in all aspects of development and maintenance of our Gyft iOS apps.\r\nWork within a small team…","url":"/jobs/46896/senior-ios-engineer-gyft?a=Vc41zLyg","jscore":0,"location":"Palo Alto, CA","company_name":"Gyft","scraping_round":2,"created_at":null,"company_id":null},{"id":99,"job_id":"48409","title":"Software Engineer","description":"Position: Software Engineer\r\n\r\nOverview: \r\nWolfram, makers of Mathematica and Wolfram|Alpha, are seeking…","url":"/jobs/48409/software-engineer-wolfram-research-inc?a=X2sBKUjC","jscore":0,"location":"Champaign, IL","company_name":"Wolfram Research Inc. \u0026 Wolfram|Apla","scraping_round":2,"created_at":null,"company_id":null},{"id":102,"job_id":"48401","title":"Research Scientist","description":"Amazon.com is looking for a motivated individual with strong analytical skills to join our IPC Inventory…","url":"/jobs/48401/research-scientist-amazon?a=X1R6qWL6","jscore":0,"location":"Seattle, WA (relocation offered)","company_name":"Amazon","scraping_round":2,"created_at":null,"company_id":null},{"id":109,"job_id":"48391","title":"Senior Software Engineer","description":"Brightcove's Video Cloud product is the industry leading online video platform for media and marketing.…","url":"/jobs/48391/senior-software-engineer-zencoder?a=X16dMuOs","jscore":0,"location":"San Francisco, CA (relocation offered)","company_name":"Zencoder","scraping_round":2,"created_at":null,"company_id":null},{"id":111,"job_id":"48382","title":"Senior Magento Developer","description":"Pod1 is looking for a Snr Magento PHP Developer with at least 5+ years of PHP5, object-oriented…","url":"/jobs/48382/senior-magento-developer-pod1-inc?a=X0q1Ni3S","jscore":0,"location":"New York, NY","company_name":"Pod1 Inc","scraping_round":2,"created_at":null,"company_id":null},{"id":119,"job_id":"48378","title":"Senior Quality Assurance / Software Developer In Test","description":"JOB DESCRIPTION\r\n\r\nAs a SQA/SDT, you are the gatekeeper of the integrity and full usability of our…","url":"/jobs/48378/senior-quality-assurance-software-developer-in-nara-logics-inc?a=X07h8jhC","jscore":0,"location":"Cambridge, MA","company_name":"Nara Logics Inc","scraping_round":2,"created_at":null,"company_id":null}]
@@ -0,0 +1 @@
1
+ [{"id":4,"job_id":"45514","title":"Engineer, Application Development (f/m)","description":"We’re looking for someone who is enthusiastic to join us in evolving our main products, Live and Push.…","url":"/jobs/45514/engineer-application-development-f-m-ableton-ag?a=TvypSpYQ","jscore":0,"location":"Berlin, Deutschland (relocation offered)","company_name":"Ableton AG","scraping_round":1,"company_id":null},{"id":13,"job_id":"48428","title":"iOS Engineer","description":"We’re looking for an iOS Engineer to be a key member of a small, skilled, results-oriented team of…","url":"/jobs/48428/ios-engineer-flint-mobile?a=X3TGoz0Q","jscore":12,"location":"Redwood City, CA (relocation offered)","company_name":"Flint Mobile","scraping_round":1,"company_id":null},{"id":14,"job_id":"48427","title":"DevOps Engineer","description":"We're looking for a Linux systems administrator who likes to be part of product development. You'll be a…","url":"/jobs/48427/devops-engineer-flint-mobile?a=X3OZJjOM","jscore":12,"location":"Redwood City, CA (relocation offered)","company_name":"Flint Mobile","scraping_round":1,"company_id":null},{"id":17,"job_id":"48425","title":"Cloud Technical Account Manager","description":"In this role, you will have the opportunity to help shape and execute a strategy to build mindshare and…","url":"/jobs/48425/cloud-technical-account-manager-amazon?a=X3FCoPqE","jscore":0,"location":"San Francisco, CA (relocation offered)","company_name":"Amazon","scraping_round":1,"company_id":null},{"id":20,"job_id":"48419","title":"Build and Infrastructure Programmer","description":"If you want an instrumental role in making the Unity product successful, addressing new problems every…","url":"/jobs/48419/build-and-infrastructure-programmer-unity-technologies?a=X3dupmgg","jscore":0,"location":"Copenhagen, Denmark (relocation offered)","company_name":"Unity Technologies","scraping_round":1,"company_id":null},{"id":10,"job_id":"44348","title":"Software Developer Level 2 - Transform Healthcare!!!","description":"Postition Overview:  Develop, implement and maintain custom software solutions in support of the…","url":"/jobs/44348/software-developer-level-2-transform-carecore-national?a=S5o2cF5C","jscore":0,"location":"Bluffton, SC (allows remote) (relocation offered)","company_name":"CareCore National","scraping_round":1,"company_id":2},{"id":27,"job_id":"48401","title":"Research Scientist","description":"Amazon.com is looking for a motivated individual with strong analytical skills to join our IPC Inventory…","url":"/jobs/48401/research-scientist-amazon?a=X1R6qWL6","jscore":0,"location":"Seattle, WA (relocation offered)","company_name":"Amazon","scraping_round":1,"company_id":null},{"id":45,"job_id":"48376","title":"Software Development Engineer - Search Experience Platform","description":"Amazon Search Experience is looking for a passionate and innovative senior Software Development Engineer…","url":"/jobs/48376/software-development-engineer-search-experience-amazon?a=WZXTNOTu","jscore":0,"location":"Seattle, WA (relocation offered)","company_name":"Amazon","scraping_round":1,"company_id":null},{"id":46,"job_id":"48375","title":"Software Development Engineer - Performance","description":"Amazon Search Experience is looking for a passionate and innovative Software Development Engineer to…","url":"/jobs/48375/software-development-engineer-performance-amazon?a=WZTd8zHq","jscore":0,"location":"Seattle, WA (relocation offered)","company_name":"Amazon","scraping_round":1,"company_id":null},{"id":42,"job_id":"48381","title":"JavaScript Engineer","description":"DO YOU:\r\n\r\nLove building end user facing applications for millions of people to see?\r\nKnow JS inside and…","url":"/jobs/48381/javascript-engineer-brightcove?a=X0ll82RO","jscore":0,"location":"Boston, MA (relocation offered)","company_name":"Brightcove","scraping_round":1,"company_id":5},{"id":41,"job_id":"48383","title":"Lead JavaScript Engineer","description":"DO YOU:\r\nWant to work on something new and exciting?\r\n\r\nin node?\r\nwith mongo?\r\nand backbone?\r\n\r\nWant to…","url":"/jobs/48383/lead-javascript-engineer-brightcove?a=X0uIsxfW","jscore":0,"location":"Boston, MA (relocation offered)","company_name":"Brightcove","scraping_round":1,"company_id":5},{"id":37,"job_id":"48387","title":"Solution Architect","description":"In the time it takes you to read this sentence, the Brightcove Video Player has been loaded over 9,000…","url":"/jobs/48387/solution-architect-brightcove?a=X0Nt7w2c","jscore":0,"location":"Boston, MA (relocation offered)","company_name":"Brightcove","scraping_round":1,"company_id":5},{"id":34,"job_id":"48391","title":"Senior Software Engineer","description":"Brightcove's Video Cloud product is the industry leading online video platform for media and marketing.…","url":"/jobs/48391/senior-software-engineer-zencoder?a=X16dMuOs","jscore":0,"location":"San Francisco, CA (relocation offered)","company_name":"Zencoder","scraping_round":1,"company_id":5},{"id":33,"job_id":"48392","title":"Site Reliability Engineer","description":"Come work on one of the world's biggest video software deployments. Every minute, Zencoder transcodes…","url":"/jobs/48392/site-reliability-engineer-zencoder?a=X1aUrK0w","jscore":0,"location":"San Francisco, CA (relocation offered)","company_name":"Zencoder","scraping_round":1,"company_id":5},{"id":43,"job_id":"48379","title":"Cloud Operations Engineer","description":"Brightcove's Video Cloud product is the industry leading online video platform for media and marketing.…","url":"/jobs/48379/cloud-operations-engineer-brightcove?a=X0bXNytG","jscore":0,"location":"Seattle, WA (relocation offered)","company_name":"Brightcove","scraping_round":1,"company_id":5},{"id":39,"job_id":"48385","title":"Front End Web Developer","description":"Are you passionate about existing and emerging web technologies?  Do you want to work in a development…","url":"/jobs/48385/front-end-web-developer-mobiquity?a=X0E5N1E4","jscore":0,"location":"Gainesville, FL (allows remote) (relocation offered)","company_name":"Mobiquity","scraping_round":1,"company_id":6},{"id":71,"job_id":"48341","title":"Senior Python Programmer [Wargaming - World of Tanks]","description":"Due to the dynamic growth of our company, Wargaming is looking to hire a Senior / Lead Software Engineer…","url":"/jobs/48341/senior-python-programmer-wargaming-world-of-wargaming-net?a=WXjOwf5e","jscore":0,"location":"Minsk, Belarus (relocation offered)","company_name":"Wargaming.net","scraping_round":1,"company_id":null},{"id":59,"job_id":"48361","title":"Ruby Software Engineer to Help Invent a New Type of Software","description":"We are currently seeking a passionate software development professional for the role of Software…","url":"/jobs/48361/ruby-software-engineer-to-help-invent-a-new-type-crisply?a=WYPzP8Yw","jscore":12,"location":"Cambridge, MA (relocation offered)","company_name":"Crisply","scraping_round":1,"company_id":12},{"id":60,"job_id":"48359","title":"Front-end Software Engineer","description":"Be A Part Of It\r\nWhen you interview at Squarespace, we’ll invite you and your spouse or partner to…","url":"/jobs/48359/front-end-software-engineer-squarespace?a=WYGcuEAo","jscore":8,"location":"New York, NY (relocation offered)","company_name":"Squarespace","scraping_round":1,"company_id":13}]
@@ -0,0 +1 @@
1
+ [{"id":1,"job_id":"46369","title":"Full Stack Web Engineer","description":"Do you want to be a part of innovative software company and work on an awesome web app that changes the…","url":"/jobs/46369/full-stack-web-engineer-follow-up-boss?a=UycMEXm0","jscore":0,"location":"Cheyenne, WY (allows remote)","company_name":"Follow Up Boss","scraping_round":1,"company_id":null},{"id":8,"job_id":"26833","title":"Software Engineer - Ruby/JavaScript","description":"Want to join a self-funded startup aiming to revolutionize retail management and point of sale software?…","url":"/jobs/26833/software-engineer-ruby-javascript-springboard-retail?a=wIZ6tbRC","jscore":0,"location":"Boston, MA (allows remote)","company_name":"Springboard Retail","scraping_round":1,"company_id":null},{"id":9,"job_id":"48432","title":"Developers \u0026 UI Designers","description":"http://www.wizehive.com/make/\r\nWizeHive is growing rapidly and looking for bright, motivated developers…","url":"/jobs/48432/developers-ui-designers-wizehive?a=X4cr3xN6","jscore":12,"location":"Philadelphia, PA (allows remote)","company_name":"WizeHive","scraping_round":1,"company_id":null},{"id":23,"job_id":"14780","title":"Web Application Developer","description":"Description:  This is a telecommute job.  Do you like large-scale challenges and writing code that gets…","url":"/jobs/14780/web-application-developer-deviantart?a=i1AQiju0","jscore":0,"location":"Los Angeles, CA (allows remote)","company_name":"deviantART","scraping_round":1,"company_id":null},{"id":10,"job_id":"44348","title":"Software Developer Level 2 - Transform Healthcare!!!","description":"Postition Overview:  Develop, implement and maintain custom software solutions in support of the…","url":"/jobs/44348/software-developer-level-2-transform-carecore-national?a=S5o2cF5C","jscore":0,"location":"Bluffton, SC (allows remote) (relocation offered)","company_name":"CareCore National","scraping_round":1,"company_id":2},{"id":29,"job_id":"46232","title":"Sr. Operations Engineer | DevOps","description":"Summary\r\nThe Wikimedia Foundation is looking for a skilled, experienced operations engineer with both…","url":"/jobs/46232/sr-operations-engineer-devops-wikimedia-foundation?a=UnQvwnHa","jscore":0,"location":"San Francisco, CA (allows remote)","company_name":"Wikimedia Foundation","scraping_round":1,"company_id":null},{"id":30,"job_id":"46248","title":"Operations Engineer","description":"The Wikimedia Foundation is looking for an experienced Operations Infrastructure Engineer to join our…","url":"/jobs/46248/operations-engineer-wikimedia-foundation?a=Up3waiOc","jscore":0,"location":"San Francisco, CA (allows remote)","company_name":"Wikimedia Foundation","scraping_round":1,"company_id":null},{"id":35,"job_id":"48389","title":"Web Frontend Developer with expert knowledge in JS/CSS3/angularJS","description":"Dear All,\r\nthe topic/usecase ist quite simple but the technologies and the requirements are highly…","url":"/jobs/48389/web-frontend-developer-with-expert-knowledge-in-favattic?a=X0WQs0qk","jscore":0,"location":"Hamburg, Germany (allows remote)","company_name":"favattic","scraping_round":1,"company_id":null},{"id":39,"job_id":"48385","title":"Front End Web Developer","description":"Are you passionate about existing and emerging web technologies?  Do you want to work in a development…","url":"/jobs/48385/front-end-web-developer-mobiquity?a=X0E5N1E4","jscore":0,"location":"Gainesville, FL (allows remote) (relocation offered)","company_name":"Mobiquity","scraping_round":1,"company_id":6}]
@@ -0,0 +1 @@
1
+ [{"id":11,"job_id":"48431","title":"Senior Developer / Architect (Java/AWS)","description":"We are seeking a bright and capable developer to help build out an increasingly powerful cloud engine…","url":"/jobs/48431/senior-developer-architect-java-aws-nara-logics-inc?a=X47KoiB2","jscore":0,"location":"Cambridge, MA","company_name":"Nara Logics Inc","scraping_round":1,"company_id":null},{"id":15,"job_id":"48426","title":"Senior Front End Engineer -30018479","description":"Changing the world is all in a day's work at Apple. If you love innovation, here's your chance to make a…","url":"/jobs/48426/senior-front-end-engineer-30018479-apple-inc?a=X3Kj44CI","jscore":0,"location":"Cupertino, CA","company_name":"Apple, Inc","scraping_round":1,"company_id":null},{"id":21,"job_id":"48414","title":"A FUN SENIOR RUBY DEVELOPER - FULLY FUNDED STARTUP","description":"SENIOR RUBY DEVELOPERFlat World KnowledgeWashington, DC\r\nATTENTION RUBY DEVELOPERSFLAT WORLD KNOWLEDGE…","url":"/jobs/48414/a-fun-senior-ruby-developer-fully-funded-startup-flat-world-knowledge?a=X2Q358hW","jscore":0,"location":"Washington, DC","company_name":"Flat World Knowledge","scraping_round":1,"company_id":null},{"id":22,"job_id":"46896","title":"Senior iOS Engineer","description":"\r\nInvolved in all aspects of development and maintenance of our Gyft iOS apps.\r\nWork within a small team…","url":"/jobs/46896/senior-ios-engineer-gyft?a=Vc41zLyg","jscore":0,"location":"Palo Alto, CA","company_name":"Gyft","scraping_round":1,"company_id":null},{"id":28,"job_id":"46341","title":"Senior Director, Infrastructure Architecture (McGraw Hill Financial)","description":"When you work at McGraw Hill Financial and its respected global brands, your contributions are essential…","url":"/jobs/46341/senior-director-infrastructure-architecture-mcgraw-hill-financial?a=Uw5w25Uc","jscore":0,"location":"New York, NY","company_name":"McGraw Hill Financial","scraping_round":1,"company_id":null},{"id":36,"job_id":"48382","title":"Senior Magento Developer","description":"Pod1 is looking for a Snr Magento PHP Developer with at least 5+ years of PHP5, object-oriented…","url":"/jobs/48382/senior-magento-developer-pod1-inc?a=X0q1Ni3S","jscore":0,"location":"New York, NY","company_name":"Pod1 Inc","scraping_round":1,"company_id":null},{"id":44,"job_id":"48378","title":"Senior Quality Assurance / Software Developer In Test","description":"JOB DESCRIPTION\r\n\r\nAs a SQA/SDT, you are the gatekeeper of the integrity and full usability of our…","url":"/jobs/48378/senior-quality-assurance-software-developer-in-nara-logics-inc?a=X07h8jhC","jscore":0,"location":"Cambridge, MA","company_name":"Nara Logics Inc","scraping_round":1,"company_id":null},{"id":51,"job_id":"48371","title":"Software Engineer/Senior Software Engineer","description":"Tricension is seeking an organized and flexible Software Engineer with excellent communication skills to…","url":"/jobs/48371/software-engineer-senior-software-engineer-tricension?a=WZAstAVa","jscore":0,"location":"Kansas City, MO","company_name":"Tricension","scraping_round":1,"company_id":null},{"id":34,"job_id":"48391","title":"Senior Software Engineer","description":"Brightcove's Video Cloud product is the industry leading online video platform for media and marketing.…","url":"/jobs/48391/senior-software-engineer-zencoder?a=X16dMuOs","jscore":0,"location":"San Francisco, CA (relocation offered)","company_name":"Zencoder","scraping_round":1,"company_id":5},{"id":56,"job_id":"48365","title":"Java or PHP Software Developer (medium and senior level)","description":"We are a rapidly growing company and are looking to hire for our successful Agile development team. We…","url":"/jobs/48365/java-or-php-software-developer-medium-and-senior-brightpearl?a=WZ8ku7KM","jscore":0,"location":"Bristol, United Kingdom","company_name":"Brightpearl","scraping_round":1,"company_id":null},{"id":57,"job_id":"48363","title":"Senior Applications Engineer","description":"Senior Applications Engineer, Mobile AppsOur StoryGrindr is among the top highest grossing apps in the…","url":"/jobs/48363/senior-applications-engineer-grindr?a=WYYX9DmE","jscore":0,"location":"Los Angeles, CA","company_name":"Grindr","scraping_round":1,"company_id":null},{"id":58,"job_id":"48362","title":"Senior Android Mobile Developer, Java","description":"Senior Android DeveloperOur StoryGrindr is among the top highest grossing apps in the iOS app store and…","url":"/jobs/48362/senior-android-mobile-developer-java-grindr?a=WYUguoaA","jscore":0,"location":"Los Angeles, CA","company_name":"Grindr","scraping_round":1,"company_id":null},{"id":71,"job_id":"48341","title":"Senior Python Programmer [Wargaming - World of Tanks]","description":"Due to the dynamic growth of our company, Wargaming is looking to hire a Senior / Lead Software Engineer…","url":"/jobs/48341/senior-python-programmer-wargaming-world-of-wargaming-net?a=WXjOwf5e","jscore":0,"location":"Minsk, Belarus (relocation offered)","company_name":"Wargaming.net","scraping_round":1,"company_id":null},{"id":72,"job_id":"48143","title":"Senior software developer PHP / SQL (m/w)","description":"We are growing our development team and are currently looking for a\r\nSenior software developer PHP / SQL…","url":"/jobs/48143/senior-software-developer-php-sql-m-w-applicata-gmbh?a=WIlyNIys","jscore":0,"location":"Berlin, Germany","company_name":"Applicata GmbH","scraping_round":1,"company_id":null},{"id":54,"job_id":"45494","title":"Exciting Startup seeking Senior Rails Developer","description":"Phenomenal opportunity to bring your rails experience and can-do attitude to a positive and productive…","url":"/jobs/45494/exciting-startup-seeking-senior-rails-developer-glossre-com?a=Tu2Ezw5y","jscore":0,"location":"Chicago, IL","company_name":"Glossre.com","scraping_round":1,"company_id":11},{"id":62,"job_id":"48357","title":"Senior Front End Web Developer - JavaScript, HTML, CSS","description":"Are you passionate about web development and front end technologies? Excited to work with JavaScript? Do…","url":"/jobs/48357/senior-front-end-web-developer-javascript-html-viagogo-group?a=WYwPaacg","jscore":12,"location":"London, United Kingdom","company_name":"viagogo Group","scraping_round":1,"company_id":14},{"id":64,"job_id":"48356","title":"Senior Systems Administrator","description":"The traffic of our primary revenue generating products has been growing about 40% year on year for the…","url":"/jobs/48356/senior-systems-administrator-dotmailer?a=WYsIPzEs","jscore":12,"location":"Croydon, United Kingdom","company_name":"dotMailer","scraping_round":1,"company_id":15}]
@@ -0,0 +1,18 @@
1
+ require 'rspec'
2
+ require './lib/stackable'
3
+ require 'webmock/rspec'
4
+
5
+ #
6
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
7
+ RSpec.configure do |config|
8
+ config.treat_symbols_as_metadata_keys_with_true_values = true
9
+ config.run_all_when_everything_filtered = true
10
+ config.filter_run :focus
11
+ # WebMock.disable_net_connect!(:allow_localhost => false)
12
+ # Run specs in random order to surface order dependencies. If you find an
13
+ # order dependency and want to debug it, you can fix the order by providing
14
+ # the seed, which is printed after each run.
15
+ # --seed 1234
16
+ config.order = 'random'
17
+ end
18
+
@@ -0,0 +1,119 @@
1
+ require 'spec_helper'
2
+ require 'json'
3
+
4
+ describe "Stackable" do
5
+
6
+ let(:stackable) { Stackable.new }
7
+
8
+ it 'should return a list of job profiles' do
9
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/jobs").to_return(body: IO.read('./spec/api_jobs.json'))
10
+
11
+ stackable.all_jobs
12
+
13
+ stub.should have_been_requested
14
+ end
15
+
16
+ it 'should return a specific job when job_id is given' do
17
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/jobs/46369").to_return(body: IO.read('./spec/api_jobs_46369.json'))
18
+
19
+ stackable.get_job("46369")
20
+
21
+ stub.should have_been_requested
22
+ end
23
+
24
+ it 'should return a list of jobs that offer relocation' do
25
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/relocation").to_return(body: IO.read('./spec/api_relocation.json'))
26
+
27
+ stackable.relocation_offered?
28
+
29
+ stub.should have_been_requested
30
+ end
31
+
32
+ it 'should return a list of jobs that allows remote working' do
33
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/remote").to_return(body: IO.read('./spec/api_remote.json'))
34
+
35
+ stackable.remote_working?
36
+
37
+ stub.should have_been_requested
38
+ end
39
+
40
+ it 'should return a list of jobs that are senior positions' do
41
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/senior").to_return(body: IO.read('./spec/api_senior.json'))
42
+
43
+ stackable.senior
44
+
45
+ stub.should have_been_requested
46
+ end
47
+
48
+ it 'should return a list of jobs filtered by a given tag' do
49
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/jobs/tags/java").to_return(body: IO.read('./spec/api_jobs_tags_java.json'))
50
+
51
+ stackable.get_jobs_by_tags(["java"])
52
+
53
+ stub.should have_been_requested
54
+ end
55
+
56
+ it 'should return a list of jobs filtered by multiple tags' do
57
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/jobs/tags/java&ruby").to_return(body: IO.read('./spec/api_jobs_tags_java_ruby.json'))
58
+
59
+ stackable.get_jobs_by_tags(["java", "ruby"])
60
+
61
+ stub.should have_been_requested
62
+
63
+ end
64
+
65
+ it 'should return a single company by given name' do
66
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/companies/app-business").to_return(body: IO.read('./spec/api_companies_app-business.json'))
67
+
68
+ stackable.get_company("app-business")
69
+
70
+ stub.should have_been_requested
71
+ end
72
+
73
+ it 'should return a list of companies filtered by a given tag' do
74
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/companies/tags/ruby").to_return(body: IO.read('./spec/api_companies_tags_ruby.json'))
75
+
76
+ stackable.get_companies_by_tags(["ruby"])
77
+
78
+ stub.should have_been_requested
79
+ end
80
+
81
+ it 'should return a list of companies filtered by multiple tags' do
82
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/companies/tags/java&ruby").to_return(body: IO.read('./spec/api_companies_tags_java_ruby.json'))
83
+
84
+ stackable.get_companies_by_tags(["java", "ruby"])
85
+
86
+ stub.should have_been_requested
87
+
88
+ end
89
+
90
+ it 'should return a list of companies filtered by keyword (benefits)' do
91
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/companies/benefits/dental").to_return(body: IO.read('./spec/api_companies_benefit_dental.json'))
92
+
93
+ stackable.companies_by_benefits(["dental"])
94
+
95
+ stub.should have_been_requested
96
+ end
97
+
98
+ it 'should return a list of companies filtered by keywords (benefits)' do
99
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/companies/benefits/medical&Gym").to_return(body: IO.read('./spec/api_companies_benefits_medical_gym.json'))
100
+
101
+ stackable.companies_by_benefits(["medical", "Gym"])
102
+
103
+ stub.should have_been_requested
104
+ end
105
+
106
+ it 'should return a list of jobs filtered by location' do
107
+ stub = stub_request(:get, "http://stackable.herokuapp.com/api/jobs/location/chicago").to_return(body: IO.read('./spec/api_jobs_location_chicago.json'))
108
+
109
+ stackable.jobs_by_location('chicago')
110
+
111
+ stub.should have_been_requested
112
+ end
113
+
114
+
115
+
116
+ end
117
+
118
+
119
+
data/stackable.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'stackable/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "stackable"
8
+ spec.version = "0.0.1"
9
+ spec.authors = ["Michael", "Erica", "Kumi"]
10
+ spec.email = ["michaelnicholasfisher@gmail.com", "erica.salvaneschi@gmail.com"]
11
+ spec.summary = %q{Ruby toolkit for working with the unofficial Stack Overflow Careers API}
12
+ spec.description = %q{Simple Ruby wrapper for the unofficial Stack Overflow Careers API}
13
+ spec.homepage = "https://github.com/mfisher90/stackable"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.5.1"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_runtime_dependency "httparty"
24
+ end
metadata ADDED
@@ -0,0 +1,129 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: stackable
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Michael
8
+ - Erica
9
+ - Kumi
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2014-02-12 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bundler
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 1.5.1
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ version: 1.5.1
29
+ - !ruby/object:Gem::Dependency
30
+ name: rake
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - '>='
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ type: :development
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - '>='
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ - !ruby/object:Gem::Dependency
44
+ name: httparty
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - '>='
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ type: :runtime
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - '>='
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ description: Simple Ruby wrapper for the unofficial Stack Overflow Careers API
58
+ email:
59
+ - michaelnicholasfisher@gmail.com
60
+ - erica.salvaneschi@gmail.com
61
+ executables: []
62
+ extensions: []
63
+ extra_rdoc_files: []
64
+ files:
65
+ - .gitignore
66
+ - Gemfile
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - lib/stackable.rb
71
+ - lib/stackable/version.rb
72
+ - spec/api_companies.json
73
+ - spec/api_companies_app-business.json
74
+ - spec/api_companies_benefit_dental.json
75
+ - spec/api_companies_benefits_medical_gym.json
76
+ - spec/api_companies_tags_java_ruby.json
77
+ - spec/api_companies_tags_ruby.json
78
+ - spec/api_jobs.json
79
+ - spec/api_jobs_46369.json
80
+ - spec/api_jobs_location_chicago.json
81
+ - spec/api_jobs_tags_java.json
82
+ - spec/api_jobs_tags_java_ruby.json
83
+ - spec/api_relocation.json
84
+ - spec/api_remote.json
85
+ - spec/api_senior.json
86
+ - spec/spec_helper.rb
87
+ - spec/stackable_spec.rb
88
+ - stackable.gemspec
89
+ homepage: https://github.com/mfisher90/stackable
90
+ licenses:
91
+ - MIT
92
+ metadata: {}
93
+ post_install_message:
94
+ rdoc_options: []
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - '>='
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubyforge_project:
109
+ rubygems_version: 2.0.6
110
+ signing_key:
111
+ specification_version: 4
112
+ summary: Ruby toolkit for working with the unofficial Stack Overflow Careers API
113
+ test_files:
114
+ - spec/api_companies.json
115
+ - spec/api_companies_app-business.json
116
+ - spec/api_companies_benefit_dental.json
117
+ - spec/api_companies_benefits_medical_gym.json
118
+ - spec/api_companies_tags_java_ruby.json
119
+ - spec/api_companies_tags_ruby.json
120
+ - spec/api_jobs.json
121
+ - spec/api_jobs_46369.json
122
+ - spec/api_jobs_location_chicago.json
123
+ - spec/api_jobs_tags_java.json
124
+ - spec/api_jobs_tags_java_ruby.json
125
+ - spec/api_relocation.json
126
+ - spec/api_remote.json
127
+ - spec/api_senior.json
128
+ - spec/spec_helper.rb
129
+ - spec/stackable_spec.rb