Live data from Hacker News

Viewing profile — zingermc

zingermc

HN member
Joined
Sat, Apr 12, 2014, 5:24 AM UTC
HN karma
286
Public activity
121 items

About zingermc

No profile information was provided.

Recent public activity

  1. comment
    Comment #25875350

    Wow, does this apply to Covid tests?

  2. comment
    Comment #25823623

    Don't feed the troll.

  3. comment
    Comment #25779851

    If the messages are encrypted at rest on your phone, it seems reasonable to expect the same of backups on the server.

  4. comment
    Comment #25298212

    Yes, at least for Levenshtein-style edits (substitution, insertion, deletion). Although, I suppose a spell checker algorithm would be O(mnd) where d is the size of the dictionary, …

  5. comment
    Comment #25258245

    > Let me tell you folks. Writing spaghetti code with no separation of concerns and no version control is not exclusive to php Yowza. If I can give you some unsolicited advice: get …

  6. comment
    Comment #25249124

    Hilariously, ColdFusion strikes again. I should have used pound signs around the bad_memories variable. The above code would dump the string "bad_memories". Corrected:

  7. comment
  8. comment
    Comment #25246695

    Reminds me of CRN++, the molecular programming language. https://arxiv.org/abs/1809.07430

  9. comment
    Comment #25175057

    AFAIK it has nothing to do with physical disability. The word has a lot of meanings: https://en.wikipedia.org/wiki/Gimp

  10. comment
    Comment #25159017

    There does appear to be ARM64 assembly in Go's crypto code, but perhaps it's suboptimal for M1. Or perhaps there's a build config issue, and the assembly isn't being used. Just my …

  11. comment
    Comment #25121782

    I've definitely been the victim of my own git hubris. Once, when leaving a job, I decided to copy all of my local WIP branches to the server. I whipped out this fancy --mirror opti…

  12. comment
    Comment #25082280

    Yeah, sounds like an O(n) sort to me.

  13. comment
    Comment #24713951

    Keep in mind the adage "you get what you measure". If you optimize for CTR, you are not necessarily optimizing for user satisfaction/loyalty. Case in point: Netflix's auto-play fea…

  14. comment
    Comment #24713356

    By "positive response", are you saying that human "from" names yield a higher click-through rate?

  15. comment
    Comment #24707807

    void DocumentScribbler.scribble(String s)

  16. comment
    Comment #24692286

    > So, I should never drive? > The bad thing about it is I usually don't realize that I'm getting sleepy until after I've dozed off once. I'm not trying to be rude, but this sounds …

  17. comment
    Comment #24416621

    Does the policy disallow Oxford commas?

  18. comment
    Comment #24371611

    I'm hopeful it's a startup that sells only the tops of muffins.

  19. comment
    Comment #24371163

    "Factor X may contribute to low cognitive function and cannabis use."

  20. comment
    Comment #24289734

    I think you can click the compass to switch between these modes.

  21. comment
    Comment #24053375

    Your comment made me dig in a little more. I was wrong, it is only fetching the current tab, although it wouldn't need more permissions to see all the tabs. In popup.js[1]: chrome.…

  22. comment
    Comment #24051888

    I feel compelled to point out that this extension sends the URLs of all open tabs to algolia.com when you click the extension (at least on Chrome). I would much prefer if it only l…

  23. comment
    Comment #23822317

    The beautiful part is that they may have no idea which IP address corresponds to your email until you click a unique link in the phishing email (or load a tracking pixel?).

  24. comment
    Comment #23671048

    Awesome! Unguessable auth is the answer. You could even have the server generate a uuid token and have the user paste it into the browser extension.

  25. comment
    Comment #23670602

    To follow up: the solution is that the localhost server needs to make sure each API call is authorized (if you aren't already). This means there must be a login/setup step. An API …