Re: Computer Language Popularity Trend
There is one index at : http://www.tiobe.com/tpci.htm It isn't much reliable, put still I think it is a bit reliable. Also, you might use number of open source projects at Sourceforge for the given language for giving assumptions, or number of job openings at Monster, i.e. -- Mladen Adamovic http://www.online-utility.org http://www.cheapvps.info http://www.vpsreview.com -- http://mail.python.org/mailman/listinfo/python-list
Re: does anybody earn a living programming in python?
walterbyrd wrote: > If so, I doubt there are many. > > I wonder why that is? > As I've seen on the monster there are openings for Python developers. It is 30x less than Java, but there are less Python developers, so... I don't know is it easier to find the job as Python or as Java developer. I could try to find one as Python developer, to try how does it looks like... -- Mladen Adamovic http://www.online-utility.org http://www.cheapvps.info http://www.vpsreview.com -- http://mail.python.org/mailman/listinfo/python-list
Re: editor for Python on Linux
Mladen Adamovic wrote: > I wonder which editor or IDE you can recommend me for writing Python > programs. I tried with jEdit but it isn't perfect. I've got a lot of replies on this message. In jEdit auto ident don't work OK. Answers like vi, emacs and gedit I won't take seriously. For gods sake, gedit don't even have syntax highlighting (at least on Centos 4.2). I would like syntax highlighting, auto ident and if possible auto completition and embedded help. I downloaded a couple of sugestions and I will try it. Thank you for your answers :) . -- Mladen Adamovic home page: http://home.blic.net/adamm -- http://mail.python.org/mailman/listinfo/python-list
Re: editor for Python on Linux
[EMAIL PROTECTED] wrote: > Actually gedit does have syntax highlighting and works quite well. Uops, it seems that I should give a second chance to it, I haven't noticed its settings. > If you put down emacs so casually you obviously have no experience with > one of the most powerful text editors available. I don't use because I > like the X windows editors more. I know that emacs is powerfull editor but I'm not used to it. > Basically any editor that can insert spaces for tabs and maintain > indentation level works well. jEdit don't maintain indentation level correct (it was my first try) then I googled a bit and was confused so I posted a message here :). -- Mladen Adamovic home page: http://home.blic.net/adamm -- http://mail.python.org/mailman/listinfo/python-list
Re: editor for Python on Linux
Benji York wrote: > I don't know anything about gedit, but why not take Emacs and Vim (not > vi) seriously? I'm not used to their approach. I usually program in Java but recently I reliazed if I'm making Linux shell scripts, Python seems to be good choice to me. So, that Pydev Eclipse plug-in (or some other) seems interested. -- Mladen Adamovic home page: http://home.blic.net/adamm -- http://mail.python.org/mailman/listinfo/python-list
Re: graph display(please help)
questions? wrote: > I heard from my friend who used to program in JAVA, it is really easy > to do graph display in JAVA. > Thanks for any suggestions!!! Jython -- Mladen Adamovic home page: http://home.blic.net/adamm -- http://mail.python.org/mailman/listinfo/python-list
Re: time.sleep(1) sometimes runs for 200 seconds under windows
Magnus Lycka wrote: > On Windows that it. At least on Linux and Solaris, time.clock() returns > CPU time. If time.clock() returns significantly different values before > and after time.sleep(1), there's something seriously broken in sleep on > such platforms. No! When process run the sleep, the operating system give other processes to run and it takes time (so called time slice) to get back to the original process. Recently I invoked Runtime.sleep() from Java on Centos 4.2 and it might take up to 1 sec(!) to come from the sleep no matter what you put as the sleep parameter. Basically each process runs for around 20ms and then the other process get priority. I'm not sure why those Codecs run OK when I watch DVD movie while running other Java application which use processor and hard disc quite intensivly, it seems that they got slices regulary, I'm not sure way. So, once more when you go to "sleep" other process get the slice so it could take more time then predicted to continue. -- Mladen Adamovic http://home.blic.net/adamm http://www.shortopedia.com http://www.froola.com -- http://mail.python.org/mailman/listinfo/python-list