Live data from Hacker News

Viewing profile — logophobia

logophobia

HN member
Joined
Sun, Jan 31, 2010, 1:35 PM UTC
HN karma
268
Public activity
68 items

About logophobia

No profile information was provided.

Recent public activity

  1. comment
    Comment #47266309

    Sounds more like a political issue this. Can't buy your way out of that.

  2. comment
    Comment #42212888

    What is wrong with the following solution? Any trait implementations where the type and trait are not local are: * Private, and cannot be exported from a crate * The local trait im…

  3. comment
    Comment #38112039

    Because it means that a business (as in, facebook) knows too much about you. It's extremely invasive privacy-wise. Things that could happen: * Micro-targeting for political adverti…

  4. comment
    Comment #36692971

    If your dependency has a security update, how are you going to get that if you copy-paste the code? The thing these dependency managers do well is that they notify you about these …

  5. comment
    Comment #36560663

    I once, for a short period, maintained web-application that had three different frontend frameworks (angular 1, angular 2, and one other I don't quite remember), and four different…

  6. comment
    Comment #36064571

    Or have a lower melting point, making it more practical to use some sort of heat-resistant armoring? Might be pretty difficult to make something that both reflects light and is hea…

  7. comment
    Comment #35836917

    An alternative which I've used with some succes are structured state space models: https://srush.github.io/annotated-s4/ . A very different approach that works well for quite a few…

  8. comment
    Comment #35577890

    The typical setup is very simple: * Take the previous model checkpoint, retrain/finetune it on a window with new data. You typically don't want to retrain everything from scratch, …

  9. comment
    Comment #35568181

    That's a pretty standard part of MLOps. I have a fraud model in production, it's being incrementally retrained each week, on a sliding window of data for the last x-months. You can…

  10. comment
    Comment #35505016

    I've applied the S4 operator to successfully do long-length video classification. It's massively more efficient than a similarly scaled transformer, but it doesn't train as well. S…

  11. comment
    Comment #35504830

    Reminds me of the ideas behind google's multi-axis transformer: https://arxiv.org/abs/2204.01697 Both using a hierarchical transformer, adapting the transformer network architectur…

  12. comment
    Comment #35154415

    I stopped using nordvpn once they started disabling features when I disabled autorenewal: https://old.reddit.com/r/assholedesign/comments/ldf9g9/nordv... A VPN provider really need…

  13. comment
    Comment #32577321

    Tried to reset my password, whole site is offline right now, probably too many people resetting their passwords.

  14. comment
    Comment #32268308

    Tried a quiz. I'd be nice if there was more explanation about the things I missed. I get a question about naming ingredients. I get some wrong. Afterwards it might be nice to get a…

  15. comment
    Comment #31387481

    Consider using background subtraction for this: https://docs.opencv.org/4.x/d1/dc5/tutorial_background_subtr... Will make things a little more robust (and overengineered!).

  16. comment
    Comment #22245443

    Huh, clever use of btrfs volumes, it does make it a little dependent on the filesystem though. Quite informative overall, probably implements only a fraction of docker, but it does…

  17. comment
    Comment #22077328

    I didn't mean legal responsibility here (perhaps the example was somewhat poorly chosen), but surely there's some level of responsibility here? Bugs happen, security issues happen,…

  18. comment
    Comment #22076991

    It was advertised as a production-ready web-framework, and it was very popular. When do people get to complain? "Oh, my credit card information was stolen due to memory issues in t…

  19. comment
    Comment #22075393

    > However, that doesn't mean there wasn't a problem. There was a ton of negativity around "unsafe" when the author first released the code, and it has kind of become a meme at this…

  20. comment
    Comment #22074314

    It's not coding style, it's refusing to investigate use-after-free vulnerabilities in code because it's "boring". Noone should care if a maintainer uses tabs or spaces, or has weir…

  21. comment
    Comment #21835898

    He probably means legalizing prostitution, which would (hopefully) reduce trafficking if the demand can be met legally.

  22. comment
    Comment #19765025

    I haven't received an e-mail, I've got multiple docker-hub accounts.

  23. story
  24. comment
    Comment #18190642

    Isn't that one of the reasons rust compiles with JEMalloc? Fragmentation avoidance is one of its main features. Otherwise, using arenas or other strategies work very well for avoid…

  25. comment
    Comment #17836235

    ETL, that way you can also ensure your data gets put in a format that'd make it easy to report on. Granted, it's not quite as quick as this, and not suited for "one-off" reporting,…