resume

2017-08-28 Thread Gayu anbu
hi, i am gayathri,studying final year It.i want one page resume please any one send me template -- https://mail.python.org/mailman/listinfo/python-list

Re: A computer programmer, web developer and network admin resume

2013-05-23 Thread Chris Angelico
On Thu, May 23, 2013 at 10:28 PM, Neil Cerutti wrote: > On 2013-05-22, Tim Chase wrote: >> On 2013-05-22 01:15, [email protected] wrote: >>> A computer programmer, web developer and network administrator >> >> ...walk into a bar... >> >> So what's the punchline? > > "Ow." Get it? "Ow." B

Re: A computer programmer, web developer and network admin resume

2013-05-23 Thread Neil Cerutti
On 2013-05-22, Tim Chase wrote: > On 2013-05-22 01:15, [email protected] wrote: >> A computer programmer, web developer and network administrator > > ...walk into a bar... > > So what's the punchline? "Ow." Get it? "Ow." -- Neil Cerutti -- http://mail.python.org/mailman/listinfo/python

Re: A computer programmer, web developer and network admin resume

2013-05-22 Thread Ken Bolton
On Wed, May 22, 2013 at 7:25 PM, Gregory Ewing wrote: > Tim Chase wrote: > >> So a pirate programmer walks into a bar with a bird on his shoulder. >> The bird repeatedly squawks "pieces of nine! pieces of nine!". The >> bartender looks at him and asks "what's up with the bird?" to which >> the pi

Re: A computer programmer, web developer and network admin resume

2013-05-22 Thread Gregory Ewing
Tim Chase wrote: So a pirate programmer walks into a bar with a bird on his shoulder. The bird repeatedly squawks "pieces of nine! pieces of nine!". The bartender looks at him and asks "what's up with the bird?" to which the pirate says "Arrr, he's got a parroty error." No, he's just using hal

Re: A computer programmer, web developer and network admin resume

2013-05-22 Thread Harry Percival
H walk > > into a bar. The other two buy the BOFH a drink, because they're not > > stupid, and anyway, so this luser walks up to them with a resume in > > his hand. > > > > "," says the luser. > > > > "So what's the punchline?&quo

Re: A computer programmer, web developer and network admin resume

2013-05-22 Thread Tim Chase
. > > > > So what's the punchline? > > ;steps up to the mike > > So yeah, as I was saying, a programmer, a web dev, and a BOFH walk > into a bar. The other two buy the BOFH a drink, because they're not > stupid, and anyway, so this luser walks up to them with a resume

Re: A computer programmer, web developer and network admin resume

2013-05-21 Thread Chris Angelico
aying, a programmer, a web dev, and a BOFH walk into a bar. The other two buy the BOFH a drink, because they're not stupid, and anyway, so this luser walks up to them with a resume in his hand. "," says the luser. "So what's the punchline?" says the computer prog

Re: A computer programmer, web developer and network admin resume

2013-05-21 Thread Tim Chase
On 2013-05-22 01:15, [email protected] wrote: > A computer programmer, web developer and network administrator ...walk into a bar... So what's the punchline? -tkc -- http://mail.python.org/mailman/listinfo/python-list

Re: A computer programmer, web developer and network admin resume

2013-05-21 Thread Denis McMahon
On Wed, 22 May 2013 01:15:27 +, [email protected] wrote: > If you would like this in text format instead, please let me know. What if we don't want it at all? -- Denis McMahon, [email protected] -- http://mail.python.org/mailman/listinfo/python-list

A computer programmer, web developer and network admin resume

2013-05-21 Thread [email protected]
A computer programmer, web developer and network administrator resume. For a resume in HTML or .Doc format click on: www.DatabasePrograms.Biz<http://www.databaseprograms.biz/> If you would like this in text format instead, please let me know. Daniel Rapaport 1-949-307-

RE: resume execution after catching with an excepthook?

2012-10-25 Thread Prasad, Ramit
odically poll the keyboard for another key press to use as > > a conditional exit. Here's a snippet of platform-specific code to get a > > key press: > > > > http://code.activestate.com/recipes/577977 > > > > Note however that it blocks if there is no key pres

Re: resume execution after catching with an excepthook?

