Died from reading this

948 points · 130 comments · view on lemmy.world

130 Comments

FlatFootFox@lemmy.world · 314 pts · 2y (1 reply)

The two hardest problems in computer science are cache invalidation, naming things, and off by one errors.

teft@lemmy.world · 9 pts · 2y

A recent video I watched by Stand Up Maths about an off by one error 1200 years in the making:

https://www.youtube.com/watch?v=FAdmpAZTH_M

odium@programming.dev · 225 pts · 2y (16 replies)

TIL Wayland is named after a town

Dunstabzugshaubitze@feddit.de · 111 pts · 2y (8 replies)

so is dracut and weston.

i think that naming software after towns in Massachusetts is somekind of red hat in-joke.

cogman@lemmy.world · 119 pts · 2y (6 replies)

It's even neater. The name of towns/cites cannot be trademarked. The safest thing you can do when naming a project is naming it after a town so you don't run into legal troubles in the future.

DrWeevilJammer@lemmy.ml · 34 pts · 2y (1 reply)

I wonder if Monster and Monster know about Monster

cogman@lemmy.world · 28 pts · 2y

You can eventually trademark once you get big enough. As with all things law it's a bit tricky. However, the default is that geographic locations aren't trademarkable.

For further reading on when you can trademark.

https://www.yospinlaw.com/2016/06/15/trademark-on-a-geographical-location

Railcar8095@lemm.ee · 18 pts · 2y

Who's going to take this as legal advice and name a project Apple?

https://maps.app.goo.gl/15sDygDQWBd8J9kUA

Deceptichum@sh.itjust.works · 3 pts · 2y (2 replies)

Tell that to Cambridge.

homesweethomeMrL@lemmy.world · 3 pts · 2y (1 reply)

Tell it to the Beatles

OldManBOMBIN@lemmy.world · 4 pts · 2y

Tell it to THE SPANISH INQUISITION

fruitycoder@sh.itjust.works · 17 pts · 2y

Openstack releases are named after the nearest town to conference that matches the next series in the alphabet.

littlebluespark@lemmy.world · 37 pts · 2y (4 replies)

I always thought it was the corp from the Alien series. 🤓

BeigeAgenda@lemmy.ca · 26 pts · 2y

That's Weyland-Yutani

olafurp@lemmy.world · 7 pts · 2y (2 replies)

In the Brolien universe it's called Wheyland

iegod@lemm.ee · 3 pts · 2y (1 reply)

In the mass obsessed universe it's called Weighland.

OldManBOMBIN@lemmy.world · 3 pts · 2y

In the map obsessed universe it's called Wayland.

Very similar to our universe, that one.

callmepk@lemmy.world · 16 pts · 2y
SwordInStone@lemmy.world · 1 pts · 2y

I always thought this was the origin https://en.m.wikipedia.org/wiki/Wayland_the_Smith

monk@lemmy.unboiled.info · 102 pts · 2y (8 replies)

And before Pidgin was named Pidgin, it was named GAIM, which was short for GTK AIM, which was short for GIMP toolkit AOL IM, which was short for GNU Image Manipulation Program toolkit America Online Instant Messenger, which was short for GNU's Not Unix Image Manipulation Program toolkit America Online Instant Messenger and it never ends.

0ops@lemm.ee · 28 pts · 2y (2 replies)

Which bible passage is that again?

pete_the_cat@lemmy.world · 23 pts · 2y (1 reply)

Stallman 2:7-11

corsicanguppy@lemmy.ca · 5 pts · 2y

May his toes never jam

schnurrito@discuss.tchncs.de · 9 pts · 2y (3 replies)

Does anyone still use pidgin in 2024 even?

rinze@infosec.pub · 14 pts · 2y (1 reply)

With the new EU's interconnection laws I hope I can WhatsApp from Pidgin, or even from irssi!

But no, I don't use pidgin anymore. irssi, yes.

dan@upvote.au · 4 pts · 2y

I could be wrong but my understanding of the EU interoperability laws is that they cover interoperability between services (for example, being able to message a Telegram user from WhatsApp and vice versa), not interoperability with third-party clients apps.

interdimensionalmeme@lemmy.ml · 4 pts · 2y

I use gajim/conversation/siskin spiritual successor

Eyck_of_denesle@lemmy.zip · 2 pts · 2y

I'm trying very hard but this seems harder than my math class.

