They’re probably picturing the typical American grocery store: giant warehouse-like building, massive parking lot, tons of people coming and going. It would be a bad idea to put one of those in the middle of a neighborhood.
When you hit the windows key (aka meta-key or super-key) it brings up the app launcher. You get a dock at the bottom with pinned or running apps (like a taskbar), and all of your open windows are presented in a sort of mini-version that lets you switch between them or move them between workspaces. There is a search bar that you can immediately type into to open any app with a .desktop file. There is also a button to bring up the app grid which shows your apps kind of like a mobile device’s home screen.
Not having a dock is one of my favorite things about gnome. I actually use an extension to hide the top bar too. There’s just something so satisfying about having 100% usable space on screen. I get all the info back in the win-key overlay, so I don’t really need that stuff on screen at all times.
You formatted your links as images. Markdown uses ![…](…) for images, […](…) for links.
It’s easier than you think. You can just download an exe, point lutris/steam to it (ie, just paste the path into the gui), and run the game. I have yet to find a game that doesn’t work. Troubleshooting is rare, and in my experience only involves changing proton versions. I have never had to mess with drivers, aside from initial installation when I installed the OS.
What do you mean no alternative to VS? There are many IDEs on Linux. What does VS do that nothing else can?
Well letters don’t really have a single canonical shape. There are many acceptable ways of rendering each. While two letters might usually look the same, it is very possible that some shape could be acceptable for one but not the other. So, it makes sense to distinguish between them in binary representation. That allows the interpreting software to determine if it cares about the difference or not.
Also, the Unicode code tables do mention which characters look (nearly) identical, so it’s definitely possible to make a program interpret something like a Greek question mark the same as a semicolon. I guess it’s just that no one has bothered, since it’s such a rare edge case.
I’ve seen shitposts with more compelling stories than some of those isekais.
Every thing you code is binary. You may write ‘15’, but the code your computer runs will use ‘00001111’. The base-10 source code is only like that for human readability. All mathematical operations are done in binary, and all numbers are stored in binary. The only time they are not is the exact moment they are converted to text to display to the user.
I find that much harder to read than a for loop. You are making a helper function to only use it once, which is kind of confusing when it is totally unnecessary. Also, distinguishing between two groups only inside the setter line is weird. Applying the modification to one group, then the other, is more obvious. Considering the alternative isn’t really longer, and only using basic loop syntax, I would just use the loop. If you really want to add the “set dots visibility” explanation into it, just use a comment, that’s what they’re for.
I literally just now misunderstood your code and had to change my comment to correct for it.
Use:
items=[...]
for o in items:
...
This is the most direct way of doing what you want. The first option might allocate a new array each iteration, which is unnecessary. The match statement is both a pain in the ass to write and less direct, which at best compiles to the same thing and at worst has you doing a bunch of totally unneeded comparisons.
If this ‘i’ variable you used isn’t just an incrementing counter, use the last option. If it is though, it’s an extra counter you don’t actually need.
The performance difference here would be so small I doubt you could even observe it. So, you really shouldn’t worry about this particular pattern. Compiler optimizations are more likely to trigger on simple, direct code, so writing it as directly as possible is probably the fastest option anyway.
" dumb it down"? Isn’t the mobile app (s) displaying the same posts as the website(s)?
That’s not entirely accurate. The first amendment mentions both freedom of speech and freedom of press. Freedom of speech is for individuals sharing ideas, not just reporters. That applies both conceptually and legally. Hate speech is seen as a necessary exemption by many, because of the potential ramifications (see comic). That isn’t the same thing as saying free speech wouldn’t apply even without said exemption; even though it may lead you to the same conclusion.
You can’t set reminders if you never knew the interview existed. It’s still their fault, but it’s an easy mistake to make.
If you’re installing Ubuntu or Manjaro, it’s honestly easier than windows. The options make more sense, and you get much more useful info on your drives. With windows, I have to identify them by capacity, which has led to me installing on the wrong drive before. And live CD installs even allow you to look something up for help right there.
Arch is a totally different story though. No way I would have started using Linux if that was my introduction to it.
It sounds to me like they we were going for more of a realistic future than a utopia. The money free utopia thing never seemed that important, I suspect it’s only used in later shows for consistency with TOS. It’s far more important to trek to criticize and reflect modern society, which is a lot harder to do if your characters are living in a utopia. I haven’t seen Picard yet though, so I’m just extrapolating from your description.
My understanding is that running on game consoles can’t be officially supported, because they can’t integrate the necessary proprietary code into the engine while keeping it open source.
Well it’s all fine and dandy until you try to buy some spinach, fumble around on the touchscreen for a while until you figure out how to add something manually, then can’t find spinach anywhere and finally ask for help, feeling like a total idiot who can’t use a touchscreen interface that a boomer soccer mom could figure out, but then you figure out it was listed under “leafy green spinach” so now you’re mad at both at yourself and whoever decided that was a good idea.
Y2K specifically makes no sense though. Any reasonable way of storing a year would use a binary integer of some length (especially when you want to use as little memory as possible). The same goes for manipulations; they are faster, more memory efficient, and easier to implement in binary. With an 8-bit signed integer counting from 1900, the concerning overflows would occur in 2028, not 2000. A base 10 representation would require at least 8 bits to store a two digit number anyway. There is no advantage to a base 10 representation, and there never has been. For Y2K to have been anything more significant than a text formatting issue, a whole lot of programmers would have had to go out of their way to be really, really bad at their jobs. Also, usage of dates beyond 2000 would have increased gradually for decades leading up to it, so the idea it would be any sort of sudden catastrophe is absurd.