2012-10-25 Thread Chris Angelico
On Fri, Oct 26, 2012 at 2:31 AM, Hans Mulder wrote: > This seems to work; I'm not sure how robust it is: > > import signal > > def handler(signum, frame): > while True: > q = raw_input("This will quit the program, are you sure? [y/N]") > if q[:1] in "yY": > raise Ke

Re: resume execution after catching with an excepthook?

2012-10-25 Thread Steven D'Aprano
On Fri, 26 Oct 2012 01:51:43 +1100, Chris Angelico wrote: > On Thu, Oct 25, 2012 at 12:15 PM, Steven D'Aprano > wrote: >> I don't believe that there is any >> way to jump back to the line of code that just failed (and why would >> you, it will just fail again) > > There are several reasons to re

Re: resume execution after catching with an excepthook?

2012-10-25 Thread Hans Mulder
On 24/10/12 14:51:30, andrea crotti wrote: > So I would like to be able to ask for confirmation when I receive a C-c, > and continue if the answer is "N/n". > > I'm already using an exception handler set with sys.excepthook, but I > can't make it work with the confirm_exit, because it's going to q

Re: resume execution after catching with an excepthook?

2012-10-25 Thread Chris Angelico
; you tried to save a file onto a write-protected floppy disk, an exception is thrown, you handle the exception by getting the user to unprotect or change disks, and you resume where you left off. CPU-level interrupts always have a return address for that exact reason. Handling Ctrl-C in this way makes a

Re: resume execution after catching with an excepthook?

2012-10-25 Thread andrea crotti
r that it blocks if there is no key press waiting. > > I suspect that you may need a proper event loop, as provided by GUI > frameworks, or curses. > > > > -- > Steven > -- > http://mail.python.org/mailman/listinfo/python-list Ok thanks, but here the point is not to resume someth

Re: resume execution after catching with an excepthook?

2012-10-24 Thread Steven D'Aprano
On Wed, 24 Oct 2012 13:51:30 +0100, andrea crotti wrote: > So I would like to be able to ask for confirmation when I receive a C-c, > and continue if the answer is "N/n". I don't think there is any way to do this directly. Without a try...except block, execution will cease after an exception is

resume execution after catching with an excepthook?

2012-10-24 Thread andrea crotti
So I would like to be able to ask for confirmation when I receive a C-c, and continue if the answer is "N/n". I'm already using an exception handler set with sys.excepthook, but I can't make it work with the confirm_exit, because it's going to quit in any case.. A possible solution would be to do

Re: pyserial vs. Linux power save hibernate/resume - program hangs

2009-11-08 Thread Ned Deily
In article <[email protected]>, John Nagle wrote: > I have an application running with pyserial talking to a USB to serial > converter on a Linux EeePC 2G Surf. This works. Until the lid on the PC is > closed and the device suspends. > > The application has /dev/t

pyserial vs. Linux power save hibernate/resume - program hangs

2009-11-08 Thread John Nagle
I have an application running with pyserial talking to a USB to serial converter on a Linux EeePC 2G Surf. This works. Until the lid on the PC is closed and the device suspends. The application has /dev/ttyUSB0 open, and has a read pending with a 1 second timeout. When the device comes

Re: resume upload wsgi script

2009-08-13 Thread Diez B. Roggisch
gert schrieb: On Aug 10, 10:39 am, "Diez B. Roggisch" wrote: 250KB :) So why do you bother? Its just HTTP1.1 has everything for making ftp like file transfers possible. When I write it to a file then I am back at square one because I still need to load it completely to get it into a blob. W

Re: resume upload wsgi script

2009-08-10 Thread gert
On Aug 10, 10:39 am, "Diez B. Roggisch" wrote: > > 250KB :) > > So why do you bother? > > > Its just HTTP1.1 has everything for making ftp like file transfers > > possible. > > When I write it to a file then I am back at square one because I still > > need to load it completely to get it into a bl

Re: resume upload wsgi script

2009-08-10 Thread Diez B. Roggisch
250KB :) So why do you bother? Its just HTTP1.1 has everything for making ftp like file transfers possible. When I write it to a file then I am back at square one because I still need to load it completely to get it into a blob. Well, the blob is nothing but datat in the file-system. If you

Re: resume upload wsgi script