waigl@lemmy.world · 94 pts · 2y (13 replies)

Also, almost all of that is written in C, which is a successor to B, which is a simplified version of the Basic Combined Programming Language. There was never an A.

Cupcake1972@mander.xyz · 56 pts · 2y (1 reply)

Assembly.

xenoclast@lemmy.world · 6 pts · 2y

Ding ding.

Agent641@lemmy.world · 13 pts · 2y (10 replies)

Is there a D?

Rinox@feddit.it · 26 pts · 2y (7 replies)

Yes, but I'm not sure if we want to open the "programming language can of worms".

There's B, C, C++, C#, Objective-C, D, E, F, F#, F* and so many more. Also, they may or may not have anything to do with each other

Johanno@feddit.de · 12 pts · 2y (2 replies)

But of course Java and Javascript are related /s

Rinox@feddit.it · 9 pts · 2y

The number of job applications using Java as a shorthand for Javascript.....

jollyrogue@lemmy.ml · 3 pts · 2y

I once had a C# dev tell me they couldn’t run JavaScript because they didn’t have Java installed.

jyte@lemmy.world · 6 pts · 2y (3 replies)

Also I've read that C# is C++++ (like put those + on 2x2 table, which in turns ressemble a #)

dan@upvote.au · 5 pts · 2y (2 replies)

Hahaha I've never heard that before. Seems legit.

C# was originally "Java: The Good Parts" but but these days it's a much more advanced language and runtime compared to Java.

Zangoose@lemmy.one · 1 pts · 2y (1 reply)

As a dev who works on both Java and C# code, modern Java (17+) and C# feel almost exactly the same (not sure if Java has extension methods though).

Bonus points for using Kotlin instead tho. I dislike both Java and C# just because they both allow any object to be null and that's usually a headache whenever a null exception shows up.

The only thing I like better about C# is the Fixture library for testing. I haven't found any mature libraries like it for Java yet.

dan@upvote.au · 2 pts · 2y

they both allow any object to be null and that's usually a headache whenever a null exception shows up.

C# has nullable reference types now: https://learn.microsoft.com/en-us/dotnet/csharp/nullable-references. If you enable it, you have to explicitly make reference types nullable (like ?string) and you'll get build warnings if you try to use a variable that's potentially null.

aksdb@lemmy.world · 6 pts · 2y

Of course. Great, another D in programming.

corsicanguppy@lemmy.ca · 4 pts · 2y

Yes. D is pretty awesome.

cypherpunks@lemmy.ml · 79 pts · 2y (7 replies)

disappointed cricket fan meme with CDE logo

(before it was Kool, KDE was a reference to CDE, the Common Desktop Environment)

lazynooblet@lazysoci.al · 29 pts · 2y (2 replies)

The logo looks like an ASCII butt.

Empricorn@feddit.nl · 19 pts · 2y

If your butt looks like that, please see a doctor.

Kushia@lemmy.ml · 1 pts · 2y

Put the E at the front and a 3 on the end and you have exactly that.

driving_crooner@lemmy.eco.br · 15 pts · 2y (2 replies)

Common is a pretty basic name, Kool is way cooler.

bingbong@lemmy.dbzer0.com · 5 pts · 2y

*kooler

swab148@startrek.website · 4 pts · 2y

*Kooler

peter@feddit.uk · 6 pts · 2y

I hate backronyms

nothacking@discuss.tchncs.de · 76 pts · 2y (8 replies)

GNU is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX is not UNIX[Maximum call stack size exceeded]

Klear@lemmy.world · 21 pts · 2y

GNU is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System is not UNiplexed Information Computing System

SexualPolytope@lemmy.sdf.org · 8 pts · 2y (5 replies)

A tail-recursive version written in OCaml that should not reach stack limits easily. (Not an expert in OCaml, so this might be stupid. But I tried it with 10000 iterations, and it worked without any issues.)

let gnu =
    let rec aux s = function
    | 0 -> s
    | n -> aux (s^" is Not Unix") (n-1)
in aux "GNU";;
barsoap@lemm.ee · 8 pts · 2y (4 replies)

Not an OCaml expert either but that looks tail recursive, you're never going to blow the stack.

