Live data from Hacker News

Viewing profile — maattdd

maattdd

HN member
Joined
Wed, Oct 21, 2015, 9:30 AM UTC
HN karma
483
Public activity
128 items

About maattdd

No profile information was provided.

Recent public activity

  1. comment
    Comment #49153064

    Interesting. My anecdotal experience is that it is.

  2. comment
    Comment #49153004

    DeepSeek without OpenRouter is wayyyy cheaper

  3. comment
    Comment #49120448

    You are American aren't you ?

  4. comment
    Comment #48692199

    It does ?

  5. comment
    Comment #48276979

    > not because pizzerias in Berlin or Warsaw Well kinda actually. In countries with good culinary, even basic konbini food can be better than more "serious" restaurant in bad culina…

  6. comment
    Comment #48176883

    Your conclusion is really a false dichotomy. The square of something very very small (close to zero) is negligeable : thus subortibal hop (Concorde was flying at 18km altitute for …

  7. comment
    Comment #47873132

    I don't know much of PHP, but reaching "Rust/Go" performance is not simply because they have AOT compiler, but because the semantic of the language itself allows efficient compilat…

  8. comment
    Comment #47611502

    Again, this is not by definition. This is by deduction.

  9. comment
    Comment #47574269

    This is not what "by definition" means.

  10. comment
    Comment #47502449

    What about https://github.com/tw93/mole ?

  11. comment
    Comment #47310026

    https://www.cpu-monkey.com/en/compare_cpu-apple_a18-vs-apple...

  12. comment
    Comment #46729864

    I'm (and millions other people) are using macOS with a classic scroll wheel mouse perfectly fine. Are you sure there is not something messing with the trackpad at the same time ? (…

  13. comment
    Comment #46616484

    TLDR: DBtune identified and tuned key server parameters that seem to have had a large impact, including random_page_cost and max_wal_size

  14. comment
    Comment #46365551

    Zed uses clangd, I don't think clangd support only 90% of C++ (and I don't think it avoid hard work).

  15. comment
    Comment #46229365

    https://developer.mozilla.org/en-US/docs/Web/API/CSS_Object_...

  16. comment
    Comment #45453346

    export template extern still exists.

  17. comment
    Comment #45209367

    TIL that std::visit supports multiple variants. How new is that ?

  18. comment
    Comment #44156675

    Obviously you can delete than iterate. He means delete while iterating.

  19. comment
    Comment #44156659

    Examples of better design than abseil in a pure C++20 implementation

  20. comment
  21. story
    Show HN: A Discord/Slack bot to watch HN comments

    Some years ago, I discovered a bot called Little Birdie to watch HN comments for keywords and post a link to Slack. Unfortunately, it has disappeared and I've found myself missing …

  22. comment
    Comment #43236085

    Most of CSS is indeed statically typed (property have statically typed valid values). It's not true anymore when you introduce custom properties and IACVT though.

  23. comment
    Comment #43191661

    It is working with both Slack and Discord already. I was not aware of f5bot, but I got inspired by another bot called Little Birdie which doesn't exist anymore and it's basically j…

  24. comment
    Comment #43160786

    I've been updating my HN bot (watch comments for keywords and post to Slack/Discord) written in Crystal to use raw SQL instead of unmaintained ORM. Turns out the whole app needs on…

  25. comment
    Comment #43069140

    You can avoid this with custom allocator in C++ for example, you don't have to actually do memory work at synchronous time (aka in destructor)