corey goldberg

1,994
reputation
178 views

Registered User

name corey goldberg
member for 1 year
seen 11 hours ago
website
location Boston, USA
age 35
Software Engineer, Tester, Python Hacker, Performance Geek
5h
awarded  Nice Question
Dec
18
comment Multiprocessing launching too many instances of Python VM
makes sense after peter's updated answer.. thanks
Dec
17
comment Multiprocessing launching too many instances of Python VM
that was it!! wow.. weird behavior indeed.
Dec
17
comment Multiprocessing launching too many instances of Python VM
i'm on the newest Python 2.x (2.6.4)
Dec
17
comment Multiprocessing launching too many instances of Python VM
i'm positive only a single version is starting. this is totally bizarre. It just keeps spawning and spawning on my machine. thanks for verifying on *nix.
Dec
17
asked Multiprocessing launching too many instances of Python VM
Dec
16
answered How to launch a Python/Tkinter dialog box that self-destructs?
Dec
15
comment Need to add httpd support to this wxPython code.
can you clarify what you mean by "need to add httpd support"?
Dec
11
comment setting XML value using xmlrpc & python
looks like there is no server listening on port 9000. is your remote server started?
Dec
11
answered Sending the variable’s content to my mailbox in Python?
Dec
11
awarded  Popular Question
Dec
1
answered Python: How do I split a list into groups?
Nov
30
comment Introduction to Python
don't forget the new version for Py3: diveintopython3.org
Nov
23
awarded  Notable Question
Nov
19
answered Favorite 3rd-party Python Libraries?
Nov
13
revised How do I check the HTTP status code of an object without downloading it?
deleted 1 characters in body; added 1 characters in body
Nov
13
comment How do I check the HTTP status code of an object without downloading it?
Ken, I know what you mean, but his questions was how to do it without downloading the file. and in this case, no content is read by the client after the response header
Nov
13
answered How do I check the HTTP status code of an object without downloading it?
Oct
27
comment Python, List running processes 64Bit Windows
WMI works well for this
Oct
19
accepted Scheduled tasks in Win32
Oct
19
comment Scheduled tasks in Win32
because os.popen is deprecated. see docs.python.org/library/subprocess.html
Oct
19
answered Scheduled tasks in Win32
Oct
17
awarded  Nice Answer
Oct
14
answered Python newbie - Understanding class functions
Oct
13
comment Grouping data points into series
also, this seems to be slightly faster than the defaultdict version
Oct
13
comment Grouping data points into series
oops.. my bad. it does give correct output. I am erasing my previous comment and upvoting this solution.
Oct
13
comment non-blocking read/log from an http stream
the for/with order was intentional. this will open/close the file handle with each write. Not efficient for a busy stream, but in my case the stream is mostly blocked/waiting and then occasionally receives data to log.
Oct
13
comment how to get time of a python program execution?
time.time() is best used on *nix. time.clock() is best used on Windows.
Oct
13
comment how to get time of a python program execution?
on Windows, do the same thing, but use time.clock() instead of time.time(). You will get slightly better accuracy.
Oct
12
asked non-blocking read/log from an http stream
Oct
12
revised Efficient way to find the largest key in a dictionary with non-zero value
added 4 characters in body
Oct
12
awarded  Nice Question
Oct
12
comment Efficient way to find the largest key in a dictionary with non-zero value
I just updated my answer... switched from lists to generators/iterators
Oct
12
revised Efficient way to find the largest key in a dictionary with non-zero value
added 10 characters in body; edited body
Oct
12
revised Efficient way to find the largest key in a dictionary with non-zero value
deleted 12 characters in body
Oct
12
answered Efficient way to find the largest key in a dictionary with non-zero value
Oct
11
comment Grouping data points into series
your dict version is the only one that correctly printed empty groups. it is also very fast. accepting this answer
Oct
11
comment Grouping data points into series
this version is fast, but it doesn't store empty groups for empty intervals. see Nicholas Riley's answer and comments
Oct
11
comment Grouping data points into series
this version is much faster and is very readable. but it doesn't store empty groups for empty intervals. see Nicholas Riley's answer and comments
Oct
11
comment Grouping data points into series
cool. i'll run some benchmarks
Oct
11
comment Grouping data points into series
i actually need to know when a group is empty, so can't make that assupmtion.
Oct
11
comment Grouping data points into series
hop, yes correct
Oct
11
comment Grouping data points into series
steve, yes exactly
Oct
10
asked Grouping data points into series
Oct
10
accepted What do you think of the new functionality in Python 2.6?
Sep
28
comment Why can’t I invoke python from the command line?
go to a command prompt, type 'set'. do you see C:\python26 in your PATH environment variable? make sure it is correctly delimited with a semicolon before/after it.
Sep
24
awarded  Popular Question
Sep
22
answered Looking for a bare-bones open-source editor written in python
Sep
21
awarded  Notable Question
Sep
18
awarded  Yearling