2009-08-09 Thread gert
On Aug 9, 8:25 pm, "Diez B. Roggisch" wrote: > gert schrieb: > > > > > On Aug 9, 4:42 pm, "Diez B. Roggisch" wrote: > >> gert schrieb: > > >>> On Aug 9, 3:17 pm, "Diez B. Roggisch" wrote: > >>>>

Re: resume upload wsgi script

2009-08-09 Thread Diez B. Roggisch
gert schrieb: On Aug 9, 4:42 pm, "Diez B. Roggisch" wrote: gert schrieb: On Aug 9, 3:17 pm, "Diez B. Roggisch" wrote: gert schrieb: I working on a resume upload script and encountered the following problems sql: Could not decode to UTF-8 column 'SUBSTR(picture,?

Re: resume upload wsgi script

2009-08-09 Thread gert
On Aug 9, 4:42 pm, "Diez B. Roggisch" wrote: > gert schrieb: > > > > > On Aug 9, 3:17 pm, "Diez B. Roggisch" wrote: > >> gert schrieb: > > >>> I working on a resume upload script and encountered the following > >>> pro

Re: resume upload wsgi script

2009-08-09 Thread Diez B. Roggisch
gert schrieb: On Aug 9, 3:17 pm, "Diez B. Roggisch" wrote: gert schrieb: I working on a resume upload script and encountered the following problems sql: Could not decode to UTF-8 column 'SUBSTR(picture,?)' with text '\ufffd\ufff d\ufffd\ufffd↑!ExifEf1gL

Re: resume upload wsgi script

2009-08-09 Thread gert
On Aug 9, 3:17 pm, "Diez B. Roggisch" wrote: > gert schrieb: > > > I working on a resume upload script and encountered the following > > problems > > > sql: Could not decode to UTF-8 column 'SUBSTR(picture,?)' wit

Re: resume upload wsgi script

2009-08-09 Thread Diez B. Roggisch
gert schrieb: I working on a resume upload script and encountered the following problems sql: Could not decode to UTF-8 column 'SUBSTR(picture,?)' with text '\ufffd\ufff d\ufffd\ufffd↑!ExifEf1gL6KM7Ij5ae0gL6KM7cH2cH2GI3 Content-Disposition: form-data; name="

resume upload wsgi script

2009-08-09 Thread gert
I working on a resume upload script and encountered the following problems sql: Could not decode to UTF-8 column 'SUBSTR(picture,?)' with text '\ufffd\ufff d\ufffd\ufffd↑!ExifEf1gL6KM7Ij5ae0gL6KM7cH2cH2GI3 Content-Disposition: form-data; name="Filename" DSC

Re: need to suspend/resume a child thread

2008-11-13 Thread M.-A. Lemburg
On 2008-11-13 02:57, scsoce wrote: > A child thread has a long-time executions, how to suspend it and resume > back the orignial place ? I know it' nature to use singal, but child > thread cannot get signal as Python Manual say. And i dnt like to check > status variable

Re: need to suspend/resume a child thread

2008-11-12 Thread Miki
Hello, > A child thread has a long-time executions, how to suspend it and resume > back the orignial place ? I don't think you can do it using Python's thread API. You can either use a platform specific API (such as pywin32) or make the thread "cooperative" and wait o

need to suspend/resume a child thread

2008-11-12 Thread scsoce
A child thread has a long-time executions, how to suspend it and resume back the orignial place ? I know it' nature to use singal, but child thread cannot get signal as Python Manual say. And i dnt like to check status variable as the long-time executions can not or be dirty to stop

The worlds largest FREE jobs and resume database!

2008-05-06 Thread fashion girl
The worlds largest FREE jobs and resume database! Employers search resumes and post jobs FREE. Jobseekers post resumes and search jobs FREE. http://www.freewebs.com/eeyes/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Skill Resume Achievements, What Good Goes Here?

2008-01-04 Thread Paddy
On Jan 2, 3:59 pm, vbgunz <[EMAIL PROTECTED]> wrote: > I spent some time working on a skill resume, the kind of resume > college students put together and realized, I am not in college and > everything I learned was self-taught. Of course I would like some real > world achi

Re: Skill Resume Achievements, What Good Goes Here?

