Ah, but you see, "John" and "Doe" are two names - first and last - and when you say "My name is", you're really listing out your names, with spaces inbetween!
But then there's hyphenated names, and I have no idea how those are treated.
I'd say having a GUI is not inherently stupid. The stupid part is, if I understand it correctly, the GUI being a required component and the primary access method.
I'm pretty sure even if that was the case, the word was hijacked by bigots to insult anything they disagree with.
I feel like you're doing something wrong with the nullables... I'm pretty sure you don't need to mark up files, you can just enable it on the whole project? I'm not sure about the attributes, you might have a point there, but it just makes sense for value vs reference types IMO, since value types are already implicitly different in terms of nullability.
But yeah, I can imagine it's half-baked, since nullable reference types (that's the name, previously reference types were just nullable by default with no extra features) are a more recent addition to the language, one that wasn't built with them in mind.
Careful, NFTs lie that way. /s
The issue is, it sounds like a complicated mess in terms of figuring out exact legislations, implementations, patent and licensing rights, who's responsible for facilitating the actual resale, and ultimately it's gonna support and legitimize shady resellers like g2a selling stolen copies.
To be fair, aren't vitamins and soup pretty much the best thing we have for viral infections like the flu and covid? I mean, obviously vaccinating is better, but when you're already sick, you pretty much just need to rest, stay hydrated, get some nutrients and let your immune system deal with it, right?
Oh, no, that's just the dip during working hours for the other timezones
I might be wrong, but doesn't SSE require you to explicitly use it in C/C++? Laying out your data as arrays and specifically calling the SIMD operations on them?
I don't know about the second one - people shouldn't be discriminated based on religion, so is it really right to discriminate against "religious leaders"? That goes a step beyond separating religion from law and into hindering people based on their beliefs.
For a while, maybe... But the two distinctions I'd want to make is that, one, that's also mostly the time you'll spend learning what you need to set up as part of your system, and two, things that might be out of your control on many distros. I'd also say that by calling it a "meme distro" you're lumping it together with Hannah Montana Linux and similar.
I will certainly say, however, that I'm rather annoyed by all the people saying "Bro you can set up arch in a few minutes just run archinstal it's easy"... Not only do I not believe it's that easy when you don't know what you're doing and need to actually use the system, but that also seems to run counter to the point of arch. I think there's at least two popular arch derivatives meant to remove the enthusiast aspect and provide a streamlined experience, so why recommend arch to new people if not as a learning experience?
Calling Arch a meme distro is unnecessarily insulting. I imagine the same applies to Gentoo, but I haven't used it myself. It's an enthusiast distro, for people who want to have control over how their system is set up while accepting the responsibility of having to set everything up.
I absolutely agree with recommending against it for somebody's first experience - but if you're willing to read through the guides and troubleshoot issues, you can learn a lot about how things work on Linux. It's the kind of distro where you will have issues, and they will usually be due to your own mistakes.
I think it's only for the EU, and the other browsers don't have a solution ready - porting their engines for iOS is a lot of work, which takes time, and might not even be worth it when they still need to maintain the safari-based version for the rest of the world.
The wiki tells you what you need on arch, and what you need it for. Those packages also don't seem to have kernel-specific or dkms versions, so seems like they're not kernel modules.
Mind you, the setup is clearly not monolithic, with different components for different purposes, including alternative options. On top of that, each distro will make different choices - Arch provides the components as packages and puts the responsibility of installing the right ones on you. Some features might be built into kernel drivers, like working video output, but Vulkan support clearly wants a dedicated driver.
Here's what you need for Arch, for more context: https://wiki.archlinux.org/title/AMDGPU
I like Valve, but I will point out what's been said before - Valve has a stake in making Linux gaming better, since it enables the Steam Deck to exist and prosper. They could've chosen other options that don't help the community, but they didn't choose this entirely selflessly, since they reap the benefits from not just their own work, but also that of the open source developers.
Good peanut butter is just 100% ground up peanuts, soooo....
There's nothing special about it. Linux distros are one of the options, alongside windows and osx as desktop systems.
What there are are preferences, morals, affordability. Linux is generally free, has different approaches to how the system is structured, how software is installed, how much access to the system you have, and how much responsibility for setting it up you have.
This will also vary from distro to distro, but generally software is installed from the distribution's repositories, not downloading files from various websites - and instead of having some different scheme for updating every program on your computer, you use a single command (or button in an app) to update your system and all your software. This is one of the main things I love about Linux - you get to update your stuff when you want, all at once.
I feel like Italy might have that one covered, what with all the tortellini, ravioli, and such
JSX is JavaScript, but you can also just put HTML in it (with bonus syntax for embedding more JS expressions inside) and it can get transpiled into function calls, which means it'll result in an object structure representing the HTML you wrote. It's used so that you can write a component as a function that returns HTML with properties already computed in and any special properties, like event listeners, passed as function references contained in the structure.