You can tell by how after the recursive call within aux, its result does not get used within the function. That means that the compiler doesn't need to push a return address to the stack as the only code that would be at that address is instructions to pop another address and return there, we can short-circuit all that and jump from the base case (0) directly to where aux(10000) is supposed to return to instead of taking 10000 dumb steps (like practically all procedural languages do because they don't have tail call optimisation).

This would've been different if you had concatenated the string not as an argument to aux.

sacredfire@programming.dev · 3 pts · 2y (1 reply)

I thought Tail recursion just gets turned into an iterative loop by the compiler? Hence why you won’t get a stack overflow. And since in procedural languages you can just use a loop in place of a tail recursive function you would never run into this problem, right? At least this is how it was taught to me when I was learning about it in lisp.

barsoap@lemm.ee · 3 pts · 2y

Yes you still need the loop part I skipped over that one, only focussing on the "why no return address on the stack" part. It's what you need to focus on to see whether a recursive call is in a tail position and if it is the compiler does the rest no need to worry about that part.

SexualPolytope@lemmy.sdf.org · 2 pts · 2y (1 reply)

That was the idea. But I'm not a functional programmer (not a programmer by profession at all lol), so I might've done something stupid. Hence the disclaimer. Thanks for confirming.

barsoap@lemm.ee · 5 pts · 2y

OCaml certainly isn't a bad language to learn for a non-professional. It's almost painfully sensible and well-engineered, you're far away from hype train nonsense and startup production jank but also not out in the "the purpose of this language is to be beautiful and earn me a PhD" territory, OCaml definitely is a production language.

wise_pancake@lemmy.ca · 2 pts · 2y
[ removed ]
Kerb@discuss.tchncs.de · 74 pts · 2y (1 reply)

im almost sad that its linux that became the dominating open source kernel instead of "GNU's Not Unix! Hird of Unix-Replacing Daemons"
(hird stands for "Hurd of Interfaces Representing Depth")

gandalf_der_12te@feddit.de · 1 pts · 2y

and it goes HARD

AceFuzzLord@lemm.ee · 69 pts · 2y (13 replies)

Not gonna lie, took me a moment of thinking and waiting for a search engine to load before I realized Kool Desktop Environment is just KDE...

smackjack@lemmy.world · 13 pts · 2y (12 replies)

I always thought the K in KDE just stood for KDE.

VicentAdultman@lemmy.world · 23 pts · 2y (1 reply)

KDE stands for KDE is not a Desktop Environment.

walthervonstolzing@lemmy.ml · 4 pts · 2y

Yes, just as GNOME stands for GNOME has NO MErcy.

AceFuzzLord@lemm.ee · 6 pts · 2y (5 replies)

While looking it up, I'm pretty sure I read that Kool Desktop Environment was changed to K Desktop Environment. Either way, it's absolutely Konfusing regardless of how you slice it.

ICastFist@programming.dev · 12 pts · 2y (3 replies)

Konfusing? Everything is krystal klear in KDE, or you kan make it opaque, too, as all konfigurations are exposed for maximum kustomization

Magnetar@feddit.de · 4 pts · 2y (1 reply)

Jep, always the K in KDE applications, like oKular and dolphin.

dan@upvote.au · 1 pts · 2y

Some of the KDE apps are useful even on other OSes. KID3 is still my favourite MP3/FLAC tagger even on Windows.

WhiskyTangoFoxtrot@lemmy.world · 3 pts · 2y

Flawless victory.

PopcornTin@lemmy.world · 0 pts · 2y

Originally, it had no meaning. It was just the letter K. There are attempts to rewrite history, give it some purpose, but no.

ReCursing@kbin.social · 1 pts · 2y (3 replies)

It does now and has for years, but at first they didn't realise how stupid Kool Desktop Environment sounded

firefly@neon.nightbulb.net · 1 pts · 2y (2 replies)
[ removed ]
AceFuzzLord@lemm.ee · 1 pts · 2y (1 reply)

Not sure if this is directly aimed at us but, I don't know much about different desktop environments (with this being the maybe 2nd or 3rd one I've used), but I l just like plasma because it looks good without much tweaking. I'm still learning Linux, so I just want something that looks good out of the box.

firefly@neon.nightbulb.net · 1 pts · 2y

@AceFuzzLord@lemm.ee

I don't care much for looks. I want something that works good. Every time I've tried KDE in the past decade there have been major bugs that crashed things. I use mostly XFCE and OpenBox (both ugly) and the bugs are so infrequent that I can't even remember the last one encountered. I'm so busy getting things done I don't notice how ugly the desktop environment looks.

