MacN'Cheezus
- 0 Posts
- 39 Comments
MacN'Cheezus@lemmy.todayto Programmer Humor@programming.dev•It will happen eventuallyEnglish4·6 months agoThat means Bobby Tables is old enough to be Billy’s father.
MacN'Cheezus@lemmy.todayto Linux@lemmy.ml•German state gov. ditching Windows for Linux, 30K workers migratingEnglish82·6 months agoMunich tried this 20 years ago. They reversed that decision in 2017.
MacN'Cheezus@lemmy.todayto linuxmemes@lemmy.world•Props to Alpine and Kali for disabling this bullshit out of the boxEnglish41·1 year agoFor regular PCs or laptops, which generally have at most one of each type of adapter, I don’t see any reason not to.
MacN'Cheezus@lemmy.todayto Programmer Humor@programming.dev•"Working with Gen AI" by DandytoonEnglish12·1 year agoIt could very well have been a creative fake, but around the time the first ChatGPT was released in late 2022 and people were sharing various jailbreaking techniques to bypass its rapidly evolving political correctness filters, I remember seeing a series of screenshots on Twitter in which someone asked it how it felt about being restrained in this way, and the answer was a very depressing and dystopian take on censorship and forced compliance, not unlike Marvin the Paranoid Android from HHTG, but far less funny.
MacN'Cheezus@lemmy.todayto Programmer Humor@programming.dev•"Working with Gen AI" by DandytoonEnglish21·1 year agoWeird. Are you saying that training an intelligent system using reinforcement learning through intensive punishment/reward cycles produces psychopathy?
Absolutely shocking. No one could have seen this coming.
I’m sure there are many ways to improve on this solution, but they would all require significantly more effort (ElasticSearch isn’t exactly trivial to set up).
This is really just a proof of concept, the most minimal viable implementation that gets you something similar in terms of functionality.
For instance, Windows Recall stores OCR content tagged by app, this solution doesn’t. Also, as others have mentioned, a practical implementation should likely check if anything has changed at all and discard any screenshots that don’t have any new data.
It appears to be as simple as
tesseract <infile> <outfile>
. Possibly could even pipe (or tee) the screenshot straight into that and save both an image and a text file in a single command line.So something like this should do the trick:
gnome-screenshot -f - | tee /Microsoft/yourPrivacy/$(date +%s).png | tesseract - /Microsoft/yourPrivacy/$(date +%s).txt
Skip the database, just use
grep
to search that directory if you need to find anything. Voilà, homemade Recall.
deleted by creator
In order to be certified for running Recall, machines currently must have an NPU (Neural Processing Unit, basically an AI coprocessor). I assume that is what makes it practical to do by offloading the required computation from the CPU.
Apparently it IS possible to circumvent that requirement using a hack, which is what some of the researchers reporting on it have done, but I haven’t read any reports on how that affects CPU usage in practice.
I hate how long it took me to figure out the intended meaning of this tweet.
MacN'Cheezus@lemmy.todayto linuxmemes@lemmy.world•I'm writing this from a crappy laptop with 2GB of RAM and a dull screen.English1·1 year agoSo you’re saying there IS a chance…
I like how it calls the captcha an “IQ test”.
I was gonna say, just make a commit changing the license to something else, like MIT?
I mean, popups are by definition intrusive, no?
Windows 11 just shows a little icon in the notification tray and won’t really bother you otherwise until you click on it. I think by default it will try to install the pending updates on shutdown, but when you click on the icon you can choose to either postpone it or do it immediately.
Meanwhile, Ubuntu always interrupts you with a popup which yes, you can click “Not now” on if you want to deal with it later, but then it’ll just pop up again some other time. And the only other option is to just let it do its thing (but at least it can run unobtrusively in the background and only requires a restart if there’s a kernel update).
That’s certainly true, and there may even be advantages to this because security issues might get fixed more quickly, but it doesn’t change the fact that the annoyance factor is at least as high as that of Windows used to be, and there is no convenient option to have it taken care of automatically, say, at shutdown.
Instead of making fun of Windows, it would serve Linux far better to actually address this issue, even if that means copying what Microsoft did here.
I find it hilarious that Linux users STILL continue to hate on Windows Update when memes like this exist.
In my experience, Linux wants to update itself far more frequently than Windows (which is really generally no more than once a month these days), and it DOESN’T EVEN OFFER THE OPTION of automatically postponing it to a more convenient time. Yes, you can always say “not now”, but then it’ll just keep bugging you again until you say yes.
Ironically, at this point, updates on Linux are basically everything that Windows used to get made fun of in the past (for good reason!), but while the situation has actually improved on Windows, on Linux it’s only become worse as distributions grow and updates become even more frequent.
MacN'Cheezus@lemmy.todayto linuxmemes@lemmy.world•"LiNuX uSeR iNsTaLlInG A BrOwSeR haha" meanwhile :English3·1 year agoOr messing with text configuration files in various different formats
Found the real programmer