Torsten Marek

6,521
reputation
393 views

Registered User

name Torsten Marek
member for 1 year
seen yesterday
website
location Germany
age 27
I'm a computational linguist by education, but I've always been on the technical side of things.
Dec
8
comment Evaluation of curve in Java2D
It's strange indeed that they don't expose that.
Dec
7
asked Evaluation of curve in Java2D
Dec
6
awarded  Mortarboard
Dec
3
accepted How to specify monospace fonts for cross platform Qt applications ?
Dec
2
answered How to specify monospace fonts for cross platform Qt applications ?
Dec
2
accepted Linux Process Spawn/Creation Trigger
Oct
22
accepted What is the scope for imported classes in python?
Oct
22
awarded  Nice Answer
Oct
21
awarded  Popular Question
Oct
15
accepted Are there any open wireless routers?
Sep
29
awarded  Guru
Sep
16
awarded  Yearling
Aug
28
revised Is it possible to use generic constraints based on attributes rather than types?
typo fixes
Aug
25
awarded  python
Aug
24
revised XML Parsing - SAX vs. DOM. vs. ElementTree
fixed typo
Aug
18
comment Qt: how to set main window’s initial position?
+1: I had a hunch that something like that existed, but didn't know exactly how...
Aug
17
awarded  Nice Answer
Jul
22
accepted Hacking JavaScript Array Into JSON With Python
Jul
21
comment Change python file in place
The only way to delete bytes from the beginning of the file is either to write it totally new, or move everything in-place, i.e. read byte 100, write to 0, read 101, write to 1 etc, and then truncate at the end. Since you have to do that over and over again, you end up with O(n^2).
Jul
21
awarded  Nice Answer
Jul
20
accepted Change python file in place
Jul
20
awarded  Nice Answer
Jul
18
revised Fastest way to find minimal Hamming distance to any substring?
fixed a bug in the find_next_pos function when finding a match for a non-initial character
Jul
18
revised Fastest way to find minimal Hamming distance to any substring?
updated answer in response to question update
Jul
18
answered How to define the version number of a software?
Jul
18
comment Fastest way to find minimal Hamming distance to any substring?
Oh right, and I'm sorry all the code examples are in Python, but that's just the language I'm most comfortable with. Please feel free to ask for clarifications!
Jul
18
answered Fastest way to find minimal Hamming distance to any substring?
Jul
17
answered MPI signal handling
Jul
17
comment double.NaN
100/0 is not NaN, it is Infinity! docs.sun.com/source/806-3568/…
Jul
17
comment Can a GNOME application be automated? How?
+1: thanks for the link, very useful!
Jul
17
comment double.NaN
@Fredik, @Erich: Division by Zero will give inf (or, +inf, -inf based on the operands), 0 / 0 (among others) results in a NaN. There's a nice table with special operations/results at steve.hollasch.net/cgindex/coding/…
Jul
17
comment Xpath to select only nodes where child elements exist?
Only if you want to put it into an XML file (e.g. an XSLT script). Still, that's just a storage detail, I'm pretty sure the XPath spec uses ">" :)
Jul
17
answered double.NaN
Jul
17
comment Change python file in place
Good luck with that:)
Jul
17
answered Change python file in place
Jul
17
comment Why does this code with generics compile?
You're quoting from the 1.4.2 docs, while to OP uses 1.5 syntax.
Jul
17
answered Why does this code with generics compile?
Jul
17
answered XML parsing expat in python handling data
Jul
17
comment Hacking JavaScript Array Into JSON With Python
It's not too difficult to extend the range of allowable values and add a little dictionary with builtins like those. I mostly wrote up that answer to advertise PyParsing:)
Jul
17
comment Python sorting list of dictionaries by multiple keys
You can't take the negative of a string.
Jul
17
answered Hacking JavaScript Array Into JSON With Python
Jul
17
answered Linux Process Spawn/Creation Trigger
Jul
17
comment Python sorting list of dictionaries by multiple keys
cf. the updated answer.
Jul
17
revised Python sorting list of dictionaries by multiple keys
updated answer to reflect requests in comment
Jul
17
answered Xpath to select only nodes where child elements exist?
Jul
17
revised How do you add a model method to an existing class within an interactive session (in iPython)?
fixed formatting
Jul
17
answered Python sorting list of dictionaries by multiple keys
Jul
17
accepted PyQt: Overriding QGraphicsView.drawItems
Jul
17
revised PyQt: Overriding QGraphicsView.drawItems
extended the answer
Jul
17
answered PyQt: Overriding QGraphicsView.drawItems