Anders Eurenius

1,369
reputation
80 views

Registered User

name Anders Eurenius
member for 1 year
seen Dec 4 at 8:56
website
location Stockholm, Sweden
age 33
I'm a MS/CS, (civilingenjör, actually) and currently I'm into testing in a distributed environment.
Nov
21
awarded  Nice Answer
Nov
17
comment How can I render a tree structure (recursive) using a django template?
Sure. You make a list like [ 'in', 'in', 'blah', 'out', 'blah', 'out'] and then you loop over that in the template. If it's equal to 'in' you emit a li, 'out' you emit a /li and otherwise you just dump the text itself.
Oct
16
awarded  Nice Answer
Sep
20
comment What are some of the most useful regular expressions for programmers?
@recursive: Sure. But where I use it, the point is to eat the contents of the field. If I wanted a correct xml parser, I'd use one..
Sep
20
comment What are some of the most useful regular expressions for programmers?
@dmckee: Are you sure? Isn't it easier to simply type what you mean, instead trying to build and remember the specificts of some kind of abstraction that only you use?
Sep
19
comment What are some of the most useful regular expressions for programmers?
I have a routine somewhere for generating regexes for {0,1}-upto-n, for any n, somewhere. I just don't use it that often, since it's usually more convenient to check the number once you've read it.
Sep
19
answered What are some of the most useful regular expressions for programmers?
Aug
31
revised What bug tracking software do you use?
Undo hostile edit
Aug
16
awarded  Yearling
Aug
14
comment What would be a suitable way to log changes within a database
I've used this, and it works very nicely. You'll need to trigger on INSERT, UPDATE and DELETE and save the right thing in each case, but yeah, basically that's it. You get a nice audit table 'for free',
Aug
12
comment Language w/ the smallest interpreter written in itself
So we can count on you to implement this?
Aug
5
awarded  Good Answer
Aug
4
revised Luster, Gluster or MogileFS?? for video storage, encoding and streaming
edited tags
Aug
2
answered Best C++ Debugger For Linux
Jul
30
comment How to write an application for the system tray in Linux
(It's not relevant, not since the freedesktop spec. (which was the whole point of having it.))
Jul
29
comment Help on language choice
There's a way to bundle up python apps for windows: docs.python.org/using/windows.html#py2exe
Jul
29
answered How to write an application for the system tray in Linux
Jul
24
answered Help on language choice
Jul
14
comment Most harmful misconception of beginners about programming?
Yes! This is quite seductive and can be hard to get rid of.
Jul
13
comment Fake a cookie to scrape a site in python
There are a few remote control browser solutions. I like selenium, particularly since I can run it in a virtual framebuffer Xwindows. (screenshots still work just fine.) Don't know much about the others, though.
Jul
3
awarded  Nice Answer