Jython Dev in Eclipse

2009-02-17 Thread ntwrkd
Does anyone use Pydev or JyDT for Eclipse. Can you recommend one against the other? -- http://mail.python.org/mailman/listinfo/python-list

Guidance on writing a top-like console

2009-02-27 Thread ntwrkd
I am interested in writing an application that functions like a Unix or Linux top in the way it displays data. It should be command-line based but dynamically refreshing. I'm not sure what I should take into account or how I might go about implementing this? Any suggestions are appreciated. -- htt

Re: Guidance on writing a top-like console

2009-02-27 Thread ntwrkd
Thanks. These are all great suggestions. On Fri, Feb 27, 2009 at 2:35 PM, Tim Chase wrote: >> I am interested in writing an application that functions like a Unix >> or Linux top in the way it displays data. >> It should be command-line based but dynamically refreshing. > > You might look at the

Creating a Python Module - Available Implementations

2009-04-01 Thread ntwrkd
I have been browsing through creating a Python module for common custom functions that I frequently use, but I am wondering, is this the best method, and is it necessary? Really all I need is to import functions from another plaintext Python source file, how might I do this? What would merit the ne

Best Compatible JS Lib for Django

2009-04-04 Thread ntwrkd
Does anyone have experience with using JS Libraries with Django? Do some work better than others and are easier to code with? TIV -- http://mail.python.org/mailman/listinfo/python-list

Re: Best Compatible JS Lib for Django

2009-04-05 Thread ntwrkd
I didn't realize there was a Django list. I will direct my questions there. Thanks for the suggestions. On Sun, Apr 5, 2009 at 12:31 PM, Gerhard Häring wrote: > Daniel Fetchinson wrote: >>> Does anyone have experience with using JS Libraries with Django? >>> Do some work better than others and ar

LISA 2010 CFP

2010-02-18 Thread ntwrkd
Hello All, The USENIX Large Installation System Administration Conference is now accepting paper proposals. If you are interested in submitting a paper, please check out this blog post about submitting a paper (http://www.usenix.org/events/lisa10/cfp/), or feel free to contact me directly if you th

bash-style auto completion in command line program. use rlcomplete?

2010-05-22 Thread ntwrkd
I am trying to create a bash-style auto completion in a simple command-line and script-based program i created using cmd. I saw http://docs.python.org/library/rlcompleter.html, which I'm thinking is the way to go for my program to intercept the tab key. Would anyone have thoughts on this? I wish c