ΤΖΩΤΖΙΟΥ

6,586
Reputation
860 views

Registered User

name ΤΖΩΤΖΙΟΥ
member for 1 year
seen 6 hours ago
website
location Athens, Greece
age 37
I've been programming as a profession over half of my life and still enjoy it. After many wanderings, I found port Python and stayed. However, the old pirate unixen ghosts of C and SQL come back to haunt me from time to time…
9h
awarded  Nice Answer
1d
comment Boolean in Python
bravado: what's the point not accepting the answer you find most helpful? It's totally irrelevant if another answer is upvoted more.
2d
awarded  Mortarboard
2d
comment Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU?
When hovering over the up/down vote arrow, the alt text is clear: "this answer is useful/not useful". Idiotically, it seems that many SO users read "I like this answer/I don't like this answer and this person should die a horrible death" instead, and vote accordingly. If I had to downvote an answer, I'd downvote nicholaides' answer, but I can't, for the miniscule chance he's right (although I strongly believe he's not).
2d
revised How to create a zip archive of a directory in python?
removed the unneeded extension parameter
2d
comment Writing a Faster Python Spider
Your best bet to make the process faster is to improve your connection speed. That will be your bottleneck, not Python speed.
2d
revised Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU?
added the EDIT that the OP posted as an answer
2d
comment Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU?
This is most probably a GIL related issue on a 3-core machine, not a memory or disk access issue.
2d
comment compute crc of file in python
The OP wants to see the CRC32 as hex, not as base64-encoded.
Dec
5
answered why Ghost Process appears after kill -9
Dec
5
answered Python regex matching Unicode properties
Dec
5
comment How to treat the first line of a file differently in Python?
**open vs file**: see what Guido says on the subject in mail.python.org/pipermail/python-dev/… and in mail.python.org/pipermail/python-dev/…. It's probable that in the future you might have to change your code from file to open.
Dec
5
revised How to treat the first line of a file differently in Python?
changed py3 into py2.6+
Dec
5
awarded  Enlightened
Dec
4
awarded  Nice Answer
Dec
4
answered python gtk module opens display on import
Dec
3
answered How do ldexp and frexp work in python?
Dec
3
revised Python, PowerShell, or Other?
could also change it into "a fairly easy install"
Dec
3
comment Why are there extra blank lines in my python program output?
Amen, John, amen.
Dec
2
revised Python universal database interface?
decodified; so syntax coloring has been removed
Dec
2
revised What is the range of values a float can have in Python?
removed some redundant lines
Dec
2
revised What is the range of values a float can have in Python?
fixed the code to return minimum AND maximum positive floats
Dec
2
answered What is the range of values a float can have in Python?
Dec
2
answered Problem with variable scoping in Python
Dec
2
answered Using try vs if in python
Dec
2
comment Expression Versus Statement
foo.voidFunc(1); is an expression with a void value. while and if are statements.
Dec
2
revised Expression Versus Statement
C-derived languages and expressions as statements
Dec
1
revised cat filename.* > Datei
changed chunk size, `while` expression
Nov
30
answered How to get unicode month name in Python?
Nov
28
comment How to safely write to a file?
If tempfile is created in another filesystem than the target one, then the final rename either won't work, or it won't be atomic.
Nov
25
revised Python UnicodeDecodeError - Am I misunderstanding encode?
added two postscripts
Nov
23
revised How to get process’s grandparent id
removed the redundant output 'ps -ef' line
Nov
22
awarded  Nice Answer
Nov
21
comment Uniscribe Kerning
I can't see your screenshot, all I see is "alt text".
Nov
21
answered Uniscribe Kerning
Nov
20
revised Reliable and efficient key--value database for Linux?
added a missing 'in'
Nov
19
comment Reliable and efficient key--value database for Linux?
esm: did you read the question? The database size is 20 GiB, and there are 100 reads per write, so there are writes. Now, do you consider acceptable to move 20 GiB to-and-fro per write?
Nov
18
answered Reliable and efficient key--value database for Linux?
Nov
18
revised Python difflib: highlighting differences inline?
NotImplementedError is the name of the exception
Nov
17
answered Finding the highest key
Nov
16
comment Calling types via their name as a string in Python
There is a proper way to access the __builtin__ module, and that way is to import it. Using __builtins__ is not recommended, as described here: docs.python.org/library/__builtin__.html
Nov
15
comment File open error by using codec utf-8 in python
Actually, Windows can have UTF-8 as the system encoding (chcp 65001), but most applications will misbehave.
Nov
14
comment How to get process’s grandparent id
This is a single process python script; I find a recursive ps more appropriate for a shell script. I don't treat python as a generic /bin/sh replacement. Thanks for the "+1" in your comment, anyway.
Nov
13
revised Python - Get a list of all the encodings python can encode to
added the aliases.values line; deleted 70 characters in body
Nov
13
comment How to get process’s grandparent id
btw, I've had people often ask me why I don't follow PEP-8 and never use a space after a name when assigning to it; it's an old habit I developed for C code and kept it; it's been years since I last got bitten by a "=" instead of "==" bug (or syntax error).
Nov
13
answered How to get process’s grandparent id
Nov
13
revised How to get process’s grandparent id
deleted 4 characters in body
Nov
13
comment How to get process’s grandparent id
I edited your answer (the ps line). Using grep to filter ps output can give incorrect results (think if pppid was 1, for example). The -p option, by the way, is quite old.
Nov
13
revised How to get process’s grandparent id
check the ps line for avoided greps
Nov
11
awarded