silver_wings_of_morning@feddit.dk · 59 pts · 2y (1 reply)

On second thought, let's not move to Linux.

Krackalot@discuss.tchncs.de · 51 pts · 2y

Yes, tis a silly place.

nephelekonstantatou@lemmy.world · 59 pts · 2y (9 replies)

Never let programmers name things 😁

tal@lemmy.today · 35 pts · 2y (2 replies)

Web browsers: elinks, based on links, which I'm pretty sure was a play on words on lynx, which is a play on words on "links" on a web page.

Then there's email. There's mahogany and balsa and mulberry, which are in-jokes referring to pine, which was a joke referring to elm, which stood for ELectronic Mail. Pine has been forked to alpine, in an entirely different play on words.

corsicanguppy@lemmy.ca · 1 pts · 2y (1 reply)

Pine has been forked to Alpine

Wonder if it runs on Alpine the Linux distro.

In other news, I never knew pine's genetic code still lives on; but I miss elm more. Can we do uw-imap too? Dovecot annoys me.

beaiouns@lemmy.world · 5 pts · 2y

I've run alpine on alpine, it works just fine

dan@upvote.au · 7 pts · 2y (3 replies)

Naming things is hard, and everyone remembers these names, so they must have done something right.

tastysnacks@programming.dev · 4 pts · 2y (2 replies)

Yes, naming things one of the three hard computing problems left along with cache invalidation.

jungle@lemmy.world · 1 pts · 2y (1 reply)

I feel bad that you've been left hanging there.

What's the third one? :)

Pyroglyph@lemmy.world · 2 pts · 2y

Probably off-by-one errors

KrapKake@lemmy.world · 4 pts · 2y (1 reply)

Yea no kidding. Gnome is pronounced Guhnome, Mate DE is pronounced Matay, Open Suse is susuh not soos, and Qt is to be pronounced as "cute" instead of just... Q-T. Many such cases.

cmbabul@lemmy.world · 3 pts · 2y

Wait for real? I don’t think I’ve heard many say those terms out loud, i pronounce them in my head Nome, Mate, Soos, and q-t

psycho_driver@lemmy.world · 48 pts · 2y

This sounds like it was written for a medical research journal.

Gleddified@lemmy.ca · 37 pts · 2y

Linux lore is my favourite

Bishma@discuss.tchncs.de · 27 pts · 2y

I have a slightly higher appreciation for recursive acronyms now.

okamiueru@lemmy.world · 25 pts · 2y (3 replies)

With just little bit of formatting, it would communicate the information infinitely better. Why don't people make the minimal effort, once, when not doing leads to each and everyone having to figure out what the fuck it's actually trying to say.

Apologies. I'm grumpy after a three hour meeting.

nexussapphire@lemm.ee · 10 pts · 2y (2 replies)

the real problem is this sentence contains no formatting no punctuation and no capitalization it must be a failure of our public education system in america that kid dont get the proper education they need in this day and age to use proper gramer and formatting where needed i bet most of you cant tell me the proper time to use a semicolon vs using a colon and thats ok because i dont either i do try my best to put it in the right place sometimes looking it up and failing to understand comas are also frequently used to much by people im sure your not alone in this assumption it could also be that english is hard and schools spend more time teaching us to consume and parse english rather than a balance of both reading comprehension and writing skills

starman2112@sh.itjust.works · 3 pts · 2y

A semicolon is used when you're separating sentences that are themselves part of a list. Typically you would use commas to separate list items, but when the list items are complete sentences with commas in them, you use a semicolon to separate them. A colon is used when you have to poop

nexussapphire@lemm.ee · 3 pts · 2y

Typing this thing was admittedly hard on the phone. Without selecting any suggestions, it still manages to get the capitalization and punctuation right.

rustydrd@sh.itjust.works · 24 pts · 2y (5 replies)

Let's not forget about Ian and his wife, Debbie.

Edit: Now ex-wife, apparently.

ben16w@lemmy.world · 6 pts · 2y (1 reply)

Ex wife and ex Ian

rustydrd@sh.itjust.works · 3 pts · 2y

Bruh

embed_me@programming.dev · 4 pts · 2y

Linux claimed another victim ✊😔

kureta@lemmy.ml · 3 pts · 2y (1 reply)

