Live data from Hacker News

Viewing profile — sdfsfsf3kjdf

sdfsfsf3kjdf

HN member
Joined
Wed, Feb 10, 2021, 8:49 PM UTC
HN karma
7
Public activity
9 items

About sdfsfsf3kjdf

No profile information was provided.

Recent public activity

  1. comment
  2. comment
    Comment #26639418

    Sure, it's definitely something worth taking into consideration, I just wouldn't value it too highly and in many cases I think there are much better indicators of ability.

  3. comment
    Comment #26638958

    > I imagine the developer pool is much smaller but the candidates are higher quality People always say this about their favorite niche language and it always feels a little too sel…

  4. comment
    Comment #26638798

    > but the longer your repl session is open and the more you change and compile, the more likely you are going to end up with a mixed state in memory that does not reflect how your …

  5. comment
    Comment #26214377

    Extremely shallow criticism based off of little more than personal anecdotes.

  6. comment
    Comment #26094949

    In Rust you can solve this via derive or a macro. Typescript's conditional types and the associated utility types are a nice solution to this problem as well. You can do a ton with…

  7. comment
    Comment #26094877

    How exactly are you going to implement a type safe option type without generics? You either have to use interface{}, which is obviously not type safe, or write/generate an option t…

  8. comment
    Comment #26094744

    > Is that not what generics would fix? No. That would be fixed by having something akin to typeclasses, traits or interfaces. Elm's List, Maybe and Array are all defined using a ge…

  9. comment
    Comment #26094579

    > Well, I just come from a Elm gig and I must say I was not too bothered with the lack of generics there. Elm has generics.