392
votes
31answers
12k views
+500

Using a piano keyboard as a computer keyboard

I have RSI problems and have tried 30 different computer keyboards which all caused me pain. Playing piano does not cause me pain. I would like to know if there is a way to capture MIDI from a MIDI ...
89
votes
3answers
8k 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 ...
69
votes
13answers
35k views

Choosing Java vs Python on Google App Engine

Currently Google App Engine supports both Python & Java. Java support is less mature. However, Java seems to have a longer list of libraries and especially support for Java bytecode regardless of ...
68
votes
14answers
31k views

What CMS runs on Google App Engine?

Is it possible to deploy any CMS (Content Management System) using Google App Engine? Wikipedia lists 4 Python CMSes and one of them is Django based. Do you know any way to make any of them to work ...
43
votes
5answers
1k views

How to approach number guessing game(with a twist) algorithm?

I am learning programming (python and algo’s) and was trying to work on a project that I find interesting. I have created a few basic python scripts but I’m not sure how to approach a solution to a ...
43
votes
10answers
2k views

How to reliably guess the encoding between MacRoman, CP1252, Latin1, UTF-8, and ASCII

At work it seems like no week ever passes without some encoding-related conniption, calamity, or catastrophe. The problem usually derives from programmers who think they can reliably process a “text” ...
41
votes
4answers
8k 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 ...
35
votes
10answers
19k 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 ...
29
votes
35answers
8k 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 ...
28
votes
5answers
6k views

Which programming languages can I use on Android Dalvik?

In theory, Dalvik executes any virtual machine byte code, created for example with the compilers of AspectJ ColdFusion Clojure Groovy JavaFX Script JRuby Jython Rhino Scala Are there already ...
28
votes
5answers
16k views

Python - Create a list with initial capacity

Code like this often happens: l = [] while foo: #baz l.append(bar) #qux This is really slow if you're about to append thousands of elements to your list, as the list will have to ...
27
votes
12answers
2k views

Programming in Python vs. programming in Java

I've been writing Java for the last couple of years , and now I've started to write in python (in addition). The problem is that when I look at my Python code it looks like someone tried to hammer ...
25
votes
8answers
834 views

As a Java programmer learning Python, what should I look out for?

Much of my programming background is in Java, and I'm still doing most of my programming in Java. However, I'm starting to learn Python for some side projects at work, and I'd like to learn it as ...
25
votes
8answers
4k 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?
25
votes
7answers
20k views

Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other?

We're looking into transport/protocol solutions and were about to do various performance tests, so I thought I'd check with the community if they've already done this: Has anyone done server ...
24
votes
27answers
2k 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 ...
23
votes
13answers
9k 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
22
votes
18answers
3k views

Java or Python for an intermediate PHP guy. Career advice [closed]

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 ...
22
votes
9answers
5k views

Why Java and Python garbage collection methods are different?

Python uses reference count method to handle object life time. So an object has no more used and it will be immediately destroyed. But, in Java, GC(garbage collector) destroys objects which are no ...
21
votes
12answers
4k views

Favourite Open Source Google App Engine apps (Java or Python) [closed]

To learn from good examples, what are the best open source Google App Engine applications out there? I don't care if it is Java or Python based. Please one app per answer. Feel free to add a link to ...
21
votes
3answers
4k 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 ...
20
votes
17answers
2k views

Which complements Python best: Java, C, or C++?

I am in the process of applying to a Computer Science program which requires students to have at least an intro-level exposure to either Java, C or C++. I have some experience with Python and I would ...
20
votes
8answers
2k 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 ...
20
votes
18answers
4k 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 ...
20
votes
11answers
18k views

Online compilers/runtime for Java, C++, Python and ObjC?

Does anyone know of a good online compiler/runtime (for C++, Java, Python, ObjC etc.) that I can access on the web? What I'm looking for is something that would allow me to type in a program in a ...
18
votes
7answers
728 views

Backpropagation through time

Does anyone know of a library with a working implementation of backpropagation through time? Any of Java/Python/C#/VB.NET/F# (preferably the last one) will do!
18
votes
8answers
1k views

Why do pythonistas call the current reference “self” and not “this”?

Python is the language I know the most, and strangely I still don't know why I'm typing "self" and not "this" like in Java or PHP. I know that Python is older than Java, but I can't figure out where ...
18
votes
5answers
1k 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?
17
votes
9answers
684 views

Why is it “Easier to ask forgiveness than permission” in python, but not in Java? [closed]

It seems that this is accepted as perfectly good code in the python community: def is_integer(input): try: return x % 1 == 0 except TypeError: return False On the other ...
16
votes
2answers
435 views