Holy shit! Is this real?

MargotRobbie@lemm.ee · 21 pts · 2y

"GNU is Not Unix Image Manipulation Program Tool Kit" is still a better name for GTK than "GIMP ToolKit".

It's a name that will definitely raise some eyebrows in the less technically inclined circles. (and maybe a few "Pulp Fiction" references about "bring out the gimp")

z500@startrek.website · 19 pts · 2y (1 reply)

I can't wait to hear about the GNU Is Not UNIX Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of Hurd of Hird of

Kushia@lemmy.ml · 5 pts · 2y

Don't worry, at the rate it's going it probably will never see the light of day in any usable sense for the average person.

redcalcium@lemmy.institute · 15 pts · 2y (1 reply)

All these years I thought GTK stands for Gnome Tool Kit...

dan@upvote.au · 12 pts · 2y

It's pretty common for people to think that, since the GNOME Foundation adopted it. It was originally created for GIMP though - the developer didn't like Motif so they built their own replacement for it.

NigelFrobisher@aussie.zone · 12 pts · 2y (2 replies)

Don’t worry, it won’t be long before you find this sort of programmer humour more tiresome than charming.

flying_sheep@lemmy.ml · 15 pts · 2y (1 reply)

Not everyone becomes a joyless spoilsport.

corsicanguppy@lemmy.ca · 1 pts · 2y

Everyone does after enough repetition. #endlessSeptember

RandomVideos@programming.dev · 11 pts · 2y

I like GNU is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix is Not Unix Network Object Model Environment

werefreeatlast@lemmy.world · 8 pts · 2y
mavu@discuss.tchncs.de · 5 pts · 2y

I mean... if you put it like that..

Ziglin@lemmy.world · 5 pts · 2y (3 replies)

Wait why didn't they keep unpacking the recursive acronym further? GNU's Not Unix's Not Unix's Not Unix's Not Unix I'd say that's a pretty good amount although if there's a mathematical way of formulating the unpacking of acronyms in a text I'd like to see the that repeated until infinity.

lseif@sopuli.xyz · 3 pts · 2y (1 reply)

i tried that and the stack overflowed

Ziglin@lemmy.world · 1 pts · 2y

Fair enough.

anton@lemmy.blahaj.zone · 2 pts · 1y

Just put it in a formal grammar:

GNU -> GNU's Not Unix's
GNU -> gnu
GIMP -> GNU image manipulation program
MonsiuerPatEBrown@reddthat.com · 3 pts · 2y

It is weird that the one before that wasn't just "single u"

MonkderZweite@feddit.ch · 3 pts · 2y

Engineers and naming things i guess?

Korne127@lemmy.world · 2 pts · 2y

What a coincidence, I'm currently learning GTK4/Libadwaita :>

teft@lemmy.world · 2 pts · 2y

Well when you put it like that...

BrownianMotion@lemmy.world · 1 pts · 2y

Could have simply said "GIMP Toolkit" and "GNOME"...

MyNamesNotRobert@lemmynsfw.com · 1 pts · 2y

Holy shit is KDE really called Kool Desktop Environment? Wow.

fl42v@lemmy.ml · 1 pts · 2y
[ removed ]
jakolasio@thelemmy.club · 1 pts · 2y

GNU IS NOT LINUX

LodeMike@lemmy.today · 0 pts · 2y (8 replies)

It's not GNUIMP it's GIMP

alfredalpaca@lemmy.world · 32 pts · 2y (4 replies)

GNU is Not Unix is recursive

db2@lemmy.world · 16 pts · 2y (3 replies)

You're recursive

bottleofchips@lemmy.blahaj.zone · 16 pts · 2y (2 replies)

You’re recursive

Grizzlywer@feddit.de · 8 pts · 2y (1 reply)

You're recursive

tetris11@lemmy.ml · 4 pts · 2y

It is you who is the one who is recursive.

cypherpunks@lemmy.ml · 30 pts · 2y (1 reply)

It’s not GNUIMP it’s GIMP

what do you think the G is for

LodeMike@lemmy.today · 0 pts · 2y

Gnu, expanded once not twice.

SpaceCowboy@lemmy.ca · 1 pts · 2y

Of course not, it's the GNU[NU...]IMPTK.

BradleyUffner@lemmy.world · -2 pts · 2y

And this is why I can't take Linux seriously.