

LLMs need to be trained to work with reptilian language. Problem solved.


LLMs need to be trained to work with reptilian language. Problem solved.
cmd (Command Prompt) and Terminal are two different things.


The game wants you to break it. Some of the late game bosses are so over the top you need the broken maelle build just to have a chance.
Simon? I mean, you could one-shot him in both phases, but I doubt he was designed with that in mind. There are videos on YouTube where people beat him legitimately (as in, don’t skip the entire fight by not letting him do a single turn), after all.
Myself, I resorted to doing the entire third act, side-activities included, the easy way, but that’s because I’m bad at dodging and parrying and not patient enough to retry the same fights over and over again.
I’m so confused by the meme. What the hell is a “monolithic bug”? And what does DevOps have to do with software architecture?


Not sure why you’re downvoted.
Operating systems often cache disk writes and flush them to underlying devices once in a while. Dismounting (or “ejecting” in Windows terms) forces the writes to be flushed.
See man 2 fsync.


Never finished Mankind Divided though
Neither did Eidos-Montréal, apparently.
I assume, decoding it on the fly? It’s possible to encode a JPEG as a JPEG XL losslessly.
Webp currently the best image file format.
Out of the widely supported ones, it’s quite good, yeah. Overall, I’d say JPEG XL is the better one. Ironically, only Safari supports it out of the box. Firefox requires a Nightly version with tweaking in about:config. Chrome used to have a feature flag, but has since removed it.


https://en.wikipedia.org/wiki/Artyom - it is. And the Z in their username is actually capitalized. Hmm, I wonder why.


Install, maybe. What about updates though? Do you plan to pull out adb for each and every one of them? Or would you rather keep using old, potentially insecure, versions?


ISPs putting you behind NAT is not cozy.
They charge extra for a feature called “static IP”. But the IP address not being static is not the issue, for me at least. You could host stuff with a dynamic IP back in 2000s/2010s. But no, now you get to share the same IPv4 address with a bunch of other households, unless you pay extra.


/64
That’s not an address, that’s a whole fucking subnet consisting of 2^64 different addresses. ☝️🤓


In typical C fashion, there’s undefined behavior in turn_char_to_int. xD


So how does a claim regarding Russia’s technological capabilities relate to my original comment?
Your original comment literally calls Russia one of the world’s “most technologically prominent” country, stop trying to gaslight me.
leaders of two of the world’s most technologically prominent countries
Putin and Xi


Not even remotely related to the part I quoted and laughed at, but I’ll humour you.
It’s called deduction, you just need to use that gray matter of yours. Two, rather old, psychopaths muse about extending one’s lifetime. Could it be that they themselves have a vested interest in this? No, that must be a conspiracy theory by filthy liberals.


two of the world’s most technologically prominent countries
Russia
LMFAO. lemmy.ml users just can’t stop glazing autocracies, can they?


“Earlier, people rarely lived to 70, but these days at 70 you are still a child,” Xi told Putin according to the translator in Russian.
Hard to argue with that. Both of these cunts seem to lack any emotional intelligence whatsoever.


Oh wow, a security disaster. You know, you can temporarily escalate your privileges if you need to modify Program Files, right? It’s just one UAC prompt away.


I misremembered the whole thing. It was still related to cleaning up after a failure, but there was only one resource I had to deal with. That’s how it looks like:
sqlite3 *db;
int r;
r = sqlite3_open("./data.db", &db);
if (r) {
std::cerr << "Can't open the database: " << sqlite3_errmsg(db) << std::endl;
return r;
}
r = sqlite3_exec(db, "CREATE TABLE IF NOT EXISTS foo(...);", nullptr, nullptr, nullptr);
if (r != SQLITE_OK) {
std::cerr << "Can't create a table called foo: " << sqlite3_errmsg(db) << std::endl;
goto out;
}
// a few more sqlite3_exec calls;
// some sqlite3_prepare_v2 calls combined with sqlite3_bind_* and sqlite3_step calls
// for repeated queries.
out:
sqlite3_close(db);
return r;
You jest, but you aren’t wrong. At least if we are talking about C, C++ or Rust. https://godbolt.org/z/oPPfdfcf5
.NET compiler is weak when it comes to optimizing your code; I assume Go’s is as bad.