PDA

View Full Version : Google was written in?



arthurprs
02-11-2007, 06:43 PM
curious to know.

chronozphere
02-11-2007, 07:50 PM
I friend of mine told that google utilises Python alot... but alot of things might be written in C++ also :)

arthurprs
02-11-2007, 08:11 PM
I friend of mine told that google utilises Python alot... but alot of things might be written in C++ also :)

i read somewhere that it utilizes python too, and saw IDLE on the monitor of a google competition for new jobs

Robert Kosek
02-11-2007, 09:08 PM
I don't know which language, but it is certainly CGI. Python it isn't, though. It'd have a .py extension as only CGI binaries can execute without a handler.

And because Google is heavily in the US I'd say C/C++.

arthurprs
02-11-2007, 09:49 PM
I don't know which language, but it is certainly CGI. Python it isn't, though. It'd have a .py extension as only CGI binaries can execute without a handler.

And because Google is heavily in the US I'd say C/C++.

I have to disagree, after some research
http://panela.blog-city.com/python_at_google_greg_stein__sdforum.htm
http://www.sauria.com/~twl/conferences/pycon2005/20050325/Python%20at%20Google.html
http://www.eweek.com/article2/0,1759,1934746,00.asp
http://www.python.org/Quotes.html
http://groups.google.com/group/comp.lang.python/browse_thread/thread/af75a3e91a03ec18/

no doubts that it uses python

ps: youtube is almost all writed in python :shock:
http://mail.python.org/pipermail/python-dev/2006-December/070323.html

Robert Kosek
02-11-2007, 11:46 PM
Huh. I thought Python wasn't runtime compiled, and that it required an interpreter? So why is it being used like a CGI application then? Interesting.

Looks like Python is used more frequently than I thought it was. :shock:

arthurprs
03-11-2007, 12:37 AM
Huh. I thought Python wasn't runtime compiled, and that it required an interpreter? So why is it being used like a CGI application then? Interesting.

Looks like Python is used more frequently than I thought it was. :shock:
yes, i expected asp.net but when saw python :shock:

You use python?

Here,
i use it as an advanced shell (use upx all my exe's for example), and personal utilities (open the script and edit what do you want is much better than have to open delphi and compile the hole thing again)

Robert Kosek
03-11-2007, 02:15 AM
I don't actually use Python but I keep tabs on the scripting/programming scenes around the net. I marginally considered using something like Python. How much weight does it keep on the system if you install it as an interpreter? By that I mean, does it run as a service and does it constantly tie resources up?

I do hate having to recompile things just for simple changes, I must say. That's why I started to look into Lua, but never actually got into it.

arthurprs
03-11-2007, 04:24 AM
I don't actually use Python but I keep tabs on the scripting/programming scenes around the net. I marginally considered using something like Python. How much weight does it keep on the system if you install it as an interpreter? By that I mean, does it run as a service and does it constantly tie resources up?

I do hate having to recompile things just for simple changes, I must say. That's why I started to look into Lua, but never actually got into it.
no its only runs on .pyc, .py and .pyw files

no system service involved

Robert Kosek
03-11-2007, 02:10 PM
no its only runs on .pyc, .py and .pyw files

no system service involvedEven better. I've always been looking for a more powerful batch-file. :D And in some ways I think working with Python would be far easier than batch files.