115,451 reputation
15155293
bio website StackOverflow.Com/users/2988
location Karlsruhe, Germany
age 34
visits member for 4 years, 9 months
seen 6 hours ago
stats profile views 9,682

Not a software developer in the sense that I write software as part of my job or otherwise get paid to do so. Also, not a developer in the sense that I write software for others.

I write software for myself, often for no other reason than that I want to. (What I call recreational programming.)

Actually, I’m currently forcibly confined to recreational programming, as I’m looking for a job.

My current go-to language is Ruby, but I’m interested in all sorts of other languages as well: Newspeak, Seph, Ioke, Self, Io, Slate, Reia, Cobra, Fortress, Sapphire, Haskell, Scala, Clojure, Racket, Go, Fancy, Poison, and many more.


8h
revised Optional argument after splat argument
added 1338 characters in body
8h
revised Optional argument after splat argument
added 1338 characters in body
8h
answered Is it possible to load / require only one function form a large Ruby module?
15h
revised Optional argument after splat argument
added 533 characters in body
15h
revised Optional argument after splat argument
added 120 characters in body
15h
answered Optional argument after splat argument
1d
answered How to search an array of hashes for the name of the hash containing a certain key-value pair? (Ruby)
2d
awarded  Nice Answer
2d
awarded  Enlightened
2d
awarded  Nice Answer
Jun
15
answered Taking snapshot of ruby environment
Jun
15
comment Ruby ++ not work?
x++ is perfectly legal, when followed by another operand. It is parsed as x + (+?). Remember that operands can be separated from the operators with whitespace, including newlines. So, x++ on one line followed by y on the next line is perfectly valid and is the same as x + +y which is the same as x.+(y.+@). That's why x++ on its own appears to work in IRb: because IRb is waiting for the operand on the next line and will only throw an error then.
Jun
14
comment Difference between 1.second.from_now and 1.seconds.from_now in Ruby's ActiveSupport library?
Because "now" now is not the same "now" as now was then :-D
Jun
14
awarded  Good Answer
Jun
13
answered What are private methods for in Ruby?
Jun
13
awarded  Nice Answer
Jun
13
comment Why do I get different results for arity between proc and method?
Lambdas behave like methods, both in argument checking and in the behavior of return. Regular non-lambda Procs behave like blocks, both in argument checking and in the behavior of return. Remember: "block" rhymes with "proc" and "lambda" is a Greek letter just like "method" is Greek word. (Yeah, pretty weak, I know :-D )
Jun
13
comment Does LSP also make sense for dynamic typed language like Ruby?
An immutable Square is an immutable Rectangle. A "write-only" Rectangle is a "write-only" Square. A read/write Square and a read/write Rectangle are neither sub- nor supertypes of each other.
Jun
12
awarded  Good Answer
Jun
12
awarded  Good Answer