github-jobs 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YzUzZmIxZDhjZDI5MDhlMzJlYTE0NDFjNDYzNzgzMjhlZWQzNTQzOQ==
5
+ data.tar.gz: !binary |-
6
+ ZDI3ZGU0OTc3MDJjZTRjNWE2MGI4N2I5ODgyYWQyNGY5OWNhMGIyZQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ MjVjNDcyZGY2ZmZhNWQ1MTdkZDc1NjlkZWJjYTUyOWU5NDJhZDcxM2IzMTI2
10
+ NTg0NWZhZjVjOTVlMWNiOWI1ZDA4ZGQ4ZGY1MDk5ZWRhMzFmNDFlNjVhMjgx
11
+ ZWQwNTE0OWUyNTRiYjg3MmUzY2EzMGZkODU2NmI5MTMyOGFhYjg=
12
+ data.tar.gz: !binary |-
13
+ MTZkNjAzMzQ3OGVhNWI0ODkwM2MxZDM3ZWMzMTY1MTk2MjQ2Y2JlY2QyNmI1
14
+ ZGM0ZmE1ZjBjOWE2ZDU2NTEwMGUzZTM5OWU4MmYxNzljNWJmN2JlN2JhMjI1
15
+ Y2NhMDUxODcyMDA0NmJkZDNhNzg4YzgwZTM0Zjg3MzM3MTZkNWI=
@@ -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/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ script:
5
+ - bundle install
6
+ - bundle exec rspec
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in github-jobs.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 George Drummond
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.
@@ -0,0 +1,52 @@
1
+ # Github Jobs
2
+
3
+ [![Build Status](https://travis-ci.org/georgedrummond/github-jobs.png)](https://travis-ci.org/georgedrummond/github-jobs)
4
+
5
+ For your ruby apps that need to consume the Github jobs api...
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'github-jobs'
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install github-jobs
20
+
21
+ ## Usage
22
+
23
+ List the 50 most recent jobs published
24
+
25
+ ```ruby
26
+ Github::Jobs.positions
27
+ ```
28
+
29
+ Perform a specialised search
30
+
31
+ ```ruby
32
+ # description — A search term, such as "ruby" or "java". This parameter is aliased to search.
33
+ # location — A city name, zip code, or other location search term.
34
+ # lat — A specific latitude. If used, you must also send long and must not send location.
35
+ # long — A specific longitude. If used, you must also send lat and must not send location.
36
+ # full_time — If you want to limit results to full time positions set this parameter to 'true'.
37
+ # search - A query string
38
+
39
+ Github::Jobs.positions(search: 'ruby')
40
+ ```
41
+
42
+ ## Contributing
43
+
44
+ 1. Fork it
45
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
46
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
47
+ 4. Push to the branch (`git push origin my-new-feature`)
48
+ 5. Create new Pull Request
49
+
50
+ ## Copyright
51
+
52
+ Copyright George Drummond 2014.
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'github/jobs'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'github-jobs'
8
+ spec.version = Github::Jobs::VERSION
9
+ spec.authors = ['George Drummond']
10
+ spec.email = ['georgedrummond@gmail.com']
11
+ spec.description = %q{A simple gem for querying the Github jobs api}
12
+ spec.summary = %q{A simple gem for querying the Github jobs api}
13
+ spec.homepage = 'https://github.com/georgedrummond/github-jobs'
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.3'
22
+ spec.add_development_dependency 'rake'
23
+ spec.add_development_dependency 'rspec'
24
+ spec.add_development_dependency 'vcr'
25
+ spec.add_development_dependency 'webmock'
26
+ end
@@ -0,0 +1,27 @@
1
+ require 'ostruct'
2
+ require 'open-uri'
3
+ require 'json'
4
+ require 'uri'
5
+
6
+ module Github
7
+ class Job < OpenStruct
8
+
9
+ def ==(other)
10
+ self.id == other.id
11
+ end
12
+ end
13
+
14
+ class Jobs
15
+ VERSION = '0.0.1'
16
+
17
+ def self.positions(opts={})
18
+ params = opts.merge(page: 0)
19
+ .map { |k, v| "#{URI.encode(k.to_s)}=#{URI.encode(v.to_s)}" }
20
+ .join('&')
21
+
22
+ json = JSON.parse(open("https://jobs.github.com/positions.json?#{params}").read)
23
+
24
+ json.map { |job| Github::Job.new(job) }
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,2098 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://jobs.github.com/positions.json?page=0
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - ! '*/*'
12
+ User-Agent:
13
+ - Ruby
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Server:
20
+ - GitHub.com
21
+ Date:
22
+ - Thu, 20 Feb 2014 22:16:28 GMT
23
+ Content-Type:
24
+ - application/json;charset=utf-8
25
+ Connection:
26
+ - keep-alive
27
+ Status:
28
+ - 200 OK
29
+ Strict-Transport-Security:
30
+ - max-age=31536000
31
+ Content-Length:
32
+ - '182616'
33
+ Vary:
34
+ - Accept-Encoding
35
+ body:
36
+ encoding: US-ASCII
37
+ string: ! '[{"id":"968e56fe-8953-11e3-8119-b80827661b43","created_at":"Fri Feb
38
+ 28 02:09:45 UTC 2014","title":"Accounts Supportocat","location":"Remote","type":"Full
39
+ Time","description":"<p>GitHub is looking for full-time Accounts Supportocats
40
+ in the Australia / Asia-Pacific timezones, as well as Europe / Middle East
41
+ / Africa timezones. Basically, we&#39;re good on US business hours.</p>\n\n<p>When
42
+ GitHub users have questions, they email support. We help people as quickly
43
+ <em>and awesomely</em> as possible. Accounts supportocats handle passwords,
44
+ <a href=\"https://help.github.com/articles/setting-up-email-verification\">email
45
+ verification</a>, billing, legal, spam and abuse, <a href=\"https://help.github.com/articles/what-happens-if-my-account-is-locked\">account
46
+ lockouts</a>, fraud, and helping people choose <a href=\"https://github.com/pricing\">plans</a>.
47
+ This requires a logical brain and a spidey sense for problems.</p>\n\n<p>The
48
+ most important characteristic of our support team is that we &lt;3 helping
49
+ developers. GitHub is a place for people to work better, together. Our job
50
+ is to help. Support treats users the way we&#39;d want someone to treat our
51
+ friends.</p>\n\n<p>Supportocats are excellent writers: stellar grammar, charming
52
+ written personality, and the ability to explain complicated things simply.
53
+ We measure our success in swiftness, accuracy, clarity, and the number of
54
+ exclamation points we receive in replies. The occasional use of an animated
55
+ gif may be required.</p>\n\n<h2>You&#39;re good at:</h2>\n\n<ul>\n<li>logic
56
+ and solving puzzles</li>\n<li>advocating and empathizing</li>\n<li>the English
57
+ language</li>\n<li>working remotely</li>\n</ul>\n\n<h2>Extra awesome</h2>\n\n<ul>\n<li>customer
58
+ support experience</li>\n<li>technical experience (QA, documentation, elaborate
59
+ boardgames)</li>\n<li>you&#39;ve read &quot;How to Win Friends and Influence
60
+ People&quot;, despite its odd name</li>\n</ul>\n\n<p><em>Developers: this
61
+ probably isn&#39;t the job for you, but perhaps you have a friend who would
62
+ be a perfect fit. Send them this link. Thanks!</em></p>\n\n<h2>The Company</h2>\n\n<p>We\u2019re
63
+ profitable and growing with a unique perspective on <a href=\"http://www.youtube.com/playlist?list=PL0lo9MOBetEEvPMhIBbegwsXuIih8FP8h\">how
64
+ to run a company</a>. We have great <a href=\"https://github.com/about/jobs\">benefits</a>
65
+ and a safe, open work environment.</p>\n","how_to_apply":"<p>Email <a href=\"mailto:resumes@github.com\">resumes@github.com</a>
66
+ with the subject &quot;Accounts Supportocat&quot; We want our interactions
67
+ with users to be memorable, so please make your email memorable as well. Tell
68
+ us about how you match up to the Supportocat characteristics, and what makes
69
+ you a wonderful person to have around. Please include your GitHub username.
70
+ (It&#39;s OK if you hadn&#39;t signed up before.)</p>\n","company":"GitHub","company_url":"https://github.com","company_logo":"http://github-jobs.s3.amazonaws.com/92b05730-8953-11e3-86ad-4d3c7bd9cb0c.png","url":"http://jobs.github.com/positions/968e56fe-8953-11e3-8119-b80827661b43"},{"id":"db791964-9a7b-11e3-9e37-50aab2577f04","created_at":"Thu
71
+ Feb 20 22:11:29 UTC 2014","title":"API Engineer, Scala","location":"New York,
72
+ NY","type":"Full Time","description":"<p>Meetup is looking for an API Engineer
73
+ to help millions of people around the world find their people.</p>\n\n<p>The
74
+ Meetup API allows members and organizers to write software extensions to their
75
+ local community. Photography Meetups use the API to create photo browsers
76
+ tailored to their needs, large outdoor groups have built their own platform
77
+ to keep their members active, and data scientists consume and analyze public
78
+ Meetup\u2019s public data streams.</p>\n\n<p>In addition to the global Meetup
79
+ community\u2019s interaction with our API, over a quarter of members use our
80
+ native apps to find and connect with communities that matter to them. This
81
+ activity flows directly through the API platform, and you will work most closely
82
+ with Meetup\u2019s mobile team to enable richer experiences for members.</p>\n\n<p>The
83
+ Meetup backend is a hybrid JVM stack including Scala, Python, and Java. New
84
+ API methods are implemented in Unfiltered, and as an engineer on the API team
85
+ you&#39;ll bring your ideas to life primarily in Scala.</p>\n\n<p>An ideal
86
+ candidate has:</p>\n\n<ul>\n<li>Extensive experience programming HTTP networked
87
+ systems.</li>\n<li>A solid background in Scala and working knowledge of Python
88
+ and Java.</li>\n<li>A passion for good API design and performance.</li>\n<li>Experience
89
+ with relational databases and understanding of SQL.</li>\n<li>Attention to
90
+ detail and a feeling of pride and ownership over quality.</li>\n</ul>\n\n<p>Our
91
+ team is smart, ambitious, and supportive \u2014 above all, we are excited
92
+ by what we do. While meeting regular deadlines and being focused on quick,
93
+ quality completion of projects, the environment is relaxed and fun.</p>\n\n<p>Check
94
+ out our dev blog: <a href=\"http://making.meetup.com/\">http://making.meetup.com/</a></p>\n\n<p>And
95
+ scenes from an internal hackathon: <a href=\"http://www.youtube.com/watch?v=ttEb0C-IPyA\">http://www.youtube.com/watch?v=ttEb0C-IPyA</a></p>\n\n<p>If
96
+ the above describes you and your passions, we&#39;d love to hear from you!</p>\n","how_to_apply":"<p>To
97
+ apply: <a href=\"http://hire.jobvite.com/j/?aj=o4VsYfw9&amp;s=Github\">http://hire.jobvite.com/j/?aj=o4VsYfw9&amp;s=Github</a></p>\n","company":"Meetup","company_url":"http://www.meetup.com","company_logo":"http://github-jobs.s3.amazonaws.com/d729abd0-9a7b-11e3-96c6-60d274a6f59e.jpeg","url":"http://jobs.github.com/positions/db791964-9a7b-11e3-9e37-50aab2577f04"},{"id":"5b144d52-99ef-11e3-865b-9024c0f0fc6f","created_at":"Thu
98
+ Feb 20 05:25:52 UTC 2014","title":"Ruby Programmer / Developer at KVH Co.,
99
+ Ltd. ","location":"Tokyo-Japan","type":"Full Time","description":"<p><strong>\u3010Job
100
+ description\u3011</strong></p>\n\n<p><strong>KVH Co., Ltd is a medium sized
101
+ managed services and telecom company.</strong></p>\n\n<p><strong>We are looking
102
+ for motivated and curious programmers.</strong></p>\n\n<ul>\n<li>Successful
103
+ candidates will build REST and message bus services for asset management, billing, sales,
104
+ automated server and network infrastructure provisioning and configuration.</li>\n<li>You
105
+ will provide leadership, direction and mentor-ship to the team.</li>\n<li>You
106
+ will demonstrate strong design, coding and testing skills.</li>\n<li>You will
107
+ help refine coding and documentation standards.</li>\n<li>You will design
108
+ and build APIs for use by other KVH systems and customers.</li>\n<li>You will
109
+ gather and refine customer and business requirements.</li>\n<li>You will estimate
110
+ effort and plan development iteration deliveries.</li>\n<li>You will present
111
+ developed software to business owners and users.</li>\n</ul>\n\n<p><strong>\u203bWork
112
+ location of this position is Tokyo Office. Applicant must be eligible to work
113
+ in Japan.</strong></p>\n\n<p><strong>\u3010Job Requirements\u3011</strong></p>\n\n<ul>\n<li>Four-year
114
+ college degree in computer science or equivalent experience.</li>\n<li>Proficient
115
+ with Linux.</li>\n<li>Proficient with OSX, Solaris, FreeBSD, or OpenBSD.</li>\n<li>In-depth
116
+ knowledge of Ruby and debugging techniques.</li>\n<li>Knowledge of C/C++</li>\n<li>Solid
117
+ experience with message queueing and pub/sub systems.</li>\n<li>Well versed
118
+ good coding practices and fundamental computer science principles.</li>\n<li>Solid
119
+ experience with VIM, Emacs, Textmate, or similar.</li>\n<li>Solid experience
120
+ with GIT, or SVN.</li>\n<li>Well versed in TCP/IP</li>\n<li>Well experienced
121
+ in writing libraries and APIs.</li>\n<li>Leadership and mentorship of other
122
+ developers.</li>\n<li> Enthusiastic about application performance and reliability</li>\n<li>
123
+ Self-motivated, and requires minimal direction</li>\n<li> Excellent analysis
124
+ and project-planning skills</li>\n<li>Can plan projects and estimate their
125
+ effort/completion.</li>\n<li>Can adapt to changing conditions.</li>\n</ul>\n\n<p><strong>\u25a0Experience
126
+ with any of the following is a plus:</strong></p>\n\n<ul>\n<li>Algorithm design
127
+ and implementation</li>\n<li>Load balancing technologies, systems and implementation</li>\n<li>Network
128
+ infrastructure</li>\n<li>RSpec</li>\n<li>Jenkins CI</li>\n<li>TeamCity CI</li>\n<li>Ruby
129
+ on Rails</li>\n<li>Sinatra</li>\n<li>MySQL, PostgreSQL, and Redis</li>\n<li>REST
130
+ API design</li>\n<li>RabbitMQ, or NATS</li>\n<li>Chef</li>\n<li>Erlang, or
131
+ Java</li>\n<li>Linux system administration</li>\n<li>XenServer, VMware ESX,
132
+ KVM, and Hyper-V</li>\n<li>Arista EOS, Cisco CatOS</li>\n</ul>\n\n<p><em>\u25a0Japanese
133
+ Language ability is also a PLUS, but not mandatory.</em></p>\n","how_to_apply":"<p>\u3054\u5fdc\u52df\u306e\u969b\u306b\u306f\u3001\u8077\u52d9\u7d4c\u6b74\u66f8\u3092**\u63a1\u7528\u62c5\u5f53
134
+ \u5800\u5b9b**\u306b\u3010<a href=\"mailto:yukimi.hori@kvhasia.com\">yukimi.hori@kvhasia.com</a>\u3011
135
+ \u307e\u3067\u304a\u9001\u308a\u304f\u3060\u3055\u3044\u3002 \u304a\u9001\u308a\u9802\u304f\u5c65\u6b74\u66f8\u306e\u30d5\u30a1\u30a4\u30eb\u5f62\u5f0f\u306f\u3001PDF\u3092\u63a8\u5968\u3044\u305f\u3057\u307e\u3059\u3002
136
+ \u66f8\u985e\u9078\u8003\u306e\u7d50\u679c\u306b\u3064\u3044\u3066\u306f\u3001\u63a1\u7528\u62c5\u5f53\u30c1\u30fc\u30e0\u304b\u3089\u3054\u9023\u7d61\u3044\u305f\u3057\u307e\u3059\u3002</p>\n\n<p>\u3010\u91cd\u8981\u3011\u3000\u5fdc\u52df\u30e1\u30fc\u30eb\u306e\u4ef6\u540d\u306b\u306f\u5fc5\u305a
137
+ \u300c\u52df\u96c6\u8077\u7a2e\u540d\u300d\u3092\u8a18\u8f09\u304f\u3060\u3055\u3044\u3002</p>\n\n<p>Please
138
+ send your resume to \u3010<a href=\"mailto:yukimi.hori@kvhasia.com\">yukimi.hori@kvhasia.com</a>\u3011
139
+ for attention to Recruiting Team. Yukimi HORI (Ms.) (PDF version preferred.)
140
+ Your qualifications and experience will be reviewed by one of our recruiters
141
+ to determine if you are a fit. If you are a possible match for the position,
142
+ a recruiter will contact you.</p>\n\n<p>\u3010Important\u3011Please include
143
+ your applying &quot;position name&quot; in the subject field of your email.</p>\n","company":"KVH
144
+ Co., Ltd.","company_url":"http://www.kvhasia.com/","company_logo":"http://github-jobs.s3.amazonaws.com/7821408e-99f0-11e3-8ac4-86bcee74cab9.png","url":"http://jobs.github.com/positions/5b144d52-99ef-11e3-865b-9024c0f0fc6f"},{"id":"110168da-b8f9-11e2-9a12-dd003f8b40cd","created_at":"Thu
145
+ Feb 20 00:01:45 UTC 2014","title":"WordPress.com VIP Engineer (aka VIP Wrangler)","location":"Remote","type":"Full
146
+ Time","description":"<p>Through our WordPress.com VIP program, we provide
147
+ support, hosting, training, and other services to some of the biggest and
148
+ best WordPress sites on the web (NY Times, CNN, NFL, MLB, and more). Our engineers
149
+ (affectionately called VIP Wranglers) are responsible for providing support
150
+ to all of our customers, building and shaping our products, and just generally
151
+ Making Stuff Go.</p>\n\n<p><strong>Skills &amp; Requirements</strong></p>\n\n<ul>\n<li>Advanced
152
+ proficiency with WordPress. Low-level language or systems experience a plus,
153
+ but not required.</li>\n<li>A strong understanding of the Web including HTTP,
154
+ HTML, CSS, and JavaScript.</li>\n<li>Must be comfortable working primarily
155
+ in a customer-facing role, including providing support and training.</li>\n<li>You
156
+ enjoy collaborating with other developers, reviewing code, and making recommendations
157
+ on technique or approach.</li>\n<li>Great troubleshooting skills. Must be
158
+ able to take big problems and break them down into manageable pieces with
159
+ elegant solutions\u2014and importantly, keep our customers apprised of progress
160
+ throughout.</li>\n<li>The ability to iterate and ship ideas quickly, with
161
+ loose (at best) direction.</li>\n</ul>\n\n<p><strong>All Jobs at Automattic
162
+ Require:</strong></p>\n\n<ul>\n<li>Great communication skills. We\u2019re
163
+ a distributed team, so frequent and clear written communication is a must.</li>\n<li>Self-driven
164
+ work ethic. You need to be a self-starter who loves taking initiative and
165
+ seeing things through to completion.</li>\n<li>Curiosity and the desire to
166
+ learn.Our business is changing and growing fast, who knows what will be the
167
+ skills of tomorrow? Flexibility is key.</li>\n</ul>\n\n<p><strong>About Automattic
168
+ / WordPress.com VIP</strong></p>\n\n<p>Automattic is the company behind WordPress.com,
169
+ WordPress.com VIP, Akismet, Intense Debate, Gravatar, Polldaddy, Simplenote,
170
+ and more. We&#39;re focused on making the web a better place.</p>\n\n<p>We&#39;re
171
+ also a 100% distributed company: everyone works from their own home or office,
172
+ and we\u2019re spread out all over the world \u2014 California, Texas, New
173
+ York, Canada, Ireland, Japan, Iceland, Bulgaria, Australia, and more. We track
174
+ about 70% of our projects on P2-themed WordPress.com blogs, 25% on private
175
+ IRC channels, and the rest on Skype\u2014no email! Because of the geographic
176
+ variance, we\u2019re active pretty much 24/7. We care about the work you produce,
177
+ not just the hours you put in.</p>\n\n<p>You can learn more about how we work,
178
+ benefits, our development process, and more at <a href=\"http://automattic.com/work-with-us\">http://automattic.com/work-with-us</a></p>\n","how_to_apply":"<p>If
179
+ you feel you might be the best person in the world for this job please send
180
+ a short email to: </p>\n\n<p><a href=\"mailto:jobs@automattic.com\">jobs@automattic.com</a></p>\n\n<p>Make
181
+ sure to tell us about yourself and attach a resum\u00e9. Include the title
182
+ of the position you\u2019re applying for and your name in the subject. Proofread!
183
+ Make sure you spell and capitalize WordPress and Automattic correctly. We
184
+ are lucky to receive hundreds of applications for every position, so try to
185
+ make your application stand out. Most hear a reply within two weeks. If you
186
+ apply for multiple positions or send multiple emails there will be one reply.</p>\n","company":"Automattic
187
+ / WordPress.com VIP","company_url":"http://automattic.com","company_logo":"http://github-jobs.s3.amazonaws.com/053c70b2-b8f9-11e2-959b-48d9ac15ead8.png","url":"http://jobs.github.com/positions/110168da-b8f9-11e2-9a12-dd003f8b40cd"},{"id":"f1d58942-99c0-11e3-8e1e-38c8b22d8ce9","created_at":"Wed
188
+ Feb 19 23:53:36 UTC 2014","title":"VP of Engineering","location":"New York","type":"Full
189
+ Time","description":"<p>We are looking for a motivated engineer who will lead
190
+ our iOS development, expand our product to other mobile platforms and build
191
+ out a team. While technical capabilities are a must, the role also requires
192
+ problem-solving skills, an understanding of how our product will drive user
193
+ acquisition and engagement, and a keen sense for design.</p>\n\n<p>We are
194
+ developing a market leading iOS mobile app for the efficient booking and scheduling
195
+ of in-home beauty services. We have completed our MVP and now need a engineer
196
+ who can take us to the next level through agile development which responds
197
+ to customer needs and continues to expand capabilities as our business grows
198
+ and scales.</p>\n\n<p>GLAMSQUAD (<a href=\"http://www.glamsquad.com\">www.glamsquad.com</a>)
199
+ is a New York-based in-home beauty service providing hair styling, make-up
200
+ and other beauty services. GLAMSQUAD will incorporate real-time booking via
201
+ an iOS app with services provided by a team of highly vetted and trained professionals
202
+ operating under the GLAMSQUAD brand.</p>\n\n<p>Responsibilities</p>\n\n<ul>\n<li>Respect
203
+ your teammates, communicate in a productive manner, just be a great person
204
+ to work with and for (in the case of people you manage). Your references will
205
+ be able to confirm your great attitude.</li>\n<li>Lead engineering effort
206
+ including mobile and web</li>\n<li>Scale engineering team as needed</li>\n<li>Work
207
+ with CEO/COO to define and prioritize features </li>\n<li>Bring your advanced
208
+ programming skills and creative ideas everyday to develop our new and disruptive
209
+ consumer mobile application. </li>\n<li>Lead the development initiatives with
210
+ creative solutions to problems and challenges. </li>\n<li>Deliver reliable
211
+ revisions in a fluid environment that demands ongoing iteration and product
212
+ pushes. </li>\n<li>Thoroughly understand product development and help shape
213
+ product direction and features. </li>\n<li>Integrating 3rd party tools, libraries,
214
+ webs services, and API\u2019s. </li>\n</ul>\n\n<p>We use an agile development
215
+ methodology to quickly get products live and refine based on user and customer
216
+ feedback.</p>\n\n<p>Experience</p>\n\n<ul>\n<li>iOS development in lead role
217
+ </li>\n<li>Published one or more iOS or Android apps currently in an app store
218
+ </li>\n<li>Analyzing and implementing strategies for performance optimization
219
+ </li>\n<li>Agile development </li>\n<li>Passion for social media </li>\n<li>Start-up
220
+ experience</li>\n<li>A passion for simplifying complex problems into usable
221
+ and intuitive interfaces</li>\n</ul>\n\n<p>Skills</p>\n\n<ul>\n<li>Strong
222
+ Objective-C experience.</li>\n<li>\u2018Classical\u2019 training in JAVA and/or
223
+ C languages is a plus. </li>\n<li>Strong experience with REST APIs, and although
224
+ not exciting and makes you sad, SOAP if applicable. Stuff like properly built
225
+ data services, location APIs, CDN caching services, all things SOA makes you
226
+ proud.</li>\n<li>Strong experience with memory management and optimization.</li>\n<li>Git
227
+ with Github</li>\n<li>If you fancy yourself a strong backend engineer, CI
228
+ and server automation experience is a real plus. At a minimum, you aspire
229
+ to be like, and look up to engineers who deploy backend code with proper automated
230
+ tests and \u2018adult\u2019 levels of performance monitoring (e.g. Stats-D,
231
+ Nagios, Graphite). If you consider Pingdom alerts performance monitoring,
232
+ it probably won\u2019t be a good fit. That being said, maybe you\u2019re just
233
+ a super iOS / Android boss, and we can work with that too.</li>\n<li>Familiarity
234
+ with HTML5, JavaScript &amp; have an interest in hybrid mobile apps </li>\n<li>Strong
235
+ knowledge of iOS and Android testing frameworks. </li>\n<li>Strong verbal
236
+ and written communication skills</li>\n</ul>\n","how_to_apply":"<p>Email to
237
+ <a href=\"mailto:dave@glamsquad.com\">dave@glamsquad.com</a></p>\n","company":"GLAMSQUAD","company_url":"http://www.glamsquad.com","company_logo":"http://github-jobs.s3.amazonaws.com/eb0008a4-99c0-11e3-941d-02baa23b9ec5.png","url":"http://jobs.github.com/positions/f1d58942-99c0-11e3-8e1e-38c8b22d8ce9"},{"id":"9040c256-901f-11e2-9214-0c19ea599ab8","created_at":"Wed
238
+ Feb 19 22:18:39 UTC 2014","title":"Enterprise Support Engineer","location":"Remote","type":"Full
239
+ Time","description":"<p>GitHub is looking for full-time support engineers
240
+ to help with our on-premise <a href=\"http://enterprise.github.com/\"><strong>GitHub
241
+ Enterprise</strong></a> product. You don\u2019t need to be a git expert, but
242
+ you do need to have technical experience. Some of the things we&#39;re looking
243
+ for are:</p>\n\n<ul>\n<li>experience working with and troubleshooting linux
244
+ servers</li>\n<li>ability to communicate technical information clearly</li>\n<li>ability
245
+ to speak and write fluently in English</li>\n<li>ability to look through and
246
+ understand code (Ruby / Bash)</li>\n<li>familiarity with some flavor of production
247
+ level virtual machine (e.g., VMware ESX, Xen, KVM)</li>\n<li>experience with
248
+ server automation systems like Chef or Puppet</li>\n</ul>\n\n<p>You\u2019ll
249
+ be answering support tickets, working with our development team to prioritize
250
+ issues, and improving our guides and documentation.</p>\n\n<p>We&#39;re looking
251
+ for candidates in <strong>The Americas</strong> and <strong>Asia-Pacific</strong>.</p>\n\n<h2>The
252
+ Company</h2>\n\n<p>We\u2019re profitable and growing with a <a href=\"https://github.com/blog/920-how-github-works\">unique
253
+ perspective</a> on how to run a company.</p>\n\n<p>We provide everything to
254
+ keep you healthy: health, vision, dental + HSA contributions. It\u2019s a
255
+ safe, open work environment.</p>\n","how_to_apply":"<p>Interested? Get in
256
+ touch with resumes+enterprise+support@github.com. Be sure to include the job
257
+ title in the subject line. We love hearing about past projects and what interests
258
+ you. Please make sure you provide a link to your GitHub profile!</p>\n","company":"GitHub","company_url":"https://github.com/about/jobs","company_logo":"http://github-jobs.s3.amazonaws.com/2cef41ca-b5c0-11e2-861e-74dcf72e402b.png","url":"http://jobs.github.com/positions/9040c256-901f-11e2-9214-0c19ea599ab8"},{"id":"88352cb2-99a3-11e3-8071-c353b7b54396","created_at":"Wed
259
+ Feb 19 20:22:38 UTC 2014","title":"Senior Mobile Game Developer","location":"LA,
260
+ NYC, or Telecommute","type":"Full Time","description":"<p>We are a small,
261
+ fast growing mobile game company. Both of our games -- Disco Bees and Say
262
+ the Same Thing -- have been featured by Apple editors and one was a \u201cBest
263
+ Games of 2013\u201d selection. Our user base is expanding quickly.</p>\n\n<p>Two
264
+ of our founding partners are developers and they both have diverse backgrounds
265
+ in music, architecture, and math. By combining a range of skills, we keep
266
+ our team tight and sharp.</p>\n\n<p>We are looking for another developer that
267
+ is curious, broadly talented, and extremely smart. We want someone who can
268
+ take responsibility for complex projects and complete them brilliantly. We
269
+ want someone with good taste and good decision making ability about products. We
270
+ want someone that we trust to take on major efforts in the company.</p>\n\n<p>Our
271
+ team is small, super talented, and very focused. We are funny. We move fast
272
+ and we want to work with people who can think both broadly and specifically,
273
+ who are very motivated, understand our vision, and will work hard to achieve
274
+ specific goals.</p>\n\n<p><strong>Why should you choose to work with us?</strong></p>\n\n<p>Here\u2019s
275
+ a few reasons:</p>\n\n<ul>\n<li><p>We aren\u2019t a big corporation, we don\u2019t
276
+ act like one, and it\u2019s just a more satisfying way to live. It\u2019s
277
+ also extremely effective. We are able to compete directly with companies
278
+ that are literally 15 times our size.</p></li>\n<li><p>We work remotely. Maybe
279
+ you don\u2019t live in NYC or SF or LA but you want to be on a world-class
280
+ team. You can do that with us. We have founders in NYC, LA, Providence RI,
281
+ and somewhere in Alabama. If you live in one of those places, that\u2019s
282
+ even better, we can hang out.</p></li>\n<li><p>We think we\u2019re pretty
283
+ fun to work with. And we want to make sure your work life is as satisfying
284
+ as possible.</p></li>\n<li><p>We care about good design and great products. You\u2019ll
285
+ have a chance to work with world-class designers and great product minds. </p></li>\n</ul>\n\n<p>And
286
+ now to the tech skills:</p>\n\n<ul>\n<li><p>We just need a great programmer. If
287
+ you know you are one of the best around, we want to talk. It\u2019s pretty
288
+ much as simple as that.</p></li>\n<li><p>Our games are primarily built in
289
+ cocos2dx (C++). If you have experience there, that\u2019s great. If you
290
+ don\u2019t but you are a great developer, that could be fine-- we just learned
291
+ cocos2dx recently ourselves.</p></li>\n<li><p>We of course work with lots
292
+ of other technologies and related services: Ruby on Rails, postgresql, Objective-C,
293
+ Java/JNI/Android, APNS/GCM, Facebook API/SDK, Game Center, SpriteKit, and
294
+ more. </p></li>\n<li><p>There\u2019s a big server-side component to our
295
+ games. If you have great Rails and/or postgres experience or other relevant
296
+ web app experience, let us know.</p></li>\n</ul>\n\n<p>Does this sound like
297
+ you? Please get in touch and let\u2019s talk.</p>\n","how_to_apply":"<p>Email
298
+ us at <a href=\"mailto:jobs@spaceinch.com\">jobs@spaceinch.com</a></p>\n","company":"SpaceInch","company_url":null,"company_logo":"http://github-jobs.s3.amazonaws.com/e1e23040-999c-11e3-871f-52a6575c4d78.png","url":"http://jobs.github.com/positions/88352cb2-99a3-11e3-8071-c353b7b54396"},{"id":"6cb12d4e-995b-11e3-8ca3-f2cd50fb3a22","created_at":"Wed
299
+ Feb 19 12:40:51 UTC 2014","title":"Lead backend developer","location":"Berlin","type":"Full
300
+ Time","description":"<p>Clue is a 10-person startup based in Berlin. Our product
301
+ is a fertility tracking app for women and our vision is to bring a data-driven
302
+ approach to reproductive health. Read about us in <a href=\"http://gigaom.com/2014/02/13/fertility-tracking-app-clue-gets-funding-and-new-advisors/\">GigaOm</a>
303
+ or <a href=\"http://bits.blogs.nytimes.com/2014/01/23/our-bodies-our-apps-for-the-love-of-period-trackers/\">The
304
+ New York Times</a>.</p>\n\n<p>We&#39;re searching for a backend engineer to
305
+ take a leadership role in building the API / web backend for our iOS and Android
306
+ apps. If you love the early days of startups, when everyone is a generalist
307
+ and every day is about getting things done, you&#39;ll love it here at Clue.</p>\n\n<p>Some
308
+ things you&#39;ll be doing:</p>\n\n<ul>\n<li>Design, build, and operate a
309
+ web backend for the Clue mobile apps.</li>\n<li>Make technical decisions about
310
+ technology stack (e.g. Ruby+Postgres, Go+Redis, etc).</li>\n<li>Work closely
311
+ with iOS and Android client developers.</li>\n<li>Collaborate with the team
312
+ on questions like mobile syncing architecture.</li>\n<li>Design and document
313
+ a clean API.</li>\n<li>Design and manage the database schema.</li>\n<li>Select
314
+ and manage vendors for backend infrastructure (e.g. AWS, Heroku, Pingdom,
315
+ PagerDuty).</li>\n<li>Be a technical leader to inspire and guide other engineers
316
+ on the team, including helping with future hiring.</li>\n</ul>\n\n<p>And as
317
+ a bonus, you&#39;ll get to work with me, Heroku cofounder <a href=\"http://about.adamwiggins.com/\">Adam
318
+ Wiggins</a>, during your onboarding process.</p>\n\n<p>Make no mistake, we
319
+ are in a world of pink body parts, but that does not make us love pink and
320
+ pastels. We are modern, sexy, confident and scientific.</p>\n\n<p>You must
321
+ live in, or be willing to relocate to, Berlin. We have an international team
322
+ and can help you with the visa process if necessary.</p>\n","how_to_apply":"<p>Email
323
+ us with a short note about yourself, why you&#39;re interested in Clue, and
324
+ a link to your Github, LinkedIn, Twitter, and/or technical blog: <a href=\"mailto:join@helloclue.com\">join@helloclue.com</a></p>\n","company":"Clue","company_url":"http://www.helloclue.com/","company_logo":"http://github-jobs.s3.amazonaws.com/637dd132-995b-11e3-912f-0855829bd727.png","url":"http://jobs.github.com/positions/6cb12d4e-995b-11e3-8ca3-f2cd50fb3a22"},{"id":"da3c62fa-98e5-11e3-95da-2db3c51b7aea","created_at":"Tue
325
+ Feb 18 22:22:35 UTC 2014","title":" Full Stack Developer @ Mailgun","location":"San
326
+ Francisco","type":"Full Time","description":"<p><a href=\"http://www.mailgun.com\">Mailgun</a>
327
+ is The Email Service for Developers. We make it easy for developers to implement
328
+ email into their software. We&#39;re ex-YC and were acquired by Rackspace
329
+ in 2012 but remain an independent product within the larger Rackspace organization.
330
+ This enables us to move fast in a startup-like atmosphere but we have access
331
+ to juicy hardware, large marketing muscle and world class data centers.</p>\n\n<p>We
332
+ are looking for a full-stack developer to help build the future of Mailgun.
333
+ You&#39;ll be responsible for the entire Control Panel, development activities
334
+ including Javascript front-end and Python back-end.</p>\n\n<h2>We offer</h2>\n\n<ul>\n<li>A
335
+ small, efficient <a href=\"http://www.mailgun.com/team\">team</a> (Mailgun)
336
+ with the backing and security of a public company (Rackspace).</li>\n<li>A
337
+ team and company that is committed to agile development, service oriented
338
+ architecture and open source software.</li>\n<li>Competitive salary and benefits.</li>\n<li>Relocation
339
+ to San Francisco, CA.</li>\n</ul>\n\n<h2>Responsibilities include (+ are nice
340
+ to have)</h2>\n\n<ul>\n<li>Designing and implementing features for our control
341
+ panel and APIs.</li>\n<li>Collaborating with backend engineers and designers
342
+ in the feature design and implementation process.</li>\n<li>Researching and
343
+ recommending new technologies to implement.</li>\n<li>Implementing tests to
344
+ help ensure reliability.</li>\n<li>Writing technical documentation (+).</li>\n<li>Attending
345
+ and speaking at developer focused conferences and meetup events (+).</li>\n</ul>\n\n<h2>We
346
+ are looking for someone that</h2>\n\n<ul>\n<li>Enjoys participating in product
347
+ planning and design.</li>\n<li>Wants to have an enormous impact on a product
348
+ developers love.</li>\n<li>Prefers getting things done over attending meetings
349
+ to talk about getting things done.</li>\n<li>Doesn&#39;t mind pitching in
350
+ to help out even if it&#39;s outside of his/her job description.</li>\n<li>Has
351
+ experience developing and deploying software using agile methodologies.</li>\n<li>Has
352
+ experience with Python, Flask, Javascript, HTML/CSS/SASS.</li>\n<li>Is familiar
353
+ with HTTP, REST and SMTP.</li>\n</ul>\n\n<p>To apply just shoot us an email:
354
+ <a href=\"mailto:hack@mailgun.net\"><a href=\"mailto:hack@mailgun.net\">hack@mailgun.net</a></a></p>\n","how_to_apply":"<p>Shoot
355
+ us an email with your resume or a link to your stuff: <a href=\"mailto:hack@mailgun.net\">hack@mailgun.net</a></p>\n","company":"Mailgun","company_url":"http://www.mailgun.com","company_logo":"http://github-jobs.s3.amazonaws.com/cc4c317a-98e5-11e3-9449-1f6cd4eb23cf.png","url":"http://jobs.github.com/positions/da3c62fa-98e5-11e3-95da-2db3c51b7aea"},{"id":"40ad290a-7d5e-11e3-92d0-b23a42409909","created_at":"Tue
356
+ Feb 18 20:09:30 UTC 2014","title":"Software Engineer (Python)","location":"Chicago","type":"Full
357
+ Time","description":"<h2>Job Description</h2>\n\n<p>ParkWhiz is looking for
358
+ experienced software engineers to help us build the parking platform of the
359
+ future.</p>\n\n<p>You&#39;ll get some challenging problems to work on - complex
360
+ pricing models, GIS/geospatial data, transaction processing, mobile apps -
361
+ and flexibility to choose the best tools for the job. \u00a0We have loads
362
+ of exciting projects in the pipeline, and are looking for somebody to help
363
+ architect and implement these new initiatives.</p>\n\n<h2>Skills &amp; Requirements</h2>\n\n<h3>Technology</h3>\n\n<ul>\n<li>You
364
+ are fluent in one or more backend scripting languages (Python, Perl, Ruby,
365
+ etc), and stay up-to-date on best practices and community-recommended libraries
366
+ and toolchains</li>\n<li>You have experience with Django and other web frameworks,
367
+ and the know-how to get the most out of them</li>\n<li>You have experience
368
+ finding your way through legacy systems</li>\n<li>You easily model any real-world
369
+ concept with appropriate data structures</li>\n<li>You try to future-proof
370
+ everything you create by minimizing built-in assumptions</li>\n<li>You write
371
+ DRY code</li>\n<li>You can confidently work with HTML, CSS, and Javascript
372
+ (though you aren&#39;t necessarily a designer)</li>\n<li>You advocate the
373
+ use of MVC, templating, ORMs, and other techniques to save time and headaches</li>\n<li>You
374
+ know when to apply duct tape, and when to rebuild</li>\n<li>You know when
375
+ a unit test will save you and when it&#39;s a waste of time</li>\n</ul>\n\n<h3>Personality</h3>\n\n<ul>\n<li>You
376
+ want to work in a small, agile team</li>\n<li>You mentor other developers
377
+ when needed</li>\n<li>You work hard and don\u2019t need much oversight</li>\n<li>You
378
+ like variety in your projects</li>\n<li>You deploy bulletproof code with time
379
+ to spare</li>\n<li>You want to be proud of what you do at your job</li>\n</ul>\n\n<h2>About
380
+ ParkWhiz</h2>\n\n<p>Founded in 2006, Chicago based ParkWhiz.com pioneered
381
+ the eParking marketplace and has since become the industry standard and market
382
+ share leading platform for event and downtown parking reservations across
383
+ the country. ParkWhiz has extraordinarily strong revenue growth and ongoing
384
+ product innovations that continue to change the way people think about parking.</p>\n\n<p>ParkWhiz.com
385
+ attracts highly-competitive over-achievers who thrive in a dynamic environment.
386
+ Employees enjoy the rewards and challenges associated with a constantly evolving
387
+ market leading technology company. If you embrace challenge, work well in
388
+ a team setting, and are driven to grow and excel in your career, we&#39;d
389
+ like to hear from you.</p>\n","how_to_apply":"<p>Email <a href=\"mailto:jobs@parkwhiz.com\">jobs@parkwhiz.com</a>
390
+ with subject &quot;Software Engineer (jobs.github.com)&quot;</p>\n","company":"ParkWhiz","company_url":"http://www.parkwhiz.com","company_logo":"http://github-jobs.s3.amazonaws.com/ab94f000-7d5d-11e3-9bd6-0a68398cb0f0.png","url":"http://jobs.github.com/positions/40ad290a-7d5e-11e3-92d0-b23a42409909"},{"id":"025923f4-7fb9-11e3-8b9a-ef2251c686ed","created_at":"Tue
391
+ Feb 18 19:38:59 UTC 2014","title":"Senior Ruby Application Developer","location":"Solana
392
+ Beach or Burbank California","type":"Full Time","description":"<p>Deluxe Digital
393
+ Distribution (D3) provides white-label turnkey managed services to fulfill
394
+ video-on-demand services to their subscriber base. D3 technology is used
395
+ to prepare, manage, secure, and distribute digital content to broadband connected
396
+ entertainment devices such as Blu-Ray players, TV, PC, mobile handsets and
397
+ tablets.</p>\n\n<p>This is a fantastic opportunity to join a company in the
398
+ hottest industry space that offers an exciting, challenging and dynamic work
399
+ environment with tremendous career growth potential. We focus on innovation,
400
+ creativity, and cutting edge technology.</p>\n\n<p>We are seeking a Senior
401
+ Ruby Application Developer with 5+ years of enterprise software development
402
+ experience using Ruby and Ruby on Rails for our Solana Beach, CA or Burbank,
403
+ CA facility.</p>\n\n<p>Primary Responsibilities</p>\n\n<ul>\n<li> Quickly
404
+ learn and build upon existing products and technologies</li>\n<li> Use analytic
405
+ skills to deal with requirements and/or issues that may be loosely defined
406
+ and the ability to further manipulate and expand on them.</li>\n<li> Design
407
+ and implement new application functionality, including ground-up product development</li>\n<li> Work
408
+ with technical lead to design and implement solutions </li>\n<li> Develop
409
+ and implement testing strategies</li>\n<li> Create low-level implementation
410
+ specifications and documentation</li>\n<li> Create estimates of development
411
+ tasks</li>\n</ul>\n\n<p>Required Experience</p>\n\n<ul>\n<li> 5+ years experience
412
+ doing web-based software development using MVC frameworks</li>\n<li> 3+ years
413
+ experience doing web application development using Ruby on Rails Framework</li>\n<li> Experience
414
+ using the following web-based technologies: HTML, CSS, JavaScript, AJAX, XML</li>\n<li> 2+
415
+ Experience with client-side front-end frameworks and libraries such as jQuery,
416
+ Bootstrap, or Prototype</li>\n<li> 3+ years experience implementing OO solutions
417
+ and a sound understanding of OO principles</li>\n<li> Experiencing integrating
418
+ with back end services.</li>\n<li> Excellent interpersonal and written communication
419
+ skills</li>\n<li> BS/MS in Computer Science or equivalent</li>\n</ul>\n\n<p>Desired
420
+ Experience</p>\n\n<ul>\n<li> An understanding of Agile software development
421
+ principals such as Scrum, Continuous Integration, and test-driven development
422
+ </li>\n<li> Familiarity with cloud-based technologies like GitHub and Heroku</li>\n<li> Familiarity
423
+ with DRM technology such as Widevine or PlayReady</li>\n<li> Experience in
424
+ the media or entertainment industry\nWe offer competitive pay and benefits
425
+ program, including: medical, dental &amp; vision coverage, vacation &amp;
426
+ sick leave, 401(k), company health screenings and more. </li>\n</ul>\n\n<p>To
427
+ view other open positions and for more information on our company, please
428
+ visit our website at <a href=\"http://www.bydeluxe.com\">http://www.bydeluxe.com</a></p>\n\n<p>Deluxe
429
+ is an Equal Opportunity Employer.</p>\n","how_to_apply":"<p>Email resumes
430
+ to Dusty Sorenson - <a href=\"mailto:dusty.sorenson@bydeluxe.com\">dusty.sorenson@bydeluxe.com</a></p>\n","company":"Deluxe
431
+ Digital Distribution (D)","company_url":"http://www.bydeluxe.com","company_logo":"http://github-jobs.s3.amazonaws.com/fdbaba74-7fb8-11e3-8d0a-93eb4044420a.png","url":"http://jobs.github.com/positions/025923f4-7fb9-11e3-8b9a-ef2251c686ed"},{"id":"20673956-98d4-11e3-8370-7c07f056ba35","created_at":"Tue
432
+ Feb 18 19:37:40 UTC 2014","title":"Test Engineer","location":"New York, NY,
433
+ US","type":"Full Time","description":"<p><a href=''http://www.jobscore.com/jobs/crowdsurge/list''><img
434
+ src=''http://jobscore-assets.s3.amazonaws.com/account_logos/b6nUdURZGr4A87eJe4bk1X.png''
435
+ /></a><br /><p><strong>ABOUT US:</strong></p><p>Our company was established
436
+ in January 2008 to provide white-label e-commerce software, hardware and marketing
437
+ solutions to artists, bands, promoters and venues, enabling them to sell tickets
438
+ directly to consumers.</p><p>With offices strategically positioned in London,
439
+ Los Angeles, Nashville and New York,\u00a0CrowdSurge has a growing track record
440
+ of successful initiatives \u2013 for major artists, renowned brands and beyond
441
+ \u2013 aimed at closing the gap between rights-holders and their customers.</p><p>Over
442
+ the last five years, CrowdSurge has grown into a market leader in the direct-to-consumer
443
+ space, powering worldwide programs for artists such Alicia Keys, Arcade Fire,
444
+ Jack White, Macklemore &amp; Ryan Lewis, Paul McCartney, The xx and hundreds
445
+ more, while maintaining a strong presence in the business-to-business space,
446
+ facilitating e-commerce for companies such as BBC Worldwide, Converse and
447
+ Sony Music Entertainment.</p><p><strong>RESPONSIBILITIES:</strong></p><p>Develop
448
+ and implement an automation test framework, libraries and test scripts for
449
+ a number of products in the CrowdSurge ticketing platform. Ensure that the
450
+ automation framework and test scripts are maintainable and usable by QA, and
451
+ other teams. Improve the test cycle and product quality. This role requires
452
+ someone who is fun loving, dynamic, good sense of humor and creativity who
453
+ always keeps quality in mind.</p><ul><li>Play a major role to help establish
454
+ automation in the QA team for projects where automation is viable. You will
455
+ also help in the selection of the automation tools that will be used on the
456
+ projects</li> <li>Ensure the documentation and communication of the test
457
+ automation design and scripts</li> <li>Identify and analyze business requirements
458
+ and user stories (implicit and explicit), failure modes, and quality factors</li> <li>Participate
459
+ in the development of test effort estimates</li> <li>Design and implement
460
+ test strategies/plans</li> <li>Design and implement test procedures, test
461
+ scripts, test cases in collaboration with other team members</li> <li>Test
462
+ requirements (implicit and explicit), failure modes, quality factors and specifications,
463
+ provide bug isolation and work closely with the development team to help identify
464
+ root cause of and resolution of software defects</li> <li>Represent the
465
+ QA team in software automation design</li> <li>Assist in the reproduction
466
+ and follow-up of issues reported from customers and\u00a0end-users</li> <li>Track
467
+ progress of the testing project, work done, work to go, testing completed,
468
+ testing to go</li> <li>Ensure the documentation and communication of test
469
+ results and issues (bugs/improvement) through an issue tracking system</li> <li>Install
470
+ and configure the test environments as required by the various QA assignments</li></ul><p><strong>You
471
+ are passionate about:</strong></p><ul><li>High throughput, high availability
472
+ distributed systems</li> <li>Designing multi-threaded systems</li> <li>Cloud
473
+ architectures and dynamic scaling</li> <li>Concurrency, transactions and
474
+ locking</li> <li>Music</li></ul><p><strong>Education, Experience &amp; Technical
475
+ Skills:</strong></p><ul><li>University degree in Software Engineering, Computer
476
+ Science or equivalent program/experience</li> <li>Minimum 3 years\u2019
477
+ experience in scripting. \u00a0(i.e. PHP preferred,\u00a0knowledge of Ruby,
478
+ perl, and Python is an asset)</li> <li>Minimum 3 years\u2019 experience
479
+ using test automation tools like QTP, Selenium, Load Runner, Apache JMeter,
480
+ or SOAtest</li> <li>Minimum 3 years\u2019 experience in Software Quality
481
+ Assurance working in testing software in a large scale software development
482
+ environment</li> <li>Knowledge of Test Harnesses</li> <li>Knowledge of
483
+ web service technologies (i.e. REST, SOAP), Linux and Web Application Testing</li>
484
+ <li>Good knowledge of Windows and Mac Platforms</li> <li>Knowledge of Object
485
+ Oriented architecture and development</li></ul><p><strong>COMPENSATION:</strong></p><ul><li>Competitive
486
+ salary</li> <li>Medical, dental and vision benefits</li> <li>Employer-matched
487
+ 401K</li> <li>Employee share scheme</li></ul><p><strong>APPLY:</strong></p><p>To
488
+ apply, please include:</p><ul><li>Your CV/Resume in PDF format</li> <li>A
489
+ link to your Github account or other open source contributions</li> <li>A
490
+ few code snippets that you think represent your coding style</li> <li>A one
491
+ or two paragraph description of your skills, passions and work style</li></ul><p>\u00a0</p><p><em>CrowdSurge
492
+ is committed to Equal Employment Opportunity and to attracting and retaining
493
+ the most qualified employees.</em></p> <img src=\"http://www.applytracking.com/track.aspx/4whWR\"/></p>\n","how_to_apply":"<p><a
494
+ href=\"http://www.applytracking.com/track.aspx/4whWb\">http://www.applytracking.com/track.aspx/4whWb</a></p>\n","company":"CrowdSurge","company_url":null,"company_logo":null,"url":"http://jobs.github.com/positions/20673956-98d4-11e3-8370-7c07f056ba35"},{"id":"ada932e8-98d3-11e3-99b8-ac1f16283d75","created_at":"Tue
495
+ Feb 18 19:34:27 UTC 2014","title":"Software Engineer","location":"New York,
496
+ NY, US","type":"Full Time","description":"<p><a href=''http://www.jobscore.com/jobs/crowdsurge/list''><img
497
+ src=''http://jobscore-assets.s3.amazonaws.com/account_logos/b6nUdURZGr4A87eJe4bk1X.png''
498
+ /></a><br /><p><strong>ABOUT US:</strong></p><p>Our company was established
499
+ in January 2008 to provide white-label e-commerce software, hardware and marketing
500
+ solutions to artists, bands, promoters and venues, enabling them to sell tickets
501
+ directly to consumers.</p><p>With offices strategically positioned in London,
502
+ Los Angeles, Nashville and New York, CrowdSurge has a growing track record
503
+ of successful initiatives \u2013 for major artists, renowned brands and beyond
504
+ \u2013 aimed at closing the gap between rights-holders and their customers.</p><p>Over
505
+ the last five years, CrowdSurge has grown into a market leader in the direct-to-consumer
506
+ space, powering worldwide programs for artists such Alicia Keys, Arcade Fire,
507
+ Jack White, Macklemore &amp; Ryan Lewis, Paul McCartney, The xx and hundreds
508
+ more, while maintaining a strong presence in the business-to-business space,
509
+ facilitating e-commerce for companies such as BBC Worldwide, Converse and
510
+ Sony Music Entertainment.</p><p><strong>EXPERTISE:</strong></p><p>You are
511
+ an expert in at least one of and competent in at least two of the following
512
+ languages:</p><ul><li>C / C++</li> <li>Erlang\u00a0</li> <li>Go</li> <li>Scala</li> <li>Ruby</li> <li>Python</li>
513
+ <li>Perl</li> <li>Haskel</li> <li>Java</li></ul><p>\u200bYou are an expert
514
+ in the following domains:</p><ul><li>Designing, developing, packaging and
515
+ deploying production and applications</li> <li>Working with distributed computing
516
+ technology</li> <li>Networking Protocols (understand the difference between
517
+ TCP and UDP)</li> <li>Unix system fundamentals (file system, sockets, pipes,
518
+ scheduler)</li> <li>SQL &amp; NoSQL Database design, modeling, tuning</li> <li>Queuing
519
+ and messaging</li> <li>Git</li></ul><p>You are passionate about:</p><ul><li>High
520
+ throughput, high availability distributed systems</li> <li>Designing multi-threaded
521
+ systems</li> <li>Cloud architectures and dynamic scaling</li> <li>Concurrency,
522
+ transactions and locking</li> <li>Music</li></ul><p><strong>COMPENSATION:</strong></p><ul><li>Competitive
523
+ salary</li> <li>Medical, dental and vision benefits</li> <li>Employer-matched
524
+ 401K</li> <li>Employee share scheme</li></ul><p><strong>APPLY:</strong></p><p>To
525
+ apply, please include:</p><ul><li>Your CV/Resume in PDF format (doc and docx
526
+ go directly /dev/null)</li> <li>A link to your Github account or other open
527
+ source contributions</li> <li>A few code snippets that you think represent
528
+ your coding style</li> <li>A one or two paragraph description of your skills,
529
+ passions and work style</li></ul><p>\u00a0</p><p><br><em>CrowdSurge is committed
530
+ to Equal Employment Opportunity and to attracting and retaining the most qualified
531
+ employees.</em></p> <img src=\"http://www.applytracking.com/track.aspx/4whQT\"/></p>\n","how_to_apply":"<p><a
532
+ href=\"http://www.applytracking.com/track.aspx/4whQn\">http://www.applytracking.com/track.aspx/4whQn</a></p>\n","company":"CrowdSurge","company_url":null,"company_logo":null,"url":"http://jobs.github.com/positions/ada932e8-98d3-11e3-99b8-ac1f16283d75"},{"id":"e6263e32-98d2-11e3-962e-514cf6989fb4","created_at":"Tue
533
+ Feb 18 19:28:52 UTC 2014","title":"Sr. DevOps Build/ Release Engineer","location":"San
534
+ Francisco, CA, US","type":"Full Time","description":"<p><a href=''http://www.jobscore.com/jobs/sugarinc/list''><img
535
+ src=''http://jobscore-assets.s3.amazonaws.com/account_logos/c9W058bxer4y2heJe4bk1X.png''
536
+ /></a><br /><p>\u00a0</p><p><a href=\"http://corp.popsugar.com/Sr-DevOps-Build-Release-Engineer-32409476\">Sr.
537
+ DevOps Build/ Release Engineer</a></p><p>POPSUGAR, the leader in online media
538
+ for women recently named to the &quot;<a href=\"http://www.wired.com/business/2012/10/best-san-francisco-tech-companies?pid=731#slideid-75357\">10
539
+ San Francisco Tech Companies You Wish You Worked For</a>&quot; by WIRED, is
540
+ seeking a Sr. DevOps Build/Release Engineer to work closely with development
541
+ and operations to execute and manage the build &amp; release functions, tools
542
+ &amp; architecture. The person in this role will be responsible for maintaining
543
+ and improving our release processes.\u00a0POPSUGAR develops high-performance
544
+ web properties with an audience of over 30 million monthly visitors. \u00a0If
545
+ you like working in a fast-paced, entrepreneurial environment with a dynamic
546
+ team of expert engineers using cutting-edge technology, then check us out!</p><p>Responsibilities:</p><ul><li>Identify
547
+ source code, tools, third party components, and data required for specific
548
+ software releases.</li> <li>Provide a stable framework for development, deployment,
549
+ and audit of releases.</li> <li>Design, implement and improve build automation,
550
+ testing and deployment processes.</li> <li>Implement continuous integration
551
+ processes.</li> <li>Investigate, develop and integrate new tools into build/release
552
+ process.</li> <li>Implement tools to capture metrics on build/release processes.</li>
553
+ <li>Stay up to date with relevant state-of-the-art technology, equipment,
554
+ and/or systems.</li> <li>Work with development, operations and product marketing
555
+ teams to improve processes.</li></ul><p>Qualifications:</p><ul><li>3-5 years
556
+ Build/Release experience in a production environment.</li> <li>Bash and Perl
557
+ scripting required. Other scripting experience is a plus.</li> <li>Experience
558
+ with build automation and continuous integration tools.</li> <li>Linux command
559
+ line fluency.</li> <li>Familiarity with various Web-stack technologies.
560
+ Java/Tomcat, PHP, MySQL are all positives.</li> <li>Solid understanding
561
+ of Git.</li> <li>Experience with Amazon Web Services or other cloud provider.</li> <li>Experience
562
+ documenting processes and procedures.</li></ul> <img src=\"http://www.applytracking.com/track.aspx/4whOX\"/></p>\n","how_to_apply":"<p><a
563
+ href=\"http://www.applytracking.com/track.aspx/4whOh\">http://www.applytracking.com/track.aspx/4whOh</a></p>\n","company":"POPSUGAR","company_url":null,"company_logo":null,"url":"http://jobs.github.com/positions/e6263e32-98d2-11e3-962e-514cf6989fb4"},{"id":"fc819034-98d0-11e3-968f-3120a4f7c530","created_at":"Tue
564
+ Feb 18 19:15:10 UTC 2014","title":"Sr. Java Backend Engineer","location":"San
565
+ Francisco, CA, US","type":"Full Time","description":"<p><a href=''http://www.jobscore.com/jobs/sugarinc/list''><img
566
+ src=''http://jobscore-assets.s3.amazonaws.com/account_logos/c9W058bxer4y2heJe4bk1X.png''
567
+ /></a><br /><div class=\"title\" style=\"font-family: Arial, ''Helvetica Neue'',
568
+ Helvetica, sans-serif; color: rgb(32, 31, 30); font-size: 16px; line-height:
569
+ 28px;\"><a href=\"http://corp.popsugar.com/Sr-Java-Backend-Engineer-28442597\"
570
+ style=\"color: rgb(32, 31, 30); text-decoration: none; font-size: 28px; line-height:
571
+ 32px;\" title=\"Sr. Java Backend Engineer\">Sr. Java Backend Engineer</a></div><p>POPSUGAR,
572
+ the leader in online media for women and recently named to the &quot;10 San
573
+ Francisco Tech Companies You Wish You Worked For&quot; by WIRED (<a href=\"http://www.wired.com/business/2012/10/best-san-francisco-tech-companies?pid=731\"
574
+ style=\"color: rgb(238, 0, 102);\"><a href=\"http://www.wired.com/business/2012/10/best-san-francisco-tech-companies\">http://www.wired.com/business/2012/10/best-san-francisco-tech-companies</a>?...</a>),
575
+ is looking for\u00a0to add a Senior Java Backend Engineer to our POPSUGAR
576
+ shopping team.</p><p>You are a skilled and driven engineer with background
577
+ in Java applications and serious server-side chops working on dynamic consumer
578
+ experiences.</p><p>Together we&#39;re building the next generation of social
579
+ shopping with the best quality content and user experience in the market.
580
+ We&#39;re looking for a leader to help us design, drive and build: interactive
581
+ search and real-time filtering; mobile shopping; great social and sharing
582
+ features; a killer API and widget program; international content; scaling,
583
+ performance, big data, and much more.</p><p>Responsibilities:</p><p>\u2022
584
+ Lead design and implementation of backend features to support rich, dynamic
585
+ web experiences and public APIs</p><p>\u2022\u00a0Solve medium to large data
586
+ collection/processing challenges</p><p>\u2022\u00a0Contribute to weekly feature
587
+ releases and code reviews</p><p>\u2022 Mentor junior staff</p><p>\u00a0</p><p>Requirements:</p><p>\u2022
588
+ BS or MS in Computer Science or equivalent</p><p>\u2022 Minimum 3 years core
589
+ Java programming experience</p><p>\u2022 Strong understanding of OOP design
590
+ principles (loose coupling, encapsulation, etc.)</p><p>\u2022 Strong knowledge
591
+ of backend paradigms (multithreading, caching, performance tuning)</p><p>\u2022
592
+ Experience with relational databases (schema design and advanced SQL queries)</p><p>\u2022
593
+ Passion for keeping up with new technologies and industry trends</p><p>\u00a0</p><p>Ideally
594
+ you have:</p><p>\u2022\u00a0Team-lead and/or mentoring experience</p><p>\u2022
595
+ Experience with MongoDB or other NoSQL solution</p><p>\u2022\u00a0Experience
596
+ with MySQL, Apache/tomcat, Hibernate</p><p>\u2022\u00a0Experience with maintaining
597
+ large, commercial web applications</p><p>\u2022\u00a0Experience with SOLR
598
+ and/or Lucene (or other search and indexing frameworks)</p> <img src=\"http://www.applytracking.com/track.aspx/4whDZ\"/></p>\n","how_to_apply":"<p><a
599
+ href=\"http://www.applytracking.com/track.aspx/4whDj\">http://www.applytracking.com/track.aspx/4whDj</a></p>\n","company":"POPSUGAR","company_url":null,"company_logo":null,"url":"http://jobs.github.com/positions/fc819034-98d0-11e3-968f-3120a4f7c530"},{"id":"c1b0e160-4bed-11e3-9834-fd4084b311ed","created_at":"Tue
600
+ Feb 18 17:58:21 UTC 2014","title":"Software Engineer | VisualEditor (Features)","location":"San
601
+ Francisco or Remote","type":"Full Time","description":"<p><strong>Summary</strong></p>\n\n<p>As
602
+ a core engineer on the Features Engineering team you will be deeply involved
603
+ in the VisualEditor project. As a part of a team you will be building a sophisticated,
604
+ elegant and responsive visual interface for editing content on Wikimedia websites.</p>\n\n<p><strong>Description</strong></p>\n\n<ul>\n<li> Develop
605
+ the core VisualEditor contentEditable editing surface, ensuring continued
606
+ and expanded broad compatibility across many browsers, languages, scripts
607
+ and IMEs</li>\n<li>Maintain and extend the testing framework for contentEditable
608
+ events</li>\n<li>Help develop other elements of VisualEditor as needed</li>\n<li>Participate
609
+ in and conduct design and code reviews</li>\n<li>Support testing efforts for
610
+ deployments of features</li>\n<li>Participate in engineering meetings to discuss
611
+ design, development and testing of features</li>\n</ul>\n\n<p><strong>Requirements</strong></p>\n\n<ul>\n<li>Experience
612
+ with contentEditable, IME and language support, and cross-browser testing</li>\n<li>Significant
613
+ development experience in JavaScript/AJAX/HTML5/CSS</li>\n<li>Professional
614
+ and experienced building highly complex web applications</li>\n<li>Strong
615
+ debugging, troubleshooting skills and production deployment</li>\n<li>Experience
616
+ with unit testing and cross-browser development</li>\n<li>Extensive experience
617
+ with building large-scale server applications</li>\n<li>Knowledge of developing
618
+ and debugging in Linux/Unix (LAMP) environments</li>\n<li>You must be comfortable
619
+ working in a highly collaborative, consensus-oriented environment</li>\n<li>B.S.
620
+ or M.S. Computer Science or equivalent experience</li>\n</ul>\n\n<p><strong>Pluses</strong></p>\n\n<ul>\n<li>Experience
621
+ with MediaWiki or other open source content management</li>\n<li>Experience
622
+ in the Wikipedia community</li>\n<li>Experience working with collaborative
623
+ editing environments such as Google Docs, or \nEtherPad</li>\n<li>Experience
624
+ working with git/gerrit and continuous integration systems</li>\n<li>Familiarity
625
+ with modern approaches to web architecture like WebSockets</li>\n<li>Experience
626
+ working within multiple cultural contexts</li>\n<li>Experience contributing
627
+ to Open Source projects</li>\n<li>Passion for free culture / free software
628
+ / open source development</li>\n<li>Experience working with an online volunteer
629
+ community</li>\n<li>Experience with wikis and participatory production environments</li>\n</ul>\n\n<p>Show
630
+ us your stuff! If you have any existing open source software that you&#39;ve
631
+ developed (these could be your own software or patches to other packages),
632
+ please share the URLs for the source. Links to GitHub, etc. are exceptionally
633
+ useful Please provide us with information you feel would be useful to us in
634
+ gaining a better understanding of your technical background and accomplishments. </p>\n\n<p><strong>About
635
+ the VisualEditor project:</strong> </p>\n\n<p>(<a href=\"http://www.mediawiki.org/wiki/VisualEditor\">http://www.mediawiki.org/wiki/VisualEditor</a>)</p>\n\n<p>Upon
636
+ applying, let us know why working at Wikimedia in this position interests
637
+ you.</p>\n\n<p><strong>About the Wikimedia Foundation</strong></p>\n\n<p>The
638
+ Wikimedia Foundation is a non-profit organization based in San Francisco,
639
+ California that operates Wikipedia and its sister projects in 285 languages.
640
+ Together they receive nearly 500 million unique visitors per month making
641
+ it the 5th most popular Web property. Wikimedia\u2019s globally-distributed
642
+ staff of 150 interact with a community of more than 100,000 people worldwide
643
+ and remains committed to creating a world in which every single human being
644
+ can freely and easily share in the sum of all knowledge.</p>\n\n<p><strong>More
645
+ Information:</strong></p>\n\n<p><a href=\"https://www.mediawiki.org/wiki/Wikimedia_engineering\">https://www.mediawiki.org/wiki/Wikimedia_engineering</a></p>\n\n<p><a
646
+ href=\"http://blog.wikimedia.org/2012/10/24/fix-this-broken-workflow/\">http://blog.wikimedia.org/2012/10/24/fix-this-broken-workflow/</a></p>\n\n<p><a
647
+ href=\"http://wikimediafoundation.org\">http://wikimediafoundation.org</a></p>\n\n<p><a
648
+ href=\"http://blog.wikimedia.org\">http://blog.wikimedia.org</a></p>\n","how_to_apply":"<p><a
649
+ href=\"http://hire.jobvite.com/j/?cj=oqo6XfwB&amp;s=Github\">http://hire.jobvite.com/j/?cj=oqo6XfwB&amp;s=Github</a></p>\n","company":"Wikimedia
650
+ Foundation","company_url":"https://wikimediafoundation.org/wiki/Home","company_logo":"http://github-jobs.s3.amazonaws.com/87ee92b0-08ef-11e3-9107-b9ed7701881e.png","url":"http://jobs.github.com/positions/c1b0e160-4bed-11e3-9834-fd4084b311ed"},{"id":"9afb63c0-98b3-11e3-8a53-daa7f81265ff","created_at":"Tue
651
+ Feb 18 15:45:59 UTC 2014","title":"Product Engineer - Quartz","location":"New
652
+ York, NY","type":"Full Time","description":"<p>About Quartz</p>\n\n<p>Quartz
653
+ is a digitally native news outlet launched by Atlantic Media in September
654
+ 2012. It provides a 24/7 digital guide to the new global economy designed
655
+ to serve business professionals who travel the world, are focused on international
656
+ markets, and value critical thinking. Quartz is optimized for access on tablets
657
+ and mobile devices, and is also easily accessible on computers. Free and built
658
+ for social distribution with no pay walls, registration walls, or app downloads,
659
+ Quartz is ad-supported and can be accessed simply at qz.com.</p>\n\n<p>Job
660
+ Description</p>\n\n<p>The Product Engineer will join a small but fast-paced
661
+ marketing team with a scrappy attitude and a love for the creative process.
662
+ He/she will play an integral role in developing and executing new ad products
663
+ on qz.com that allow clients to showcase their most engaging content and infographics,
664
+ and encourage readers to interact, share, and click. The position requires
665
+ core strategy, problem-solving and deep understanding of mobile and website
666
+ development, including cross-browser compatibility, performance tuning of
667
+ UI/JavaScript applications, and user experience. The position will report
668
+ to Quartz\u2019s Director of Social Content, Marketing.</p>\n\n<p>Responsibilities
669
+ Include:</p>\n\n<ul>\n<li>Execute on ideas established in the Quartz marketing
670
+ strategy</li>\n<li>Develop and maintain bold, market-leading creative advertisements
671
+ for select clients to showcase their most engaging content (e.g. infographics,
672
+ video, data) directly mapped to their measurement of success (e.g. engagement,
673
+ interactions, shares, clicks, leads)</li>\n<li>Provide thought leadership
674
+ on new product innovations, and proactively bring them from idea to execution</li>\n<li>Problem
675
+ solve on ad executions, development, and other hurdles that are barriers to
676
+ success</li>\n<li>Liaise and collaborate across the organization as an expert
677
+ on mobile and web development, browser capabilities, performance tuning of
678
+ UI/Javascript applications and UX</li>\n<li>Build and maintain templating
679
+ database of ideas to showcase to clients and to develop ads at ultimate efficiency
680
+ </li>\n<li>Maintain pristine code notes, files, and organization systems in
681
+ an effort to streamline internal process with marketing, technology team,
682
+ and ad ops</li>\n<li>Collaborate in the QA process with ad ops</li>\n<li>Continually
683
+ identify emerging trends in online advertising and social media, and work
684
+ proactively to turn them into</li>\n</ul>\n\n<p>Qualifications of the Ideal
685
+ Candidate:</p>\n\n<p>To secure this position you should be a talented and
686
+ experienced mobile web app developer with expertise in UI development.</p>\n\n<p>You
687
+ should have strong technical knowledge in current web development and mobile
688
+ technologies (HTML/xHTML, CSS, JavaScript). Words like Backbone, Modernizer,
689
+ Bootstrap and Github should resonate with you. When people talk about CSS3
690
+ you should know which features are currently hardware accelerated and not.
691
+ In terms of Mobile Safari you should know why \u201cposition: fixed\u201d
692
+ might have been a big deal for some before iOS5. You should love creating
693
+ things and take great personal pride in building beautiful and functional
694
+ user interfaces.</p>\n\n<ul>\n<li>Development and implementation experience
695
+ with interactive web/mobile apps</li>\n<li>Experience with some combination
696
+ of UI, MVC, and JS based frameworks such as jQuery, Backbone, Underscore,
697
+ jQuery Mobile and Modernizer</li>\n<li>Able to turn PSD/wireframes into pixel-perfect
698
+ HTML/CSS/JS templates</li>\n<li>Experience prototyping and evaluating front-end
699
+ designs</li>\n<li>Experience with \u201cHTML5\u201d (CSS3, transitions, application
700
+ cache, geo etc.), DOM, HTML fragments</li>\n<li>Familiarity with WordPress,
701
+ client-side templating, JSON and 3rd party APIs</li>\n<li>Prior experience
702
+ working in Agile Environment</li>\n<li>Experience with cross-browser and platform
703
+ issues</li>\n<li>Experience managing version control systems (Github FTW)
704
+ and code releases (merging, tagging, etc.)</li>\n<li>Good communication and
705
+ documentation skills</li>\n<li>Self-motivated, detail-oriented, strong organizational
706
+ skills, with a methodical approach to all tasks</li>\n<li>Technical problem-solving
707
+ skills, ability to succeed in a fast-moving high-demand environment, and a
708
+ willingness to \u201croll up your sleeves\u201d when necessary</li>\n<li>Previous
709
+ employment at early-stage companies, preferably digital media startups</li>\n<li>Willingness
710
+ to learn new skills, frameworks, and programming languages as necessary</li>\n<li>Comfortable
711
+ working with Linux and LAMP stack technologies</li>\n</ul>\n\n<p>Bonus points:</p>\n\n<ul>\n<li>You\u2019ve
712
+ already built a reader-based mobile web app</li>\n<li>Links to your work on
713
+ GitHub or other public repos</li>\n<li>StackOverflow profile (if relevant)</li>\n<li>Links
714
+ to websites or services where you&#39;ve had a primary development role</li>\n</ul>\n\n<p>Core
715
+ Attributes:</p>\n\n<ul>\n<li>Force of Ideas -- At the center of Atlantic Media
716
+ work are the ideas within our writing. We believe that ideas \u2013 to the
717
+ good and not \u2013 have consequence. Our highest work is bringing rigor,
718
+ insight, intellectual honesty, to that ultimate purpose of separating the
719
+ bad from the good, giving voice, argument, and flight to the latter.</li>\n<li>Spirit
720
+ of Generosity -- Atlantic Media seeks in its ranks a spirit of generosity
721
+ \u2013 a natural disposition in each colleague toward service and selfless
722
+ conduct. Atlantic Media writing should be cut from the same cloth \u2013
723
+ critical on the merits but informed by charity and forbearance in measuring
724
+ motive and personal character.</li>\n</ul>\n","how_to_apply":"<p>To apply,
725
+ please visit us online at <a href=\"http://www.atlanticmedia.com\">www.atlanticmedia.com</a>.
726
+ </p>\n\n<p>Atlantic Media is an Equal Opportunity Employer.</p>\n","company":"Atlantic
727
+ Media","company_url":"http://www.atlanticmedia.com","company_logo":"http://github-jobs.s3.amazonaws.com/257fe9d6-98b3-11e3-9772-a462642d8617.png","url":"http://jobs.github.com/positions/9afb63c0-98b3-11e3-8a53-daa7f81265ff"},{"id":"3e2b8fe0-9835-11e3-8711-e170e15a1c3c","created_at":"Tue
728
+ Feb 18 00:40:40 UTC 2014","title":"Data Scientist","location":"San Francisco,
729
+ CA","type":"Full Time","description":"<p>We&#39;re looking for a brilliant
730
+ individual to form the cornerstone of our data science team here at Thumbtack.
731
+ Our process gives you full ownership over the projects you tackle: so dream
732
+ big, then execute well.</p>\n\n<ul>\n<li>You&#39;ll be given the latitude
733
+ to survey Thumbtack as a business, identify key opportunities, and use any
734
+ and all available data to draw actionable conclusions that will guide the
735
+ direction of the company.</li>\n<li>You&#39;ll design, implement and launch
736
+ experiments to test your hypotheses.</li>\n<li>You&#39;ll identify and implement
737
+ metrics that align with company goals.</li>\n<li>You&#39;ll contribute to
738
+ our Python codebase and perform analyses in R or another statistics tool of
739
+ your choice.</li>\n<li>You&#39;ll advise coworkers on the (mis)use of statistics
740
+ to understand data.</li>\n<li>If we do our job right, the Yellow Pages will
741
+ be a thing of the past and we&#39;ll</li>\n<li>introduce real efficiency into
742
+ the local services market.</li>\n</ul>\n\n<p>Here are a few example projects</p>\n\n<ul>\n<li>Which
743
+ markets in our ecosystem are most healthy? Which are least healthy and how
744
+ can we improve them?</li>\n<li>Are service providers becoming more or less
745
+ engaged with Thumbtack over time? What&#39;s driving these changes?</li>\n<li>Which
746
+ consumers are most delighted by their Thumbtack experience? What drives the
747
+ differences and how can we best improve the experience for our users?</li>\n<li>Are
748
+ some service providers consistenly under- or over-charging for their services?
749
+ How does that affect consumer behavior? Could we offer advice to help them
750
+ improve their businesses?</li>\n</ul>\n\n<p>Skills &amp; Requirements</p>\n\n<ul>\n<li>You&#39;re
751
+ proficient with advanced statistical analysis and machine learning techniques
752
+ in an environment/tool/language of your choice (we use R and Python/Pandas
753
+ currently).</li>\n<li>You have a deep understanding of probability and statistics.</li>\n<li>You
754
+ have the analytical chops to break down big, open-ended problems into manageable
755
+ pieces, - then attack the pieces from a variety of angles, all without losing
756
+ sight of the bigger picture.</li>\n<li>You&#39;re comfortable working with
757
+ a large, complex code base (we use Python)</li>\n<li>You express yourself
758
+ clearly and concisely in written and verbal discussion of complex problems.</li>\n<li>This
759
+ job description resonates with you.</li>\n</ul>\n\n<p>About Thumbtack</p>\n\n<p>Ever
760
+ wonder why you can buy any product you want online with a single click, but
761
+ you can\u2019t hire a DJ, photographer, handyman, house cleaner, or any other
762
+ service without making a dozen phone calls? So did we.</p>\n\n<p>Thumbtack
763
+ is making it dramatically easier for consumers to hire local service pros.
764
+ We have incredible traction, a talented and passionate team, just raised $12.5m
765
+ from Sequoia, and are excited to be solving a real problem for real people.
766
+ Come build the future with us.</p>\n\n<p>Why Should You Join Us?</p>\n\n<ul>\n<li><p>Incredible
767
+ Traction: We\u2019re now helping millions of consumers a year across the country
768
+ find the right pro and driving our business owners more than a quarter billion
769
+ dollars worth of jobs annually. We\u2019re just getting started.</p></li>\n<li><p>Talented
770
+ team: Our team is talented, fun, and passionate about what we do. </p></li>\n<li><p>Enormous
771
+ opportunity: Local services are a $500+ billion market and the space is wide
772
+ open. This is your opportunity to get in at the ground floor of a dent-making
773
+ company that is solving a real problem for real people.</p></li>\n</ul>\n\n<p>Benefits</p>\n\n<ul>\n<li><p>Chef-Prepared
774
+ Food: Our chef prepares lunch and dinner daily in our in-office kitchen. Lunches
775
+ and Wednesday team dinners are a time to gather around a communal table and
776
+ invite friends to the office. </p></li>\n<li><p>High-Quality Health Care:
777
+ Health, dental and vision insurance for you and your dependents, with 100%
778
+ of premiums covered by us. We also cover the membership fee to One Medical
779
+ so you\u2019ll have access to high-quality, modern health care.</p></li>\n<li><p>Compensation:
780
+ Competitive salary and equity, and access to a 401(k) program.</p></li>\n<li><p>Flexibility:
781
+ We believe in working very hard, but we have flexible hours. We don\u2019t
782
+ have a vacation policy.</p></li>\n<li><p>Beautiful Office: A beautiful loft
783
+ office close to the Powell Street Muni and BART, bus lines and Caltrain.</p></li>\n<li><p>Great
784
+ Equipment: Huge monitors and the work environment of your choice, Mac, Windows,
785
+ Ubuntu, FreeBSD, whatever makes you most productive.</p></li>\n<li><p>Thumbtack
786
+ Bucks: $500 when you start and $150 per month thereafter to spend hiring service
787
+ professionals on Thumbtack.</p></li>\n<li><p>Education Reimbursement: $1500/year
788
+ for books, classes, conferences or other educational expenses to help you
789
+ gain new skills or expertise.</p></li>\n</ul>\n","how_to_apply":"<p>Please
790
+ apply here: <a href=\"http://grnh.se/vi5ywh\">http://grnh.se/vi5ywh</a></p>\n","company":"Thumbtack","company_url":"http://www.thumbtack.com/jobs","company_logo":"http://github-jobs.s3.amazonaws.com/2a10845c-9835-11e3-9a95-838bc51f9932.png","url":"http://jobs.github.com/positions/3e2b8fe0-9835-11e3-8711-e170e15a1c3c"},{"id":"7e3a9e56-9834-11e3-816a-3851b4e8938b","created_at":"Tue
791
+ Feb 18 00:35:24 UTC 2014","title":"iOS Engineer","location":"San Francisco,
792
+ CA","type":"Full Time","description":"<p>Thumbtack is looking to build an
793
+ amazing mobile experience for hundreds of thousands of users. Both sides of
794
+ the Thumbtack marketplace (service providers and their clients) will benefit
795
+ massively from enhanced mobile experiences. Imagine what you might do if you
796
+ could run your business from your iPhone? If you could hire a service provider
797
+ at any time day or night with just a few taps? The sky is the limit.</p>\n\n<p>The
798
+ front-end team at Thumbtack invests heavily in responsive web design and fast,
799
+ elegant mobile experiences. We\u2019ve seen this investment pay off incredibly.
800
+ But we think we can do better with a fully native experience.</p>\n\n<p>We\u2019re
801
+ looking for someone who\u2019s built great iOS experiences in the past. We\u2019re
802
+ new to this, so need some guidance. That said, you\u2019ll be working with
803
+ great engineering and design teams who will be eager to assist you in making
804
+ something really exceptional.</p>\n\n<p>Specifics about you:</p>\n\n<ul>\n<li>Excellent
805
+ iOS/Objective-C engineer who is passionate about great design</li>\n<li>Have
806
+ released apps on the App Store. We\u2019re looking for someone who\u2019s
807
+ done this before.</li>\n<li>Excited by the potential of mobile technology
808
+ to transform the lives of small businesses around the country.</li>\n<li>Great
809
+ communicator. We find that people who are good writers tend to be great thinkers
810
+ and great coders.</li>\n</ul>\n\n<p>Skills &amp; Requirements</p>\n\n<ul>\n<li>Proven
811
+ experience developing and releasing iOS apps to the App Store.</li>\n</ul>\n\n<p>About
812
+ Thumbtack</p>\n\n<p>Ever wonder why you can buy any product you want online
813
+ with a single click, but you can\u2019t hire a DJ, photographer, handyman,
814
+ house cleaner, or any other service without making a dozen phone calls? So
815
+ did we.</p>\n\n<p>Thumbtack is making it dramatically easier for consumers
816
+ to hire local service pros. We have incredible traction, a talented and passionate
817
+ team, just raised $12.5m from Sequoia, and are excited to be solving a real
818
+ problem for real people. Come build the future with us.</p>\n\n<p>Why Should
819
+ You Join Us?</p>\n\n<ul>\n<li><p>Incredible Traction: We\u2019re now helping
820
+ millions of consumers a year across the country find the right pro and driving
821
+ our business owners more than a quarter billion dollars worth of jobs annually.
822
+ We\u2019re just getting started.</p></li>\n<li><p>Talented team: Our team
823
+ is talented, fun, and passionate about what we do. </p></li>\n<li><p>Enormous
824
+ opportunity: Local services are a $500+ billion market and the space is wide
825
+ open. This is your opportunity to get in at the ground floor of a dent-making
826
+ company that is solving a real problem for real people.</p></li>\n</ul>\n\n<p>Benefits</p>\n\n<ul>\n<li><p>Chef-Prepared
827
+ Food: Our chef prepares lunch and dinner daily in our in-office kitchen. Lunches
828
+ and Wednesday team dinners are a time to gather around a communal table and
829
+ invite friends to the office. </p></li>\n<li><p>High-Quality Health Care:
830
+ Health, dental and vision insurance for you and your dependents, with 100%
831
+ of premiums covered by us. We also cover the membership fee to One Medical
832
+ so you\u2019ll have access to high-quality, modern health care.</p></li>\n<li><p>Compensation:
833
+ Competitive salary and equity, and access to a 401(k) program.</p></li>\n<li><p>Flexibility:
834
+ We believe in working very hard, but we have flexible hours. We don\u2019t
835
+ have a vacation policy.</p></li>\n<li><p>Beautiful Office: A beautiful loft
836
+ office close to the Powell Street Muni and BART, bus lines and Caltrain.</p></li>\n<li><p>Great
837
+ Equipment: Huge monitors and the work environment of your choice, Mac, Windows,
838
+ Ubuntu, FreeBSD, whatever makes you most productive.</p></li>\n<li><p>Thumbtack
839
+ Bucks: $500 when you start and $150 per month thereafter to spend hiring service
840
+ professionals on Thumbtack.</p></li>\n<li><p>Education Reimbursement: $1500/year
841
+ for books, classes, conferences or other educational expenses to help you
842
+ gain new skills or expertise.</p></li>\n</ul>\n","how_to_apply":"<p>Please
843
+ apply here: <a href=\"http://grnh.se/bsk4rn\">http://grnh.se/bsk4rn</a></p>\n","company":"Thumbtack","company_url":"http://www.thumbtack.com/jobs","company_logo":"http://github-jobs.s3.amazonaws.com/7b12e620-9834-11e3-8577-618c86a12e5e.png","url":"http://jobs.github.com/positions/7e3a9e56-9834-11e3-816a-3851b4e8938b"},{"id":"2f07fc84-9834-11e3-9f42-1e8109014c40","created_at":"Tue
844
+ Feb 18 00:33:16 UTC 2014","title":"Android Engineer","location":"San Francisco,
845
+ CA","type":"Full Time","description":"<p>Thumbtack is looking to build an
846
+ amazing mobile experience for hundreds of thousands of users. Both sides
847
+ of the Thumbtack marketplace (service providers and their clients) will benefit
848
+ massively from enhanced mobile experiences. Imagine what you might do if
849
+ you could run your business from your phone? If you could hire a service
850
+ provider at any time day or night with just a few taps? The sky&#39;s the
851
+ limit. </p>\n\n<p>The frontend team at Thumbtack invests heavily in responsive
852
+ web design and fast, elegant mobile experiences. We&#39;ve seen this investment
853
+ pay off incredibly. However, we think we can do better with a fully native
854
+ experience. </p>\n\n<p>We&#39;re looking for someone with a history of building
855
+ amazing Android applications. We&#39;re new to this, so need some guidance. With
856
+ that said, you&#39;ll be working with great engineering and design teams who
857
+ will be eager to assist you in making something really exceptional. </p>\n\n<p>You
858
+ can learn more about some of the projects we&#39;ve worked on over at our
859
+ tech blog: thumbtack.com/engineering</p>\n\n<p>Skills &amp; Requirements</p>\n\n<ul>\n<li>Excellent
860
+ Android/Java engineer who is comfortable building beautiful cross-platform
861
+ experiences</li>\n<li>History of successful apps releases on Google Play</li>\n<li>Excited
862
+ by the potential of mobile technology to transform the lives of small businesses
863
+ around the country</li>\n<li>Eye for good design and user experience</li>\n<li>Great
864
+ communicator; we find that people who are good writers tend to be great thinkers
865
+ and great coders</li>\n</ul>\n\n<p>About Thumbtack</p>\n\n<p>Ever wonder why
866
+ you can buy any product you want online with a single click, but you can\u2019t
867
+ hire a DJ, photographer, handyman, house cleaner, or any other service without
868
+ making a dozen phone calls? So did we.</p>\n\n<p>Thumbtack is making it dramatically
869
+ easier for consumers to hire local service pros. We have incredible traction,
870
+ a talented and passionate team, just raised $12.5m from Sequoia, and are excited
871
+ to be solving a real problem for real people. Come build the future with us.</p>\n\n<p>Why
872
+ Should You Join Us?</p>\n\n<ul>\n<li><p>Incredible Traction: We\u2019re now
873
+ helping millions of consumers a year across the country find the right pro
874
+ and driving our business owners more than a quarter billion dollars worth
875
+ of jobs annually. We\u2019re just getting started.</p></li>\n<li><p>Talented
876
+ team: Our team is talented, fun, and passionate about what we do. </p></li>\n<li><p>Enormous
877
+ opportunity: Local services are a $500+ billion market and the space is wide
878
+ open. This is your opportunity to get in at the ground floor of a dent-making
879
+ company that is solving a real problem for real people.</p></li>\n</ul>\n\n<p>Benefits</p>\n\n<ul>\n<li><p>Chef-Prepared
880
+ Food: Our chef prepares lunch and dinner daily in our in-office kitchen. Lunches
881
+ and Wednesday team dinners are a time to gather around a communal table and
882
+ invite friends to the office. </p></li>\n<li><p>High-Quality Health Care:
883
+ Health, dental and vision insurance for you and your dependents, with 100%
884
+ of premiums covered by us. We also cover the membership fee to One Medical
885
+ so you\u2019ll have access to high-quality, modern health care.</p></li>\n<li><p>Compensation:
886
+ Competitive salary and equity, and access to a 401(k) program.</p></li>\n<li><p>Flexibility:
887
+ We believe in working very hard, but we have flexible hours. We don\u2019t
888
+ have a vacation policy.</p></li>\n<li><p>Beautiful Office: A beautiful loft
889
+ office close to the Powell Street Muni and BART, bus lines and Caltrain.</p></li>\n<li><p>Great
890
+ Equipment: Huge monitors and the work environment of your choice, Mac, Windows,
891
+ Ubuntu, FreeBSD, whatever makes you most productive.</p></li>\n<li><p>Thumbtack
892
+ Bucks: $500 when you start and $150 per month thereafter to spend hiring service
893
+ professionals on Thumbtack.</p></li>\n<li><p>Education Reimbursement: $1500/year
894
+ for books, classes, conferences or other educational expenses to help you
895
+ gain new skills or expertise.</p></li>\n</ul>\n","how_to_apply":"<p>Please
896
+ apply here: <a href=\"http://grnh.se/st5w4p\">http://grnh.se/st5w4p</a></p>\n","company":"Thumbtack","company_url":"http://www.thumbtack.com/jobs","company_logo":"http://github-jobs.s3.amazonaws.com/261c69fc-9834-11e3-8c38-9fd1162764b1.png","url":"http://jobs.github.com/positions/2f07fc84-9834-11e3-9f42-1e8109014c40"},{"id":"f221f394-9831-11e3-980b-7b09132fbc26","created_at":"Tue
897
+ Feb 18 00:19:18 UTC 2014","title":"Full Stack Engineer","location":"New York
898
+ City or Remote","type":"Full Time","description":"<p><a href=\"http://www.charitywater.org\">charity:
899
+ water</a> is a non-profit organization bringing clean and safe drinking water
900
+ to people in developing countries. In five years, we\u2019ve funded more than
901
+ 9,000 water projects to provide 3.5 million people with access to clean water.
902
+ We believe we can end the water crisis in our lifetime \u2014 we need incredibly
903
+ creative, passionate and experienced staff to make this happen. </p>\n\n<p>As
904
+ Full Stack Engineer at charity: water, you\u2019ll be responsible for architecting
905
+ and developing an amazing, comprehensive online fundraising platform for bringing
906
+ clean and safe drinking water to every person on the planet.</p>\n\n<h2>Responsibilities.</h2>\n\n<ul>\n<li>You\u2019ll
907
+ architect, build, test, and maintain aspects of a fundraising platform used
908
+ daily by thousands of fundraisers and donors.</li>\n<li>You\u2019ll integrate
909
+ user-facing Web applications into back-end office systems and processes.</li>\n<li>You\u2019ll
910
+ work with a cross-disciplinary team of engineers, designers, product managers,
911
+ and story tellers to create the best online fundraising experience possible.</li>\n<li>You\u2019ll
912
+ participate in regular design and code reviews.</li>\n</ul>\n\n<h2>Must-haves.</h2>\n\n<ul>\n<li>Bachelor\u2019s
913
+ degree in Computer Science or equivalent industry experience.</li>\n<li>Extensive
914
+ experience doing full-stack Web application development using Ruby on Rails,
915
+ Sinatra, and friends.</li>\n<li>Experience with MySQL or Postgres databases,
916
+ caching with Memcache or Redis, and more.</li>\n<li>Experience integrating
917
+ with internal and third-party APIs (REST API design is a plus)</li>\n<li>Experience
918
+ writing modular, extensible front-end code using JavaScript and jQuery.</li>\n<li>Working
919
+ knowledge of CSS3 (experience with SASS is a plus) and HTML5.</li>\n<li>Disciplined
920
+ approach to test-driven development, A/B testing, and metrics-driven decision
921
+ making.</li>\n<li>Agile approach to software development and maintenance cycles.</li>\n</ul>\n\n<h2>Skills.</h2>\n\n<p><strong>You\u2019re
922
+ agile and pragmatic</strong>\nYou like getting things done, are disciplined
923
+ about time management, and consider yourself a remover of obstacles.</p>\n\n<p><strong>You\u2019re
924
+ passionate about building products</strong>\nYou enjoy nothing more than turning
925
+ ideas into working code and a fulfilling user experience.</p>\n\n<p><strong>You
926
+ can find the root cause of problems</strong>\nYou enjoy not just addressing
927
+ the immediate issue, but tracking down and resolving the underlying source
928
+ of the problem.</p>\n\n<p><strong>You\u2019re self-motivated</strong>\nYou
929
+ see something that can be improved, and you don\u2019t wait for permission
930
+ to fix it. You have a strong desire to make charitywater.org a world-class
931
+ fundraising experience.</p>\n\n<p><strong>You hold your weight on a small
932
+ team that handles a lot</strong>\nWe\u2019re a small and efficient staff;
933
+ because of our size, every person plays an essential role in the organization.</p>\n\n<p><strong>You
934
+ communicate well</strong>\nYou can articulate issues to team members and clearly
935
+ convey how your solutions will work to address the issues we face.</p>\n\n<h2>Location.</h2>\n\n<p>We
936
+ prefer candidates located in (or willing to re-locate to) the NYC area, but
937
+ are open to those who have experience working remotely.</p>\n\n<h2>Perks.</h2>\n\n<ul>\n<li>Healthcare,
938
+ inc. Dental &amp; Vision</li>\n<li>401k with Employer Match</li>\n<li>Unlimited
939
+ Vacation (just get your work done!)</li>\n<li>Unlimited Monthly Metrocard</li>\n</ul>\n\n<p>For
940
+ full list of open positions, check out our <a href=\"http://www.charitywater.org/about/jobs/\">Careers</a>
941
+ page.</p>\n","how_to_apply":"<p>For this role:\n<a href=\"https://my.zartis.com/charity-water/Apply/10232?companyId=3990\">https://my.zartis.com/charity-water/Apply/10232?companyId=3990</a></p>\n\n<p>Or
942
+ view our Careers page for other positions:\n<a href=\"http://www.charitywater.org/about/jobs/\">http://www.charitywater.org/about/jobs/</a></p>\n","company":"charity:
943
+ water","company_url":"http://www.charitywater.org","company_logo":"http://github-jobs.s3.amazonaws.com/a6562892-982f-11e3-9402-78014d7d4cb5.jpg","url":"http://jobs.github.com/positions/f221f394-9831-11e3-980b-7b09132fbc26"},{"id":"2b11b26e-9825-11e3-8ab1-7756dd65cc6b","created_at":"Mon
944
+ Feb 17 22:46:12 UTC 2014","title":"Director Email/Web Development","location":"Doylestown,
945
+ PA","type":"Full Time","description":"<p>Director Email/Web Development \nPosition
946
+ type: Full time\u2028\nLocation: Remote (Philadelphia region preferred)</p>\n\n<p>If
947
+ you\u2019re the Email Marketing / Web Development Director we\u2019re looking
948
+ for, you are both a strategic, technical leader and a tactical developer of
949
+ email and digital marketing solutions. You\u2019re ready to be part of the
950
+ leadership team. You\u2019ll be creative and passionate about great code,
951
+ solid programming methodologies and practices, and building a scalable, high
952
+ quality team of on- and off-shore developers. Your skills are strong and current
953
+ such that you will be able to contribute significantly to our development
954
+ capabilities as you build the team. You are a self-starter\u2014someone who
955
+ loves to learn, wants to be the best at what you do, and thrives on figuring
956
+ out technical challenges, and helping other developers reach their potential.
957
+ And, you\u2019re looking for an outstanding opportunity to build an organization
958
+ and be a part of a fast-growing, award-winning, email marketing agency.</p>\n\n<p>In
959
+ this hands-on role, you will work directly with the President and other team
960
+ members to drive stellar results for our clients. Leadership at FulcrumTech
961
+ happens in every role, so you\u2019ll be contributing to client success through
962
+ your creative ideas and unique perspectives.</p>\n\n<p>Here\u2019s what you
963
+ will be doing:</p>\n\n<ul>\n<li>As both a single contributor and leader of
964
+ on-and off-shore teams, manage the technical execution of online marketing
965
+ strategies and programs, including website and email development, deployment,
966
+ API integration and application development, reporting capabilities, and analysis.</li>\n<li>Develop
967
+ continual improvements in a scalable development process that ensures consistently
968
+ high quality websites, landing pages, email deployments, web applications,
969
+ reporting, and related services. </li>\n<li>Manage all aspects of related
970
+ website production and email production including writing code that matches
971
+ designer\u2019s specifications. </li>\n<li>Test coding and ensure all is in
972
+ working order &amp; desired results are achieved, including web and email
973
+ analytics.</li>\n<li>Establish and continually improve a development process
974
+ that results in consistently high-quality code that can be supported by multiple
975
+ team members.</li>\n<li>Handle all email account setup and administration,
976
+ including authentication setup, account configuration and management, reporting
977
+ and analytics, and ongoing account admin. </li>\n<li>Research, write, test,
978
+ implement and/or provide client support for API calls that integrate email
979
+ service providers to client backend systems such as reporting data warehouses,
980
+ websites, and customer/prospect databases (CRM); includes creating applications
981
+ leveraging API calls.</li>\n<li>Develop and maintain websites, landing pages
982
+ (including those integrated with email systems) using primarily WordPress,
983
+ PHP, JavaScript, jQuery, HTML, and CSS.</li>\n<li>Set up &amp; gather metrics
984
+ from email distribution tools, web analytics, and other relevant data stores
985
+ that are needed to analyze performance of web and email marketing campaigns;
986
+ identifies and analyzes performance patterns and trends; creates reports in
987
+ Excel, Tableau, and customized formats.</li>\n<li>Implement standard SEO tasks,
988
+ including the optimization of page load speed.</li>\n<li>Provide brief and
989
+ comprehensive client training (either live or via web-based screen-sharing
990
+ tools) and product demonstrations of website management tools and email marketing
991
+ tools including WordPress, ExactTarget, Lyris HQ, and other related tools.
992
+ </li>\n<li>Provide pre- and post- email system support such as list setup,
993
+ template creation, account configuration and API (application programming
994
+ interface) calls to email service provider tools.<br></li>\n<li>Establish
995
+ and improve FulcrumTech technology infrastructure in support of internal staff,
996
+ subcontractors, and client communications (e.g. internal email, project management
997
+ systems, etc.).</li>\n<li>Assist with the technical implementation of social
998
+ media campaigns. </li>\n</ul>\n\n<p>Successful candidates will possess:</p>\n\n<ul>\n<li>Bachelor\u2019s
999
+ degree required, preferably in computer science</li>\n<li>Ability to think
1000
+ strategically, creatively, and execute tactically</li>\n<li>Strong sense of
1001
+ high quality design and attention to design details</li>\n<li>Proven experience
1002
+ in developing and managing a technical team</li>\n<li>4+ years experience
1003
+ in coding websites optimally using WordPress, PHP, JavaScript, jQuery, AJAX,
1004
+ MySQL; Sass, Compass a plus</li>\n<li>4+ years experience coding HTML emails,
1005
+ including responsive, to design specifications preferred, applied knowledge
1006
+ of best practices for email HTML coding, including deep working knowledge
1007
+ of HTML5 and CSS</li>\n<li>Strong working knowledge of object oriented programming</li>\n<li>Strong
1008
+ working knowledge of relational database systems such as MySQL and the SQL
1009
+ programming language; solid understanding in the development and design of
1010
+ web architecture</li>\n<li>Strong working knowledge of enterprise class email
1011
+ service providers such as ExactTarget and Lyris HQ</li>\n<li>Strong working
1012
+ knowledge of Excel including, but not limited to, sorting, v-lookups, pivot
1013
+ tables</li>\n<li>Excellent written and verbal communication skills</li>\n<li>Proven
1014
+ experience in estimating time/resources required for delivering projects;
1015
+ as well as ability to manage the delivery through resource allocation, contingency
1016
+ planning and problem solving abilities</li>\n<li>A passion for solving customer
1017
+ issues</li>\n<li>A desire to create the Next-Big-Exciting-Thing in email and
1018
+ digital, interactive marketing solutions </li>\n<li>An entrepreneurial, self-motivated,
1019
+ customer-oriented spirit!</li>\n</ul>\n\n<p>FulcrumTech is an award-winning,
1020
+ results-driven market leader and innovator in digital marketing, with a deep
1021
+ core expertise in email marketing. We serve clients including The Boston Globe,
1022
+ Dunkin\u2019 Donuts, and many other leading brands. If you want to be part
1023
+ of a winning team that thrives on creativity, curiosity and quality\u2014and
1024
+ have fun doing it\u2014provide a cover letter telling us why you are our ideal
1025
+ team member! If you currently have experience that fits the brief role description
1026
+ here, please submit your resume, cover letter, and compensation requirements
1027
+ to <a href=\"mailto:careers@fulcrumtech.net\">careers@fulcrumtech.net</a>.</p>\n","how_to_apply":"<p>Send
1028
+ resumes to <a href=\"mailto:careers@fulcrumtech.net\">careers@fulcrumtech.net</a>.</p>\n","company":"FulcrumTech","company_url":"http://www.fulcrumtech.net","company_logo":"http://github-jobs.s3.amazonaws.com/21553232-9825-11e3-806f-c8f48bd332a4.jpg","url":"http://jobs.github.com/positions/2b11b26e-9825-11e3-8ab1-7756dd65cc6b"},{"id":"6d52af3a-980b-11e3-8ed7-b7b716b1e584","created_at":"Mon
1029
+ Feb 17 19:41:19 UTC 2014","title":"Software Engineer","location":"San Francisco","type":"Full
1030
+ Time","description":"<h1>About the role</h1>\n\n<p>This role is a full-time
1031
+ position on the Intercom Growth Team, in San Francisco.</p>\n\n<p>Engineers
1032
+ on the Growth team are responsible for iterating on, experimenting with, and
1033
+ devising new strategies for growing Intercom. Growth engineers care not just
1034
+ about technology \u2014 but ultimately the problems it can solve; they care
1035
+ about creating experiences that delight our users; and, they are comfortable
1036
+ at all levels of the stack.</p>\n\n<p>To be a good fit, you should also:</p>\n\n<ul>\n<li>Have
1037
+ lots of ideas about how the products you use day-to-day could be better; you
1038
+ should be able to justify these opinions.</li>\n<li>Enjoy moving fast: we
1039
+ continuously deploy to production, in minutes, dozens of times a day.</li>\n<li>Sweat
1040
+ the little details, and be self motivated to spot ways to improve what you&#39;re
1041
+ producing, not relying on others to do so.</li>\n<li>Be proud of what you
1042
+ work on, and what you ship.</li>\n<li>Be able to effectively and concisely
1043
+ communicate ideas through writing.</li>\n</ul>\n\n<p>You will be responsible
1044
+ for:</p>\n\n<ul>\n<li>Using data to identify new growth opportunities.</li>\n<li>Iterating
1045
+ on Intercom&#39;s install process to remove as much friction as possible.</li>\n<li>Obsessing
1046
+ over every detail of a user&#39;s first hour in Intercom.</li>\n<li>Collaborating
1047
+ deeply with Growth designers, to reach the shared goal of growing Intercom.</li>\n<li>Devising
1048
+ innovative ways to demonstrate Intercom&#39;s value to new and existing users.</li>\n<li>Ensuring
1049
+ all of your work is instrumented, so that our team of analysts can effectively
1050
+ measure its impact.</li>\n<li>Shipping code, daily.</li>\n<li>Learning in
1051
+ excruciating detail what it takes to be a successful Intercom user, and using
1052
+ those learnings to influence your work on the product.</li>\n</ul>\n\n<h2>Technologies
1053
+ we use</h2>\n\n<p>We mostly use Rails, Ruby, MySQL, MongoDB, Redis, Solr,
1054
+ StatsD, and AWS.</p>\n\n<p>Experience in our day to day toolset is a plus
1055
+ but is, by no means, a requirement. Good people will adjust quickly and have
1056
+ fun learning something new, or helping us learn something new.</p>\n\n<h1>About
1057
+ Intercom</h1>\n\n<p>Intercom (<a href=\"http://www.intercom.io\">www.intercom.io</a>)
1058
+ is a simple, personal messaging service for businesses and their customers.
1059
+ It provides a single, integrated platform for the whole company to use for
1060
+ support, marketing, product, sales communication and more.</p>\n\n<p>We\u2019re
1061
+ on a mission to make web and mobile business personal. We believe that the
1062
+ future of customer communication requires not increasingly complex, impersonal
1063
+ point solutions, but rather a simple, seamless platform that applies innovations
1064
+ found in consumer services like Facebook and WhatsApp.</p>\n\n<p>Founded in
1065
+ late 2011, Intercom has raised over $30 million in venture capital and is
1066
+ backed by leading investors, The Social+Capital Partnership and Bessemer Venture
1067
+ Partners. Intercom has been adopted by thousands of businesses, including
1068
+ Heroku, Hootsuite, Rackspace, Yahoo! and Perfect Audience. Our customers love
1069
+ the product: <a href=\"https://twitter.com/intercom/favorites\">https://twitter.com/intercom/favorites</a></p>\n\n<p>We
1070
+ like big thinkers with small egos who believe in our goal to build a uniquely
1071
+ impactful, long-lasting tech company. Our vision is to fundamentally change
1072
+ forever how Internet businesses and their customers communicate.</p>\n","how_to_apply":"<p>To
1073
+ apply mail <a href=\"mailto:ben@intercom.io\">ben@intercom.io</a> with a description
1074
+ of a project that you are particularly proud to have worked on, your resume,
1075
+ and anything else you think would be useful for understanding your background.</p>\n","company":"Intercom","company_url":"https://www.intercom.io","company_logo":"http://github-jobs.s3.amazonaws.com/627e5faa-980b-11e3-9e33-913fa2d7ad5a.png","url":"http://jobs.github.com/positions/6d52af3a-980b-11e3-8ed7-b7b716b1e584"},{"id":"cd87fa3c-7f55-11e3-967f-967ee3c991db","created_at":"Mon
1076
+ Feb 17 09:00:24 UTC 2014","title":"Senior Vulnerability Engineer","location":"New
1077
+ York, NY","type":"Full Time","description":"<p><strong>The Role:</strong></p>\n\n<p>Trading
1078
+ System Enterprise Risk R&amp;D team provides Enterprise Level Market and Counterparty/Credit
1079
+ Risk management analytics to both Sell-side broker/dealers and Buy-Side Institutional
1080
+ Investment Managers and Hedge-Funds. Our product covers a wide variety of
1081
+ financial instrument types including but not limited to Fixed-Income, Interest
1082
+ Rate Swaps, Credit Default Swaps, Equity/Index/FX Options, and Structured
1083
+ Notes. We provide over 80 different Risk analytics in Market and Counterparty/Credit
1084
+ Risk to our customers and unlimited slice and dice of these analytics to allow
1085
+ them to actively manage firm wide risk.</p>\n\n<p>Trading System Enterprise
1086
+ Risk R&amp;D is looking for extremely driven software developer who has experience
1087
+ working with large scale software systems. The successful candidate will
1088
+ be someone who is a self-starter with ownership attitude and a good communicator
1089
+ that is able to work with various business and R&amp;D teams. This is excellent
1090
+ opportunity to get involved in shaping a new product line and become expert
1091
+ in the domain.</p>\n\n<p><strong>Required Technical Skills:</strong></p>\n\n<ul>\n<li>Experience
1092
+ managing or performing penetration testing on large enterprise Windows networks</li>\n<li>Experience
1093
+ overseeing the &quot;fix it&quot; phase of penetration testing</li>\n<li>Proven
1094
+ record of discovering, analyzing and exploiting application vulnerabilities
1095
+ and misconfigurations on Windows platforms</li>\n<li>Experience assessing
1096
+ and hardening Active Directory and Group Policy and knowledge of cutting edge
1097
+ security features of Microsoft Windows</li>\n<li>Ability to adapt existing
1098
+ exploits or advisories into robust exploits specific to the Bloomberg environment</li>\n<li>Familiarity
1099
+ with cutting edge trends in vulnerability analysis, exploit development and
1100
+ vulnerability discovery</li>\n<li>Intimate knowledge of Windows internals,
1101
+ especially those relevant to authentication and access control and other facets
1102
+ of security</li>\n<li>Proficiency in reading, writing, and auditing C or C++</li>\n<li>Proficiency
1103
+ in at least one scripting language (bash, perl, python, powershell, etc.)</li>\n<li>Experience
1104
+ with development of custom toolsets when necessary</li>\n<li>Strong Windows
1105
+ system administration and security assessment skills</li>\n<li>Familiarity
1106
+ with auditing techniques for MSRPC and ActiveX interfaces</li>\n<li>Familiarity
1107
+ with historical vulnerabilities in common operating systems (Windows, Solaris,
1108
+ Linux)</li>\n<li>Excellent understanding of secure data storage and transport
1109
+ implementations (PGP/SSH/SSL/IPSEC/etc.)</li>\n<li>Good understanding of low
1110
+ level TCP/IP networking and common protocols such as RADIUS, LDAP, KERBEROS,
1111
+ etc. </li>\n<li>Good understanding of secure network design</li>\n<li>Experience
1112
+ analyzing network traffic captures using tools such as tcpdump, wireshark,
1113
+ etc.</li>\n</ul>\n\n<p><strong>Required Non-Technical Skills:</strong></p>\n\n<ul>\n<li>Excellent
1114
+ analytical and problem solving skills</li>\n<li>Fast learner and interested
1115
+ in keeping current with research in the industry</li>\n<li>Work well in a
1116
+ small team, collaborative environment </li>\n<li>Good &quot;security instincts&quot;</li>\n<li>Ability
1117
+ to communicate complicated technical issues and the risks they pose to R&amp;D
1118
+ programmers, network engineers, system administrators and management</li>\n<li>Ability
1119
+ to conduct a security assessment from start to finish with minimal assistance</li>\n<li>Help
1120
+ programmers/administrators to develop fixes for issues discovered</li>\n<li>Put
1121
+ security risks in context in order to help meet business goals</li>\n</ul>\n\n<p><strong>Desired
1122
+ Skills:</strong></p>\n\n<ul>\n<li>Experience participating as a member of
1123
+ a red team</li>\n<li>Experience working with BMC Bladelogic and HP Openview</li>\n<li>Proficiency
1124
+ in using IDA Pro, Ollydbg/Immdbg, Windbg and/or other software analysis/debugging
1125
+ tools</li>\n<li>Proficiency in reading at least one dialect of assembly</li>\n<li>Familiarity
1126
+ with modern malware </li>\n</ul>\n\n<p><strong>The Company:</strong></p>\n\n<p>Bloomberg,
1127
+ the global business and financial information and news leader, gives influential
1128
+ decision makers a critical edge by connecting them to a dynamic network of
1129
+ information, people and ideas. The company&#39;s strength - delivering data,
1130
+ news and analytics through innovative technology, quickly and accurately -
1131
+ is at the core of the Bloomberg Professional service, which provides real
1132
+ time financial information to more than 315,000 subscribers globally. Bloomberg&#39;s
1133
+ enterprise solutions build on the company&#39;s core strength, leveraging
1134
+ technology to allow customers to access, integrate, distribute and manage
1135
+ data and information across organizations more efficiently and effectively.
1136
+ Through Bloomberg Law, Bloomberg Government, Bloomberg New Energy Finance
1137
+ and Bloomberg BNA, the company provides data, news and analytics to decision
1138
+ makers in industries beyond finance. And Bloomberg News, delivered through
1139
+ the Bloomberg Professional service, television, radio, mobile, the Internet
1140
+ and three magazines, Bloomberg Businessweek, Bloomberg Markets and Bloomberg
1141
+ Pursuits, covers the world with more than 2,400 news and multimedia professionals
1142
+ at more than 150 bureaus in 73 countries. Headquartered in New York, Bloomberg
1143
+ employs more than 15,000 people in 192 locations around the world.</p>\n\n<p>Bloomberg
1144
+ is an equal opportunities employer and we welcome applications from all backgrounds
1145
+ regardless of race, colour, religion, sex, ancestry, age, marital status,
1146
+ sexual orientation, gender identity, disability or any other classification
1147
+ protected by law.</p>\n","how_to_apply":"<p><a href=\"http://goo.gl/bVbfra\">http://goo.gl/bVbfra</a></p>\n","company":"Bloomberg
1148
+ L.P.","company_url":"http://www.bloomberg.com","company_logo":"http://github-jobs.s3.amazonaws.com/c5aaff4e-7f55-11e3-8555-d029b7deaa73.jpg","url":"http://jobs.github.com/positions/cd87fa3c-7f55-11e3-967f-967ee3c991db"},{"id":"e92f588a-7f54-11e3-9567-b404d51eb36f","created_at":"Mon
1149
+ Feb 17 08:54:01 UTC 2014","title":"Trading Systems - C/C++ Experienced Software
1150
+ Developer","location":"New York, NY","type":"Full Time","description":"<p><strong>The
1151
+ Role:</strong></p>\n\n<p>Trading Systems at Bloomberg is looking for skilled
1152
+ senior developers. Bloomberg&#39;s senior developers design and build mission
1153
+ critical Trading Applications for the largest broker dealers and investment
1154
+ advisers in the world, providing global solutions for managing orders, executions,
1155
+ quotes, and positions. Institutions use our advanced tools for market compliance,
1156
+ connectivity, algorithmic strategy trading, programmed trading, risk management,
1157
+ ticketing, pricing, and back office/clearing. As you will work closely with
1158
+ development and the business side, strong communication skills are a must.</p>\n\n<p><strong>Qualifications:</strong></p>\n\n<ul>\n<li>2+
1159
+ years of professional experience with C and C++ on UNIX </li>\n<li>A passion
1160
+ for design, problem solving, AND hands-on development </li>\n<li>A strong
1161
+ knowledge of object-oriented design, data structures, systems and applications
1162
+ programming, and multithreading programming are a plus</li>\n<li>Good communication
1163
+ skills </li>\n<li>Financial knowledge and project management experience are
1164
+ a plus but not necessary</li>\n</ul>\n\n<p><strong>The Company:</strong></p>\n\n<p>Bloomberg,
1165
+ the global business and financial information and news leader, gives influential
1166
+ decision makers a critical edge by connecting them to a dynamic network of
1167
+ information, people and ideas. The company&#39;s strength - delivering data,
1168
+ news and analytics through innovative technology, quickly and accurately -
1169
+ is at the core of the Bloomberg Professional service, which provides real
1170
+ time financial information to more than 315,000 subscribers globally. Bloomberg&#39;s
1171
+ enterprise solutions build on the company&#39;s core strength, leveraging
1172
+ technology to allow customers to access, integrate, distribute and manage
1173
+ data and information across organizations more efficiently and effectively.
1174
+ Through Bloomberg Law, Bloomberg Government, Bloomberg New Energy Finance
1175
+ and Bloomberg BNA, the company provides data, news and analytics to decision
1176
+ makers in industries beyond finance. And Bloomberg News, delivered through
1177
+ the Bloomberg Professional service, television, radio, mobile, the Internet
1178
+ and three magazines, Bloomberg Businessweek, Bloomberg Markets and Bloomberg
1179
+ Pursuits, covers the world with more than 2,400 news and multimedia professionals
1180
+ at more than 150 bureaus in 73 countries. Headquartered in New York, Bloomberg
1181
+ employs more than 15,000 people in 192 locations around the world.</p>\n\n<p>Bloomberg
1182
+ is an equal opportunities employer and we welcome applications from all backgrounds
1183
+ regardless of race, colour, religion, sex, ancestry, age, marital status,
1184
+ sexual orientation, gender identity, disability or any other classification
1185
+ protected by law.</p>\n","how_to_apply":"<p><a href=\"http://goo.gl/Po8rVl\">http://goo.gl/Po8rVl</a></p>\n","company":"Bloomberg
1186
+ L.P.","company_url":"http://www.bloomberg.com","company_logo":"http://github-jobs.s3.amazonaws.com/8c73b14a-7f54-11e3-98b2-0ee63947be53.jpg","url":"http://jobs.github.com/positions/e92f588a-7f54-11e3-9567-b404d51eb36f"},{"id":"9276044e-7f54-11e3-8f66-66c89463661e","created_at":"Mon
1187
+ Feb 17 08:51:36 UTC 2014","title":"Senior Linux/C/Low-Level Security Developer","location":"New
1188
+ York, NY","type":"Full Time","description":"<p><strong>The Role:</strong></p>\n\n<p>Bloomberg
1189
+ is seeking diversified and extraordinary individual to join our Secure Computing
1190
+ Architecture team. This team supports a wide variety of efforts related directly
1191
+ to Bloomberg&#39;s security posture. These projects can vary in their type
1192
+ and scope, but some recent past examples have included:</p>\n\n<ul>\n<li>Hardware
1193
+ design for Bloomberg&#39;s next generation keyboard, B-Unit 3 device, and
1194
+ writing the real-time operating system that runs on both.</li>\n<li>High performance
1195
+ embedded cryptographic subsystem and related security architecture.</li>\n<li>Providing
1196
+ extension capabilities to offer higher security to some of our existing physical
1197
+ security infrastructure.</li>\n</ul>\n\n<p><strong>Qualifications:</strong></p>\n\n<ul>\n<li>Expert
1198
+ level C programmer - C++ experience is not a substitute. </li>\n<li>Systems
1199
+ architecture</li>\n<li>Extensive experience with operating systems including
1200
+ a strong working knowledge of internal details</li>\n<li>Low-level programming
1201
+ including Linux kernel, RTOS, and embedded development</li>\n<li>Have a strong
1202
+ understanding of general security principles including cryptographic protocols</li>\n</ul>\n\n<p>The
1203
+ requirements around operating systems and low level programming are there
1204
+ because a lot of the things this team works on are high performance, and requires
1205
+ programmers who have a solid understanding of the operations of systems down
1206
+ to the lowest level.</p>\n\n<p>Some things that are not required, but would
1207
+ be considered a <em>plus</em> are:</p>\n\n<ul>\n<li>Embedded Hardware Design.</li>\n<li>Verilog
1208
+ and FPGA Design</li>\n</ul>\n\n<p><strong>The Company:</strong></p>\n\n<p>Bloomberg,
1209
+ the global business and financial information and news leader, gives influential
1210
+ decision makers a critical edge by connecting them to a dynamic network of
1211
+ information, people and ideas. The company&#39;s strength - delivering data,
1212
+ news and analytics through innovative technology, quickly and accurately -
1213
+ is at the core of the Bloomberg Professional service, which provides real
1214
+ time financial information to more than 315,000 subscribers globally. Bloomberg&#39;s
1215
+ enterprise solutions build on the company&#39;s core strength, leveraging
1216
+ technology to allow customers to access, integrate, distribute and manage
1217
+ data and information across organizations more efficiently and effectively.
1218
+ Through Bloomberg Law, Bloomberg Government, Bloomberg New Energy Finance
1219
+ and Bloomberg BNA, the company provides data, news and analytics to decision
1220
+ makers in industries beyond finance. And Bloomberg News, delivered through
1221
+ the Bloomberg Professional service, television, radio, mobile, the Internet
1222
+ and three magazines, Bloomberg Businessweek, Bloomberg Markets and Bloomberg
1223
+ Pursuits, covers the world with more than 2,400 news and multimedia professionals
1224
+ at more than 150 bureaus in 73 countries. Headquartered in New York, Bloomberg
1225
+ employs more than 15,000 people in 192 locations around the world.</p>\n\n<p>Bloomberg
1226
+ is an equal opportunities employer and we welcome applications from all backgrounds
1227
+ regardless of race, colour, religion, sex, ancestry, age, marital status,
1228
+ sexual orientation, gender identity, disability or any other classification
1229
+ protected by law.</p>\n","how_to_apply":"<p><a href=\"http://goo.gl/XxD6Tr\">http://goo.gl/XxD6Tr</a></p>\n","company":"Bloomberg
1230
+ L.P.","company_url":"http://www.bloomberg.com","company_logo":"http://github-jobs.s3.amazonaws.com/8c73b14a-7f54-11e3-98b2-0ee63947be53.jpg","url":"http://jobs.github.com/positions/9276044e-7f54-11e3-8f66-66c89463661e"},{"id":"12c650c8-7f54-11e3-8826-afd0766b3c44","created_at":"Mon
1231
+ Feb 17 08:48:02 UTC 2014","title":"Fixed Income Pricing Quant Developer","location":"New
1232
+ York, NY","type":"Full Time","description":"<p><strong>The Role:</strong></p>\n\n<p>The
1233
+ Bloomberg Fixed Income Real-Time Algos team provides intraday pricing on a
1234
+ wide variety of bonds and CDS that give our clients unprecedented transparency
1235
+ into OTC markets. Our group is responsible for developing and supporting several
1236
+ Real-Time pricing engines customized for different use cases. Our systems
1237
+ must be accurate, efficient, have very high up-time, and process large sets
1238
+ of data in real time. The group is a mix of quantitative researchers and software
1239
+ developers focused on building the very best engines and producing the best
1240
+ estimations of markets globally. </p>\n\n<p>We are currently seeking a highly
1241
+ talented and motivated quantitative developer to work with the team to design
1242
+ and build our newest Real-Time engine (BMRK), which is focused on market-calibrated
1243
+ pricing of both liquid and illiquid parts of the trade-able bond universe
1244
+ on a very small time-scale (updates every 5-10 seconds). The successful candidate
1245
+ will participate in the full life-cycle of quantitative development including
1246
+ model research, prototyping, production implementation, deployment, and interaction
1247
+ with internal and external clients. The candidate will also have the opportunity
1248
+ to contribute to the other engines being supported by the group as we continually
1249
+ review our methodologies for accuracy and best practices.</p>\n\n<p><strong>Qualifications:</strong></p>\n\n<ul>\n<li>Advanced
1250
+ degree in Mathematics, Statistics, Physics, Engineering, Finance or related
1251
+ field. A PhD is highly desirable.</li>\n<li>Hands-on experience with C/C++
1252
+ Quantitative Development. Experience with Python, MATLAB, Mathematica or R
1253
+ is a plus.</li>\n<li>Strong understanding of financial concepts including
1254
+ Fixed Income, Credit, callable bonds, curves, and relative value</li>\n<li>Solid
1255
+ understanding of statistics, probability, inverse problems, stochastic calculus,
1256
+ financial and econometric models, as well as estimation and calibration techniques</li>\n<li>Strong
1257
+ problem formulation and problem solving skills</li>\n<li>Strong communication
1258
+ skills and ability to work in a multi-team environment </li>\n<li>Experience
1259
+ with handling large scale data sets</li>\n<li>Proven track record of working
1260
+ in a fast-paced real-time delivery environment</li>\n</ul>\n\n<p><strong>The
1261
+ Company:</strong></p>\n\n<p>Bloomberg, the global business and financial information
1262
+ and news leader, gives influential decision makers a critical edge by connecting
1263
+ them to a dynamic network of information, people and ideas. The company&#39;s
1264
+ strength - delivering data, news and analytics through innovative technology,
1265
+ quickly and accurately - is at the core of the Bloomberg Professional service,
1266
+ which provides real time financial information to more than 315,000 subscribers
1267
+ globally. Bloomberg&#39;s enterprise solutions build on the company&#39;s
1268
+ core strength, leveraging technology to allow customers to access, integrate,
1269
+ distribute and manage data and information across organizations more efficiently
1270
+ and effectively. Through Bloomberg Law, Bloomberg Government, Bloomberg New
1271
+ Energy Finance and Bloomberg BNA, the company provides data, news and analytics
1272
+ to decision makers in industries beyond finance. And Bloomberg News, delivered
1273
+ through the Bloomberg Professional service, television, radio, mobile, the
1274
+ Internet and three magazines, Bloomberg Businessweek, Bloomberg Markets and
1275
+ Bloomberg Pursuits, covers the world with more than 2,400 news and multimedia
1276
+ professionals at more than 150 bureaus in 73 countries. Headquartered in New
1277
+ York, Bloomberg employs more than 15,000 people in 192 locations around the
1278
+ world.</p>\n\n<p>Bloomberg is an equal opportunities employer and we welcome
1279
+ applications from all backgrounds regardless of race, colour, religion, sex,
1280
+ ancestry, age, marital status, sexual orientation, gender identity, disability
1281
+ or any other classification protected by law.</p>\n","how_to_apply":"<p><a
1282
+ href=\"http://goo.gl/azsCqA\">http://goo.gl/azsCqA</a></p>\n","company":"Bloomberg
1283
+ L.P.","company_url":"http://www.bloomberg.com","company_logo":"http://github-jobs.s3.amazonaws.com/0dec16d2-7f54-11e3-8337-4e713f7e104e.jpg","url":"http://jobs.github.com/positions/12c650c8-7f54-11e3-8826-afd0766b3c44"},{"id":"ab99ac1a-7f53-11e3-9ce9-a0e94579af6e","created_at":"Mon
1284
+ Feb 17 08:45:08 UTC 2014","title":"Market Risk/Counterparty Risk Developer","location":"New
1285
+ York, NY","type":"Full Time","description":"<p><strong>The Role:</strong></p>\n\n<p>Trading
1286
+ System Enterprise Risk R&amp;D team provides Enterprise Level Market and Counterparty/Credit
1287
+ Risk management analytics to both Sell-side broker/dealers and Buy-Side Institutional
1288
+ Investment Managers and Hedge-Funds. Our product covers a wide variety of
1289
+ financial instrument types including but not limited to Fixed-Income, Interest
1290
+ Rate Swaps, Credit Default Swaps, Equity/Index/FX Options, and Structured
1291
+ Notes. We provide over 80 different Risk analytics in Market and Counterparty/Credit
1292
+ Risk to our customers and unlimited slice and dice of these analytics to allow
1293
+ them to actively manage firm wide risk.</p>\n\n<p>Trading System Enterprise
1294
+ Risk R&amp;D is looking for extremely driven software developer who has experience
1295
+ working with large scale software systems. The successful candidate will
1296
+ be someone who is a self-starter with ownership attitude and a good communicator
1297
+ that is able to work with various business and R&amp;D teams. This is excellent
1298
+ opportunity to get involved in shaping a new product line and become expert
1299
+ in the domain.</p>\n\n<p><strong>Qualifications:</strong></p>\n\n<ul>\n<li>3+
1300
+ years of C/C++ programming experience (Unix/Linux)</li>\n<li>Experience with
1301
+ service oriented architecture is a must.</li>\n<li>Experience with Market
1302
+ Risk or Counterparty Risk system is a plus.</li>\n<li>Experience working with
1303
+ Big Data and Distributed databases is helpful.</li>\n<li>Strong analytical
1304
+ and problem-solving skills</li>\n<li>Desire to get involved with shaping a
1305
+ new product line</li>\n<li>Strong verbal and written communication skills</li>\n</ul>\n\n<p><strong>The
1306
+ Company:</strong></p>\n\n<p>Bloomberg, the global business and financial information
1307
+ and news leader, gives influential decision makers a critical edge by connecting
1308
+ them to a dynamic network of information, people and ideas. The company&#39;s
1309
+ strength - delivering data, news and analytics through innovative technology,
1310
+ quickly and accurately - is at the core of the Bloomberg Professional service,
1311
+ which provides real time financial information to more than 315,000 subscribers
1312
+ globally. Bloomberg&#39;s enterprise solutions build on the company&#39;s
1313
+ core strength, leveraging technology to allow customers to access, integrate,
1314
+ distribute and manage data and information across organizations more efficiently
1315
+ and effectively. Through Bloomberg Law, Bloomberg Government, Bloomberg New
1316
+ Energy Finance and Bloomberg BNA, the company provides data, news and analytics
1317
+ to decision makers in industries beyond finance. And Bloomberg News, delivered
1318
+ through the Bloomberg Professional service, television, radio, mobile, the
1319
+ Internet and three magazines, Bloomberg Businessweek, Bloomberg Markets and
1320
+ Bloomberg Pursuits, covers the world with more than 2,400 news and multimedia
1321
+ professionals at more than 150 bureaus in 73 countries. Headquartered in New
1322
+ York, Bloomberg employs more than 15,000 people in 192 locations around the
1323
+ world.</p>\n\n<p>Bloomberg is an equal opportunities employer and we welcome
1324
+ applications from all backgrounds regardless of race, colour, religion, sex,
1325
+ ancestry, age, marital status, sexual orientation, gender identity, disability
1326
+ or any other classification protected by law.</p>\n","how_to_apply":"<p><a
1327
+ href=\"http://goo.gl/mTveLy\">http://goo.gl/mTveLy</a></p>\n","company":"Bloomberg
1328
+ L.P.","company_url":"http://www.bloomberg.com","company_logo":"http://github-jobs.s3.amazonaws.com/8eb24530-7f53-11e3-8dee-e44846d47a57.jpg","url":"http://jobs.github.com/positions/ab99ac1a-7f53-11e3-9ce9-a0e94579af6e"},{"id":"87f54860-7f52-11e3-93fc-490482a3b252","created_at":"Mon
1329
+ Feb 17 08:36:59 UTC 2014","title":"Front-End Developer - Message","location":"New
1330
+ York, NY","type":"Full Time","description":"<p><strong>The Role:</strong></p>\n\n<p>The
1331
+ R&amp;D Message team is responsible for building Bloomberg&#39;s email system
1332
+ which processes over 270 million emails per day and is available 24x7. It
1333
+ is used by clients to exchange information on a secure and compliant platform
1334
+ and is the largest real-time price dissemination and discovery platform in
1335
+ the world.</p>\n\n<p>For front-end developers, the Message team is looking
1336
+ for application builders, who have basic experience in C++ or C and Java,
1337
+ preferably with some experience with Javascript, and have a passion for working
1338
+ on user interfaces. The developer joining this team will have the opportunity
1339
+ to work on completely changing the user experience of one of the most used
1340
+ facets of the Bloomberg Terminal, which will change the way Wall Street communicates
1341
+ on a daily basis.</p>\n\n<p><strong>Qualifications:</strong></p>\n\n<ul>\n<li>3+
1342
+ years of professional software development</li>\n<li>Passion for working with
1343
+ and iterating on UI</li>\n<li>Knowledge of C++ or C and Java in Linux, UNIX,
1344
+ or AIX environments\nPluses:</li>\n<li>Comfortable working with Javascript</li>\n<li>Experience
1345
+ working on Mail products</li>\n<li>Knowledge of high-transaction rate systems</li>\n<li>Basic
1346
+ knowledge of SQL or NoSQL databases</li>\n</ul>\n\n<p><strong>The Company:</strong></p>\n\n<p>Bloomberg,
1347
+ the global business and financial information and news leader, gives influential
1348
+ decision makers a critical edge by connecting them to a dynamic network of
1349
+ information, people and ideas. The company&#39;s strength - delivering data,
1350
+ news and analytics through innovative technology, quickly and accurately -
1351
+ is at the core of the Bloomberg Professional service, which provides real
1352
+ time financial information to more than 315,000 subscribers globally. Bloomberg&#39;s
1353
+ enterprise solutions build on the company&#39;s core strength, leveraging
1354
+ technology to allow customers to access, integrate, distribute and manage
1355
+ data and information across organizations more efficiently and effectively.
1356
+ Through Bloomberg Law, Bloomberg Government, Bloomberg New Energy Finance
1357
+ and Bloomberg BNA, the company provides data, news and analytics to decision
1358
+ makers in industries beyond finance. And Bloomberg News, delivered through
1359
+ the Bloomberg Professional service, television, radio, mobile, the Internet
1360
+ and three magazines, Bloomberg Businessweek, Bloomberg Markets and Bloomberg
1361
+ Pursuits, covers the world with more than 2,400 news and multimedia professionals
1362
+ at more than 150 bureaus in 73 countries. Headquartered in New York, Bloomberg
1363
+ employs more than 15,000 people in 192 locations around the world.</p>\n\n<p>Bloomberg
1364
+ is an equal opportunities employer and we welcome applications from all backgrounds
1365
+ regardless of race, colour, religion, sex, ancestry, age, marital status,
1366
+ sexual orientation, gender identity, disability or any other classification
1367
+ protected by law.</p>\n","how_to_apply":"<p><a href=\"http://goo.gl/z78Nnx\">http://goo.gl/z78Nnx</a></p>\n","company":"Bloomberg
1368
+ L.P.","company_url":"http://www.bloomberg.com","company_logo":"http://github-jobs.s3.amazonaws.com/7f521fbc-7f52-11e3-958b-b9195354f49f.jpg","url":"http://jobs.github.com/positions/87f54860-7f52-11e3-93fc-490482a3b252"},{"id":"42f38bb0-7f51-11e3-9365-34ac3fcf398a","created_at":"Mon
1369
+ Feb 17 08:27:54 UTC 2014","title":"R&D Real-Time Market Data Senior Software
1370
+ Developer","location":"New York, NY","type":"Full Time","description":"<p><strong>The
1371
+ Role:</strong></p>\n\n<p>R&amp;D Real-Time Market Data is seeking a strong
1372
+ C++ developer with a passion for building robust, high performance software.
1373
+ Our group builds real-time feed handlers for a wide variety of the most important
1374
+ financial data sources from all over the world, like the New York Stock Exchange,
1375
+ the Tokyo Stock Exchange, and the Bank of England. The typical role of our
1376
+ software is to receive external data over a network and publish it as a normalized
1377
+ stream to Bloomberg applications, databases, and/or pricing distribution services.
1378
+ The challenges we work on include reducing latencies, expanding content, and
1379
+ continuously improving the scalability and maintainability of the system.</p>\n\n<p>The
1380
+ work environment is fast-paced, spirited and friendly. Expect to make immediate
1381
+ contributions to our production code. In addition to programming, you&#39;ll
1382
+ be involved in all aspects of the software development life cycle, from requirements
1383
+ planning and design, through to QC and troubleshooting.</p>\n\n<p><strong>Qualifications:</strong></p>\n\n<ul>\n<li>A
1384
+ minimum of 3 years of hands-on C++ development experience on Linux/UNIX</li>\n<li>Familiarity
1385
+ with multi-threading and networking protocols (e.g., TCP/IP, Multicast) preferred</li>\n<li>Exposure
1386
+ to a variety of languages and development environments a plus (e.g., Python,
1387
+ shell scripting, Java, Windows programming, etc.)</li>\n<li>Desire to learn
1388
+ new technologies and concepts</li>\n<li>Excellent analytical and problem-solving
1389
+ skills</li>\n<li>Ability to manage and aggressively push projects</li>\n<li>Knowledge
1390
+ of financial markets a plus</li>\n<li>Excellent communication, writing and
1391
+ organizational skills</li>\n</ul>\n\n<p><strong>The Company:</strong></p>\n\n<p>Bloomberg,
1392
+ the global business and financial information and news leader, gives influential
1393
+ decision makers a critical edge by connecting them to a dynamic network of
1394
+ information, people and ideas. The company&#39;s strength - delivering data,
1395
+ news and analytics through innovative technology, quickly and accurately -
1396
+ is at the core of the Bloomberg Professional service, which provides real
1397
+ time financial information to more than 315,000 subscribers globally. Bloomberg&#39;s
1398
+ enterprise solutions build on the company&#39;s core strength, leveraging
1399
+ technology to allow customers to access, integrate, distribute and manage
1400
+ data and information across organizations more efficiently and effectively.
1401
+ Through Bloomberg Law, Bloomberg Government, Bloomberg New Energy Finance
1402
+ and Bloomberg BNA, the company provides data, news and analytics to decision
1403
+ makers in industries beyond finance. And Bloomberg News, delivered through
1404
+ the Bloomberg Professional service, television, radio, mobile, the Internet
1405
+ and three magazines, Bloomberg Businessweek, Bloomberg Markets and Bloomberg
1406
+ Pursuits, covers the world with more than 2,400 news and multimedia professionals
1407
+ at more than 150 bureaus in 73 countries. Headquartered in New York, Bloomberg
1408
+ employs more than 15,000 people in 192 locations around the world.</p>\n\n<p>Bloomberg
1409
+ is an equal opportunities employer and we welcome applications from all backgrounds
1410
+ regardless of race, colour, religion, sex, ancestry, age, marital status,
1411
+ sexual orientation, gender identity, disability or any other classification
1412
+ protected by law.</p>\n","how_to_apply":"<p><a href=\"http://goo.gl/OBMzgj\">http://goo.gl/OBMzgj</a></p>\n","company":"Bloomberg
1413
+ L.P.","company_url":"http://www.bloomberg.com","company_logo":"http://github-jobs.s3.amazonaws.com/3e4f36b8-7f51-11e3-9a2e-a6a98366f4fd.jpg","url":"http://jobs.github.com/positions/42f38bb0-7f51-11e3-9365-34ac3fcf398a"},{"id":"1c65eb8e-7f4f-11e3-9523-2c51cc664ca1","created_at":"Mon
1414
+ Feb 17 08:12:30 UTC 2014","title":"Sr. Systems Reliability Engineer - Fixed
1415
+ Income Trading","location":"New York, NY","type":"Full Time","description":"<p><strong>The
1416
+ Role:</strong></p>\n\n<p>Want to be a part of the world&#39;s largest Fixed
1417
+ Income Trading (FIT) platform? </p>\n\n<p>FIT provides sophisticated front/middle/back
1418
+ office trading functionality across all Fixed Income asset classes. FIT has
1419
+ been rapidly growing over the years in all aspects (volume/usage/market share)
1420
+ and has been at the forefront of driving change in the evolving regulated
1421
+ marketplace. We are looking for System Reliability Engineers (SRE) who can
1422
+ help us deliver mission critical software for our clients.</p>\n\n<p>The SRE
1423
+ will be working closely with application teams to solve software testing/reliability
1424
+ issues in a holistic way. This position requires a sound understanding of
1425
+ applications from a technical and functional perspective to build harnesses
1426
+ into our SDLC process which will allow for automated and post roll out testing.
1427
+ Candidate would be working on infrastructure components which could proactively
1428
+ identify critical latency hogs and error detection based on heuristics.</p>\n\n<p><strong>Responsibilities:</strong></p>\n\n<ul>\n<li>Manage
1429
+ process for heuristics based error detection, monitoring and alerting.</li>\n<li>Build
1430
+ harnesses to automatically test core trading applications. This needs to be
1431
+ built in to the SDLC process and should encompass unit, replay, regression
1432
+ and post-roll out testing.</li>\n<li>Ability to instrument code/work flows
1433
+ and delve into low level technical details</li>\n<li>Review and suggest shared
1434
+ infrastructure components which help make our software robust.</li>\n</ul>\n\n<p><strong>Qualifications:</strong></p>\n\n<ul>\n<li>4+
1435
+ years of experience working on systems quality/reliability in a high throughput,
1436
+ complex system environment </li>\n<li>Bachelor&#39;s degree in Computer Science
1437
+ or equivalent</li>\n<li>Strong C/C++ coding skills on a Unix/Linux platform
1438
+ </li>\n<li>Strong database skills</li>\n<li>Strong Python, Perl, or scripting
1439
+ languages </li>\n<li>Strong system design skills</li>\n<li>Good analytical
1440
+ and problem-solving skills</li>\n</ul>\n\n<p><strong>The Company:</strong></p>\n\n<p>Bloomberg,
1441
+ the global business and financial information and news leader, gives influential
1442
+ decision makers a critical edge by connecting them to a dynamic network of
1443
+ information, people and ideas. The company&#39;s strength - delivering data,
1444
+ news and analytics through innovative technology, quickly and accurately -
1445
+ is at the core of the Bloomberg Professional service, which provides real
1446
+ time financial information to more than 315,000 subscribers globally. Bloomberg&#39;s
1447
+ enterprise solutions build on the company&#39;s core strength, leveraging
1448
+ technology to allow customers to access, integrate, distribute and manage
1449
+ data and information across organizations more efficiently and effectively.
1450
+ Through Bloomberg Law, Bloomberg Government, Bloomberg New Energy Finance
1451
+ and Bloomberg BNA, the company provides data, news and analytics to decision
1452
+ makers in industries beyond finance. And Bloomberg News, delivered through
1453
+ the Bloomberg Professional service, television, radio, mobile, the Internet
1454
+ and three magazines, Bloomberg Businessweek, Bloomberg Markets and Bloomberg
1455
+ Pursuits, covers the world with more than 2,400 news and multimedia professionals
1456
+ at more than 150 bureaus in 73 countries. Headquartered in New York, Bloomberg
1457
+ employs more than 15,000 people in 192 locations around the world.</p>\n\n<p>Bloomberg
1458
+ is an equal opportunities employer and we welcome applications from all backgrounds
1459
+ regardless of race, colour, religion, sex, ancestry, age, marital status,
1460
+ sexual orientation, gender identity, disability or any other classification
1461
+ protected by law.</p>\n","how_to_apply":"<p><a href=\"http://goo.gl/BbB9BP\">http://goo.gl/BbB9BP</a></p>\n","company":"Bloomberg
1462
+ L.P.","company_url":"http://www.bloomberg.com","company_logo":"http://github-jobs.s3.amazonaws.com/de186546-7f4e-11e3-9954-3bc799b457cd.jpg","url":"http://jobs.github.com/positions/1c65eb8e-7f4f-11e3-9523-2c51cc664ca1"},{"id":"44019f0e-7f4e-11e3-8d13-2c172431daaf","created_at":"Mon
1463
+ Feb 17 08:06:27 UTC 2014","title":"Senior Java Developer","location":"New
1464
+ York, NY","type":"Full Time","description":"<p><strong>The Role:</strong></p>\n\n<p>Join
1465
+ the fast moving Research &amp; Development team at Bloomberg Law. Through
1466
+ BloombergLaw.com and the Bloomberg Professional Service, we offer the integration
1467
+ of legal research, news, collaboration tools and market information that is
1468
+ unmatched in the industry. </p>\n\n<p>Bloomberg Law is looking for a senior
1469
+ Java Developer to help build out our Search and Data Navigation platform.
1470
+ The ideal candidate will have strong core Java programming skills, excellent
1471
+ problem solving and design skills and an appreciation for the scope and impact
1472
+ of their work. The candidate should also demonstrate a history of on time
1473
+ delivery, excellent communication, and a positive get-it-done attitude. Legal
1474
+ domain expertise and experience working on legal research platforms is a strong
1475
+ plus.</p>\n\n<p><strong>Qualifications:</strong></p>\n\n<ul>\n<li>BS in Computer
1476
+ Science/Computer Engineering or comparable experience</li>\n<li>5+ years of
1477
+ Core Java Programming experience in Unix/Linux environmen</li>\n<li>Solid
1478
+ understanding of Data Structures, Algorithms &amp; Object-Oriented design
1479
+ concepts</li>\n<li>Proficiency with relational database / SQL development</li>\n<li>Understanding
1480
+ of XML/XSD and other schema driven data</li>\n<li>Distributed systems / middleware
1481
+ / multithreaded experience</li>\n<li>Strong analytical and creative problem
1482
+ solving skills</li>\n<li>Team player with excellent communication skills</li>\n<li>.NET
1483
+ is a strong plus.</li>\n<li>Legal domain expertise &amp; experience working
1484
+ on legal research platforms a strong plus</li>\n</ul>\n\n<p><strong>The Company:</strong></p>\n\n<p>Bloomberg,
1485
+ the global business and financial information and news leader, gives influential
1486
+ decision makers a critical edge by connecting them to a dynamic network of
1487
+ information, people and ideas. The company&#39;s strength - delivering data,
1488
+ news and analytics through innovative technology, quickly and accurately -
1489
+ is at the core of the Bloomberg Professional service, which provides real
1490
+ time financial information to more than 315,000 subscribers globally. Bloomberg&#39;s
1491
+ enterprise solutions build on the company&#39;s core strength, leveraging
1492
+ technology to allow customers to access, integrate, distribute and manage
1493
+ data and information across organizations more efficiently and effectively.
1494
+ Through Bloomberg Law, Bloomberg Government, Bloomberg New Energy Finance
1495
+ and Bloomberg BNA, the company provides data, news and analytics to decision
1496
+ makers in industries beyond finance. And Bloomberg News, delivered through
1497
+ the Bloomberg Professional service, television, radio, mobile, the Internet
1498
+ and three magazines, Bloomberg Businessweek, Bloomberg Markets and Bloomberg
1499
+ Pursuits, covers the world with more than 2,400 news and multimedia professionals
1500
+ at more than 150 bureaus in 73 countries. Headquartered in New York, Bloomberg
1501
+ employs more than 15,000 people in 192 locations around the world.</p>\n\n<p>Bloomberg
1502
+ is an equal opportunities employer and we welcome applications from all backgrounds
1503
+ regardless of race, colour, religion, sex, ancestry, age, marital status,
1504
+ sexual orientation, gender identity, disability or any other classification
1505
+ protected by law.</p>\n","how_to_apply":"<p><a href=\"http://goo.gl/9epKT0\">http://goo.gl/9epKT0</a></p>\n","company":"Bloomberg
1506
+ L.P.","company_url":"http://www.bloomberg.com","company_logo":"http://github-jobs.s3.amazonaws.com/2f6b20f6-7f4e-11e3-99f1-307f2ba3091f.jpg","url":"http://jobs.github.com/positions/44019f0e-7f4e-11e3-8d13-2c172431daaf"},{"id":"56b094fe-9789-11e3-977c-2ac048a05132","created_at":"Mon
1507
+ Feb 17 04:11:32 UTC 2014","title":"Full-Stack Ruby on Rails Engineer","location":"Washington,
1508
+ DC","type":"Full Time","description":"<p>Contactually is a SaaS relationship
1509
+ marketing platform. Launched in 2011, Contactually is considered one of the
1510
+ leading CRM innovators. We&#39;re expanding our engineering team, and looking
1511
+ to bring on additional contributors to our small and fast-moving product team.
1512
+ </p>\n\n<p>Technologies you&#39;ll be working with:</p>\n\n<ul>\n<li>Ruby
1513
+ on Rails (latest and greatest)</li>\n<li>Postgres</li>\n<li>MongoDB</li>\n<li>ElasticSearch</li>\n<li>Redis</li>\n<li>Loads
1514
+ of APIs and other technologies being used daily.</li>\n</ul>\n\n<p>What you&#39;ll
1515
+ be doing:</p>\n\n<ul>\n<li>Be part of a dynamic, always-improving engineering
1516
+ organization</li>\n<li>Working daily to improve + deliver SaaS used by many
1517
+ thousands of people every day.</li>\n<li>Working directly with our passionate
1518
+ (and paying) user base</li>\n<li>Seeing instant results on features we ship</li>\n<li>Having
1519
+ the opportunity to work beyond just engineering, but interact with design,
1520
+ product, sales, customer service, finance - see what it&#39;s like inside
1521
+ a growing startup.</li>\n<li>Have a large prominent presence in the DC Tech
1522
+ community, including many opportunities for personal development, speaking,
1523
+ and networking</li>\n</ul>\n\n<p>Did we mention we have dogs in the office?!</p>\n","how_to_apply":"<p>Email
1524
+ <a href=\"mailto:jobs@contactually.com\">jobs@contactually.com</a> with your
1525
+ resume and any useful links.</p>\n","company":"Contactually","company_url":null,"company_logo":"http://github-jobs.s3.amazonaws.com/334c670e-9789-11e3-87b3-8a4555747a97.png","url":"http://jobs.github.com/positions/56b094fe-9789-11e3-977c-2ac048a05132"},{"id":"269a59e4-977f-11e3-9ff2-fd28ab6c28bd","created_at":"Mon
1526
+ Feb 17 02:58:00 UTC 2014","title":"Elastic Search / Ruby Engineers","location":"Washington,
1527
+ DC","type":"Full Time","description":"<p>Talented web developers who are equally
1528
+ excited to work with new search technologies and develop Ruby based apps.
1529
+ </p>\n\n<p>We seek people who want to turn see that $70 billion spent on IT
1530
+ turn into applications for taxpayers.</p>\n\n<p>All skill levels are needed.
1531
+ There is a lot of work to do.</p>\n\n<p>You must:</p>\n\n<ul>\n<li>want to
1532
+ build robust, scalable applications</li>\n<li>passion to make customers happy</li>\n<li>collaborators
1533
+ who thrive in small teams</li>\n<li>willing to write code based on industry
1534
+ best practices</li>\n</ul>\n\n<p>To apply, email us a resume to <a href=\"mailto:jobs@govwizely.com\">jobs@govwizely.com</a>.</p>\n","how_to_apply":"<p>Email
1535
+ <a href=\"mailto:jobs@govwizely.com\">jobs@govwizely.com</a></p>\n","company":"GovWizely","company_url":"http://www.govwizely.com","company_logo":"http://github-jobs.s3.amazonaws.com/21a3b160-977f-11e3-96b2-9302ebe50cc3.png","url":"http://jobs.github.com/positions/269a59e4-977f-11e3-9ff2-fd28ab6c28bd"},{"id":"335c5e84-7a56-11e3-93e6-4636e2123a0d","created_at":"Fri
1536
+ Feb 14 21:59:47 UTC 2014","title":"Senior Android Engineer","location":"Austin,
1537
+ TX","type":"Full Time","description":"<p><strong>Why work for Mutual Mobile?</strong>
1538
+ We craft beautiful mobile interfaces and solve complex software challenges.
1539
+ Clients such as Google, lynda.com, Citi, and Xerox come to us for our deep
1540
+ experience in mobile \u2014 from establishing a mobile strategy that provides
1541
+ impactful business value, to building those solutions from the ground up.
1542
+ We bring together the brightest minds in interactive &amp; visual design,
1543
+ engineering, and business to deliver solutions that actually matter.</p>\n\n<p><strong>As
1544
+ a Senior Android Engineer at Mutual Mobile,</strong> you\u2019ll be a technical
1545
+ lead and mentor. You will guide our project teams by creating technical designs,
1546
+ writing user stories, and grooming the backlog. You will promote and champion
1547
+ best technical practices with both our clients and your team. You will help
1548
+ to manage the customer relationship, perform code reviews, triage bugs, and
1549
+ manage releases.</p>\n\n<p>Don\u2019t have professional experience developing
1550
+ for Android? That\u2019s okay, we welcome developers from different platform
1551
+ backgrounds. Perhaps you only have experience working with Android as a hobby
1552
+ \u2014 If you have the Technical Lead experience to join and lead our teams,
1553
+ we\u2019d love to talk.</p>\n\n<p><strong>You will excel in this position</strong>
1554
+ if you have many years of experience with writing Java code for enterprise
1555
+ systems. You\u2019re an active coder with an eye for User Interface and Visual
1556
+ Design, and have the ability to code both back and front-end deliverables.
1557
+ You clearly understand Test Driven Development, and can write code that is
1558
+ wrapped with unit, integration, and system tests when applicable. You\u2019re
1559
+ an industry expert: you clearly understand the SOLID principles, dependency
1560
+ injection, mocking, and domain modeling techniques. Most importantly, you
1561
+ have the ability to architect a software system that exceeds the expectations
1562
+ of the customer.</p>\n\n<p>Preferably, you have experience dealing with cross-functional
1563
+ teams across several countries, as you\u2019ll work with everyone--clients,
1564
+ PMs, UX/UI designers, and mobile engineers--to coordinate successful project
1565
+ completions. You\u2019re a kind, pragmatic communicator with a working knowledge
1566
+ of an Agile environment. </p>\n\n<p><strong>You\u2019ll love working here</strong>,
1567
+ because this isn\u2019t a company of silos. We empower our team members to
1568
+ pursue cool ideas, think for themselves, and make mistakes. We won\u2019t
1569
+ subject you to our current systems and processes--we\u2019ll expect you to
1570
+ improve them. You won\u2019t get bored. We know you\u2019re smart, and that
1571
+ you love learning new technologies--so we\u2019ll put you to work on a variety
1572
+ of projects across several platforms, and with many different types of people.</p>\n","how_to_apply":"<p>To
1573
+ apply, visit: <a href=\"http://careers.mutualmobile.com/apply?j=a1nF0000002JK4h\">http://careers.mutualmobile.com/apply?j=a1nF0000002JK4h</a></p>\n","company":"Mutual
1574
+ Mobile","company_url":"http://www.mutualmobile.com","company_logo":"http://github-jobs.s3.amazonaws.com/2f3a33ee-7a56-11e3-9a80-bcb088c1b926.jpg","url":"http://jobs.github.com/positions/335c5e84-7a56-11e3-93e6-4636e2123a0d"},{"id":"9b879cba-95bf-11e3-8fc2-47365b70e5ed","created_at":"Fri
1575
+ Feb 14 21:33:45 UTC 2014","title":"Senior Software Engineer","location":"New
1576
+ York, NY","type":"Full Time","description":"<p>At Gilt, we endorse making
1577
+ mistakes\u2014if it leads to better systems. We use non-mainstream technologies
1578
+ if they get the job done. We trust each other to work autonomously, and decentralize
1579
+ decision-making to eliminate friction. Anyone on our team, from first-time
1580
+ bloggers to experienced writers, can publish to our Tech Blog, give a presentation,
1581
+ or organize a meetup. We strive to create the best and most stimulating work
1582
+ environment possible, and invite you to become a part of it. Interested? If
1583
+ so, keep reading!</p>\n\n<p><b>The Opportunity</b></p>\n\n<p>As a Gilt engineer,
1584
+ you\u2019ll become part of a team that values open source technologies, solves
1585
+ challenging and unique problems, and innovates quickly. Our teams are small
1586
+ enough to make fast decisions, yet our audience is large enough that our work
1587
+ makes a tremendous impact. We challenge ourselves technically to combat complexity
1588
+ and build fast, clear, flexible code. We iterate in tight loops, and devise
1589
+ creative solutions to difficult problems that must be solved at scale by understanding
1590
+ business needs and creating software to manage them. You\u2019ll be encouraged
1591
+ to take risks, from developing your own grassroots projects to submitting
1592
+ proposals to prestigious tech conferences. Your main responsibility is to
1593
+ architect and design good software, write great code, and positively influence
1594
+ your team.</p>\n\n<p><b>Technology</b></p>\n\n<p>\u25cf Scala, Play, Java,
1595
+ Ruby, Rails, Javascript, Apache Camel, Kafka, PostgreSQL, Mongo, Solr\u2026</p>\n\n<p>\u25cf Be
1596
+ on the leading edge of development paradigms, personalization, algorithms,
1597
+ service delivery, data at scale, continuous delivery and non-traditional technical
1598
+ management</p>\n\n<p>\u25cf Build microservices and lots of small applications
1599
+ that work together to support our international business</p>\n\n<p>\u25cf We
1600
+ have a large legacy of Java and Ruby; however we all create new stuff, and
1601
+ help keep the old stuff working</p>\n\n<p><b>About You</b></p>\n\n<p>Your
1602
+ passion for great technology will drive you to identify solutions to existing
1603
+ problems and discover better ways to help us innovate faster and better. You\u2019ll
1604
+ build and maintain strong relationships with internal and external customers,
1605
+ and prioritize your work in alignment with the needs of these customers. You\u2019ll
1606
+ know when to push back on requirements that fall outside of a project\u2019s
1607
+ scope and work well collaborating in a team to achieve team goals. We&#39;re
1608
+ obsessed with every tiny detail of the user experience, and we want you to
1609
+ be, too.</p>\n\n<p>We\u2019re looking for somebody who offers the the following:</p>\n\n<p>\u25cf Ability
1610
+ and desire to mentor others</p>\n\n<p>\u25cf Demonstrates and communicates
1611
+ technical best practices and influence your team to do the same</p>\n\n<p>\u25cf Takes
1612
+ ownership of services and application at scale</p>\n\n<p>\u25cf Makes
1613
+ informed decisions quickly, and take the lead in complex situations</p>\n\n<p>\u25cf Demonstrates
1614
+ persistence and creativity in problem-solving</p>\n\n<p>\u25cf Is cool
1615
+ and effective in a crisis</p>\n\n<p><b>Technical Requirements</b></p>\n\n<p>\u25cf Programming
1616
+ expertise: functional style, imperative style, object-orientation</p>\n\n<p>\u25cf SQL
1617
+ and relational databases (Postgres, MySQL, Oracle) and NoSQL databases (MongoDB,
1618
+ Voldemort, Apache Cassandra)</p>\n\n<p>\u25cf Linux/Unix (Red Hat, CentOS,
1619
+ Ubuntu, Mac OS)</p>\n\n<p>\u25cf Source code management (Git, Gerrit)</p>\n\n<p>\u25cf Continuous
1620
+ integration (Jenkins) and delivery</p>\n\n<p>\u25cf Cloud technologies
1621
+ (EC2, Apache Cloudstack, Openstack)</p>\n\n<p>\u25cf Standards (HTTP,
1622
+ JSON, JAX-*, XML)</p>\n\n<p>\u25cf Experience or interest developing
1623
+ mobile applications or data-driven, algorithm based engines (ad targeting,
1624
+ content personalization, real-time social stream processing) using Hadoop
1625
+ or Storm is a plus.</p>\n\n<p>During the interview process, we hope to learn
1626
+ something from you: expertise about a new technology; insight into a trend;
1627
+ a novel approach to solving a problem\u2014something we don\u2019t know yet.
1628
+ What\u2019s your potential? What can you bring that no one else can? What
1629
+ open source projects can you share with us? We can\u2019t wait to hear from
1630
+ you!</p>\n\n<p><b>About Gilt</b><br>\nGilt.com is an innovative global leader
1631
+ in online flash sale e-commerce, allowing millions of members special access
1632
+ to the most inspiring merchandise and experiences every day at insider prices.
1633
+ Gilt continually searches the world for the most coveted brands and products,
1634
+ including fashion for women, men, and children; home decor; and unique activities
1635
+ in select cities and destinations. We believe that every day is an opportunity
1636
+ to inspire and be inspired.</p>\n","how_to_apply":"<p><a href=\"https://hire.jobvite.com/j?aj=opWkYfwn&s=GitHub\">Click
1637
+ here to apply</a></p>\n","company":"Gilt Groupe","company_url":null,"company_logo":"http://github-jobs.s3.amazonaws.com/90705056-95bf-11e3-8efc-5876b018d158.jpg","url":"http://jobs.github.com/positions/9b879cba-95bf-11e3-8fc2-47365b70e5ed"},{"id":"0e2a16e8-95bc-11e3-934a-0329ced59e97","created_at":"Fri
1638
+ Feb 14 21:08:20 UTC 2014","title":"Sr. Frontend Engineer","location":"San
1639
+ Francisco. CA","type":"Full Time","description":"<p><strong>About Delightful</strong></p>\n\n<p>We&#39;re
1640
+ tired of boring dates and dull relationships, so we&#39;re building Delightful,
1641
+ a personalized date concierge service for the masses. Currently in open beta
1642
+ in San Francisco, our team of local experts finds, curates, and plans amazing
1643
+ dates built for two. That&#39;s just the start! Whether it&#39;s your 1st
1644
+ date or 10th anniversary, Delightful is building the platform to help you
1645
+ grow and develop your relationship. </p>\n\n<p><strong>What you\u2019ll do</strong></p>\n\n<ul>\n<li>Work
1646
+ closely with our small design and development teams to implement the features
1647
+ Delightful users interact with everyday</li>\n<li>Take features from the design
1648
+ stage through to production</li>\n<li>Work closely with the design team to
1649
+ create UX that is beautiful and intuitive</li>\n<li>Write and optimize Object
1650
+ Oriented JavaScript for new and existing interface components</li>\n<li>Define
1651
+ and maintain a consistent DOM and CSS structure across the site </li>\n</ul>\n\n<p><strong>What
1652
+ you need to land an interview</strong></p>\n\n<ul>\n<li>You&#39;ve built the
1653
+ front end of some cool web apps </li>\n<li>Expertise in CSS3, Sass, HTML5,
1654
+ browser compatibility, and responsive web design</li>\n<li>Solid Javascript</li>\n<li>Team-oriented
1655
+ personality</li>\n<li>A willingness to give (and receive) feedback, iterate,
1656
+ and discover better solutions</li>\n<li>An eye for creating awesome user experiences</li>\n</ul>\n\n<p><strong>Working
1657
+ here you&#39;ll enjoy</strong></p>\n\n<ul>\n<li>Competitive salary &amp; benefits,
1658
+ including Medical, Dental, Vision, and 401k.</li>\n<li>Non-dogmatic process</li>\n<li>Flexible
1659
+ hours and unlimited personal days</li>\n<li>Machine and gear of your choice</li>\n<li>Free
1660
+ drinks, snacks, and regular catered lunch</li>\n</ul>\n","how_to_apply":"<p>Please
1661
+ share your resume/code repo with us:</p>\n\n<p><a href=\"http://jobs.delightful.com/apply/DgHOAe/Sr-Frontend-Engineer.html?source=Github\">http://jobs.delightful.com/apply/DgHOAe/Sr-Frontend-Engineer.html?source=Github</a></p>\n","company":"Delightful","company_url":"http://www.delightful.com","company_logo":"http://github-jobs.s3.amazonaws.com/f0e76dc4-95bb-11e3-999d-313825b2c54b.png","url":"http://jobs.github.com/positions/0e2a16e8-95bc-11e3-934a-0329ced59e97"},{"id":"6845802c-95ad-11e3-923a-9ce2481bc6fe","created_at":"Fri
1662
+ Feb 14 19:23:19 UTC 2014","title":"Senior UI/UX Designer","location":"Remote","type":"Full
1663
+ Time","description":"<p>We\u2019re looking for a full-time designer to join
1664
+ the Wildbit team. You should be able to do a full cycle, from gathering requirements
1665
+ to prototyping UI to designing and then implementing it with HTML, CSS and
1666
+ JS. This position requires great UI and graphic design skills, impeccable
1667
+ attention to detail, and an understanding of interaction design and usability
1668
+ best practices. It\u2019s a big role to fill.</p>\n\n<p>You will be working
1669
+ on three fast growing, profitable web services: <a href=\"http://beanstalkapp.com\">Beanstalk</a>,
1670
+ <a href=\"http://postmarkapp.com\">Postmark</a>, <a href=\"http://dploy.io\">dploy.io</a>.</p>\n\n<p><strong>Requirements:</strong></p>\n\n<ul>\n<li>Portfolio
1671
+ with examples of interface design and code samples</li>\n<li>Experience designing
1672
+ large scale web products</li>\n<li>HTML, CSS, Sass and Compass</li>\n<li>JavaScript
1673
+ and jQuery is a plus</li>\n</ul>\n\n<p><strong>What\u2019s it like working
1674
+ with Wildbit?</strong> We\u2019re like a family, most of us working out of
1675
+ our office in Old City, Philadelphia, and a few people in Ukraine and Serbia.
1676
+ We value quiet time, beautiful design, and clean code. We take our work very
1677
+ seriously and expect each person to be self motivated (no babysitting here).
1678
+ Of course, we also have a lot of fun. At least once per year we have a company
1679
+ retreat in a large villa for a week. Past retreats include Spain, Greece,
1680
+ Cyprus and Turkey. We have family lunches each day in the office, prepared
1681
+ by the Wildbit chef. We also do our fair share of happy hours with the team.</p>\n\n<p><strong>Benefits:</strong></p>\n\n<ul>\n<li>Chef
1682
+ prepared lunches (at Philadelphia office)</li>\n<li>25 PTO days</li>\n<li>Profit
1683
+ sharing</li>\n<li>Full benefits</li>\n<li>Best hardware possible to get the
1684
+ job done</li>\n</ul>\n\n<p><strong>Location:</strong> Philadelphia or Remote</p>\n","how_to_apply":"<p>To
1685
+ apply, email <a href=\"mailto:jobs@wildbit.com\">jobs@wildbit.com</a> with
1686
+ the subject UI Designer.</p>\n\n<p>Please include examples of interface design
1687
+ and front-end code samples.</p>\n","company":"Wildbit (Postmark / Beanstalk)","company_url":"http://wildbit.com","company_logo":"http://github-jobs.s3.amazonaws.com/40a581ac-95ad-11e3-8680-6dc16113901c.png","url":"http://jobs.github.com/positions/6845802c-95ad-11e3-923a-9ce2481bc6fe"},{"id":"aa8dc396-95ac-11e3-82e1-a4ebb52ad689","created_at":"Fri
1688
+ Feb 14 19:18:05 UTC 2014","title":"Operations Engineer | DevOps","location":"Anywhere","type":"Full
1689
+ Time","description":"<p>We&#39;re looking for someone to join our operations
1690
+ team for running all three products: <a href=\"http://postmarkapp.com\">Postmark</a>,
1691
+ <a href=\"http://beanstalkapp.com\">Beanstalk</a>, and <a href=\"http://dploy.io\">dploy.io</a>.
1692
+ We run a fully managed environment of purchased hardware hosted in one of
1693
+ the most advanced data centers in the midwest (with ServerCentral). Our infrastructure
1694
+ is made up of a variety of server configurations, including all SSD storage,
1695
+ 10GbE networking and large ZFS servers for storing many TB&#39;s of Beanstalk
1696
+ repositories. We use a combination of tools for monitoring such as Zenoss,
1697
+ New Relic, statsd, pingdom and in-house custom tools built on selenium and
1698
+ jenkins.</p>\n\n<p>You&#39;ll work with the developers and operations team
1699
+ to build new servers, automate our process, and monitor performance and uptime.
1700
+ Our stack includes Ruby / Rails, Clojure and .Net. We use a variety of systems
1701
+ to run our products, including RabbitMQ, Redis, Cloudant, Elastic Search,
1702
+ and MySQL. Most of our servers run CentOS and OmniOS, with some Windows servers.</p>\n\n<p><strong>Responsibilities:</strong></p>\n\n<ul>\n<li>Maintain
1703
+ and improve existing infrastructure to meet demands of each service</li>\n<li>Improve
1704
+ automation tools and processes (Chef)</li>\n<li>Coordinate maintenance or
1705
+ updates between developer needs and operations</li>\n<li>Coordinate with data
1706
+ center on new servers or networking changes</li>\n<li>Emergency incident response
1707
+ and diagnosis of system outages or alerts</li>\n<li>Write and update internal
1708
+ documentation of systems and processes</li>\n</ul>\n\n<p><strong>Requirements:</strong></p>\n\n<ul>\n<li>5+
1709
+ years in an operations role</li>\n<li>Worked on large scale web applications</li>\n<li>Ability
1710
+ to define physical server specs (but not building them)</li>\n<li>Experience
1711
+ with operating system internals, file systems, and server architectures</li>\n<li>Strong
1712
+ focus on open source stack</li>\n<li>Experience managing MySQL with DRBD</li>\n<li>Familiar
1713
+ with automation tools (we use Chef)</li>\n</ul>\n\n<p><strong>Nice to have:</strong></p>\n\n<ul>\n<li>OmniOS,
1714
+ Illumos, or Solaris experience</li>\n<li>Experience with ZFS</li>\n<li>Understanding
1715
+ of SMTP and Postfix</li>\n</ul>\n\n<p><strong>What\u2019s it like working
1716
+ with Wildbit?</strong> We\u2019re like a family, most of us working out of
1717
+ our office in Old City, Philadelphia, and a few people in Ukraine and Serbia.
1718
+ We value quiet time, beautiful design, and clean code. We take our work very
1719
+ seriously and expect each person to be self motivated (no babysitting here).
1720
+ Of course, we also have a lot of fun. At least once per year we have a company
1721
+ retreat in a large villa for a week. Past retreats include Spain, Greece,
1722
+ Cyprus and Turkey. We have family lunches each day in the office, prepared
1723
+ by the Wildbit chef. We also do our fair share of happy hours with the team.</p>\n\n<p><strong>Benefits:</strong></p>\n\n<ul>\n<li>Chef
1724
+ prepared lunches (at Philadelphia office)</li>\n<li>25 PTO days</li>\n<li>Profit
1725
+ sharing</li>\n<li>Full benefits</li>\n<li>Best hardware possible to get the
1726
+ job done</li>\n</ul>\n\n<p><strong>Location:</strong> Philadelphia or Remote</p>\n","how_to_apply":"<p>To
1727
+ apply, email <a href=\"mailto:jobs@wildbit.com\">jobs@wildbit.com</a> with
1728
+ the subject Operations.</p>\n\n<p>We&#39;d love to hear how you are a good
1729
+ fit and what you can contribute to the growth of our infrastructure and products.</p>\n","company":"Wildbit
1730
+ (Postmark / Beanstalk)","company_url":"http://wildbit.com","company_logo":"http://github-jobs.s3.amazonaws.com/86814b6c-95ac-11e3-97c5-dee9f16e6b5f.png","url":"http://jobs.github.com/positions/aa8dc396-95ac-11e3-82e1-a4ebb52ad689"},{"id":"d49d14e6-95a9-11e3-93c5-f5721a16bd4b","created_at":"Fri
1731
+ Feb 14 18:59:13 UTC 2014","title":"Web Developer","location":"Santa Monica,
1732
+ CA","type":"Full Time","description":"<p>We are a startup owned by a publicly
1733
+ traded media giant. We are looking to hire a talented software engineer with
1734
+ extensive backend and fronted skills. The type of person who can write scalable,
1735
+ clean code and handle data sets in the millions who takes pride in delivery
1736
+ fully functional scalable products. You will be developing consumer facing
1737
+ internet applications that integrate with some of the internets most well
1738
+ known brands. If you are passionate about reaching millions of users and making
1739
+ great experiences this is a great opportunity for you. </p>\n\n<p>We have
1740
+ a results driven culture. You can work remote. </p>\n\n<p>Skills &amp; Requirements</p>\n\n<p>PHP,
1741
+ Javascript, Html/css, AWS server management, Mysql</p>\n","how_to_apply":"<p>Email
1742
+ resume: <a href=\"mailto:joshuapaul891@gmail.com\">joshuapaul891@gmail.com</a></p>\n","company":"MV
1743
+ Labs","company_url":null,"company_logo":"http://github-jobs.s3.amazonaws.com/ca4d5410-95a9-11e3-9aef-2fd03186115a.png","url":"http://jobs.github.com/positions/d49d14e6-95a9-11e3-93c5-f5721a16bd4b"},{"id":"f1e8a6bc-959c-11e3-872c-c127c16cd732","created_at":"Fri
1744
+ Feb 14 17:25:28 UTC 2014","title":"Network Engineer","location":"Portland,
1745
+ OR","type":"Full Time","description":"<p>New Relic</p>\n\n<p>Network Engineer</p>\n\n<p>Portland,
1746
+ OR</p>\n\n<p>New Relic designs systems that handle over 200 billion metrics
1747
+ per day, and we need your help. The software we have has gotten us far, but
1748
+ we are investing a huge amount in the next steps in our company evolution. And
1749
+ that is going to mean growing and recreating a lot of our infrastructure while
1750
+ incorporating all we\u2019ve learned in the process.</p>\n\n<p>We\u2019re
1751
+ looking for an exceptionally talented network engineer to take the lead in
1752
+ designing &amp; building an ever-expanding infrastructure to support operations
1753
+ across multiple datacenters.</p>\n\n<p>The successful candidate has proven
1754
+ experience in maintaining production servers, enjoys fixing misbehaving servers
1755
+ and is passionate about writing tools to automate our operations and development
1756
+ processes. </p>\n\n<p>Your core responsibilities will be to:</p>\n\n<ul>\n<li>Help,
1757
+ design, scale &amp; automate the management of New Relic infrastructure</li>\n<li>Support,
1758
+ troubleshoot &amp; maintain production infrastructure</li>\n</ul>\n\n<p>And
1759
+ in order to be successful, you should have the skills &amp; experience in
1760
+ the following:</p>\n\n<ul>\n<li>5+ years of solid Linux system administration
1761
+ experience in a 24x7 uptime environment</li>\n<li>Building networks from first
1762
+ principles rather than reference architecture designs</li>\n<li>Deep knowledge
1763
+ of fundamental networking concepts in switching and routing \u2013 a strong
1764
+ grasp of routing protocols like BGP and OSPF</li>\n<li>Familiar with high
1765
+ throughput SSL termination and load balancing with software and hardware based
1766
+ platforms.</li>\n<li>IPv6 or Software Defined Networking would be a great
1767
+ plus</li>\n<li>Experience of building automation and monitoring tools from
1768
+ scratch</li>\n<li>Ability to work well in a collaborative environment</li>\n<li>Excellent
1769
+ communicator</li>\n</ul>\n\n<p>To fast track your cover letter, please tell
1770
+ us about a time you introduced positive change to your team, and why you want
1771
+ to join our fun, dynamic company. And if your resume doesn&#39;t explain why
1772
+ networking engineering is a passion, you should add that to your cover letter
1773
+ as well.</p>\n\n<p>A little about us\nWe are passionate, possibly even crazy,
1774
+ about application performance management (APM). Our mission is to make web
1775
+ applications run better, to make the internet more productive, and to make
1776
+ life easier for developers and devops. We are turning the APM marketplace
1777
+ upside down by providing SaaS products that deliver high-value functionality
1778
+ previously only available through enterprise software. We are well above 80,000
1779
+ customers. And with your help we\u2019ll get to 10x that number.\nNew Relic
1780
+ is a San Francisco Best Places to Work award winner, an Oregon \u201cTop Workplace\u201d
1781
+ award winner, named a leader in the Gartner\u2019s 2013 \u201cMagic Quadrant\u201d
1782
+ for APM companies, a Top 100 OnDemand Company, Best of SaaS (THINKStrategies),
1783
+ Top 100 Coolest Cloud Computing (CRN); 10 Cloud Management Companies to Watch
1784
+ (NetworkWorld) \u2013 the list of accolades goes on. More important than all
1785
+ of that: we provide challenging work, opportunities to learn, high quality
1786
+ teammates, a standard-setting product, and a company on the move.</p>\n\n<p>This
1787
+ position is in our engineering headquarters in Portland, Oregon office, in
1788
+ a vibrant tech community and a region with a great quality of life. Although
1789
+ we are pre-IPO, we offer competitive compensation (including options) and
1790
+ big-company benefits (medical, dental, vision, life). We can help with relocation
1791
+ and are open to H1-B transfers.</p>\n\n<p>New Relic is most decidedly an equal
1792
+ opportunity employer. We seek applicants of diverse background and hire without
1793
+ regard to race, color, gender, religion, national origin, ancestry, citizenship,
1794
+ disability, age, sexual orientation, or any other characteristic protected
1795
+ by law. Note: Our stewardship of the data of tens of thousands of customers\u2019
1796
+ means that a criminal background check is required to join New Relic.</p>\n\n<p>To
1797
+ apply, please click on the link below and we look forward to talking to you.</p>\n\n<p><a
1798
+ href=\"http://bit.ly/1iWgrWN\">http://bit.ly/1iWgrWN</a></p>\n","how_to_apply":"<p>To
1799
+ apply, please click on the link below and we look forward to talking to you.</p>\n\n<p><a
1800
+ href=\"http://bit.ly/1iWgrWN\">http://bit.ly/1iWgrWN</a></p>\n","company":"New
1801
+ Relic","company_url":"http://www.newrelic.com","company_logo":null,"url":"http://jobs.github.com/positions/f1e8a6bc-959c-11e3-872c-c127c16cd732"},{"id":"4735867c-9574-11e3-8611-d4679b68cc73","created_at":"Fri
1802
+ Feb 14 12:36:10 UTC 2014","title":"Hadoopist/Data Science in the Zooniverse","location":"Oxford,
1803
+ UK","type":"Full Time","description":"<p>The Zooniverse team in the Department
1804
+ of Physics at The University of Oxford is expanding, and we&#39;re looking
1805
+ for a data scientist/Hadoopist with significant experience of designing and
1806
+ implementing \u2018big data\u2019 analysis systems. Responsible for leading
1807
+ the design of systems to support data analysis strategies for complex information
1808
+ environments, you will be working with data collected from citizen science
1809
+ projects on the Zooniverse.org platform including Galaxy Zoo and Planet Hunters.
1810
+ This role requires significant experience with the Hadoop stack (MapReduce,
1811
+ Pig, Hive etc.) in production environments.</p>\n\n<p>You&#39;ll be working
1812
+ in a team of 10, and collaborating with a remote team in Chicago, USA. We
1813
+ aim to use some of the best technology around and to provide cutting-edge
1814
+ tools to scientists using our platform. Big data analytics is something relatively
1815
+ new to the Zooniverse and so you\u2019ll have an opportunity to design the
1816
+ optimal system for our requirements. Ultimately your role is to help scientists
1817
+ derive more research value from the datasets we collect and to improve the
1818
+ efficiency and intelligence of the Zooniverse platform. Travel is available
1819
+ if you want it, and you&#39;ll get work in areas across research, including
1820
+ zoology, astronomy, medicine and the humanities.</p>\n\n<p>The deadline is
1821
+ the 28th February, and applications received after this date can&#39;t be
1822
+ considered.</p>\n","how_to_apply":"<p>Follow the instructions here : <a href=\"http://tinyurl.com/pshp6cr\">http://tinyurl.com/pshp6cr</a></p>\n\n<p>You&#39;ll
1823
+ need to upload a CV and a short statement of your interests.</p>\n","company":"Zooniverse.org","company_url":"http://www.zooniverse.org","company_logo":"http://github-jobs.s3.amazonaws.com/02b3f920-9574-11e3-816c-63f318dce521.png","url":"http://jobs.github.com/positions/4735867c-9574-11e3-8611-d4679b68cc73"},{"id":"e847870c-950d-11e3-8e97-762c3f78eba1","created_at":"Fri
1824
+ Feb 14 00:22:27 UTC 2014","title":"Senior FullStack Engineer","location":"Chicago,
1825
+ IL","type":"Full Time","description":"<p><strong>What We&#39;re Doing:</strong></p>\n\n<p>Engineers
1826
+ on the sales tooling team use the latest web technologies to develop applications
1827
+ that streamline the whole process of creating deals at Groupon. Our goal is
1828
+ to empower everyone involved with the tools they need to get a deal to market
1829
+ quickly, while ensuring that we maintain a high quality in the deals that
1830
+ get the Groupon rubber-stamp. </p>\n\n<p>We provide mapping and graphical
1831
+ calculation tools to help businesses understand the customers in their area
1832
+ and the kind of returns they could expect from their investment, with Groupon.
1833
+ Then, once a business is on board, we also provide the tools to help get those
1834
+ great deals out of their heads and onto our website. </p>\n\n<p>We are trying
1835
+ to put pen and paper out of business!</p>\n\n<p>These applications are a crucial
1836
+ part of growing our business beyond more than 200 million subscribers worldwide!</p>\n\n<p><strong>Who
1837
+ We&#39;re Looking For:</strong></p>\n\n<p>Are you a &quot;full-stack&quot;
1838
+ software engineer? Does SOA and REST bow in your presence, as you weave them
1839
+ into the &#39;Mona Lisa&#39; of web services?\nCan you bend HTML, CSS, and
1840
+ Javascript to your will, creating richly interactive applications for your
1841
+ customers?\nYou and your magic wand may just be what we are looking for. </p>\n\n<p>We
1842
+ are only just beginning to scratch the surface of how software can maximize
1843
+ efficiency at Groupon, so we are looking for talented engineers with great
1844
+ ideas on how we can take our applications to the next level.</p>\n\n<p><strong>Qualifications:</strong></p>\n\n<ul>\n<li>BS
1845
+ or MS in computer science or other technical degree preferred (Strong understanding
1846
+ of CS fundamentals).</li>\n<li>4+ years of experience.</li>\n<li>Proficient
1847
+ in one dynamic language (e.g. Ruby, Python, Perl).</li>\n<li>Proficient in
1848
+ modern web application design, including Javascript and its libraries (e.g.
1849
+ JQuery, -Backbone).</li>\n<li>Ability to learn and apply new technologies
1850
+ rapidly.</li>\n<li>Experience designing analytics dashboards &amp; interactive
1851
+ data visualizations a plus.<br></li>\n<li>Experience working with Agile methodologies
1852
+ is a plus.</li>\n</ul>\n\n<p><strong>Who We Are, How We Work</strong></p>\n\n<p>We
1853
+ provide a global marketplace where people can buy just about anything, anywhere,
1854
+ anytime. We&#39;re enabling real-time commerce across an expanding range of
1855
+ categories including local businesses, travel destinations, consumer products,
1856
+ and live or lively events. At the same time, we are providing advertising
1857
+ options and tools that merchants can use to grow and manage their businesses.
1858
+ Culturally, we believe that great people make great companies and that starting
1859
+ with the customer and working backward moves us forward. Community matters
1860
+ to us on an internal, local and global scale\u2014it&#39;s fundamental to
1861
+ our company&#39;s growth and to the well-being of the world at large. We also
1862
+ value self-awareness, candor, lunch and WiFi. If we match with you, please
1863
+ apply to join us.</p>\n","how_to_apply":"<p><a href=\"https://jobs.groupon.com/careers/engineering/software-engineer-sales-tooling-and-automation-chicago-il-united-states-5795/\">https://jobs.groupon.com/careers/engineering/software-engineer-sales-tooling-and-automation-chicago-il-united-states-5795/</a></p>\n","company":"Groupon","company_url":"https://jobs.groupon.com/careers/engineering/software-engineer-sales-tooling-and-automation-chicago-il-united-states-5795/","company_logo":null,"url":"http://jobs.github.com/positions/e847870c-950d-11e3-8e97-762c3f78eba1"},{"id":"25131fc6-94f9-11e3-8553-c254716ba9cf","created_at":"Thu
1864
+ Feb 13 21:53:15 UTC 2014","title":"Web Application Software Engineer (Java)","location":"Austin,
1865
+ TX","type":"Full Time","description":"<p><center><a href=\"https://www.companycareersite.com/JobDetails.aspx?key=%7e%7eEAAAAPS74QY1cKke29qb5jSXxGf375nqw1Nde6YtoPhHtDFl\"><img
1866
+ src=\"http://www.iam-life.com/common/images/ApplyOnline.gif\" style=\"border-width:0px;\"
1867
+ /></a></center></p>\n\n<p>We Are:\nWell-known across the globe for bringing
1868
+ the restaurant, retail and hospitality industries to the Cloud with our pioneering
1869
+ web &amp; mobile products, superior customer service \u2013 and the people
1870
+ who make this happen.</p>\n\n<p>Our Values: Because they are important to
1871
+ us!</p>\n\n<p>Service \u2013 We strive to delight our customers by anticipating
1872
+ their needs with simple, intuitive tools. We are serial entrepreneurs with
1873
+ a deep desire to do the right thing for our customers.</p>\n\n<p>Creativity
1874
+ \u2013 We believe to make real change; we must be the catalyst and bring unbridled
1875
+ enthusiasm for innovation and continuous improvement.</p>\n\n<p>Family \u2013
1876
+ We seek and reward intelligent team members who exude honesty, integrity and
1877
+ accountability. We believe diversity and transparency in thought, practice
1878
+ and culture is an asset, not a risk.</p>\n\n<p>Fun \u2013 We move fast, have
1879
+ fun and love what we do all while honoring work-life balance. We are intelligent
1880
+ risk-takers, never allowing blind enthusiasm to overtake reason.</p>\n\n<p>Humility
1881
+ \u2013 We are responsible to our customers, our team members and our investors
1882
+ equally, requiring professional courage and humility.</p>\n\n<p>Responsibility
1883
+ as a Software Engineer (Java Web Applications) \nReporting to the Director
1884
+ of Engineering the Web Application Software Engineer will help develop for
1885
+ HotSchedules&#39; premiere web-based scheduling, labor management, and forecasting
1886
+ product. Work with Product Management and UX engineers to implement new features
1887
+ per requirements. Develop appropriate unit tests for new feature development
1888
+ and work with QA engineers to define test cases. Participate in agile Scrum
1889
+ process for work estimation, collaboration, daily standups, and feature demos.</p>\n\n<p>Desired
1890
+ Skills and Experience:</p>\n\n<p>Strong Java programming knowledge with a
1891
+ demonstrated ability to write high performance and efficient code.\nThree
1892
+ or more years Java web based / SaaS application product development.\nThree
1893
+ or more years JDBC and SQL development.\nStrong knowledge of web technologies
1894
+ including CSS, HTML, and JavaScript.\nExperience with an MVC framework such
1895
+ as Struts or Spring.\nSolid understand of source control systems such as SVN
1896
+ and concepts such as branching, merging and reverting.\nKnowledge of defect
1897
+ tracking or customer issue tracking systems.</p>\n\n<p>Experience with the
1898
+ following is a plus:</p>\n\n<p>Mobile development\nAmazon EC2\nAPI development\nNode.js</p>\n\n<p>Qualifications:</p>\n\n<p>Only
1899
+ Austin, TX based candidates will be considered.\nBS/BA or 3 years equivalent
1900
+ experience\nStrong commitment to customer satisfaction and quality.\nExcellent
1901
+ written and oral communication skills.\nStrong team attitude a must.</p>\n","how_to_apply":"<p>Please
1902
+ apply online</p>\n\n<p><a href=\"https://www.companycareersite.com/JobDetails.aspx?key=%7e%7eEAAAAPS74QY1cKke29qb5jSXxGf375nqw1Nde6YtoPhHtDFl\">https://www.companycareersite.com/JobDetails.aspx?key=%7e%7eEAAAAPS74QY1cKke29qb5jSXxGf375nqw1Nde6YtoPhHtDFl</a></p>\n","company":"Red
1903
+ Book Connect","company_url":"https://www.companycareersite.com/JobDetails.aspx?key=%7e%7eEAAAAPS74QY1cKke29qb5jSXxGf375nqw1Nde6YtoPhHtDFl","company_logo":null,"url":"http://jobs.github.com/positions/25131fc6-94f9-11e3-8553-c254716ba9cf"},{"id":"4b5a5d88-94eb-11e3-8f9e-8b632822a671","created_at":"Thu
1904
+ Feb 13 20:15:39 UTC 2014","title":"Java Instrumentation Engineer","location":"Portland,
1905
+ OR","type":"Full Time","description":"<p>Java Instrumentation Engineer\nPortland,
1906
+ OR</p>\n\n<p>New Relic is looking for an experienced software engineer to
1907
+ join ourbworld-class Java Agent team. The Java Agent team ensures that New
1908
+ Relicbprovide the best possible experience for customers running Java, Scala,
1909
+ and other languages on the JVM.</p>\n\n<p>At New Relic, we provide our customers
1910
+ with instant and deep insight into their application\u2019s behavior and performance.
1911
+ With our SaaS-based application performance monitoring (APM) solution, we
1912
+ have our customer\u2019s backs by transparently instrumenting their application
1913
+ and reporting issues\u2014often before the customer knows that there\u2019s
1914
+ a problem. We give our customers as much information as possible to help them
1915
+ tune their site\u2019s performance and\nreliability.</p>\n\n<p>You are a senior
1916
+ developer who has built sophisticated web applications and Java tooling in
1917
+ a fast-paced agile environment. You keep an eye on industry trends and love
1918
+ to apply compelling new technologies. You are experienced in performance optimization
1919
+ and monitoring because you take pride in having a system that runs quickly
1920
+ and smoothly.</p>\n\n<p>You are ready for the next challenge: to dive deep
1921
+ into the JVM and frameworks to determine how to safely and efficiently monitor
1922
+ thousands of production applications. The Java Agent team tracks leading applications,
1923
+ frameworks, and libraries and uses innovative techniques to draw out performance
1924
+ data for that software. The constant change and innovation of technologies
1925
+ on the JVM provide a continual stream of interesting challenges. We improve
1926
+ as a team through ongoing collaboration, sharing of best practices, and refinement
1927
+ of our process.</p>\n\n<p>Working on an agent at New Relic means working with
1928
+ some of the brightest software engineers in the industry. In our polyglot
1929
+ environment, you would regularly share insight with engineers working in Ruby,
1930
+ PHP, C, Python, .NET, and Node.js. You may find yourself comparing implementation
1931
+ notes with an expert Python developer one day and pair programming with Ward
1932
+ Cunningham thebnext. By working across different technologies, work at New
1933
+ Relic borrows the best from many communities.</p>\n\n<p>At New Relic, we value:</p>\n\n<ul>\n<li>Work/Life
1934
+ Balance</li>\n<li>Respect</li>\n<li>Professional Growth</li>\n<li>Experimentation</li>\n</ul>\n\n<p>To
1935
+ fast track your cover letter please tell us about a time you introduced positive
1936
+ change to your team, and why you want to join our fun dynamic company.</p>\n\n<p>A
1937
+ little about us</p>\n\n<p>We are passionate, possibly even crazy, about application
1938
+ performance management (APM). Our mission is to make web applications run
1939
+ better, to make the internet more productive, and to make life easier for
1940
+ developers and devops. We are turning the APM marketplace upside down by providing
1941
+ SaaS products that deliver high-value functionality previously only available
1942
+ through enterprise software. We are well above 85,000 customers. And with
1943
+ your help we\u2019ll get to 10x that number.</p>\n\n<p>New Relic is a Oregon
1944
+ Top Workplaces 2013 award winner, a San Francisco Best Places to Work 2012
1945
+ award winner a Top 100 OnDemand Company, Best of SaaS (THINKStrategies), Top
1946
+ 100 Coolest Cloud Computing (CRN); 10 Cloud Management Companies to Watch
1947
+ (NetworkWorld); the list of accolades goes on. More important, we provide
1948
+ challenging work, opportunities to learn, high quality teammates, a standard-setting
1949
+ product, and a company on the move.</p>\n\n<p>This position is in our Portland,
1950
+ Oregon office, in a vibrant tech community and a region with a great quality
1951
+ of life. We offer competitive compensation, pre-IPO stock options, and big-company
1952
+ benefits (medical, dental, vision, life), while maintaining the energy, agility,
1953
+ and fun of a start-up. We can help with relocation and are open to H1-B transfers</p>\n\n<p>New
1954
+ Relic is most decidedly an equal opportunity employer. We seek applicants
1955
+ of diverse background and hire without regard to race, color, gender, religion,
1956
+ national origin, ancestry, citizenship, disability, age, sexual orientation,
1957
+ or any other characteristic protected by law. Note: Our stewardship of the
1958
+ data of many thousands of customers means that a criminal background check
1959
+ is required to join New Relic.</p>\n\n<p>To apply, please click on the link
1960
+ below and we look forward to talking to you.</p>\n\n<p><a href=\"http://bit.ly/1gcc0a6\">http://bit.ly/1gcc0a6</a></p>\n","how_to_apply":"<p>To
1961
+ apply, please click on the link below and we look forward to talking to you.</p>\n\n<p><a
1962
+ href=\"http://bit.ly/1gcc0a6\">http://bit.ly/1gcc0a6</a></p>\n","company":"New
1963
+ Relic","company_url":"http://www.newrelic.com","company_logo":null,"url":"http://jobs.github.com/positions/4b5a5d88-94eb-11e3-8f9e-8b632822a671"},{"id":"da38afd6-94e7-11e3-9737-8b50ef8b716d","created_at":"Thu
1964
+ Feb 13 19:49:37 UTC 2014","title":"User Interface Engineer","location":"New
1965
+ York City","type":"Full Time","description":"<p>About us</p>\n\n<p>We are
1966
+ RIDE.com, and we offer a smart, reliable and stress-free way to travel daily,
1967
+ while connecting people to a community of neighbors and coworkers. We are
1968
+ a fun team of engineers, designers and product experts with significant experience
1969
+ in real-time logistics and transportation. We are based in SoHo in New York
1970
+ City.</p>\n\n<p>About the position</p>\n\n<p>We&#39;re now looking for an
1971
+ engineer who will help us take our user interface to the next level. The
1972
+ following skills would be very helpful in making this happen:</p>\n\n<ul>\n<li>Ruby
1973
+ on Rails experience in production environments<br></li>\n<li>Awareness of
1974
+ cross-browser compatibility issue</li>\n<li>Exceptional proficiency using
1975
+ HTML/CSS/Javascript/AJAX </li>\n<li>Past experience and/or strong passion
1976
+ in building global websites and apps </li>\n<li>Demonstrated responsive design
1977
+ and UX sensibilities </li>\n<li>Rigor in A/B testing, test coverage, and other
1978
+ web best practices </li>\n<li>Exposure to architectural patterns of a large,
1979
+ high-scale web application</li>\n</ul>\n\n<p>Benefits</p>\n\n<ul>\n<li>Competitive
1980
+ salary</li>\n<li>Paid time off</li>\n<li>Medical, dental, &amp; vision insurance</li>\n<li>Life
1981
+ insurance and disability benefits</li>\n<li>401K</li>\n<li>Flexible Spending
1982
+ Accounts</li>\n<li>Apple equipment</li>\n</ul>\n\n<p>Position Requirements</p>\n\n<ul>\n<li>Bachelor&#39;s
1983
+ degree or a verifiable track record of delivering awesome things </li>\n<li>Authorization
1984
+ to work in the US</li>\n</ul>\n\n<p>Contact: </p>\n\n<p><a href=\"mailto:jobs@ride.com\">jobs@ride.com</a></p>\n","how_to_apply":"<p>Send
1985
+ your LinkedIn profile, GitHub portfolio, resume, website, or whatever you
1986
+ think will show your skills and experience! <a href=\"mailto:jobs@ride.com\">jobs@ride.com</a></p>\n","company":"RIDE","company_url":"http://ride.com/udel","company_logo":"http://github-jobs.s3.amazonaws.com/bbf4ed20-94e5-11e3-8ca5-ef961fcb0943.png","url":"http://jobs.github.com/positions/da38afd6-94e7-11e3-9737-8b50ef8b716d"},{"id":"4a06faa6-94e4-11e3-99ee-148c71e4ec5c","created_at":"Thu
1987
+ Feb 13 19:24:16 UTC 2014","title":"Part-Time Ruby Developer","location":"US
1988
+ Based","type":"Contract","description":"<p>FlexJobs is the leading job service
1989
+ for jobs that offer work flexibility. Our purpose is to make it easier, faster,
1990
+ and safer for people to find professional remote, part-time, freelance, flexible,
1991
+ or alternative schedule jobs. We believe that the job-search experience in
1992
+ general is pretty terrible, and there are big opportunities to improve the
1993
+ process, especially with highly desired and difficult-to-find types of jobs.
1994
+ We provide a clean and valuable experience for our job-seeking clients with
1995
+ a low-cost subscription model. </p>\n\n<p>We are looking to hire a talented
1996
+ Ruby Developer to join our fantastic\u2014and completely virtual\u2014company.
1997
+ This is a part-time, long term contract role, with the possibility of developing
1998
+ into a full-time position down the road.</p>\n\n<p>Must be skilled in Ruby,
1999
+ Rails, HTML 5, XML, jQuery, git, remote development</p>\n\n<p>More specifically,
2000
+ our ideal candidates will:</p>\n\n<p>Have 2+ years of Ruby on Rails version
2001
+ 3 / 4 production development experience\nBe comfortable working independently
2002
+ and in small teams\nHave experience with Twitter Bootstrap and responsive
2003
+ design\nHave experience with automated testing suites\nBe interested in a
2004
+ long-term position</p>\n\n<p>Traits Required</p>\n\n<p>Have a sense of pride
2005
+ in your work and a passion for coding\nHave a streak of perfectionism when
2006
+ it comes to details\nBe highly organized, responsible, and ethical\nBe proactive
2007
+ when it comes to asking questions, brainstorming, and working with colleagues</p>\n\n<p>Other
2008
+ Requirements</p>\n\n<p>You must have a reliable development environment including:
2009
+ high-speed Internet access, a fast computer, and phone access\nYour work environment
2010
+ must be one in which you can really focus without distractions\nYou must be
2011
+ able to work somewhere between 20-25 hours/week (opportunity to grow into
2012
+ a full-time role if desired)</p>\n","how_to_apply":"<p>f this is sounding
2013
+ a lot like you, then please consider applying! What we\u2019ll need from you:</p>\n\n<p>1
2014
+ - An intro email/cover letter including:</p>\n\n<p>Three projects you have
2015
+ worked on that you are most enthusiastic about</p>\n\n<p>What hourly freelance
2016
+ rate (based on a 20-25 hour/week) you would consider</p>\n\n<p>2 - A current
2017
+ resume in .doc, .docx, .pdf, markdown, or .txt</p>\n\n<p>3 - Applications
2018
+ can be sent through FlexJobs or by email to <a href=\"mailto:jobs@flexjobs.com\">jobs@flexjobs.com</a></p>\n","company":"FlexJobs","company_url":"http://www.flexjobs.com","company_logo":"http://github-jobs.s3.amazonaws.com/512e24c2-94e3-11e3-9e6e-853ff6c65256.png","url":"http://jobs.github.com/positions/4a06faa6-94e4-11e3-99ee-148c71e4ec5c"},{"id":"13a801ac-94c7-11e3-9492-744b5b7ca4f3","created_at":"Thu
2019
+ Feb 13 15:54:42 UTC 2014","title":"A cross of Project manager & Scrum master","location":"Berlin,
2020
+ Germany","type":"Full Time","description":"<p><strong>This is an on-site position
2021
+ based in Berlin, Germany.</strong> You will oversee the development of various
2022
+ product lines for our company, and help to manage the workflows of a team
2023
+ of developers. You will work directly with our CTO.</p>\n\n<h2>Job Qualifications</h2>\n\n<ul>\n<li>5+
2024
+ years project mgt experience</li>\n<li>3-5 yers agile experience</li>\n<li>3+
2025
+ years scrum master experience</li>\n<li>Experience with process management
2026
+ tools (versionone, ontime, pivotal, sprintly, etc).</li>\n<li>On site: Berlin,
2027
+ Germany</li>\n<li>Fluent in English and German</li>\n</ul>\n\n<h2>Helpful
2028
+ experience</h2>\n\n<ul>\n<li>Previous development experience</li>\n<li>Previous
2029
+ startup experience</li>\n<li>Experience working with offsite teams</li>\n<li>MS
2030
+ project experience (needs to get timelines, dependancies, etc)</li>\n<li><a
2031
+ href=\"http://theleanstartup.com/principles\">Lean startup methodology</a>
2032
+ knowledge</li>\n</ul>\n","how_to_apply":"<p>Please email your resume, github
2033
+ profile, and any other helpful information to: <a href=\"mailto:till+scrum@imagineeasy.com\">till+scrum@imagineeasy.com</a></p>\n","company":"Imagine
2034
+ Easy Solutions","company_url":"http://www.imagineeasy.com","company_logo":"http://github-jobs.s3.amazonaws.com/0f30a2fa-94c7-11e3-8383-3f4eb40874a7.png","url":"http://jobs.github.com/positions/13a801ac-94c7-11e3-9492-744b5b7ca4f3"},{"id":"a09b8956-1ed6-11e3-8663-e2f95d4f0d16","created_at":"Thu
2035
+ Feb 13 11:26:55 UTC 2014","title":"Django Developer","location":"London","type":"Full
2036
+ Time","description":"<p>We&#39;re looking for developers to join us in our
2037
+ office in central London, developing web tools and apps for huge audiences.
2038
+ Our clients include Google, YouTube, Skype, PayPal and other agencies such
2039
+ as BBH and Mother.</p>\n\n<p>This role will see you working as part of a friendly,
2040
+ expert team. The workload will sometimes be hectic, but the atmosphere is
2041
+ cheerful and proactive. We want to put you in a position to write and deploy
2042
+ the best code that you can.</p>\n\n<p>There are plenty of technical acronyms
2043
+ in here, but fundamentally we&#39;re looking for intelligent people who have
2044
+ an eagerness to learn new things, and the communication skills to be able
2045
+ to explain them to humans such as project managers and our clients.</p>\n\n<p>As
2046
+ well as the technical knowledge, we need people that get it - people who can
2047
+ figure things out by themselves but know when to yell for help. Cutting down
2048
+ and simplifying complex problems with interfaces which make them appear straightforward.</p>\n\n<p>You
2049
+ should probably know about...</p>\n\n<ul>\n<li>Python &amp; Django</li>\n<li>git</li>\n<li>Use
2050
+ of PaaS, such as Google App Engine, Heroku, Elastic Beanstalk, or Windows
2051
+ Azure</li>\n<li>HTML, CSS &amp; JavaScript</li>\n</ul>\n\n<p>We also like
2052
+ talking to people who enjoy...</p>\n\n<ul>\n<li>Semantically marked up HTML</li>\n<li>Unobtrusive
2053
+ JavaScript</li>\n<li>Development &amp; consumption of HTTP APIs</li>\n<li>Internationalisation</li>\n<li>JavaScript
2054
+ frameworks &amp; libraries such as AngularJS or Backbone.js</li>\n<li>Google
2055
+ Apps &amp; APIs</li>\n<li>Scaling applications across distributed machines</li>\n<li>noSQL
2056
+ &amp; SQL databases</li>\n</ul>\n\n<p>In return you&#39;ll get...</p>\n\n<ul>\n<li>Free
2057
+ lunch, drinks and snacks</li>\n<li>Developer-focussed working environment</li>\n</ul>\n\n<p>Agencies:\nPlease
2058
+ don&#39;t call. If (one day) we need you, we&#39;ll be in touch.\nWe will
2059
+ not engage with cold-calling or emailing agencies in any way.</p>\n","how_to_apply":"<p>Feel
2060
+ free to apply with a cover letter and CV, but what we would really like to
2061
+ see is some code you&#39;ve written. A GitHub or Bitbucket URL is ideal. Please
2062
+ let us know whether a freelance or fulltime position is preferable, too.</p>\n\n<p>If
2063
+ we like what we see we&#39;ll get back to you quickly to arrange to have a
2064
+ cup of tea and a chat.</p>\n\n<p><a href=\"mailto:jobs+be-lon@p.ota.to\">jobs+be-lon@p.ota.to</a></p>\n","company":"Potato","company_url":"http://p.ota.to/","company_logo":"http://github-jobs.s3.amazonaws.com/953ad6a2-1ed6-11e3-90c0-3d7d2b656a8e.png","url":"http://jobs.github.com/positions/a09b8956-1ed6-11e3-8663-e2f95d4f0d16"},{"id":"cd7eb160-f839-11e1-956f-56a1f1874d3b","created_at":"Thu
2065
+ Feb 13 11:26:20 UTC 2014","title":"Django Developer (Bristol)","location":"Bristol,
2066
+ United Kingdom","type":"Full Time","description":"<p>We&#39;re looking for
2067
+ developers to join us in our office in central Bristol, developing web tools
2068
+ and apps for huge audiences. Our clients include Google, YouTube, Skype, PayPal
2069
+ and other agencies such as BBH and Mother.</p>\n\n<p>This role will see you
2070
+ working as part of a friendly, expert team. The workload will sometimes be
2071
+ hectic, but the atmosphere is cheerful and proactive. We want to put you in
2072
+ a position to write and deploy the best code that you can.</p>\n\n<p>There
2073
+ are plenty of acronyms in here, but fundamentally we&#39;re looking for intelligent
2074
+ people who have an eagerness to learn new things, and the communication skills
2075
+ to be able to explain them to humans such as project managers and our clients.</p>\n\n<p>As
2076
+ well as the technical knowledge, we need people that get it - people who can
2077
+ figure things out by themselves but know when to yell for help. Cutting down
2078
+ and simplifying complex problems with interfaces which make them appear straightforward.</p>\n\n<p>You
2079
+ should probably know about...</p>\n\n<ul>\n<li>Python &amp; Django</li>\n<li>git</li>\n<li>Use
2080
+ of PaaS, such as Google App Engine, Heroku, Elastic Beanstalk, or Windows
2081
+ Azure</li>\n<li>HTML, CSS &amp; JavaScript</li>\n</ul>\n\n<p>We also like
2082
+ talking to people who enjoy...</p>\n\n<ul>\n<li>Semantically marked up HTML</li>\n<li>Unobtrusive
2083
+ JavaScript</li>\n<li>Development &amp; consumption of HTTP APIs</li>\n<li>Internationalisation</li>\n<li>JavaScript
2084
+ frameworks &amp; libraries such as AngularJS or Backbone.js</li>\n<li>Google
2085
+ Apps &amp; APIs</li>\n<li>Scaling applications across distributed machines</li>\n<li>noSQL
2086
+ &amp; SQL databases</li>\n</ul>\n\n<p>In return you&#39;ll get...</p>\n\n<ul>\n<li>Free
2087
+ lunch, drinks and snacks</li>\n<li>A fun and supportive, developer-focussed
2088
+ working environment</li>\n</ul>\n\n<p>Agencies:\nPlease don&#39;t call. If
2089
+ (one day) we need you, we&#39;ll be in touch.\nWe will not engage with cold-calling
2090
+ or emailing agencies in any way.</p>\n","how_to_apply":"<p>Feel free to apply
2091
+ with a cover letter and CV, but what we would really like to see is some code
2092
+ you&#39;ve written. A GitHub or Bitbucket URL is ideal. Please let us know
2093
+ whether a freelance or fulltime position is preferable, too.</p>\n\n<p>If
2094
+ we like what we see we&#39;ll get back to you quickly to arrange to have a
2095
+ cup of tea and a chat.</p>\n\n<p><a href=\"mailto:jobs+be-brs@p.ota.to\">jobs+be-brs@p.ota.to</a></p>\n","company":"Potato","company_url":"http://p.ota.to/","company_logo":"http://github-jobs.s3.amazonaws.com/c1442efc-f839-11e1-8058-6dbafdc5c30e.png","url":"http://jobs.github.com/positions/cd7eb160-f839-11e1-956f-56a1f1874d3b"}]'
2096
+ http_version:
2097
+ recorded_at: Thu, 20 Feb 2014 22:16:29 GMT
2098
+ recorded_with: VCR 2.8.0