Cross-posted to !bestoflemmy@lemmy.world, which is probably the closest active community we’ve got
Cross-posted to !bestoflemmy@lemmy.world, which is probably the closest active community we’ve got
They really tried with Web Environment Integrity:
https://github.com/explainers-by-googlers/Web-Environment-Integrity/issues/28
There was enough pushback that they dropped that proposal, but expect to see it back in mutated form soon.
Not sure how ollama integration works in general, but these are two good libraries for RAG:
For a direct replacement, you might want to consider enums, for something like
enum Strategy {
Foo,
Bar,
}
That’s going to be a lot more ergonomic than shuffling trait objects around, you can do stuff like:
fn execute(strategy: Strategy) {
match strategy {
Strategy::Foo => { ... }
Strategy::Bar => { ... }
}
If you have known set of strategy that isn’t extensible, enums are good. If you want the ability for third party code to add new strategies, the boxed trait object approach works. Consider also the simplest approach of just having functions like this:
fn execute_foo() { ... }
fn execute_bar() { ... }
Sometimes, Rust encourages not trying to be too clever, like having get
vs get_mut
and not trying to abstract over the mutability.
IMO Hacker News handles this better. Threads/comments are rarely deleted, they’re mostly minimized and you have to log in to expand them
There’s various well-known tracking parameters that can be stripped, like UTM parameters. Stripping all query parameters would break a lot of sites, like anything in the vein of http://example.com/site.php?id=123
It is decentralized. None of the issues you bring up are proof of centralization. If you get banned from one instance or don’t like email verification or whatever your beef is, find an instance with whatever policies you like. If you can’t find such an instance, start your own.
If nobody federates with you because your instance is full of people that got banned from everywhere else, that’s decentralization in action and maybe you should stop to consider if there’s a reason nobody wants to interact with you?
I’m sure Google has their own shitty reasons, but also get bent, shitheads 🖕
There’s some not really relevant history, but Zero-K has an extensive single player campaign, and is based on the same engine as BAR:
It just means having to micromanage a particular unit’s actions. I like it more when I can say “patrol this area, return fire and advance a bit if necessary, but no further than this”, instead of having to flip back to those units constantly to manage them. IMO it’s more thematic anyways for a sci fi game, you’re probably going to have units with a basic AI in them in-universe.
I recently checked out BAR and liked it. I don’t like micro in RTS games, because I always think “a computer can do this better than I could”, so it’s nice that they’ve got good unit automations available.
Within our dataset of several hundred thousand visitors tested in the past 45 days, only one in 4244.39 browsers have the same fingerprint as yours.
Currently, we estimate that your browser has a fingerprint that conveys 12.05 bits of identifying information.
Firefox mobile with various addons, most important of which is probably NoScript
Kind of looks like an alternative universe where Rust really leaned into its initial Ruby influences. IMO the most interesting thing was kicked down the road, I’d like to see more of the plan for concurrency. Go’s concurrency (which it says they’re thinking of) kind of sucks for lots of things, like “do these tasks in parallel and give me the return values”. Go can do it with channels and all that, but Rayon’s par_iter()
just magically makes it all work nicely.
You should believe it as much as you want. I don’t have any inside knowledge myself, I just remembered an HN comment that was relevant to this post and linked it.
Apparently there’s an effort underway. I don’t have any more context than this:
https://news.ycombinator.com/item?id=38020117
I will say that I actually like the flat namespace, but don’t have a strong opinion
They would just say that they have a different definition of E2EE, or quietly opt you out of it and bury something in their terms of service that says you agree to that. You might even win in court, but that will be a wrist slap years later if at all.
Have you used either of them before and have opinions on them vs HA?
For mobile with fastmail, I use fairemail. Works great with it, and provides a nice merged view with my non-fastmail work emails.
Not sure if this is what you’re referencing, but there’s a famous quantum computer researcher named Scott Aaronson who has this at the top of his blog:
His blog is good, talks about a lot of quantum computing stuff at an accessible level