

Consistent styling helps make the actual meaningful changes easier to spot. Probably also useful for your own commit history when working solo in a repo, but most useful in a team, yeah!
Consistent styling helps make the actual meaningful changes easier to spot. Probably also useful for your own commit history when working solo in a repo, but most useful in a team, yeah!
I mean, I could hope to live that long!
Good to know!
Thanks! I’ve actually done it before back in the days when Mint was quite new,and I’m a programmer by trade (although mostly on Mac) so I’m not too worried about it, but I don’t have a second drive (and don’t really want one given a 2TB NVME drive) so I’d want to do all the backups first, at least for important stuff like my friend and I’s Minecraft server. For a computer I barely use it hasn’t felt worth it. Most of my computer time (outside of work) is on my Mac laptop.
Those are good questions that I don’t have the answers to. Although from the research I did at the time it seems most likely they were purchased with regional pricing in a lower price region.
No, I just haven’t had the time and energy to do something better. Happens when you’re approaching middle age and have health problems.
Thar makes sense, although I am generally not trying to use the keyboard at the same time (to be honest I was not aware you could filter a finder view like that, I thought it only ran search and I have never found MacOS’s search to be satisfactory)
Interesting, I’m not aware of any way they would affect compile errors. I’d be curious to know more.
Fair enough, I like it better without but I don’t have a strong preference and have no issue adapting to whatever the style of the repo is.
I learned about it researching tools to automatically enforce formatting style and came across StandardJS, which eliminates them by default.
I don’t doubt it, but do you happen to have a source?
The only plus side I guess is I only use that computer for a bit of gaming and not for anything else, and i did manage to turn of automatic updates before they AI-ified everything. If I had more time and energy in my day I’d dual boot it, maybe some day.
How would you propose to organize it then?
I still run into this issue when one of my company’s clients requires developing on Windows. Doesn’t take many subfolders before node_modules
just starts breaking.
There are lots of reasons I hate developing on windows and that’s certainly one of them.
I use that all the time but never knew it had a specific name.
Because if you’re looking for a subfolder you’re not looking for a file, and vice versa? It doesn’t matter much in sparse directories, but it annoys me having to scroll through a ton of files to find the folder I want in directories with both.
I too like a lot of things about Mac, but finder could be improved, for sure.
(I have gotten used to a lot of its features and hate Windows’ defaults too, so there’s that. I don’t think an ideal exists, unless it’s in Linux somewhere and I just need to dual boot the desktop and get it over with)
No,I’ll just disable the cron job before it executes and forget about it.
So do I, but I don’t think I need to worry too much about confusing them with 2090.
The vibe I’ve been getting lately looking at Steam’s push for Steam OS compatibility is that it might actually be worth trying a dual boot again next time I can bestir myself to mess with it. I’ve got W11 but managed to disable auto updates so I haven’t received all the AI crap, but also means my OS is increasingly behind on security updates, which I’m not pleased about.
I don’t care about the latest and greatest either, generally, so maybe even more worth it…although most of my new game purchases are indie titles and most of those only release for windows. So we’ll see. I already have a strong preference for Mac support so I can play stuff on my laptop too.
Not arguing with your choice (props actually, I respect the switch) but it is possible to get a legit grey market key for w11 Pro for a lot less. I think I got mine for $20-30 in early 2024?
Edit: I should have noticed I was in the Linux group before I posted that, I thought I was still in the gaming one I guess! Not advocating windows to anyone, it’s a terrible OS. But some people might need it for some things so I figured I’d share information that might help someone save a bit of money if they did. (Yes, there are other ways around that.)
Writing the tests first also ensures that the test actually fails when you expect it to. I’ve seen test suites that were silently failing for years because they were (presumably) written after the fact and people just assumed that they tested what they said they did. Went in for some other clean up, stared at the test for 10 minutes wondering “how did this ever pass”, and then came to realize that test assertions in Jest inside a forEach apparently don’t run in the context of the test and failures won’t make the test fail. Changing the forEach to a for…of made it all fail immediately.
That’s great news. A lot better than last time I tried to make it work.