Follow Me on Twitter
Showing posts with label Software Companies. Show all posts
Showing posts with label Software Companies. Show all posts

Friday, November 20, 2009

Jobs Jobs Jobs....Who is hiring?


If you are searching for jobs(internship, part time, full time) and are unaware who is hiring and where to apply then here it is the list of companies and the links to apply who are currently hiring!!!. The job listed below are mostly related to software and IT industry.

neustar is hiring
cPanel is hiring.
Orbis Technologies is hiring
Think in Palo Alto is looking for LAMP and mobile programmers. 
RJMetrics is hiring an exceptional User Experience and Interface Engineer (Philadelphia / South NJ)http://rjmetrics.theresumator.com/apply/
Digg is hiring!
Rapleaf is hiring
SeatGeek is looking for a lead backend engineer.
Pattern Insight is hiring engineers in Mountain View, CA
MyNewPlace.com in San Francisco is looking for a Java web developer. http://www.mynewplace.com/jobs/technology/web-application-developer
Yodle is hiring
WePay is hiring PHP engineers in Palo Alto, CA.
OmniTI is hiring:
DocumentCloud is hiring
Wikispaces is hiring.
Paragon Lake (Lexington, MA) - Product Manager, E-commerce developer, Java developer, and more: http://paragonlake.com/company/careers.php
Connected Ventures (CollegeHumor.com) is looking for a PHP developer. http://www.collegehumor.com/jobs
Huddler is hiring in San Francisco.
OpenX is hiring:
The Nerdery is hiring for Java, C# ASP.NET, PHP, and Frontend / Designer.
Gotham Digital Science is hiring
See http://www.gdssecurity.com/g/ca.php for more information
Cloudera is hiring.
If interested, drop your CV and a cover letter to jobs@cloudera.com
(Medialets) hiring in NYC
Rackspace is also hiring in the Austin, TX area
Gnip (www.gnip.com) is hiring Rails / AJAX developers in Boulder, Colorado.
Facebook is  hiring
AboutUs is hiring full-time developers in Portland, OR.
Aardvark is hiring
New York Times is hiring
PlayHaven is hiring multiple positions (devs, UI/UX engineers)
Bump (YC S09, Sequoia) is hiring in Mountain View, CA
College Humor is hiring PHP developers
SB Nation is hiring a Ruby/Rails developer and an operations engineer:
Academia.edu is hiring
CCP Games, the makers of Eve Online, are hiring programmers in Atlanta, Iceland and Shanghai. Apply at http://ccpgames.com/jobs.aspx
Panjiva, is hiring a web app developer in Cambridge, MA
Meebo is hiring
Sticker Giant out of Boulder, CO is hiring
Kickstarter is hiring
Yelp is hiring.
Snaptic is hiring
Palantir Tech is hiring
WhitePages.com is hiring.
IMVU Inc. is hiring
Naughty Dog is hiring
Ooyala is hiring!
Telligent Systems is hiring several QA engineers, DB engineer, and tech writers, for C# and SQL Server. Most jobs are in Dallas
Justin.tv is hiring
Mozilla is hiring
BackType is hiring developers to join the founding team of two in San Francisco: http://www.backtype.com/jobs
Also check these links for more jobs

Disclaimer: We are no way involved  with any of these companies. The list is here to help people get the right job and the company get the right candidate.The list was collected from HN news site.

Tuesday, November 3, 2009

Interview Puzzels:1

100 Closed Lockers
Suppose you are in a hallway lined with 100 closed lockers. You begin by opening all 100 lockers. Next, you close every second locker. Then you go to every third locker and close it if it is open or open it if it is closed (call this toggling the locker). Continue toggling every nth locker on pass number n. After your hundredth pass of the hallway, in which you toggle only locker number 100, how many lockers are open? 

Solution:
10
Lockers #1, 4, 9, 16, 25, 36, 49, 64, 81, and 100.
Explanation:
Each of these numbers are perfect squares. This problem is based on the factors of the locker number. Each locker is toggled by each factor; for example, locker #40 is toggled on pass number 1, 2, 4, 5, 8, 10, 20, and 40. That's eight toggles: open-closed-open-closed-open-closed-open-closed.

The only way a locker could be left open is if it is toggled an odd number of times. The only numbers with an odd number of factors are the perfect
squares. Thus, the perfect squares are left open.

For example, locker #25 is toggled on pass number 1, 5, and 25 (three toggles): open-closed-open.If n is the number then the number of open doors is floor(sqrt(n)) so if n=60 then sqrt(60) =6.92 floor(6.92) is 6.So the answer is 6