Live data from Hacker News

Viewing profile — sat

sat

HN member
Joined
Wed, Sep 17, 2014, 11:02 PM UTC
HN karma
6
Public activity
7 items

About sat

No profile information was provided.

Recent public activity

  1. comment
    Comment #8341940

    Well, I was just comparing Java - a complied, strictly typed languages to another in the same domain - Go. Scripting and interpreted languages like python, ruby are a different thi…

  2. comment
    Comment #8337258

    Struct embedding is just syntactic sugar. Have you tried using reflection to look at the fields of the struct? You don't have a chance of looking that the embedded field properties…

  3. comment
    Comment #8337129

    Here is a competition. I'd write in Java and you can write in go. Lets crank out a simple ToDo CRUD application. Any bet who will finish faster? This is not to say go is bad at all…

  4. comment
    Comment #8337104

    I attempted not to. What pulls me back is the fact that I am trying to force go to help me reuse data structures I already have (without turning to reflection everytime or manually…

  5. comment
    Comment #8337078

    >> bloated IntelliJ and the vim plugin as my only option Bloated it may be but helps me get the job done faster...much faster than I can do it in vim. I work on a mac with 16 GB RA…

  6. comment
    Comment #8337046

    Embedding won't give you a flattened structure with transparency you expect. In other words struct B embedded in struct A will only create a syntactic sugar so that you can access …

  7. comment
    Comment #8332962

    Seriously, in good faith, I attempted to learn and write a simple web application in go. I found it hard coming from a world where IDE support was available in other languages that…