There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

lemmy.ml

neonred , to memes in USB tunneling

You must spin it two times, not three.

trag468 , to memes in feeling old now?

Can confirm. Class of 2000. 42 years old.

altima_neo ,
@altima_neo@lemmy.zip avatar

Represent!

We’re the reason we’re called millennials in the first place. Graduating class of the new millennium!

PsychedSy ,

The fuck you are. You’re the last class of last millennium.

altima_neo ,
@altima_neo@lemmy.zip avatar

Wouldn’t that be class of 99?

jaybone ,

New millennium didn’t really start until 2001. So they are still right. (There was no year zero.)

ChicoSuave ,

So you’re that Y2K everyone was afraid of?

user224 ,

Forget Y2K, let’s be afraid of Y2038.

stembolts , (edited )

flicker ,

But are you self-sealing?

hedgehogging_the_bed ,

I love the idea that my reality keeps others up at night. Also class of 2000.

Kalkaline ,
@Kalkaline@leminal.space avatar

God damn you’re old, I’m class of 2000 and I’m only 41.

trag468 ,

Ha, I’m a December baby.

chatokun ,

Me too, but class of 99, also 42.

ColeSloth ,

Ditto.

If you ever re-watch Milo and Otis, you’ll be traumatized at how many puppies or kittens they probably went through.

lemmy_get_my_coat ,

Been there 😥

Obi ,
@Obi@sopuli.xyz avatar

Is that like graduation from high school at 18yo, for the non-americans in the audience?

Alexstarfire ,

Yes

Obi ,
@Obi@sopuli.xyz avatar

Thanks.

Splenetic , to memes in feeling old now?

Started growing my beard in, for the first time in years. It’s white. Hell yeah I’m old

xavier666 , to programmerhumor in The Server Fell Over

When tipping the server goes wrong

MonkderDritte , to memes in USB tunneling

Upvote for the nostalgia.

LemmyKnowsBest ,

Nostalgia? This is something I still deal with every day. What future are you living in?

MonkderDritte ,

A lot of notebooks have only USB-C for years now.

But true, i have not seen C Bluetooth dongles yet.

DestroyMegacorps ,

when are we gonna get a barrel styled USB connector its clearly infinitely better than a USB c connector

Allero ,

Never, because apparently someone craves thinner smartphones and tablets, and a barrel USB is a bad fit for that.

Trabic ,

Still takes me two tries more than %50 of the time with usb-c

NutWrench , to memes in USB tunneling
@NutWrench@lemmy.world avatar

You can buy reversible USB cables online. The connector works in either direction. They’re pretty neat.

Allero ,

Wow! Can’t believe it actually exists lol

Vespair , to memes in USB tunneling

I think this kind of meme is the same thing as people who pretend to hate the word “moist.”

beltsin ,

now what do you mean by that

Vespair ,

Boring pop culture opinions that nobody actually likes but which wear the cadence of interesting content so people unthinkingly clap along out of habit even though nobody is actually edified by it or sincerely enjoying it.

Postmortal_Pop ,

I’ve been preaching this about “moist” for years. I genuinely haven’t found anyone with an aversion to it who disliked the word before dislike of it became a part of the cultural fabric.

Vespair ,

You, my friend, are 100% correct in your take on the topic.

Allero ,

USB devices just not fitting the damn slot is an all too common issue, and it normally takes me 2-3 rotations to finally insert it if I’m not actively looking.

militaryintelligence , to memes in feeling old now?

Damn millennials and their avocado toast habit

spicytuna62 ,
@spicytuna62@lemmy.world avatar

Don’t forget how we killed like fucking everything.

A badge I wear with pride.

Alexstarfire ,

Yet Donald still roams this Earth. You get lazy or something?

LEONHART , to memes in feeling old now?

glances into mirror

Oh.

Right.

…Shit.

hellfire103 , to programmerhumor in The Server Fell Over

Oh fuck! Is that a RAID array? That must’ve taken so long to put back together!

Ciel ,
@Ciel@lemmygrad.ml avatar

those are hdd’s, there is no putting that back together

GrundlButter ,

If the inertia didn’t physically damage more than half of those drives, I would be surprised. I don’t think redundancy is a factor in this scenario. This has 3 likely outcomea. Restore from local backup in a different rack, restore from cloud/offsite backup, or the whole company needs to update their resumes.

taco_ballerina , to memes in cmd.exe

I’m sure it was nothing. It seems fine? What was that noise?

electroskunk ,
@electroskunk@lemmy.world avatar

Chiptunes music plays as keygen opens with three more command prompt windows.

kerbo ,

With the loudest volume possible

millie , to memes in USB tunneling

No, no, no. This is all wrong. USB has a spin of 1/2.

Sam_Bass , to memes in feeling old now?

Yeah my kids are a hoot

sederx , to linuxmemes in Linux mint = best beginner distro

But new users don’t even know what snaps are. They don’t care. We care because we are crazy bastards

