Live data from Hacker News

Viewing profile — grepgrep

grepgrep

HN member
Joined
Mon, Jan 16, 2012, 5:05 PM UTC
HN karma
3
Public activity
3 items

About grepgrep

No profile information was provided.

Recent public activity

  1. comment
    Comment #3471562

    I took a look at lombok and it's pretty obvious from the way cleanup method names can be passed as strings that's it's using reflection. It's a bit of a nasty hack, but it works.

  2. comment
    Comment #3471538

    I think the only thing that was added to the API was a single interface called Closeable. Adding 1 interface to a library is hardly bloat. The change is essentially language suppor…

  3. comment
    Comment #3471481

    Rough example below, partially taken from a book I have on Scala. //define it like this: def using[T S) = { val result = operation(obj) obj.close() result } //use it like this: val…