Live data from Hacker News

Viewing profile — morganherlocker

morganherlocker

HN member
Joined
Fri, Dec 06, 2013, 9:20 PM UTC
HN karma
703
Public activity
265 items

About morganherlocker

No profile information was provided.

Recent public activity

  1. comment
    Comment #49015464

    I think the big miss is that the former is achievable far more often than people imagine, which leads to settling for the later, aka pessimization. Reducing your allocations from m…

  2. comment
    Comment #48764951

    Disapprove and ask for a call where the author must verbally explain the changes to receive approval? This seems like a solvable problem, and one that already existed in repos with…

  3. comment
    Comment #48764818

    You can setup most PR systems to squash on merge using the first commit's message, then enforce that the top commit message is prefixed with a ticket ID. This practice has many ben…

  4. comment
    Comment #48068067

    > If you have a non-insignificant amount of data points to track this is going to eat just a ton of memory while also being pretty slow to encode/decode. This is a fair critique, h…

  5. comment
    Comment #46655699

    IDK, it seems like old reddit did just fine without even trying that hard. The DOM and surrounding JS API is already a high level GUI framework, and the post illustrates that it's …

  6. comment
    Comment #46650514

    I've used duckdb a lot at this scale, and I would not expect something like this to take more than a few seconds, if that. The only slow duckdb queries I have encountered either in…

  7. comment
    Comment #46597907

    I designed some parts for an enclosure over the weekend using claude opus to generate an OpenSCAD file, which I then exported to STL and sent to a 3D printer. I was able to get a v…

  8. comment
    Comment #45974057

    - notepad++: 56.4 MB (went gray-window unresponsive for 10 seconds when opening the explorer) - notepad.exe: 54.3 MB - emacs: 15.2 MB - vim: 5.5MB I would argue that notepad++ is n…

  9. comment
    Comment #45972957

    > If you want electron app that doesn't lag terribly My experience with VS Code is that it has no perceptible lag, except maybe 500ms on startup. I don't doubt people experience th…

  10. comment
    Comment #45935384

    I frequently use a docker-compose template with prometheus pushgateway + grafana for deploying on single node servers, as described at the start of the article. It works well and i…

  11. comment
    Comment #45794254

    "Everything" is another that puts the default search to shame. I've also seen people who just have a script that pumps all new files into a txt file every so often and runs brutefo…

  12. comment
    Comment #45533631

    I hear this a lot, but can you really say that you're consistently saturating a 1Gbps line for netcode or 6+ Gbps nvme for disk data? In my experience this doesn't really happen wi…

  13. comment
    Comment #45533209

    There's currently talk of adding gigawatts of data center capacity to the grid just for use cases where python dominates development. While a lot of that will be compiled into opti…

  14. comment
    Comment #44552326

    It shouldn't take any noticable power/cycles to accomplish this task. Having flags for "performance" littered through the codebase and UI is a classic failure mode that leads to a …

  15. comment
    Comment #44484182

    > However those tools do not have the polish that ESRI kit does, but at leas you’re not paying the licensing! Arguably they have more polish, but less GUI. The open GIS world is mo…

  16. comment
    Comment #44301413

    > so now the main problem is building the hardware, there are a lot of solutions for the software part. While cool and all, this type of sim is a tiny, tiny slice of the software s…

  17. comment
    Comment #43987016

    As a point of comparison, I just downloaded the Windows binary for duckdb (which provides a nice TUI for similar tasks) and it was 9.84MB. People can and should expect better.

  18. comment
    Comment #43940785

    Now instead of seeing millions of lines of inscrutable code in your program bloating binary sizes, you can see it in every program (that doesn't disable stdlib).

  19. comment
    Comment #43543965

    All of them? It should feel instant. A UI does not benefit from artificial delays.

  20. comment
    Comment #43118289

    I use syncthing. Works flawlessly and took just a few minutes to setup.

  21. comment
    Comment #42806494

    Agree. As an example, this proto generates 584 lines of C++, links to 173k lines of dependencies, and generates a 21Kb object file, even before adding grpc: syntax = "proto3"; mess…

  22. comment
    Comment #42790099

    If most data between the backend/frontend is raw numeric array binary blobs, and you target array types that can be loaded directly into JS TypedArrays (int32_t* -> Int32Array, flo…

  23. comment
    Comment #42789434

    Same, and I've found this works quite well with a C++ backend. Just send over binary data as struct-of-arrays, load it into typed arrays, render components. Your app will be bottle…

  24. comment
    Comment #42617739

    If you're type 1 diabetic, accuracy is paramount, especially in a closed loop insulin pump setup. Even with access to the bloodstream, existing CGMs leave plenty of room for improv…

  25. comment
    Comment #42617540

    Everything listed here is a great pitch for vanillajs with zero framework at all.