Live data from Hacker News

Viewing profile — zastrowm

zastrowm

HN member
Joined
Wed, Oct 30, 2013, 3:18 PM UTC
HN karma
1,048
Public activity
97 items

About zastrowm

No profile information was provided.

Recent public activity

  1. comment
    Comment #38906440

    The charitable view would be that they come from language/platform that does include the base-class's methods/apis. Your example of dotnet/C# doesn't seem to be the best - DotNet/C…

  2. comment
    Comment #38012577

    I liked Edge originally too - it seemed cleaner than chrome and had some cool features like vertical tabs and the Dev tools that were better than Chrome's. I made it my daily drive…

  3. comment
    Comment #35929005

    I find the best middle ground is setting up the IDE to have TSC watch running while making changes, but using other tools for doing the actual compiling (vite for example). This al…

  4. story
  5. comment
    Comment #33484547

    It may not be the correct way or a smart way, but it is objective - the metric being used cannot be interpreted one way or another, it's just LOC.

  6. comment
    Comment #32503904

    For this specific example the problem is that the handleClick callback is using a stale/cached onImageDeleted callback (which indirectly has old state). If you add onImageDeleted t…

  7. story
  8. comment
    Comment #26625445

    I think the point was that it's not different from Node.js - and thus not much of a benefit. If it was more along the lines of "I want to use this array helper library, but it shou…

  9. comment
  10. comment
    Comment #16525996

    Yeah, but I wonder if .NET wouldn't have succeeded until .NET Core without generics as a distinguishing feature. I feel like generics + some of the features built on them (LINQ+TPL…

  11. comment
    Comment #16525606

    This surprised me: > It was only through the total dedication of Microsoft Research, Cambridge during 1998-2004, to doing a complete, high quality implementation in both the CLR (i…

  12. story
  13. comment
    Comment #16162520

    I crave this for C#/.NET; I was hoping the article was going to mention something about faster edit cycle w.r.t. normal apps. It came pretty close: > ... uses the new Mono IL inter…

  14. comment
    Comment #16161276

    The CSharpLang github[1] repository would be where to look for this. I didn't find anything that mentioned adding language support for it, and IIRC, in the past they rejected the i…

  15. comment
    Comment #16130106

    I'm curious if this will change now that webapps/electron-apps have become so popular. It may be that users have begun non-native apps as the new norm.

  16. comment
    Comment #16071543

    Has there ever been discussion about a permission for "running as an app" that would make a distinction between web pages and apps? I like that the web gets more features that allo…

  17. story
  18. comment
    Comment #15434689

    Yep, it's annoying to have those limitations, but I sort of understand why. They could make their message a lot clearer though. > I personally would have the hardest time with the …

  19. comment
    Comment #15428904

    > even the drug-pusher-like "Community" (first hit is free, unless/until you're making money) edition. I mean, yeah it's not free-for-all, but "first hit is free" is kind of unfair…

  20. comment
    Comment #14972655

    I believe that .NET Core is not a subset of the .NET Framework; e.g. .NET Core might have things that are not yet in .NET framework. I believe that the things that go into .NET cor…

  21. comment
    Comment #14426303

    I wondered the same, so I looked it up: https://petition.parliament.uk/petitions/171928

  22. comment
    Comment #14425127

    My understanding was that vivaldi wasn't completely open source either. [0]: https://www.reddit.com/r/vivaldibrowser/comments/54kzpc/psa_...

  23. comment
    Comment #14159208

    Ah, faster than the `ConcurrentDictionary`. That makes sense!

  24. comment
    Comment #14159200

    > I am talking about what value you could pass into the multiple dispatch code in the article I linked to Ah, I misunderstood the question. Yes, in that case it's fairly type-safe.…

  25. comment
    Comment #14153848

    > I've found the DLR is just as fast... with a much lower overhead Can you expand on this? I would not have expected that it would be faster than compiled expressions.