

it’s already created https://aihorde.net/
it’s already created https://aihorde.net/
It’s possible none of those would technically be WW3 by itself, perhaps the start of heavier US commitment in the first of those conflicts might be perceived as the opportunity for the others to get started. Maybe even some less obvious conflicts are merely waiting for NATO to be preoccupied (e.g. random colonies being invaded or declaring independence). The US will be forced into taking at least one L, or switching back to a war economy.
I’ve heard of some, but like I’ve never heard of one being used by a leftist.
She’s now considering getting wireless earbuds, but she’s not a fan of having to recharge them to be able to use them, and is also cautious about the e-waste potential.
I was wondering if there exists a bluetooth device that connects to your phone, and the device itself is just a headphone jack.
FOSS
AFAIK It’s not even possible to sign up without a Google account, facebook account, or phone number. I’d like to signup in a way the US government can’t revoke.
All the Linux details are weirdly off, like it’s correct enough if you were copying someone’s homework, but it’s just wrong if you’ve actually done anything in linux.
I’m wondering how people will be vouching new books aren’t LLM generated?
so that’s actually a decrease in security for the actual user who owns the device.
You can always write native apps or use rust. I don’t recommend doing that unless perfectionism/being esoteric/learning is more important to you than just making the webapp.
The main issue with fb/TikTok is the 9 billion trackers and ads. So step 1. Don’t do that.
Svelte/SolidJS are smaller/faster than react/ vue. React has the most tutorials, but I think vue is the easiest to learn.
Next, while working on your app (probably all of those use “vite” instead of web pack by now) meticulously watch your build size. Avoid installing giant dependencies if you can. If you have lots of options, pick libraries that are tree-shake-able. rollup-plugin-visualizer will help you visualize which Javascript file(s)/ dependencies are big. You’d be see surprised how many webapps that is basically 10kb of functionality ends up being 1MB of Javascript.
If your webapp is small you probably don’t need to think too much more about this, but you could probably ask others to critique your code later.