Live data from Hacker News

Viewing profile — vendakka

vendakka

HN member
Joined
Wed, Apr 10, 2013, 7:27 PM UTC
HN karma
72
Public activity
55 items

About vendakka

No profile information was provided.

Recent public activity

  1. comment
    Comment #15695018

    Hi HN, TimeFerret is a beautiful calendar app for iPhones and iPads. It comes with a custom keyboard that lets you access your calendar from any app. How TimeFerret is different fr…

  2. story
  3. comment
    Comment #14637864

    Stencil implements GoImports formatting which is basically GoFmt with a slightly different import ordering. And yes, it would be useful to standardize this somehow, the way go gene…

  4. story
  5. story
  6. comment
    Comment #13428346

    The go vet integration with go test looks interesting. I'm currently using github.com/surullabs/lint [1] to run vet and a few other lint tools as part of go test. It provides a nic…

  7. comment
    Comment #13333866

    Ah right.

  8. comment
    Comment #13331898

    I wasn't very clear. A hypothetical conn.Read(w Writer) would call Write on w instead of filling a byte array. Write in turn allocates as needed. WriterTo is a cleaner way of doing…

  9. comment
    Comment #13331727

    Exactly. The sync.Pool will only be useful if net.Conn.Read accepted a Writer instead of []byte.

  10. comment
    Comment #12949723

    Hi, I'm the author. Please let me know if you have any questions or comments. This library allows you to run a variety of linters as part of go test. It also supports whitelisting …

  11. story
  12. comment
    Comment #12376004

    This is something I definitely agree with. I've sometimes found that taking a few seconds to cache state in a notepad before responding to the interruption helps a lot. Having time…

  13. comment
    Comment #12189997

    This is very good advice. I've had trouble with flexibility for as long as I can remember. I've recently started some light exercise again and including yoga for just 5 to 10 min h…

  14. comment
    Comment #12171242

    I've used git subrepo [1] for vendoring and been quite happy with it. Doesn't seem to have the problems of git submodule and it's easier to use than git subtree. [1] https://github…

  15. comment
    Comment #12165373

    Would you be interested in trying our beta [1] once it's ready? We're working on the hypothesis that bad meeting schedules can result in a large drop in productivity, especially fo…

  16. comment
    Comment #11681585

    Thanks for letting us know. I've updated the quota so the website is up now. EDIT: Changed it to say the website is up, where it said the website will be up shortly.

  17. comment
    Comment #11678832

    Slightly shameless self promotion: If you're looking for an Android solution, we're working on TimeFerret, a calendar app that helps you reduce fragmented meeting schedules and tra…

  18. comment
    Comment #11376786

    Regarding generics: the tool generates Java bindings from Go code. Since Go doesn't have generics we just generate non-generic bindings.

  19. comment
    Comment #11376643

    Yes. The only constraint is that the jar will only work on the architecture it was built on.

  20. comment
    Comment #11376628

    Yes this is definitely a little limiting. I'm also experimenting with a slightly different binding method, where passing pointers to structs is disallowed (gobind currently allows …

  21. comment
    Comment #11375482

    Yup. I'll put together some more docs and usage examples this weekend. Edit: https://github.com/sridharv/gojava/issues/6

  22. comment
    Comment #11375199

    This exists for Python [0]. The reverse is also interesting (Go -> Java/Python/Ruby) and once I get some spare time, I'll play around with using libjvm to load and call jar files f…

  23. story
  24. comment
    Comment #9827909

    I've set up a business here without knowing German (I'm Indian). I moved here from the U.S and what worked for me was to pass all of this off to people who know how to deal with it…

  25. comment
    Comment #9655997

    Conway's Law comes into play a little here. Microservices provide organization level flexibility at the cost of operational and development complexity. For small teams and especial…