What the fuck did I just witness? No, really, can somebody explain?
What the fuck did I just witness? No, really, can somebody explain?
That actually sounds like a fun SCP - a word that doesn’t seem to contain a letter, but when testing for the presence of that letter using an algorithm that exclusively checks for that presence, it reports the letter is indeed present. Any attempt to check where in the word the letter is, or to get a list of all letters in that word, spuriously fail. Containment could be fun, probably involving amnestics and widespread societal influence, I also wonder if they could create an algorithm for checking letter presence that can be performed by hand without leaking any other information to the person performing it, reproducing the anomaly without computers.
I disagree, runbacks are as much difficulty as having to recover your currency after death, or even having to recover your items after dying in Minecraft. It’s a punishment for dying, and a way to make you treat it seriously.
It can incentivise the wrong things, punish experimentation and make players stick with what they know, even if better options exist. You’re free to dislike it, and it has downsides, but dismissing it as “not difficulty” is just dishonest.
I’m not a security expert, but to my knowledge that’s the point - even a unique salt global to your site/service can help. Worth mentioning are rainbow tables, which are databases of hashes for known strings, so you can take a hash and look up the string, and very easily defeated by salts.
If the password is securely hashed, and the attack only includes data exfiltration, then there’s theoretically no risk of breaking into users’ accounts anyways. However, the issue is that if somebody can log into your Plex account, that means they got your password somehow - and if they did get that password, they can use it elsewhere. So if there’s any reason to change your password on Plex, then there’s just as much reason to change that same password elsewhere.
I do think they missed a bit about password reuse, since they tell you to reset the password on their site, you should be changing the password on any other sites where you reused it. But yeah, not arguing about it being good otherwise.
I’m curious - was it also a checkbox that immediately applied when toggled, instead of not actually applying until you press save?
I really hope not, that feels like crypto all over again, with inconsistent payouts and varying electricity prices… And on top of that probably awful service since people tend to have the weirdest internet connections.
Though if you remove the part where it’s used to stream games to other players, that sounds too niche to be viable, but could be cool. If going in that direction, I’d imagine it more likely to be gaming servers for businesses, like VR gaming spots, where they have multiple gaming computers hooked up to headsets.
I will point out that it generally takes more effort to make one sandwich, than it takes to make one sandwich out of a hundred. Getting fresh bread and (fresh?) spiced mayo is extra work that you only need to do once per multiple sandwiches, but it doesn’t really get easier when only making one.
All I’m saying is, enjoy things made by specialized professionals, economies of scale mean that it’s more efficient for one person to make sandwiches for their surroundings anyways!
I’m not a soulslike fan myself, but I don’t think hollow knight is very soulslike - the combat is very snappy, avoiding locking you into animations or making you consider your momentum, and I have the impression soulslikes also tend to be way more environmentally lethal, so to speak.
It might have some of that visual/lore/exploration vibe though.
Apertus was developed with due consideration to Swiss data protection laws, Swiss copyright laws, and the transparency obligations under the EU AI Act. Particular attention has been paid to data integrity and ethical standards: the training corpus builds only on data which is publicly available. It is filtered to respect machine-readable opt-out requests from websites, even retroactively, and to remove personal data, and other undesired content before training begins.
We probably won’t get better, but sounds like it’s still being trained on scraped data unless you explicitly opt out, including anything that may be getting mirrored by third parties that don’t opt out. Also, they can remove data from the training material retroactively… But presumably won’t be retraining the model from scratch, which means it will still have that in their weights, and the official weights will still have a potential advantage on models trained later on their training data.
From the license:
SNAI will regularly provide a file with hash values for download which you can apply as an output filter to your use of our Apertus LLM. The file reflects data protection deletion requests which have been addressed to SNAI as the developer of the Apertus LLM. It allows you to remove Personal Data contained in the model output.
Oof, so they’re basically passing on data protection deletion requests to the users and telling them all to respectfully account for them.
They also claim “open data”, but I’m having trouble finding the actual training data, only the “Training data reconstruction scripts”…
This comment is completely fine, no weird empty lines. I guess it might be some weird bug in jerboa, I’d look into it but I’ll probably forget :V
I don’t know what happened, but your message seems to have a lot of extra empty lines, and it’s spanning tens of screens on my client… I’m curious, was this intentional? I have no idea how that’d happen accidentally, but it’d be pretty funny
Isn’t Teardown fully raytraced? As in, all rendering being raytracing? I don’t have a source, but remember it being talked about.
It does seem to go a step further, Fedora seems to not only require you to install them, but also not provide them in the official repositories, requiring you to use unofficial repositories. Most software in a distro’s repositories doesn’t come preinstalled, but it’s generally as simple as running the package manager.
I think I was using an NVidia GPU up until about 3 years ago, when I switched to AMD when upgrading, so my knowledge on that front is a bit outdated.
The arch wiki has more information if you’re curious, but I’m aware of official proprietary drivers, official partially opensourced drivers, separately packaged legacy drivers, and the unofficial opensource Nouveau drivers which weren’t really usable back then.
What you’re describing sounds odd to me, but looking it up, sounds like Fedora doesn’t package official drivers? I’m having trouble finding proper information on this, but it could be for ideological reasons, since those drivers are proprietary - so the default drivers might be Nouveau, which might be rather broken, both because of lack of workforce and NVidia blocking unofficial drivers from using their devices properly.
If that’s the case, it’s basically a conflict between ideology and usability within that distribution - it might seem like a great distro for users, and it might be competently made, but when somebody doesn’t care about the ideology and just wants their device to work, they’ll end up with confusion and work to do.
I will remark that that sounds like a distro issue - I use Arch and the drivers are just in the official distros, no need to add external ones. Just look up what you need on the wiki and install it.
That said, AMD will still probably be a better experience.
It’s “of out hot” and “eat the food” - if we interpret “of in” (derived from “oven”) to be putting in the food, then “of out” would mean to take the food out, and thus “of out hot” would mean you take it out hot, and eat it
Yes, but it doesn’t change the fact that some people won’t use it for that reason, and makes it a fair question if the new model is also “slow”.
The issue with Lua’s and/or in this context is that they don’t work if false or nil are valid values. In
a and b or c
, ifb = false
, the result is alwaysc
.I also love null-related operators like ?? and ?. for this, since they explicitly check for null, letting you handle any non-null values for optional/default values. The syntax can get a bit cursed, like
maybeNull?.maybeMethod?.(args)
in JS, but I still prefer that to writing out multiple field accesses in an if condition… And arguably the code is only less readable if you aren’t acclimated to it.All that said I do really appreciate Lua’s simplicity, as a language that provides tooling to create the features you want instead of building them into the language, though I wish it had some conventional regex instead of its own patterns.