this post was submitted on 14 Dec 2023
217 points (99.1% liked)

Linux

47561 readers
713 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

For those that were interested in the openSUSE logo contest, the voting wrapped up on Tuesday and the results of this logo contest for new openSUSE branding have been selected.

you are viewing a single comment's thread
view the rest of the comments
[–] janAkali@lemmy.one 3 points 9 months ago* (last edited 9 months ago) (1 children)

For one - the error handling. Every codebase is filled with messy, hard to type:

if err != nil {
    ...
}

And it doesn't even give you a stack trace to debug the problem when an error happens, apparently.

Second reason - it lacks many features that are generally available in most other languages. Generics is the big one, but thankfully they added them in last half a year or so. In general Golang's design principle is to implement only the required minimum.

And probably most important - Go is owned by Google, aka the "all seeing eye of Sauron". There was recently a big controversy with them proposing adding an on-by-default telemetry to the compiler. And with the recent trend of enshittification, I wouldn't trust google or any other mega-corporation.

[–] sentient_loom@sh.itjust.works 4 points 9 months ago

Yeah the "owned by google" thing is a big turn-off. And telemetry... he'll no. Also it's weird that Go doesn't have a ternary. It's a small thing, but it's a thing.