2008-01-04 Thread kyosohma
On Jan 4, 3:06 pm, apatheticagnostic <[EMAIL PROTECTED]> wrote: > On Jan 2, 11:31 am, [EMAIL PROTECTED] wrote: > > > > > On Jan 2, 9:59 am, vbgunz <[EMAIL PROTECTED]> wrote: > > > > I spent some time working on a skill resume, the kind of resume > >

Re: Skill Resume Achievements, What Good Goes Here?

2008-01-04 Thread kyosohma
On Jan 4, 3:06 pm, apatheticagnostic <[EMAIL PROTECTED]> wrote: > On Jan 2, 11:31 am, [EMAIL PROTECTED] wrote: > > > > > On Jan 2, 9:59 am, vbgunz <[EMAIL PROTECTED]> wrote: > > > > I spent some time working on a skill resume, the kind of resume > >

Re: Skill Resume Achievements, What Good Goes Here?

2008-01-04 Thread apatheticagnostic
On Jan 2, 11:31 am, [EMAIL PROTECTED] wrote: > On Jan 2, 9:59 am, vbgunz <[EMAIL PROTECTED]> wrote: > > > I spent some time working on a skill resume, the kind of resume > > college students put together and realized, I am not in college and > > everything I learne

Re: Skill Resume Achievements, What Good Goes Here?

2008-01-02 Thread kyosohma
On Jan 2, 9:59 am, vbgunz <[EMAIL PROTECTED]> wrote: > I spent some time working on a skill resume, the kind of resume > college students put together and realized, I am not in college and > everything I learned was self-taught. Of course I would like some real > world achi

Skill Resume Achievements, What Good Goes Here?

2008-01-02 Thread vbgunz
I spent some time working on a skill resume, the kind of resume college students put together and realized, I am not in college and everything I learned was self-taught. Of course I would like some real world achievements but don't consider throw-away code an achievement and am failing to r

Re: file resume

2007-04-16 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, luca72 wrote: > if i have one file written in binary mode, how can i append others > binary data to this file after the its closure. > ex > my_file = open('blabal', 'wb') > then i write something and then > my_file.close() > now if i need to open it again and append other b

RE: file resume

2007-04-16 Thread Robert Rawlins - Think Blue
Do the same again, but change that 'wb' to 'a' for append :-D should sort you out. Rob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of luca72 Sent: 16 April 2007 16:57 To: [email protected] Subject: file resume Hello at all

file resume

2007-04-16 Thread luca72
Hello at all: if i have one file written in binary mode, how can i append others binary data to this file after the its closure. ex my_file = open('blabal', 'wb') then i write something and then my_file.close() now if i need to open it again and append other binary data how can i proceed? Regards

Re: Resume of Steve Snow : Database SQL Applications Programmer

2007-04-05 Thread Bruno Desthuilliers
stevesnow a écrit : > -- > > Please forward this work experience & skills summary > to your Database & software development, MIS/IT/Software Department for > review. > > -- &g

Re: Resume of Steve Snow : Database SQL Applications Programmer

2007-04-04 Thread Peter Decker
e Department for > review. > > ------ > > Here is my full resume in Microsoft Word format. You forgot to include your spamming experience. -- # p.d. -- http://mail.python.org/mailman/listinfo/python-list

Resume of Steve Snow : Database SQL Applications Programmer

2007-04-04 Thread stevesnow
-- Please forward this work experience & skills summary to your Database & software development, MIS/IT/Software Department for review. -- Here is my full resume in Microsoft Word format. To us

Patchs and bugs resume

2007-03-20 Thread Facundo Batista
"How can I know the temporal location of >a patch/bug?". Are there a lot of old patchs/bugs? Those that are old, don't >have any update or there're a big discussion with each one? Are they abandoned? To help me with this analisys, I made a tool that taking information fro

Re: resume picking items from a previous list

2006-05-02 Thread Christos Georgiou
On 30 Apr 2006 05:33:39 -0700, rumours say that "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> might have written: > >kpp9c wrote: >> For a time i pick from my songs, but i only play a few of the songs in >> that list... now my wife, Jessica Alba, comes home, and i start playing >> from Jessica's list o

Re: resume picking items from a previous list

