Live data from Hacker News

Viewing profile — niklasjansson

niklasjansson

HN member
Joined
Sat, Mar 17, 2018, 3:26 PM UTC
HN karma
25
Public activity
8 items

About niklasjansson

No profile information was provided.

Recent public activity

  1. comment
    Comment #49216159

    I think this was great. It's obviously heavily or completely AI coded but it didn't bother me. I would love the same thing for other kinds of fishing (not specifically fly fishing …

  2. comment
    Comment #35957841

    And it's still the same "coming soon" status on most subjects.

  3. comment
    Comment #35839608

    We had planned to have our wedding performed on Götheborg, it was all planned. We got a tour of the ship and discussed catering and so on. Suddenly a few months prior to the weddin…

  4. comment
    Comment #27461766

    Because it's nice to have all tests in a single view and a single language, both unit, integration and end to end. Also regardless of keeping it in a _single_ language or tool, one…

  5. comment
    Comment #21996172

    The C# version is lacking the using pattern. https://docs.microsoft.com/en-us/dotnet/csharp/language-refe...

  6. comment
    Comment #19918754

    Yeah you got my example. But regarding your conclusion; my entire point is that it IS more useful than you might think. Disclaimer: I often use emacs e g regex-replace and other me…

  7. comment
    Comment #19903512

    Excel. Seriously. For more things than you imagine Let's say you want to make a property assignment for some class; this.a=x.a this.b=x.b ... While you probably would want to do th…

  8. comment
    Comment #16607353

    So this behavior is reasonable? Rectangle r=getRectangle(); r.width=1; Assert(1, r.width); //passes r.height=2; Assert(1, r.width); //fails or passes depending on subclass