Job opportunity - Sr. Python Developer - Morrisville, NC

2016-02-25 Thread Rohit Koul
architecture and design of the various products - Investigating technologies that could benefit our development and success of our products Thanks and regards, Rohit Rohit Koul Technical Recruiter Email:-ro...@adeptincorp.com -- https://mail.python.org/mailman/listinfo/python-list

Current trends in python

2013-08-22 Thread Rohit Chormale
Dear friends, can anybody help me to know latest trends in python...back,middle,front end softwares...frameworks etc also how exactly python based projects are developed? thank u -- http://mail.python.org/mailman/listinfo/python-list

Centering a window

2011-01-10 Thread Rohit Coder
):screen = QtGui.QDesktopWidget().screenGeometry()size = self.geometry() self.move((screen.width()-size.width())/2, (screen.height()-size.height())/2)= CODE BLOCK ENDS HERE === Rohit K.elementFontfont-familyfont-sizefont-stylefont

Create a class to position a window on the screen.

2011-01-08 Thread Rohit Coder
eight()-size.height())/2) ...Rohit. -- http://mail.python.org/mailman/listinfo/python-list

Working with PyQt and Pydev

2011-01-06 Thread Rohit Coder
I installed the PyDev plugin into Aptana Stdui 3 Beta. Someone suggested me to use PyQt for Python GUI app, and so I downloaded and installed PyQt. But when I open Aptana Studio, I could see a new menu added with the name "PyDev", but there is nothing for PyQt. In the Windows Start Meny item li

How suitable is Python to write system utilities?

2011-01-06 Thread Rohit Coder
Is Python suitable to write low-level system utilities like Defrag, Malware Removal Tools and Drivers? -- http://mail.python.org/mailman/listinfo/python-list

RE: Attaching C++ libraries to Python app.

2011-01-05 Thread Rohit Coder
ail.com > CC: python-list@python.org > > You don't need to reinvent the wheel: > > http://www.dlitz.net/software/pycrypto/ > > Am Mi, 5.01.2011, 22:21 schrieb Rohit Coder: > > > > Is it possible to use C++ libraries within a Python application? I am > >

Attaching C++ libraries to Python app.

2011-01-05 Thread Rohit Coder
-style-imagelist-style-typelist-style-positionTablevertical-alignborder-collapseborder-spacingcaption-sideempty-cellstable-layoutEffectstext-shadow-webkit-box-shadowborder-radiusOtheroverflowcursorvisibility ...Rohit

RE: Qt with PyDev

2011-01-05 Thread Rohit Coder
... Rohit See either of these packages: PyQt: http://qt.nokia.com/products/ PySide: http://www.pyside.org/ Either one should work with PyDev. Gary Herron

Re: Python-list Digest, Vol 77, Issue 7 *

