Live data from Hacker News

Viewing profile — breakpete

breakpete

HN member
Joined
Thu, Nov 14, 2013, 9:18 AM UTC
HN karma
10
Public activity
5 items

About breakpete

No profile information was provided.

Recent public activity

  1. comment
    Comment #39337484

    Not sure about the older versions of Javalin, but from my experience with v5+ it just uses regular Single Abstract Method conversion for the Handler interface, which has a single m…

  2. comment
    Comment #39337393

    Regarding 2, you can actually bind routes to instance methods: var obj = new SomeObjectWithHandlerMethods(dependency); var app = Javalin.create().get("/", obj::handlerMethod).start…

  3. comment
    Comment #33126248

    You are not doing it wrong. Standups can be traced back to the Scrum practice Daily Scrum. The Daily Scrum is a short (max 15 minute) synchronisation meeting for developers. It is …

  4. comment
    Comment #6769832

    There is https://github.com/peterskeide/bones (I'm the author). It's by no means a large codebase, and it's not finished, but the goal is to give you a decent starting point with s…

  5. comment
    Comment #6731440

    There is more. The dependency injection implementation is based on reflection, using the https://github.com/codegangsta/inject package. See e.g https://github.com/codegangsta/marti…