2006-04-30 Thread [EMAIL PROTECTED]
kpp9c wrote: > I have a several list of songs that i pick from, lets, say that there > are 10 songs in each list and there are 2 lists. > > For a time i pick from my songs, but i only play a few of the songs in > that list... now my wife, Jessica Alba, comes home, and i start playing > from Jessic

Re: resume picking items from a previous list

2006-04-29 Thread James Stroud
James Stroud wrote: > kpp9c wrote: > >> I have a several list of songs that i pick from, lets, say that there >> are 10 songs in each list and there are 2 lists. >> >> For a time i pick from my songs, but i only play a few of the songs in >> that list... now my wife, Jessica Alba, comes home, and

Re: resume picking items from a previous list

2006-04-29 Thread James Stroud
kpp9c wrote: > I have a several list of songs that i pick from, lets, say that there > are 10 songs in each list and there are 2 lists. > > For a time i pick from my songs, but i only play a few of the songs in > that list... now my wife, Jessica Alba, comes home, and i start playing > from Jessic

resume picking items from a previous list

2006-04-29 Thread kpp9c
I have a several list of songs that i pick from, lets, say that there are 10 songs in each list and there are 2 lists. For a time i pick from my songs, but i only play a few of the songs in that list... now my wife, Jessica Alba, comes home, and i start playing from Jessica's list of songs. After

resume TCP comunication

2005-11-28 Thread zunbeltz
g2struct(data) Request and Anser are objects in where i put the information i whant to send and recive from the machine. All the measurement is done in a new thread. The problem is that sometimes i loose the conenction whith the machines. In the case a ConnectionFailure exception is raised. How ca

Re: resume upload

2005-07-05 Thread Jeff Epler
probably by using REST. This stupid program puts a 200 line file by sending 100 lines, then using REST to set a resume position and sending the next 100 lines. import getpass, StringIO, ftplib lines = ["Line %d\n" % i for i in range(200)] part1 = "".join(lines[:100]) part2

resume upload

2005-07-05 Thread Jxzzy78
How can i resume a partial upload using ftplib ? -- http://mail.python.org/mailman/listinfo/python-list

Re: Resume after exception

2005-06-14 Thread Richard Lewis
On Tue, 14 Jun 2005 10:09:30 +0100, "Richard Lewis" <[EMAIL PROTECTED]> said: > Hi there, > > Is it possible to have an 'except' case which passes control back to the > point after the exception occurred? > > e.g. > > # a function to open the file > # raises FileLockedException is file contains

Re: Resume after exception

2005-06-14 Thread [EMAIL PROTECTED]
Richard Lewis schreef: > Is it possible to have an 'except' case which passes control back to the > point after the exception occurred? No, not in Python. The concept has however been discussed, under the name "resumable exceptions". http://www.google.com/search?num=100&q=%22resumable+exceptions%

Re: Resume after exception

2005-06-14 Thread Skip Montanaro
>> Is it possible to have an 'except' case which passes control back to >> the point after the exception occurred? Peter> Basically no, although I could imagine some gross hack with the Peter> frame info and some bytecode hacks that effect a "goto". Someone (I forget who) posted

Re: Resume after exception

2005-06-14 Thread Peter Hansen
ve, and break out of the loop when things succeed. (What internal state do you think the open_file procedure would have to maintain, which you would be trying to resume? If you are just going to go back to the beginning of it and try again, you don't need anything like what you asked for, ju

Re: Resume after exception

2005-06-14 Thread [EMAIL PROTECTED]
Why does the first function return True? Shouldn't it return the file content? That's at least what the function name implies. You call the second function open_command() which returns a boolean. Feels wrong. Where you have written "How?" I suggest that you replace that by: return open_file("foo.b

Re: Resume after exception

2005-06-14 Thread Dan Sommers
On Tue, 14 Jun 2005 10:09:30 +0100, "Richard Lewis" <[EMAIL PROTECTED]> wrote: > Hi there, > Is it possible to have an 'except' case which passes control back to the > point after the exception occurred? Not that I can think of. [ example of "interrupting" a file-reading function in order to ask

Resume after exception

2005-06-14 Thread Richard Lewis
Hi there, Is it possible to have an 'except' case which passes control back to the point after the exception occurred? e.g. # a function to open the file # raises FileLockedException is file contains 'locked' information def open_file(file_name): f = file(file_name, 'r') {read first line