

Yeah, you could probably achieve 15% cooling efficiency with regular old nitrogen or methane instead of fluorocarbons.
Yeah, you could probably achieve 15% cooling efficiency with regular old nitrogen or methane instead of fluorocarbons.
std::vector<bool>
fits eight booleans into one byte.
Switch to KaiOS now!
✅ Unsecure
✅ Unsupported
✅ Keypad sucks
✅ EGA display
✅ Basically trash
✅ Runs DOOM
Yup, because they are annoying, not because they do not work.
Pretty much every news site asks you to enable browser notifications.
No app needed. Tell me if it works on your phone.
Patreon app is literally their website. What does it do that the website does not? Notifications? Offline images? All of these can be done in your mobile browser.
If you want deskktop version of Firefox or Chromium on your phone, you can get them using Termux. But yeah they will be slow.
European squirrels chirp too.
#3 is my script that converts one particular RSS feed to .ical format, and pushes it to a repo, because setting up a website for one silly script was overkill.
I was forced to code in Perl one time, there’s no way it could be good.
Is 300 nm the diameter of the optical cable? This terminology breaks my brain, 300 nm is 1000 terahertz, which is unreasonably large for a signal bandwidth, it’s like one milllion Ethernet cables.
I’ve achieved something today. Not anything useful, but still something.
Browser-based notifications are easy to turn off, and it’s probably the only way to get a message on a desktop PC without subscribing to email or using RSS. Also you don’t need to install an app on your phone.
Password strength is usually checked inside your browser, not on the server.
But it’s very convenient! When you have a BSOD, you don’t need your core dumped, you simply unplug your DRAM+ and send it to Microsoft using paper mail.
Ah don’t worry, if you do fopen(file, "w")
on Windows and forget to use "wb"
flag, it will automatically replace all your \n
with \r\n
when you do fwrite
, then you will try to debug for half a day your corrupted jpeg file, which totally never happened to me because I’m an experienced C++ developer who can never make such a novice mistake.
It depends on whether you are printing to a terminal or to a file (and yes the terminal is also a file), and even then you can control the flushing behaviour using something like unbuffer
printf
is superior and more concise, and snprintf
is practically the only C string manipulation function that is not painful to use.
Try to print a 32-bit unsigned int as hexadecimal number of exactly 8 digits, using cout
. You can do std::hex
and std::setw(8)
and std::setfill('0')
and don’t forget to use std::dec
afterwards, or you can just, you know, printf("%08x")
like a sane person.
Just don’t forget to use -Werror=format
but that is the default option on many compilers today.
C++23 now includes std::print
which is exactly like printf
but better, so the whole argument is over.
It’s way less expensive for state-sponsored hackers to blackmail your country’s official to leak backdoor keys than try to break the unbreakable crypto using a nuclear-powered GPU farm.
We can control AI just fine. We cannot control corporations, who use sloppy AI for important decisions. A few court cases for unfair hiring practices will solve the problem rather quickly, it won’t be AI who will get fined, it will be CEO.