Illegal numbers are so illegal that you just linked a Wikipedia article containing a bunch of them, i.e. not very illegal. For an AI company already skirting copyright law, they’re not a concern at all.
Illegal numbers are so illegal that you just linked a Wikipedia article containing a bunch of them, i.e. not very illegal. For an AI company already skirting copyright law, they’re not a concern at all.
They’re connected to an RCD, as modern UK wiring has all sockets connected via an overall RCD in the fusebox, but the switches on the socket are just basic on/off switches.
It’s pretty plausible that Epstein would be suicidal after being locked up and would have killed himself if left unattended in his own jail cell with some rope, especially as giving him some rope would signal that he wasn’t going to get saved. The more sensible conspiracy theory is that he was taken off suicide watch intentionally to give him the opportunity.
All modern wiring in the UK has every socket in the building connected via RCD (the more common name for GFCI outside America), but they’re usually in the main fusebox/consumer unit rather than individually per socket. These are just normal on/off switches for the convenience of being able to turn things on and off.
There are already slats so the only hole you can get a fork into is the earth, unless you’ve already got something convincingly shaped like an earth pin in the earth hole to open the slats over the live and neutral. If you’re going to that much effort to zap yourself, the switch isn’t going to be much of a hurdle.
I’d suspect that it’s largely because it’s more convenient to have a switch than to unplug things and plug them back in again, especially as our plugs are a nightmare to step on to the point that Americans complaining about stepping on lego seems comical to anyone who’s stepped on lego and a plug.
You can jam the Windows UI by spawning loads of processes with equivalent or higher priority to explorer.exe
, which runs the desktop as they’ll compete for CPU time. The same will happen if you do the equivalent under Linux. However if you have one process that does lots of small allocations, under Windows, once the memory and page file are exhausted, eventually an allocation will fail, and if the application’s not set up to handle that, it’ll die and you’ll have free memory again. Doing the same under every desktop Linux distro I’ve tried (which have mostly been Ubuntu-based, so others may handle it better) will just freeze the whole machine. I don’t know the details, but I’d guess it’s that the process gets suspended until its request can be fulfilled, so as long as there’s memory, it gets it eventually, but it never gets told to stop or murdered, so there’s no memory for things like the desktop environment to use.
Even by crypto standards, Bitcoin Cash is dodgy. Its origins were a temporary hiccup in the Bitcoin network which forked the blockchain into two branches. As blockchains are designed to tolerate this, the network quickly decided that one branch was worse than the other, so everything switched to the good branch and Bitcoin continued chugging away and consuming enough power for a small country. However, a few people were cross about this because they had more Bitcoin on the dead branch, so manually configured their wallets and mining hardware to use that branch, and tried encouraging other people to do the same. That didn’t work. They then decided to provide a preconfigured wallet and mining software that would prefer the dead branch but claimed it was its own new cryptocurrency and everyone who had Bitcoin already would get some of the new one for free, and that was enough to get some people to sign up.
Nintendo used to have a page on emulation on their website incorrectly claiming that it was always illegal and all emulators had solely been created to enable piracy. This new claim is not compatible with their previous action of having that page.
You’d expect musk of all people to know you need to spend 45 billion to buy the server first.
Unless your local cinema got a good deal on a projector from a 1980s theme park 3D movie, it’s definitely using circularly polarised filters. If you’ve tried tests like putting the lenses from two pairs of the glasses or one pair of the glasses and one pair of regular polaroid sunglasses next to each other and rotating them, that’ll still make them get brighter and dimmer like with linear polarised filters, as passing through the filter can change the polarisation to elliptical, and that means it’ll be affected by rotation when it gets to the second filter.
Anaglyph 3D (with the red/cyan, or lower-quality red/blue filters) has been around since the 1800s (3D films predate talkies by decades), but was much more of a gimmick and wasn’t used for big-budget serious films as it ruined the colour quality, mainly being used for 1950s B movies. There were a bunch of other methods used between the 50s and 2010-ish like regular Polaroid filters (which did stop working when you tilted your head like in the comic and were a hassle for other reasons) and active shutter (which relied on expensive and heavy glasses with electronics in). The newer kind that relies on circular polarisation became available since the turn of the millennium, with Avatar in 2009 being the film that made most cinemas buy new projectors. Those glasses made 3D films viable as the standard for a few years, before people generally decided that most of the time, being 3D didn’t add enough to the viewing experience to be worth paying extra for and studios decided it wasn’t elevating their art enough to justify the extra production costs if people weren’t going to pay a premium.
It can make it look a bit weird (and be one of the things that makes people nauseous), but most people’s brains are good enough at figuring it out that it’s not a major problem. It wouldn’t make a difference to the situation in the comic, though, as in that frame, they’re talking about making both lenses match to pick between two 2D movies, so there’d be no offset anyway.
Tilting your head shouldn’t make a difference as ‘modern’ (as in the ones that cinemas started using fifteen years ago) 3D glasses use clockwise and anticlockwise circular polarisation filters, and obviously, turning something 90° doesn’t change whether it’s clockwise or anticlockwise. Other kinds of polarisation filters do care about being rotated, which is probably where the artist got the impression it applied to 3D glasses, but it would be dumb to try and use that kind as obviously, people tilt their heads.
Many of the inactive accounts will be people who signed up and started, but made no or too little money, so abandoned the idea. They’re still worth counting when working out how likely a new person will be to make money. Other inactive accounts will be bots or catfish where there was never any intention to make money the way people expect the site to be used, so you can still discount a lot of them, but it’s not all of them.
Putting "false"
in a YAML file gives you a string, and just false
on its own gives you a boolean, unless you tell the YAML library that it’s a string. Part of the point of YAML is that you don’t have to specify lots of stuff that’s redundant except when it would otherwise be ambiguous, and people misinterpret that as never having to specify anything ever.
Most of the problems can be totally avoided by telling the YAML loader what type you’re expecting instead of forcing it to guess (e.g. provide a schema or use typed getter functions). If it has to guess, it’s no surprise that some things don’t survive the string to inferred type to desired type journey, and this is something that isn’t seen as a dealbreaker in other contexts, e.g. the multitude of languages where the string "false"
evaluates to true when converted to a boolean because it’s non-empty.
Sometimes when a product is whitelabeled and can be bought directly from its real manufacturer for much less, there’s still a good reason to buy the expensive one. The main one is that sometimes the ones that pass QA are sold via the whitelabeler and the ones that fail QA are sold directly, so the cheaper ones are known to have something wrong with them and you’re gambling that it’s something without symptoms.
Wet water is the water with added wetting agent used for firefighting. That stuff shouldn’t be coming out of your household plumbing.
The new law allows you to have more than one charging connector provided that either the USB-C one is the best one, or the USB-C one is as good as the spec allows. If the new connector’s genuinely better, then it’ll beat a maxed-out USB-C connector, so devices will provide it in addition to a maxed-out USB-C connector.
If you write cross-platform software, the easiest solution is usually to pretend everything’s Unix. You’ll hit some problems (e.g. assuming all filesystem APIs always use UTF-8 will bite you on Windows, which switched to UCS2 before UTF-8 or UTF-16 were invented, so now uses UTF-16 for Unicode-aware functions as that’s the one that’s ABI compatible with UCS2, and passing UTF-8 to the eight-bit-char functions requires you to opt into that mode explicitly), but mostly everything will just work. There’s no
XDG_CONFIG
telling you to put these files anywhere in particular, as Windows is Windows, so most things use~
as a fallback, which Windows knows to treat as%USERPROFILE%
.