Live data from Hacker News

Viewing profile — Elucalidavah

Elucalidavah

HN member
Joined
Wed, Jul 08, 2015, 8:49 PM UTC
HN karma
142
Public activity
67 items

About Elucalidavah

No profile information was provided.

Recent public activity

  1. comment
    Comment #49206321

    All maps need to have an extra time penalty for turns, merging, etc. Even if the data is taken with an average driver, average driver probably isn't there for the first time, and f…

  2. comment
    Comment #49206306

    You probably don't even need any vibe coding for this, only vibe configuring some OSRM profiles.

  3. comment
    Comment #49186620

    > its a system design issue or system availability issue on the client side If all events need to arrive, then the problem is not "notification" (which would be solved by webhooks)…

  4. comment
    Comment #47918123

    > 'tapping phones' gimmick strikes me as something that sounds cute but will become an annoying chore That 'tapping phones' could also be used to facilitate key exchange verificati…

  5. comment
    Comment #46333864

    Arguably, that's exactly the one action that will need to be hash-pinned, since all the consecutive actions will at least be verified against the lockfile.

  6. comment
    Comment #46252370

    > any notable increase in PM2.5 particles What's your PM2.5 baseline, and did you measure TDS in the water?

  7. comment
    Comment #46252269

    If you have a privilege to replace the kernel or bootloader, you effectively have all privileges on that system. Therefore, there's no need to complicate the access limitations whe…

  8. comment
    Comment #46164003

    Sounds like their "FL1 -> FL2" transition is involved in both.

  9. comment
    Comment #45535794

    > Tesseract (which is the best I have so far) Have you looked at EasyOCR?

  10. comment
    Comment #45402449

    > how all the popular dynamic languages have slowly become statically typed Count the amount of `Any` / `unknown` / `cast` / `var::type` in those codebases, and you'll notice that …

  11. comment
    Comment #45344209

    > With a physical SIM, I can pry my card out of one phone and put it into another, and expect it to work Is anything preventing the provider from denying a SIM swap based on IMEI?

  12. comment
    Comment #45335306

    > the client is not packaging up all its logic and sending a single blob that describes the fully-chained logic to the server on its initial request. Right See "But how do we solve…

  13. comment
    Comment #45036652

    Tangential: is "without requiring knowledge of data patterns" a frequently useful requirement? I.e. isn't knowledge of data patterns basically required for any performance optimiza…

  14. comment
    Comment #44872752

    Querying a local dictionary on each clipboard seems okay; having a feature to request remote dictionaries is okay; making it easy to combine both is dubious but understandable (wou…

  15. comment
    Comment #44800766

    Are those any better than self-hosted gitlab, or do you only mean central-hosted usage?

  16. comment
    Comment #44644218

    > wrapper that supports multiple formats Is there a way to preserve key ordering, particularly for yaml output? And to customize the color output? Or, how feasible is it to add tha…

  17. comment
    Comment #44644167

    > dependencies = ["httpx"] I heavily recommend writing a known working version in there, i.e. `"httpx~=0.27.2"`, which, in the best case, would allow fixes and security patches (e.…

  18. comment
    Comment #44590831

    > directory tree entry names But... git doesn't really store directories, does it?

  19. comment
    Comment #44579723

    Realistically, either you ignore the privacy concerns and set up routing to multiple providers preferring the fastest, or you go all-in on privacy and route DNS over Tor over bridg…

  20. comment
    Comment #44020030

    > a garbage collected Rust By the way, wouldn't it be possible to have a garbage-collecting container in Rust? Where all the various objects are owned by the container, and availab…

  21. comment
    Comment #43841927

    Consider a "git push"-like flow: begin a transaction, read the current state, check that it matches the expected, write the new state, commit (with a new state hash). In some unfor…

  22. comment
    Comment #43744971

    > MacBook Pro M2 with 64GB of RAM Are there non-mac options with similar capabilities?

  23. comment
    Comment #43531049

    > For their fix, they disabled debug logs For their quick fix, hopefully not for their final fix.

  24. comment
    Comment #43443746

    > Hasn't been a problem yet. You mean, refusing to integrate was the right decision after all?

  25. comment
    Comment #43359740

    > when people start talking about differential equations It's not like you are going to solve those analytically. Implement a couple numerical solvers for things like Navier–Stokes…