Live data from Hacker News

Ask HN: What startups use C and Python?

news.ycombinator.com

21–30 of 62 posts

Re: Ask HN: What startups use C and Python?

#23

The server side code of http://www.cyclinganalytics.com/ is almost entirely Python with a small amount of C. There's one particular bit of data processing that gets a couple of orders of magnitude speedup by writing the code in C rather than Python. It involves lots of loops and indexes, and it's possible there's a faster way to do it in Python, but I couldn't think of one.

I'm not sure that you would be able to get it as fast in Python but if you have not checked out the bisect module, I highly recommend it.

Re: Ask HN: What startups use C and Python?

#24
post #6

The company I work for uses C and PHP mainly , but as our platform is Gentoo that also makes us users of python. I also write most of the utility scripts I use in python. http://sevone.com

SevOne's careers page says that a Bachelor's degree is a requirement. How strict is SevOne (or any other company, for that matter) on this requirement? Do you know of any software engineers that don't have a degree?

> SevOne's careers page says that a Bachelor's degree is a requirement

Don't let this stop you. Every. If you honestly think you have the skills for the job after reading the description, seek it out. Let them determine if you are right for the position.

Don't be the no in your life.

Re: Ask HN: What startups use C and Python?

#27
post #8

I know that Google is using C and Python. The first version of Google was written in Python. Today the webserver and the web page are written in C, for performance reasons. But internally they still use a lot of Python.

So far I have only seen C++ from Google, never C. Are you referring to anything specific from them?

We have some C; adb for example.
Post reply on HN