Viewing profile — logophobia
logophobia
HN member- Joined
- Sun, Jan 31, 2010, 1:35 PM UTC
- HN karma
- 268
- Public activity
- 68 items
- HN profile
- View on Hacker News ↗
About logophobia
No profile information was provided.
Recent public activity
-
comment
Comment #47266309
Sounds more like a political issue this. Can't buy your way out of that.
-
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…
-
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…
-
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 …
-
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…
-
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…
-
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…
-
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, …
-
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…
-
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…
-
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…
-
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…
-
comment
Comment #32577321
Tried to reset my password, whole site is offline right now, probably too many people resetting their passwords.
-
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…
-
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!).
-
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…
-
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,…
-
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…
-
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…
-
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…
-
comment
Comment #21835898
He probably means legalizing prostitution, which would (hopefully) reduce trafficking if the demand can be met legally.
-
comment
Comment #19765025
I haven't received an e-mail, I've got multiple docker-hub accounts.
- story
-
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…
-
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,…