Simple, hassle-free, zero-boilerplate serialization in Scala/Java similar to Python's Pickle?

Is there a simple, hassle-free approach to serialization in Scala/Java that's similar to Python's pickle? Pickle is a dead-simple solution that's reasonably efficient in space and time (i.e. not ...
16
votes
6answers
918 views

Why do people say that Java is more scalable than python? [closed]

I've seen this argument in a few places, and now, recently i saw it again on a reddit post. This is by no means a flame against any of these two languages. I am just puzzled why there is this bad ...
16
votes
4answers
1k views

Python, PyTables, Java - tying all together

Question in nutshell What is the best way to get Python and Java to play nice with each other? More detailed explanation I have a somewhat complicated situation. I'll try my best to explain both ...
16
votes
3answers
3k views

Python-like list comprehension in Java

Since Java doesn't allow passing methods as parameters, what trick do you use to implement Python like list comprehension in Java ? I have a list (ArrayList) of Strings. I need to transform each ...
16
votes
19answers
2k views

Python as your main language. Possible? [closed]

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 ...
15
votes
8answers
850 views

What is a VM and why do dynamic languages need one?

So, for example, Python and Java have a VM, C and Haskell do not. (Correct me if I'm wrong) Thinking about what languages on both sides of the line have, I can't find the reason. Java is static in a ...
15
votes
10answers
512 views

Java or any other language: Which method/class invoked mine?

I would like to write a code internal to my method that print which method/class has invoked it. (My assumption is that I can't change anything but my method..) How about other programming ...
15
votes
10answers
1k views

python-like Java IO library?

Java is not my main programming language so I might be asking the obvious. But is there a simple file-handling library in Java, like in python? For example I just want to say: File f = ...
15
votes
3answers
3k views

Grokking Timsort

There's a (relatively) new sort on the block called Timsort. It's been used as Python's list.sort, and is now going to be the new Array.sort in Java 7). There's some documentation and a tiny ...
15
votes
20answers
2k 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 ...
14
votes
9answers
875 views

Java or Python for math?

I'm trying to write a pretty heavy duty math-based project, which will parse through about 100MB+ data several times a day, so, I need a fast language that's pretty easy to use. I would have gone with ...
14
votes
3answers
6k views

Java vs Python on Hadoop

I am working on a project using Hadoop and it seems to natively incorporate Java and provide streaming support for Python. Is there is a significant performance impact to choosing one over the other? ...
14
votes
23answers
8k views

After C++ - Python or Java?

I'm fast approaching the point in my coding where I would like to quickly write object oriented code in languages other than C++ for a variety of reasons. After a lot of research, my choices have ...
13
votes
6answers
437 views

Is there any book in Java/Python that explains how the concepts in Discrete math are used while designing programs?

I am looking for a book that explains how a discrete math concept like, say, set theory, is used while doing programming. My preference is towards books that are easy to understand. For me, that ...
13
votes
8answers
1k views

non-technical benefits of having string-type immutable

I am wondering about the benefits of having the string-type immutable from the programmers point-of-view. Technical benefits (on the compiler/language side) can be summarized mostly that it is easier ...
13
votes
4answers
3k views

Library to render Directed Graphs (similar to graphviz) on Google App Engine

I am looking for a Java or Python library that can render graphs in the Dot language as image file. The problem is that I need a library that I can use on Google App Engine. Basically I am looking ...
13
votes
4answers
4k views

Is there a good NumPy clone for Jython?

I'm a relatively new convert to Python. I've written some code to grab/graph data from various sources to automate some weekly reports and forecasts. I've been intrigued by the Jython concept, and ...
12
votes
3answers
1k views

Java's Mahout equivalent in Python

Java based Mahout's goal is to build scalable machine learning libraries. Are there any equivalent libraries in Python ?
12
votes
6answers
501 views

Why are JITted Python implementations still slow?

I understand why interpretation overhead is expensive, but why are JITted Python implementations (Psyco and PyPy) still so much slower than other JITted languages like C# and Java? Edit: I also ...
12
votes
1answer
3k views

Why no Google java style guide? [closed]

I have read Google Styleguide, including C++, Python, Javascript etc. I think it's useful for programmers. But why no Java style guide? (I think Google use Java widely)
12
votes
7answers
2k views

Compiled vs. Interpreted Languages

I'm trying to get a better understanding of the difference. I've found a lot of explanations online, but they tend towards the abstract differences rather than the practical implications. Most of my ...

1 2 3 4 5 24