Honestly if I was stuck with one of these shitty resistive heater stoves I’d definitely do this for stuff like warming up pancakes. Less energy and time wasted on heating the pan.
- 30 Posts
- 321 Comments
Call me conservative, buy I stick by the rule that it’s not gay only if you both say “no homo” after doing it
See, most people have no clue that “gimp” is a sex thing. They just see it as a funny-sounding acronym. In an actual work meeting, the people who do know wouldn’t say anything about it to avoid being seen as the weird ones.
renzev@lemmy.worldto linuxmemes@lemmy.world•Who needs stable, feature-rich desktops anyway1012·1 month agoHonestly I can’t imagine why anyone would use either of these when there are lightweight DEs like XFCE and Cinnamon that are not only easier on the system resources, but also more stable, customizeable, user-friendly and more pleasant to look at. I stopped taking gnome seriously ever since they came up with GTK3. They had a chance to fix it with GTK4 but instead they somehow made it even worse (as if client-side decorations wasn’t bad enough, now theyre doing clientside shadows? Seriously!?!?). KDE is allegedly better because it gives the user more options, but anyone who’s actually used it will tell you that it suffers from the same kind of bloat and braindead design decisions as gnome.
renzev@lemmy.worldOPto linuxmemes@lemmy.world•This week on "ancient unix hacks that are still somehow a core part of linux": Setuid473·1 month agoThey need to be simple and carefully constructed
Yeah, that’s the difficult part. It’s always better to go with the principle of least privilege (which is Capabilities is trying to do) than to just cross your fingers and hope that there are not bugs in your code. And who exactly is going to police people to make sure that their programs are “simple and carefully constructed”? The article I linked is about a setuid-related vuln in goddamn Xorg which is anything but.
Huh, good point, I never stopped to consider what licenses are behind Alpine.
I agree with your point that pushover licenses should not be the way forward (I personally license all of my major projects with GPLv3 only), but I’ll still keep using alpine because I like it from a technical standpoint.
Partition management is the single most chaotic chore that you come across as a casual computer user, change my mind. Depending on the partition table and filesystem, each filesystem can have zero, one or two labels assigned to it. But there is no consensus about what to actually call these labels. I’ve seen “partlabel”, “label”, “partition label” and “name” with no obvious way to tell whether the tool is talking about the label stored in the partition table or the label stored in the filesystem.
So just use UUIDs to refer to partitions instead of labels, right? Wrong! Each partition has both a UUID and a PartUUID which are not the same. It’s simple once you are aware of that fact, but if you are not, it can lead to hours of confused troubleshooting. I learned this the hard way.
Yeah, of course! Kind of goes against the point of the meme but oh well.
Fun fact: you don’t even need a hard drive (or ssd or usb stick or any storage device) to run linux. You can just flash it directly into your firmware
This comic was posted in 2011 but still holds up today perfectly lol.
Still gathering up my courage to make the switch. The better security / isolation between apps is a huge feature for me. But porting all of my shitty xorg-specific scripts and hacks will be a pain.
And for people who are still confused: The confusion is the whole point of the joke. Nobody understands what the hell “cow tools” is supposed to mean. Maybe it had something to do with research showing that other mammals, not just monkeys and early humans, were capable of making tools. But nobody knows. It’s absurdist humor
renzev@lemmy.worldto World News@lemmy.world•'Andrew Tate phenomena' surges in schools - with boys refusing to talk to female teacherEnglish1·2 months agoYes, because when this happens to “normal people” it is never publicized as much as when it happens to a celebrity. It’s kind of by-definition.
But I am not disagreeing with you. I just don’t know enough about andrew tate and this whole situation to have a good opinion here.
renzev@lemmy.worldto World News@lemmy.world•'Andrew Tate phenomena' surges in schools - with boys refusing to talk to female teacherEnglish2·2 months agoSee, the thing is, these are all allegations. It won’t be proven until his trial in 2027 whether he did any of those things or not (well okay, apart from the misogyny thing, he’s admitting that one loud and proud). Despite the fact, he’s had money and assets ceased and was sent to jail, which goes against some pretty fundamental values that many people are taught growing up (e.g. Innocent until proven guilty). So I can definitely see how many non-misogynists or even feminists would be on Tate’s side even if they disagree with his messaging.
renzev@lemmy.worldto Fuck AI@lemmy.world•Like Joining a Game Where Everyone is Using Aimbot and Winning From Pure Skill23·2 months agoWhoa there buddy the post was talking about image generators, which run OK on consumer (albeit high-end) hardware. You’re the one who brought up LLMs.
And how can google track me if it’s a thing running locally? Just pass
--network=none
to the docker container lol. Even then you’re arguably giving google more useful data by using gmail than any of their AI services. Do you go after every gmail user telling them that they’re supporting genocide? As for your fifth point, gauging whether or not something is original art by the permutation space of the medium is reductive. Is a base guitar less expressive than a harp because the musician is limited by the number of strings? Humans make art for many reasons, and one of those reasons is because its fun. Drawing with pencils can be fun, painting can be fun, writing prompts can be fun. People will keep on having AI art competitions because it’s fun while you’re sitting there in the corner seething about how all of them are genocide supporters. inb4 ad hominem, but honestly you sound insufferable.EDIT: Downvotes keep pouring in, but no replies. Looks like I won this one.
renzev@lemmy.worldto Fuck AI@lemmy.world•Like Joining a Game Where Everyone is Using Aimbot and Winning From Pure Skill17·2 months agoSo you want to buy me and every about like 10 million people a server that can run a halfway good LLM Model and pay the electric bills?
No, that sounds expensive
Also it dosent change any point except 2
It does actually
renzev@lemmy.worldto Fuck AI@lemmy.world•Like Joining a Game Where Everyone is Using Aimbot and Winning From Pure Skill33·2 months agooh lol just saw the community name
renzev@lemmy.worldto Fuck AI@lemmy.world•Like Joining a Game Where Everyone is Using Aimbot and Winning From Pure Skill37·2 months agoJust run your AI models locally? Problem solved lol.
Systemd and network manager are deliberately malicious I’m with you on that one but I feel like the new kernel-specific features like capabilities and namespaces are actually pretty neat. Like, they don’t even break backward compatibility. If you had a program that needs a special capability on linux and you wanted to port it to bsd, you could just make it a SUID executable. It’s not like capabilities offers a new API that programs use or something. Same with namespaces. I see a lot of people complaining about docker somehow being bloat or something, but, like, it’s still just linux on the inside of the container. Anything that can run in docker can run just as well outside of it. Worst-case scenario is that you have to change some environment variables from
host.docker.internal
tolocalhost
. You’re not being forced to use it.