In practice I doubt Americans would end up qualifying for refugee status, at least not yet. I'm pretty sure you have to show there are no safe places in your country, and many US states are more reasonable for LGBT folks than some Canadian provinces are.
festus
For me it's the 3 actions per turn. So much nicer to still have a turn even after I rolled an attack and missed.
I feel like which network depends on what you're advocating for and to which type of person. For example, Mastadon, Lemmy, and Bluesky are fairly left-leaning, so advocating for a well-known liberal idea there could be "preaching to the choir".
+1. Buy an ice cream maker and use these to make sorbet; you'll never have too many strawberries and raspberries again.
Your approach won't work if you're behind carrier grade NAT or you can't open ports. My landlord provides my internet so I use tailscale (with headscale on my long distance vps) to connect everything and it works great. It uses LAN when I'm home, and NAT punches when I'm elsewhere.
You will be if you call customer support and get an AI that can't help.
Probably legal (for the buying company) but customers should sue the original company and get paid out of the money used to buy it.
Ditto. I use unique passwords for services I care about / someone could exfiltrate sensitive data, and a cheap reused password for services I don't care about and could easily regain access to with a password reset email.
I'm pretty sure I saw it on Gog.
Entirely depends on who's publishing the image. Many projects publish their own images, in which case you're running their code regardless.
Yes and no. Wasm has no "standard library" so if you wanted to use Dates, your wasm would need to have its own implemation bundled for when the user visits the page. Ditto for everything else including string support! As you can imagine having to ship all this basic functionality can bloat the wasm and slow page loads.
You also can't fully escape JS, as the only way wasm can interact with the page & browser are through the JS functions you write and make available to your wasm. I suppose you could take advantage of this to not have to ship your own standard library & use the JS Date implementation, but at that point why not just use JS?
Wasm has strengths but it's not suitable for replacing JS for everyday websites.