ivanafterall ,
@ivanafterall@kbin.social avatar

What's snaps?

IHeartBadCode ,
@IHeartBadCode@kbin.social avatar

I am so sorry this got so long. I'm absolutely horrible at brevity.

Applications use things called libraries to provide particular functions rather than implement those functions themselves. So like "handle HTTP request" as an example, you can just use a HTTP library to handle it for you so you can focus on developing your application.

As time progresses, libraries change and release new versions. Most of the time one version is compatible with the other. Sometimes, especially when there is a major version change, the two version are incompatible. If an application relied on that library and a major incompatible change was made, the application also needs to be changed for the new version of the library.

A Linux distro usually selects the version of each library that they are going to ship with their release and maintain it via updates. However, your distro provider and some neat program you might use are usually two different people. So the neat program you use might have change their application to be compatible with a library that might not make it into your distro until next release.

At that point you have one of two options. Wait until your distro provides the updated library or the go it alone route of you updating your own library (which libraries can depend on other libraries, which means you could be opening a whole Pandora's box here). The go it alone route also means that you have to turn off your distro's updates because they'll just overwrite everything you've done library wise.

This is where snaps, flatpaks, and appimages come into play. In a very basic sense, they provide a means for a program to include all the libraries it'll need to run, without those libraries conflicting with your current setup from the distro. You might hear them as "containerized programs", however, they're not exactly the Docker style "container", but from an isolating perspective, that's mostly correct. So your neat application that relies on the newest libraries, they can be put into a snap, flatpak, or appimage and you can run that program with those new libraries no need for your distro to provide them or for you to go it alone.

I won't bore you on the technical difference between the formats, but just mostly focus on what I usually hear is the objectionable issue with snaps. Snaps is a format that is developed by Canonical. All of these formats have a means of distribution, that is how do you get the program to install and how it is updated. Because you know, getting regular updates of your program is still really important. With snaps, Canonical uses a cryptographic signature to indicate that the distribution of the program has come from their "Snaps Store". And that's the main issue folks have taken with snaps.

So unlike the other kinds of formats, snaps are only really useful when they are acquired from the Canonical Snaps Store. You can bypass the checking of the cryptographic signature via the command line, but Ubuntu will not automatically check for updates on software installed via that method, you must check for updates manually. In contrast, anyone can build and maintain their own flatpak "store" or central repository. Only Canonical can distribute snaps and provide all of the nice features of distribution like automatic updates.

So that's the main gripe, there's technical issues as well between the formats which I won't get into. But the main high level argument is the conflicting ideas of "open and free to all" that is usually associated with the Linux group (and FOSS [Free and open-source software] in general) and the "only Canonical can distribute" that comes with snaps. So as @sederx indicated, if that's not an argument that resonates with you, the debate is pretty moot.

There's some user level difference like some snaps can run a bit slower than a native program, but Canonical has updated things with snaps to address some of that. Flatpak sandboxing can make it difficult to access files on your system, but flatpak permissions can be edited with things like Flatseal. Etc. It's what I would file into the "papercut" box of problems. But for some, those papercuts matter and ultimately turn people off from the whole Linux thing. So there's arguments that come from that as well, but that's so universal "just different in how the papercut happens" that I just file that as a debate between container and native applications, rather a debate about formats.

Agent641 ,

I understand less now.

DerisionConsulting ,

Take that person’s post, comparing it to cooking.

Sometimes you use a Library pre-made sauce or spice blend as part of a recipe, so you don’t need to waste time remaking something that is commonly used.

Every so often, a company will tweak the recipe for the things you are using, but it still basically tastes the same. Sometimes they just decide that now it’s salty instead of sweet, so it would complete ruin the dish you would like to make.

The recipe you are using assumes you live in Australia where the new version of the sauce/spice blend is more common, but where you live still only sells the old version.

So now you can either wait for the store to sell the new sauce/spice blend, import it from Australia, or try to make it yourself. But you might have another recipe that still needs/uses the old sauce/spice blend. Needing to have both can lead to issues where you use the wrong one, ruining the food you are trying to make.

This is where snaps, flatpaks, and appimages those dish-in-a-box kits come into play. They’ll have the correct version of the spices/sauces you want, so it doesn’t really matter which version you have in your kitchen.

Snaps branded dish-in-a-box kits are developed by Canonical, and they can be kinda weird. You need to check for updates if you need to re-buy them manually, and you can only get them from the “Snaps Store”. Other dish-in-a-box kits allow you to get them from whichever store you want, and will automatically re-order when needed.

And that’s the main issue folks have taken with snaps. If you have 50+ programs are making a meal with 50+ dishes, and you need to constantly check if you need to rebuy them one by one, it gets old quickly.


Also, Snaps takes up a lot of room, and generally just kinda suck compared to installing things normally or through flatpack.

Sam_Bass , to programmerhumor in The Server Fell Over

Terabit the dust boss

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines