Live data from Hacker News

Viewing profile — ncake

ncake

HN member
Joined
Sat, Nov 06, 2021, 3:33 AM UTC
HN karma
70
Public activity
19 items

About ncake

No profile information was provided.

Recent public activity

  1. comment
    Comment #45744948

    or https://photopea.com

  2. story
  3. comment
    Comment #44619881

    Same. I recently tried to find a MIDI keyboard like that for sale and got nothing. Apparently this is what it's called: https://en.m.wikipedia.org/wiki/Dodeka_keyboard

  4. comment
  5. comment
    Comment #34676690

    I've been using Raspberry Pi 400 as the main desktop for a few months. The idea was that I'd be more productive without youtube and games. That's not as extreme as the OP setup, bu…

  6. comment
  7. comment
    Comment #33046714

    "The organizers believe that text compression and AI are equivalent problems." Are they? Not only interfacing with human-readable media is half of the story, optimizing for size is…

  8. comment
    Comment #32831261

    Cool. I wish CMake included an option to use a custom preprocessor like this.

  9. comment
    Comment #32277882

    Still using one as a daily driver to write code and read articles on. (1gb ram, 1.6ghz, Win 7) It's painfully slow at browsing some websites, but runs VSCode and all of the dev too…

  10. comment
    Comment #31121948

    Those Russians who are on your side are very sorry for your tragedy, but don't feel responsible for being born into a dictatorship. And those who aren't, are vocally unashamed for …

  11. comment
    Comment #31114907

    If this is a US-only service, it should say so on the website somewhere. I've also had this experience with e.g. Betterment and Wealthfront. The only way to find out they're US-onl…

  12. comment
    Comment #30738566

    I've had the opposite experience, and everything just works once you install the suggested extensions. For C++ specifically you just need to create a .vscode/c_cpp_properties.json …

  13. comment
    Comment #30716971

    This. "you've got a syntax error at around here: [the entire query]. go consult the manual or something idk"

  14. comment
    Comment #30598407

    I use CMake's FetchContent. It's probably the most universal solution for this out there.

  15. comment
    Comment #29664943

    I use a script I wrote in an hour, which parses nginx access.log and prints last visitors to a "_stats.txt" file. It's 90% requests made by bots, so I didn't bother making a UI.

  16. comment
    Comment #29643030

    I'll try to explain what I mean. Suppose you want an in game character to change the displayed weapon in their inventory. Stateful way: your Inventory Manager component iterates th…

  17. comment
    Comment #29641731

    Unpopular opinion, but I personally think ECS has no place in C/C++ game dev. Every supposed advantage is either curbed by limitations of the language (e.g. serialization) or can b…

  18. comment
    Comment #29171380

    It is a very good library, especially for 2d games. ..Just not 100% production-ready out of the box. Some features are lacking (e.g. no stereo audio) or oddly implemented. (e.g. rl…

  19. comment
    Comment #29171116

    In my brief experience in front-end, I've encountered weird Safari bugs on every single project. In one case the code failed because the form object there doesn't implement the met…