Several times I’ve set the max warnings to whatever the current warning count is, and then decreased that over time.
Several times I’ve set the max warnings to whatever the current warning count is, and then decreased that over time.
I turn it off every night when I’m done. It boots quickly and I mostly just use it for the web browser and steam.
My work computer (Mac) I put to sleep because I don’t always want to open all the terminals and IDE and such every time.
At my job, me and another guy were given stuff to work on. But unknown to product, there’s a lot of shared code there.
In my imagination, it should be someone’s job to coordinate this. Instead, I finished a chunk of mine, he finished a chunk of his, and then there was confusion. Maybe that’s just a technical team lead’s job.
Nvidia 4070 super.
I don’t remember the other details off the top of my head. Discord had me run sudo apt install linux-image-oem-24.04b
and that fixed the Ethernet. They didn’t really explain details, though. Maybe there were more things to do, but I didn’t get more responses so I was on my own.
I think people over value emotions, but I realize I’m part of people too and it happens to me. Emotions are a fast heuristic but they’re not very inaccurate. They’re good for when speed is important, or when more information isn’t available. Neither is true on an async post about Linux. But yes, I can be dismissive of emotions but it’s something I’m working on.
I’ve seen too many people make strange, unhelpful, decisions because like “someone told me to do something and now I won’t” or “that guy was rude so I’m not going to listen”. That’s what your post felt like to me. (Note the emotional dimension there, heh)
Like, imagine a friend who always forgets their plans, is late, and double books themselves. You probably can’t just be like “use a calendar, dude”. You probably have to gently massage them and incept the idea. If you just tell them, they’ll feel bad, reject the idea, and continue having problems. (In real life, some months later the friend did come around to using a calendar, but only after uselessly wrestling with feeling bad)
So far this has been the smoothest installation of a Linux OS I have ever done.
Envy. I tried to install mint last night on a new computer, and it was a shit show.
I did learn you can tether your phone via USB, so I got Internet that way. That was cool.
But after I got Internet working, with help from discord, elden ring and Baldur’s gate 3 both failed to launch in different ways.
I gave up. Windows11 is horrible, but at least those things work.
…what do you mean by using dev containers? Are your people doing development on their host machine?
I’m on Mint. It only offered up to version 550 and veilguard needed 565, if I recall
https://forums.linuxmint.com/viewtopic.php?t=433321 was more or less my problem.
I could only find “beta” drivers that were new enough to run Veilguard, which was annoying. I had to add some other ppa thing. Not a big deal, but would scare off some users.
You did come off as someone who reacts only on emotion, since that’s all that was visible in your previous post.
Being put off by the delivery of information is not typically a good reason to dismiss it. If someone says to you “3 is a prime number you donkey” you’re hopefully not going to reject that because they were rude. I mean, we all do that to some extent, but it’s a pretty sloppy shortcut.
I switched to linux because Windows10 is going EoL, and my hardware is ineligible for Windows11. It’s been fine, once I got it set up. There wasn’t any single thing that pushed me over the edge. I just had a free weekend and I knew I had to do it eventually.
I really wanted the install to be smooth so I could tell everyone how great it was. It was not. Somehow it borked itself, and I couldn’t boot from the usb stick a 2nd time until after I manually edited a file on it. Then installer hung on the last step, and I couldn’t find any answers other than “Use the previous LTS”. At least that worked.
I always find it puzzling when adults act like “You told me to do a thing so now I don’t want to do it” or “You said a thing that’s true, but in a way that made me feel bad so I refuse to accept it”. What’s going on in there?
Related question, do you think in words or feelings? Some people have a whole inner monologue, and some people do not. Some people think in pictures, or just wordless impulses.
I’ve been on Linux Mint for the past several months and I think I’ve needed the terminal twice?
Once I couldn’t find a GUI option to adjust the brightness/gamma, but searching found me the terminal command so I just used that.
More recently I needed newer Nvidia drivers than were available by default, so I had to add a new PPA thing. We’ll find out later today if I’m going to regret that.
My work uses python and it hasn’t been bad for new code that has tests and types. Old code we inherited from contractors and “yolo startup” types is less good, but we’ve generally be improving that as we touch it.
I get a small amount of joy from clicking the “request changes” button and blocking some doofus from merging lazy untested code.
That doesn’t address the opportunity cost. Spending time on this means not spending time on something else. There are other optional things and user choices they could work on instead. This is always the case when doing anything, but AI is very far down the list of things I think are worth paying the costs for.
Opportunity cost
I know pre 1.x.x is kind of a wild west for versioning but uh is there any logic to the version numbers here? I’d think a new feature would be a minor version bump, not patch
I think a lot of people are kind of bad at written communication. It’s not an easy skill.
Often at work folks will write twice as many words and clauses as needed. The Hemingway editor ( https://hemingwayapp.com/ ) isn’t perfect, but I recommend they take a look at it.
Many things. I mean, you could hack a lot of stuff into Excel but generally
SQL has foreign keys and integrity checks. You can make it so like if you delete a user it automatically cascades to delete other rows like their addresses.
You can prevent someone from entering the wrong type of data in particular columns. This one’s an integer and that one’s text.
It’s designed to work on larger scales. Excel stops at 1 million rows per spreadsheet, unless my search just gave me AI slop.
You can do queries, for selecting as well as updating and deleting. You can join tables.
It’s much easier for other applications (such as a website) to talk to a SQL database
You can do transactions.
There’s a lot. That’s just off the top of my head.