View Single Post
  #11 (permalink)  
Old 05-11-2008, 07:13 AM
G_Morgan G_Morgan is online now
Guru
 
Join Date: Oct 2007
Age: 24
Posts: 442
Last Blog:
Just over the next hil...
Credits: 44
Rep Power: 8
G_Morgan has a spectacular aura aboutG_Morgan has a spectacular aura aboutG_Morgan has a spectacular aura about
Default Re: Help me pick prgramming language for app

Quote:
Originally Posted by BBK View Post
G_Morgan, afaik python has extensive libraries.
the rest of what you wrote went flying past my head - lol
there are many java open source trading applications in varying degrees of development and at the risk of sounding like a total idiot, I don't like the way they "look" - I mean aesthetics, nothing to do with the guts of the program. I just hate the java "look" know what I mean?

[ducks and runs]
Python has extensive libraries on Unix systems. Getting them to work on Windows is another thing.

You don't like the Swing metal theme then? Swing now has p***able native emulation (though you have to specify that you want to use it in the program). If you don't trust it then there's always SWT which actually uses the native widgets on each platform similar to wxwidgets with Python. There are also bindings to most native widget sets directly. Swing is not the only option.

The point is even on Unix the JVM has much better library support than Python and it's libraries will generally work on every platform. There are Java bindings to almost every library imaginable.

The wonderful thing is you can reasonably take advantage of this without subjecting yourself to Java thanks to the wonders of JRuby and various other languages than now run on the JVM.
__________________
Code:
glBegin(GL_TRIANGLES);
    drawWorld();
glEnd();
Reply With Quote