2010-02-01 Thread Rohit Roger$
Hello Help for datetime module Source code is : *from *datetime *import *datetime d = datetime(datetime.now().year, datetime.now().month, datetime.now().day, 11, 59, 0 ) print d On Mon, Feb 1, 2010 at 3:44 PM, wrote: > Junk Score: 2 out of 10 (below your Auto Allow > threshold

Re: File System Redirection Windows x 64 box.

2009-05-15 Thread Rohit Srivastava
On May 15, 12:05 pm, Rohit Srivastava wrote: > Hi, > > In Windows 2003 x64, I want to call iscsicli.exe which is there only > in system32 directory. > Now since in x64 system windows actually redirect the 32 bit > application to sysWOW64 directory, if it is looking for sy

File System Redirection Windows x 64 box.

2009-05-15 Thread Rohit Srivastava
dvance Regards Rohit -- http://mail.python.org/mailman/listinfo/python-list

Database intensive application

2007-08-11 Thread Rohit
I am a novice. I want to know whether Python can be used to develop client/server database and web applications like .NET. Which is the best book/source to learn Python? -- http://mail.python.org/mailman/listinfo/python-list

Re: monitoring the filesystem for changes

2007-06-03 Thread rohit
hello well in my implementation of readdirectorychangesw i am using threading that is multiple programs run simultaneously each program monitoring one drive for changes. is their a way around this...one program for all drives? thanks rohit -- http://mail.python.org/mailman/listinfo/python-list

monitoring the filesystem for changes

2007-06-02 Thread rohit
(processor) cost alternative that works on fat32 partitions as well. Rohit -- http://mail.python.org/mailman/listinfo/python-list

File monitoring for all drive

2007-05-24 Thread rohit
modification to the program so that i can detect changes to ALL the drives (to detect changes on c:\ set path_to_watch = "." to "c:\\" but this works for only one drive thanks rohit -- http://mail.python.org/mailman/listinfo/python-list

Re: read file to a dictionary

2007-05-24 Thread rohit
ohh i think i forgot to include intricate details in dictionary i use the following: value: name of a file existing on disk Key : a unique number assigned to each file ,with no. assigned in increasing order to file appearing earlier in the "english dictionary" thanks rohit

read file to a dictionary

2007-05-23 Thread rohit
ements the above 2 steps thanks rohit -- http://mail.python.org/mailman/listinfo/python-list

too much memory use

2007-05-22 Thread rohit
nt tree in memory(i can compact it on disk by writing just the index no..along with the record from which tree in memory can be reconstructed, but i have to implement tree as previous to implement random access) please help.. rohit sethi delhi college of engineering -- http://mail.python.org/mailman/listinfo/python-list

Re: randomly write to a file

2007-05-07 Thread rohit
hi gabriel, i am utilizing file names and their paths which are written to a file on a singe line. now if i use records that would be wasting too much space as there is no limit on the no. of characters (at max) in the path. next best approach i can think of is reading the file in memory editing it

Re: randomly write to a file

2007-05-07 Thread rohit
se On May 8, 2:41 am, Nick Vatamaniuc <[EMAIL PROTECTED]> wrote: > Rohit, > > Consider using an SQLite database. It comes with Python 2.5 and > higher. SQLite will do a nice job keeping track of the index. You can > easily find the line you need with a SQL query and your can w

randomly write to a file

2007-05-07 Thread rohit
) line in a file EFFICIENTLY which means i don't want to traverse the file sequentially to reach the n(th) line Please help. Regards Rohit -- http://mail.python.org/mailman/listinfo/python-list

Re: service for file monitoring

2007-04-20 Thread rohit
On Apr 21, 1:36 am, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Fri, 20 Apr 2007 17:06:51 -0300, rohit <[EMAIL PROTECTED]> > escribió: > > > For windows you can use the techniques described > here:http://tgolden.sc.sabren.com/python/win32_how_do_

service for file monitoring

2007-04-20 Thread rohit
hi, i am designing a desktop search engine using python. i am having a query , is there a package available that contains functions for retrieving the files being edited , created,deleted in the file system. thanks -- http://mail.python.org/mailman/listinfo/python-list

newbie string conversion question

2006-04-01 Thread Rohit
w can I do this in python? I would like the result to be available as a string since I am concatenating it to another string before sending it out. Thanks, Rohit -- http://mail.python.org/mailman/listinfo/python-list

Opportunity in Open-Source Development

2005-08-26 Thread Rohit, Careernet
this opportunity with you in detail. Please let me know if I can reach you on any number to discuss this. You can reach me at +91-9880731941   Looking forward to your response.   Regards,Rohit+91-9880731941   Contact us: [EMAIL PROTECTED]Visit us at www.careernet.co.in  BANGALORECareerNet

Re: Read a gzip file from inside a tar file

2004-12-13 Thread Rohit
if I change fileText = fileLike.read() to fileText = fileLike.readLines(). It works for a while before it gets killed of out of memory. These are huge files. My goal is to analyze the content of the gzip file in the tar file without having to un gzip. If that is possible. -- http://mail.python