Live data from Hacker News

Ask HN: Who's Hiring? (January 2011 Edition)

news.ycombinator.com

11–20 of 169 posts

Re: Ask HN: Who's Hiring? (January 2011 Edition)

#11
post #9

In New York City there are a lot of jobs. I went to 3 job interviews and got offers from 2. All 3 had tests of my programming skill, though the 3rd was ruthless about minor syntax errors. For instance, the guy talking to me asked me how to find all of the Apache servers running on a server. He just wanted the number. I typed: ps aux | grep apache | wc -l but this wrongly included the command I was typing. We were wor…

Completely off-topic, but...

  ps aux | grep apache | grep -v grep | wc -l
A more succinct, albeit less portable, alternative is 'pgrep apache | wc -l'. (Or 'pgrep httpd | wc -l', depending on your apache commandline.)

Re: Ask HN: Who's Hiring? (January 2011 Edition)

#12
We are looking for good hackers with experience in free software. We work on WebKit (maintainers of the GTK+ port), networking, multimedia, javascript, etc. Working remotely is perfectly possible.

The company is Igalia (http://www.igalia.com), and we have a sort of cooperative structure (no bosses, all major decisions taken democratically).

If it sounds like your kind of thing, the email is in my profile.

Re: Ask HN: Who's Hiring? (January 2011 Edition)

#13
post #9

In New York City there are a lot of jobs. I went to 3 job interviews and got offers from 2. All 3 had tests of my programming skill, though the 3rd was ruthless about minor syntax errors. For instance, the guy talking to me asked me how to find all of the Apache servers running on a server. He just wanted the number. I typed: ps aux | grep apache | wc -l but this wrongly included the command I was typing. We were wor…

Email him this, which is more succinct and does the same:

ps aux | grep [a]pache | wc -l

(because you use the character class, it doesn't find itself as what it searches for is different than its text)

Re: Ask HN: Who's Hiring? (January 2011 Edition)

#14
post #12

We are looking for good hackers with experience in free software. We work on WebKit (maintainers of the GTK+ port), networking, multimedia, javascript, etc. Working remotely is perfectly possible. The company is Igalia ( http://www.igalia.com ), and we have a sort of cooperative structure (no bosses, all major decisions taken democratically). If it sounds like your kind of thing, the email is in my profile.

Your email is not visible to other users. Please put it in your about section.

Re: Ask HN: Who's Hiring? (January 2011 Edition)

#15
post #12

We are looking for good hackers with experience in free software. We work on WebKit (maintainers of the GTK+ port), networking, multimedia, javascript, etc. Working remotely is perfectly possible. The company is Igalia ( http://www.igalia.com ), and we have a sort of cooperative structure (no bosses, all major decisions taken democratically). If it sounds like your kind of thing, the email is in my profile.

Your email is not visible to other users. Please put it in your about section.

Fixed, thank you!

Re: Ask HN: Who's Hiring? (January 2011 Edition)

#16
post #13
post #9

In New York City there are a lot of jobs. I went to 3 job interviews and got offers from 2. All 3 had tests of my programming skill, though the 3rd was ruthless about minor syntax errors. For instance, the guy talking to me asked me how to find all of the Apache servers running on a server. He just wanted the number. I typed: ps aux | grep apache | wc -l but this wrongly included the command I was typing. We were wor…

Email him this, which is more succinct and does the same: ps aux | grep [a]pache | wc -l (because you use the character class, it doesn't find itself as what it searches for is different than its text)

Or just

pgrep httpd | wc -l

Re: Ask HN: Who's Hiring? (January 2011 Edition)

#17
The Amazon Web Services team is hiring for on-site positions in Seattle (WA), Luxembourg, Tokyo, Herndon (VA), and Cape Town (South Africa), Dublin (Ireland), and Slough (UK). We don't offer remote work, but some of the positions do include relocation assistance.

I've scraped our official job site and used the data to create a tag cloud of the jobs at http://awsmedia.s3.amazonaws.com/jobs/all_aws_jobs.html . I'm still working on the styling.

The official AWS job site is at Our official job site is http://aws.amazon.com/jobs .

There are too many types of jobs to list here. We need developers, business developers, managers, solutions architects, trainers, and technical support.

Re: Ask HN: Who's Hiring? (January 2011 Edition)

#20
Twilio is hiring. We've got a lot of interesting problems to solve and are looking for senior/junior/intern software engineers. We use php, python, java, nginx, twisted, mysql, redis, appengine, and a bunch of other stuff I'm forgetting. Check out http://www.twilio.com/jobs or email me at andrew@twilio.com.
Post reply on HN