Live data from Hacker News

Viewing profile — neandrake

neandrake

HN member
Joined
Mon, Jan 19, 2015, 3:22 AM UTC
HN karma
382
Public activity
162 items

About neandrake

Contact me: rare.chair3350@fastmail.com

Recent public activity

  1. comment
    Comment #47076838

    Finding this one-page was great! It gave me a new term I didn't have before that leads to all sorts of new materials to go rifling through.

  2. comment
    Comment #46429585

    >>This [...] vuln is not a breach or compromise of MongoDB >IANAL, but this seems like a pretty strong stance to take? Who exactly are you blaming here? You elide the context that …

  3. comment
    Comment #46194791

    Worktrees are useful particularly because they look like entirely separate projects to your IDEs or other project tooling. They are more useful on larger projects with lots of dail…

  4. comment
    Comment #45562412

    There are OS-level settings for date and unit formats but not all software obeys that, instead falling back to using the default date/unit formats for the selected locale.

  5. comment
    Comment #45291230

    Render to pdf or ebook to read from an ereader, at least that's what I prefer. I use Instapaper to quickly snag articles while browsing then later use my kobo to sit and read throu…

  6. comment
    Comment #45270948

    The article presumes the reader is familiar with "malicious inbox rules" and doesn't elaborate or link to further info on it. From what I can find online it seems to be a scenario …

  7. comment
    Comment #45083670

    I'm a huge fan of uMatrix too, and have debated getting involved to help revive it. Can you share more information on the bypass you mention?

  8. comment
    Comment #45082895

    Looks like the source to Bitestring's blog is still up, maybe domain registration just lapsed? https://github.com/bitestring/bitestring.github.io/blob/main...

  9. comment
    Comment #45045836

    Thank you, I look forward to watching your presentation.

  10. comment
    Comment #45045755

    Rust caught the lock being held across an await boundary, but without further context I'd hedge there's still a concurrency issue there if the solution was to release the lock befo…

  11. comment
    Comment #45045706

    Same would be true for any resource that needs cleaned up, right? Referring to stop-polling-future as canceling is probably not good nomenclature. Typically canceling some work req…

  12. comment
    Comment #44958271

    They first disabled rubocop to prevent further exploit, then rotated keys. If they awaited deploying the fix that would mean letting compromised keys remain valid for 9 more hours.…

  13. comment
    Comment #44406824

    If your only professional experience is OCaml and you want to look elsewhere for work then your opportunities shrink noticeably. Especially if you're looking for a position that re…

  14. comment
    Comment #41895737

    Git’s rerere functionality should address this, right? https://git-scm.com/book/en/v2/Git-Tools-Rerere

  15. comment
    Comment #41137728

    I don’t even prefer it for indicating that something can return null. In most cases the Option API is more tedious and awkward than a null check and there are existing annotations …

  16. comment
    Comment #40641846

    I mean, the same goes for all crime being a people problem. The anti-cheat keeps honest people honest as they say.

  17. comment
    Comment #40350776

    > The technique was called product-line engineering. Thank you for adding this bit of info! We’ve been using this model for a while but I hadn’t come across a label for it. Now kno…

  18. comment
    Comment #40111607

    I think you misread the original post. They’re referring to LLVM the compiler toolchain, not LLMs.

  19. comment
    Comment #39876081

    Great write up. I read through maybe half of the points and skipped to the end, bookmarked to come back and finish later. I’d like if the author could elaborate a bit about the typ…

  20. comment
    Comment #39869999

    Their website had just recently gotten a make over, which might be why this was posted. https://github.com/apache/guacamole-website/pull/138 Great project

  21. comment
    Comment #39660456

    I work with software medical devices. Another aspect here aside from 510k is that it is required, or effectively required, to comply with something like IEC-62304 (developing softw…

  22. comment
    Comment #39637355

    I thought most of the reasons - not being welcomed to modifying git - were known already for someone who went looking, but seeing the quotes from ex facebookers is interesting. I’d…

  23. comment
    Comment #39596923

    It’s probably not part of their repo, but exists alongside, possibly gitignored. Either way in the same workspace the IDE will have to invalidate a lot of it when you switch, and a…

  24. comment
    Comment #39596839

    We’re not yet using git, but we have one repository with multiple branches, one for each released version (on-prem software, not a service run). We are in regular active developmen…

  25. comment
    Comment #39326906

    Except in your example I’ve had numerous cases where bugs have been introduced because the developer’s primary thinking to pick a set was “fast” and “no duplicates”, only to later …