I'm at a point now where I'm not even a little interested in new frameworks. I want tried and tested. Preferably something that has been around for 15 years.
Less wrong is created by Eliezer Yudkowsky. Someone who is very outspoken against AI development, because of the fears around AI destroying humanity. Once went as far as calling for the bombing of AI researchers and/or data centers, if I remember correctly.
There is a base alternative, which I'm going to choose, and that's just to use social media less. Not going back to Reddit even if another alternative doesn't pop up.
My 11 year account was just banned as well. I don't remember posting anything terrible recently. So not sure what's going on, but I won't be appealing or making a new account or going to the site anymore.
> we have chosen to put the burden for paying for those losses on all of the other banks
But isn't it likely to cause more bank runs if depositors lost money? So in a real sense, many other banks were saved from going under, by assuring depositors that their money is safe, whichever bank they're at.
My understanding is that other banks have massive unrealized losses as well, due to the steep interest rate increases. So they're all kind of vulnerable.
I don't really think of route based "load balancing" as load balancing. That's routing, or a reverse proxy. Not load balancing. Load balancing is a very specific type of reverse proxy.
The point is, if a client makes a request to a server, the response should always be the same, no matter where the load balancer sends the request to. Which means it should run the same code.
Nginx doesn't even mention route based or endpoint based load balancing in their docs. Maybe they don't consider it load balancing either.
I don't think you actually understand what microservices are. You don't put a load balancer to load balance between different services. A load balancer balances trafic between servers of the same service or monolith.
Microservices mean the servers of different services run different code. A load balancer only works together with servers running the same code.
For me Tailwind is sort of a shortcut to learning best practices. If I had to research and figure out best practices on my own it would take ages. Instead I can just see what Tailwind does. E.g. when to use em vs px. That kind of stuff.
This is probably the main thing that puts people in one camp or the other.
Before Tailwind came along I very often found myself just wanting to put some inline styling in various places. It's so much easier to just add some CSS to an element than having to think of a class name, think of where the best place would be to put the class, etc.