

The languages in a language menu should each be written in their own language. So German should be “Deutsch”, English should be “English”, Japanese should be “日本語”, etc.
The languages in a language menu should each be written in their own language. So German should be “Deutsch”, English should be “English”, Japanese should be “日本語”, etc.
Source is The Onion. There’s more than just the headline, and it’s a classic.
Music CDs or data? Music CDs have built-in error correction, data CDs don’t. You can certainly extend the lifetime if they’re stored in the dark in a cool, dry place (UV light, heat, and humidity all damage the dye that gets burned to encode them) but they’re not reliable archival storage without error correction.
They don’t last very long. About 5-10 years at most, and that’s if you bought special archival burnable DVDs. If you depend on them for backups, you should check the integrity annually (always include a checksum like SHA256 with any backup archive).
Deniers won’t care, they’ll just say India is part of the conspiracy. As are the scientists using lasers to measure the distance of the moon with retroreflectors the Apollo missions left. As am I for doubting their bullshit. Etc.
Better to just use rm -rf ~/*
. No need for sudo
to destroy the most valuable data (the user’s own files).
DoH & DoT still leak the domain name (and of course IP address) you’re connecting to. The domain name leak can be solved by Encrypted Client Hello but that’s still a draft and not turned on for many servers.
I’dv deleted the default, it’s never come back.
A thousand Roman paces. A pace is two steps, each about 1m, so 1mi is about 2km. The conversion from paces to meters isn’t exact, and definitions have shifted over time.
Used it for the last few years. X just doesn’t work right with multiple monitors of different resolution.
It’s the NIF. It’s a hydrogen bomb simulator, it’s not intended to become a power production mechanism. Roughly 0% of their budget involves researching how to turn single fusion explosions at most every few hours into continuous power output.
Scales great for getting around nuclear test ban treaties though, much quicker to retest than blowing up Pacific islands.
CPU doesn’t have any secure storage, so it can’t encrypt or authenticate comms to the TPM. The on-CPU fTPMs are the solution, the CPU then has the secure storage.
It was making them trans, not gay.
#define max(x,y) ( { __auto_type __x = (x); __auto_type __y = (y); __x > __y ? __x : __y; })
GNU C. Also works with Clang. Avoids evaluating the arguments multiple times. The optimizer will convert the branch into a conditional move, if it doesn’t I’d replace the ternary with the “bit hacker 2” version.
You mean SNI, not ESNI. ESNI is the Encrypted Server Name Indication that gets around that, though the newer ECH (Encrypted Client Hello) is better in many ways. Not all sites support either though.
A picture of a shoe, with laces, which have plastic aglets on the ends.
NixOS + Home Manager user here.
I run in an opt-in state config. / is tmpfs. /home is tmpfs. /boot and /nix are real filesystems. At boot, the EFI loader reads the configuration from /nix/persist/etc/nixos/flake.nix, symlinks all the programs and configs into / and /home, and startup proceeds as normal.
That means nothing persists across boots unless I add it to my config. Cruft doesn’t accumulate in hidden areas, it’s all in my config. That keeps things fast, makes management easier, and makes troubleshooting easier.
I never cheat in multiplayer. But if a single-player game has a “hacking” minigame, I’m absolutely loading up Ghidra & GDB and figuring out how to actually hack around it. Pretty much always harder than just playing the minigame, but more fun.