

I use Firefox on mobile all the time. Works fine for me. The fact that I get adblock on mobile makes it a no-brainer to use over chrome.
I use Firefox on mobile all the time. Works fine for me. The fact that I get adblock on mobile makes it a no-brainer to use over chrome.
That’s the majority of Americans. Beyond what was almost certainly a stolen election (large scale, billionaire-bankrolled propaganda, campaigns, voter disenfranchisement, and probably voting machine manipulation), Trump’s disapproval rating since starting that shit has skyrocketed.
We are in an awful fascist quagmire of a situation that we are going to have to fight to free ourselves from, but that doesn’t mean that the actions of this administration actually represent us.
Not sure what you’re referring to, but the 4th hasn’t really changed. Maybe you’re confusing it with the (laughable) military parade Trump did for his own birthday?
Personally I’ve long found patriotism to be a pretty abhorrent concept, but I’ve always enjoyed the opportunity to spend time with my family regardless. To me, the 4th is much more about community than it is the country. And while this country is fucking awful, I do have a pretty great community around me that I’m grateful for.
Yeah that’s a complete myth and not based on actual science.
It’s perfectly reasonable to not want to sleep over at your parents’ house after only a month of dating. To be honest, it’s reasonable to not ever want to do that. It’s weird sleeping in someone else’s house period.
But especially after just a month of dating, your parents may as well be strangers to him. He likely doesn’t have any sense for any cultural differences between how he was raised and your family, like what behaviors are considered faux pas to your parents, etc.
To be honest I think you’re really getting ahead of yourself. Take your time with the relationship and build trust and the foundations of a great relationship. It always takes time and patience. You guys are still just starting to learn about each other.
I met my wife on a dating app in 2019 on Bumble (28 at the time). It can work, but you have to be willing to sift through a lot of bullshit and be patient. You also need to be able to handle rejection and mistreatment (like getting stood up/ghosted). It’s ultimately a numbers game and it takes time to find someone that is actually right for you.
I expect it’s probably also not nearly as bad for older age groups. At your age, I think people are going to be a lot more likely to be direct and know what they want.
My advice is to try it out. Worst case, you decide it’s not for you and try something else.
Uh, there’s still a shitload of websites out there doing SSR using stuff like PHP, Rails, Blazor, etc. HTML is alive and well, and frankly it’s much better than you claim.
With your example, there are a number of languages that can statically prevent thread safety issues entirely, so that’s not actually a good example of something a type system can’t catch.
To be honest, there’s much more that can be statically enforced by a type system than what C++ is capable of. With a sufficiently powerful type system, it tends to become more about tradeoffs in ergonomics and type safety.
Yeah the city is progressive. Tornadoes… Not as much as you would think. There was one last year that hit the outskirts of town a bit. Last one to do any damage before that was like 2017.
Have you ever been to southeastern Nebraska? Like… Where most people in the state live? It’s nothing like western Nebraska. I live in Lincoln and it’s a great place to live: progressive, lots of parks, great school system, nice downtown area, beautiful university campus, etc. Nothing like you’re describing. Nebraskans don’t actually go to western Nebraska very much.
Most of the population lives in the southeastern corner of the state, in Omaha, Lincoln, Nebraska City, and some surrounding counties. I live in Lincoln and it’s a very nice place to live. Western Nebraska is completely different and not many people live there, and most people in the state don’t go there either unless they are driving through.
There’s no feeding going on. We’re simply laughing at their expense.
What do you mean “build our dev environments around vim”? If you mean they write dev tooling in vimscript and explicitly require everyone to use it, I actually agree with you. I don’t believe employers should really ever force any particular editor or IDE if the work is getting done. I would be equally annoyed by a workplace forcing me to use vscode instead of vim. It would slow me down way too much.
If you are just complaining that they build dev tooling as a CLI, hard disagree. That is absolutely what dev tooling should use because it’s actually universal and can be used regardless of your editor choice.
At my workplace, our dev tooling is done via CLI and our developers use vim, emacs, and vscode. Because it’s all CLI, it’s easy for individual developers to add their own scripts to automate parts of their workflow as they see fit (and if such automations are deemed useful by the group at large, it will get merged into our shared devtools repo). We even have some editor-specific stuff in there people have written that they find useful, but it’s entirely optional.
Vscode definitely can’t handle large files like vim can. I can open files that are multiple GBs in vim without issue. Vscode definitely cannot.
And, you know, most businesses aren’t open at midnight. So you’re more limited in what you can do in a day.
Also, getting a decent amount of sunlight is important, and that’s harder to do when you’re sleeping through a lot of sunlight hours.
4 is pretty early but 10:40am is also just pretty late to wake up unless you’re like, a teenager or something (or work odd hours). A lot of the day is already gone by then.
IMO it’s nicest when you can keep your waking hours relatively close to the time the sun is up.
Unix is my IDE, vim is my editor.
Yep. When everything about your IDE (unix) is programmable, it makes “modern” IDEs seem quite quaint.
Personally I make extensive use of https://f1bonacc1.github.io/process-compose/launcher/ to orchestrate a bunch of different shell scripts that trigger based on file changes (recompiling, restarting servers, re-running tests, etc.). Vim just reads from files as needed. It’s lightning fast, no bloat, and a world-class editing experience.
The director of IT at a trucking company absolutely would have power over the devices used by said company.
Let’s not get ahead of ourselves. Typescript has a decent type system, but it’s hardly state of the art. It’s impressive how they’ve managed to mostly corral JavaScript into something much more sane, but at the end of the day it still suffers greatly from the limitations of JavaScript. They’ve essentially retrofitted some type theory onto JavaScript to make it possible to express JavaScript nonsense in the type system, but there’s plenty of things that would have been designed differently had they been making something from scratch. Not to mention that the type system is unsound by design, which by itself puts it behind languages designed from the ground up to have sound type systems.
There’s many, many things missing from the type system, like higher-kinded types, type-driven deriving/codegen, generalized algebraic data types (aka GADTs), type families (and relatedly, associated types), existentially-quantified types, and much more.