34,797 reputation
34484
bio website
location Germany
age 29
visits member for 4 years
seen 3 hours ago
stats profile views 2,413

I am a informatics student at the Technical University Munich, Germany. My primary language is Python, which I've been using since around 2000. I'm very interested in programming languages in general and learned quite a lot over the years. I started with Pascal and Modula in school and fell in love with Python just a few months later. I wrote a few small websites in PHP, later in Ruby, before I finally realized that Python is also extremely powerful for web programming.

I got in touch with Lua, a great embedded language, while using the open source program Litestep, a shell replacement for Windows I've used for many years. Eventually I took over the Lua module for Litestep, learning a bit of C in the process. I wrote the largest (or should I say, last) Litestep website with the Pylons framework.

At the university I learned Java and Ocaml. I was especially impressed with the power and usefulness of types in both of these languages, but Ocaml as a functional language really pried my eyes open to the beauty of functional programming. Even though I'm not particularly fond of Ocaml, I'm have to thank it for changing the way I think about and write programs.

I work at the network chair of the University of Munich where I worked with DHTs, SIP and currently virtual machines and live migrations. At my other job I try to maintain and improve a web shop written in PHP while keeping my sanity.

In my free time I try to catching up on programming language research and finally get something done in Haskell or learn F#. When I'm not programming, I'm probably playing games like GuildWars, StarCraft II and League of Legends. I have a pretty large Hip Hop collection, focusing mostly abstract/independent/underground Rap.


May
15
revised python-ValueError: invalid literal for int() with base 2
added 244 characters in body
May
15
answered python-ValueError: invalid literal for int() with base 2
May
15
comment Common or centralised dictionary in python
Write the dict in it's own file and import it ?
May
14
comment I have a simple python dict why is a generator reference printed instead of the dict
Actually you don't ever need .keys(), you can use list(adict) in its place.
May
12
answered Can someone explain the logic behind this?
May
11
comment Pair of secret tokens which can be checked for match easily
No, you cannot make one key from the other. RSA public and private keys are the same thing, the name just indicates which one you keep private. The question you linked talks about a .pem file, which can hold both keys.
May
11
comment efficient merge-purge of large files in python
The fastest and easiest way would be to load the data into a database and add a index over the key. A index is what you want, but reinventing a database to do this memory efficient will be quite a bit of work.
May
8
comment trouble with classes in python
Why don't you use shuffed = random.shuffe(deck[:])
May
8
comment using 'not' and 'or' together in Python
When in doubt look up "Operator precedence" and add parentheses in order of precedence: in then not then or results in if ((not ('y' in yn)) or ('Y' in yn)):. You can also write if 'y' not in yn and 'Y' not in yn
May
5
awarded  class
May
3
answered splitting a braces grouped string in python
May
2
comment How do I make a generator from two lists in python?
iter( .. ) does not make a generator, it makes a iterator. You would rather do chain(a,b). a+b simply makes a new copy of both lists together, that's not efficient when you don't need that copy.
May
2
comment Index of row where maximum value is located
@jpcgandre: I fixed that for you
May
2
revised Index of row where maximum value is located
added 36 characters in body
May
2
answered Index of row where maximum value is located
Apr
29
comment Using Like operator on MySQL prepared statement
Enable statement logging and look at the actual SQL sent to the DB. Also check your mysql libraries docs on what it does with '%'
Apr
25
awarded  Nice Answer
Apr
24
awarded  Yearling
Apr
22
comment Check if float is “odd” or “even”?
@Paul: Then look at int(number*10) % 2
Apr
18
comment Listing out binary combinations and mapping to data
I already posted it, look at my answer ..