28
votes
2answers
2k views
Why is there no GIL in the Java Virtual Machine? Why does Python need one so bad?
I'm hoping someone can provide some insight as to what's fundamentally different about the Java Virtual Machine that allows it to implement threads nicely without the need for a Global Interpreter …
17
votes
27answers
1k views
Deciding on a language: Python or Java [closed]
I am part of a small (read: two programmer) startup, and we are about to start developing a large (we estimate it will be about a year before customers will see anything) web application… And it's …
15
votes
17answers
2k views
Python as your main language. Possible?
I am currently attending college and the languages that I will 'know' by graduation are C++ and Java. That being said, i am also in the process of teaching myself Python. I know that every programming …
14
votes
20answers
1k views
My python program executes faster than my java version of the same program. What gives?
Update: 2009-05-29
Thanks for all the suggestions and advice. I used your suggestions to make my production code execute 2.5 times faster on average than my best result a couple of days ago. In the …
13
votes
3answers
1k views
Does Google use Python for anything but internal utilities and administration?
I'm curious...I've read much of Python being on the approved list of languages used by Google employees, and I know they employ Guido. That said, is their use of Python focused mainly on managing …
12
votes
17answers
736 views
Java or Python for an intermediate PHP guy. Career advice.
I'm an intermediate PHP developer looking to take up a new language. I'm completely torn as to where to go at this point. There's so many languages related to web development and programming in …
12
votes
8answers
724 views
How can I protect myself from a zip bomb?
I just read about zip bombs, i.e. zip files that contain very large amount of highly compressible data (00000000000000000...).
When opened they fill the server's disk.
How can I detect a zip file is …
12
votes
13answers
2k views
is python slower than java/C#?
is python slower than java/C#?
performance-comparison-c-java-python-ruby-jython-jruby-groovy
Here is a project that optimizes CPython unladen-swallow
12
votes
17answers
960 views
Viable alternative to XSLT?
I have used XSLT for a few different things over the years. I got used to it, but never felt like I really understood it all the way through. It always seems like I have to experiment to get the …
12
votes
35answers
3k views
Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?
I wonder why would a C++, C#, Java developer want to learn a dynamic language?
Assuming the company won't switch its main development language from C++/C#/Java to a dynamic one what use is there for …
12
votes
5answers
790 views
Java -> Python?
Besides the dynamic nature of Python (and the syntax), what are some of the major features of the Python language that Java doesn't have, and vice versa?
11
votes
9answers
3k views
How can I download all emails with attachments from Gmail?
How do I connect to Gmail and determine which messages have attachments? I then want to download each attachment, printing out the Subject: and From: for each message as I process it.
I never found …
10
votes
13answers
984 views
Choosing between Java and Python
My team is faced with change. We develop on Unix, on backend servers. We do no GUI development. We are the business logic between another team's Java front end (XML interface) and the database. …
10
votes
3answers
1k views
Does python have an equivalent to Java Class.forName()?
I have the need to take a string argument and create a class in python. In Java, I would use Class.forName().newInstance(). Is there an equivalent in python?
Thanks for the responses. To answer …
10
votes
8answers
826 views
Java “Virtual Machine” vs. Python “Interpreter” parlance?
It's seems rare to read of a Python "virtual machine" while in Java "virtual machine" is used all the time. Both interpret byte codes, why call one a virtual machine and the other an interpreter?
