@lightweight I completely agree. I never recommend WhatsApp.
Even if the Signal Protocol is still working the same as they implemented it in 2016, there are so many other privacy concerns with a proprietary client that make the E2EE nearly irrelevant. E2EE is only as secure as the ends.
Considering what's going on now in the federal bureaucracy, there's no way the IRS would have the capacity to deal with mass refusal to pay taxes. Not that they did before anyway.
The dismantling and disarray of the federal bureaucracy of course has many immediate, detrimental effects on enormous numbers of people. It also creates novel openings for political possibility. Be creative.
There was a brief time years ago when I attempted to do independent contracting building Wordpress websites. Today I am grateful that I never got very invested in that.
@dan@ricci@nullagent@irene I suspect this guy would have a strong legal case against the university, but why bother if he could just get a job and tell 'em to hell with your degree.
"Most software around us today are decent at accurately displaying colors. Processing of colors is another story unfortunately, and is often done badly... The solution is simple at a high level: instead of relying on what color space a file or display uses, color operations should be done with the use case in mind, to either model human perception or the physical behavior of light."
I'm translating some C++ to Rust and the original C++ code silently relies on unsigned integer overflow just... somehow working for this math??? 🙃 This function has tests which I've also translated to Rust, and the only way I can get the tests to pass is by preventing overflow using wider integer types in the intermediate math... u16::overflowing_mul does not do the trick so I don't understand how the C++ code is working??? 🤔
Does overflowing a uint16_t on 32 bit MCUs just work by treating it as a size_t/uint32_t? This function works on 8 bit AVR microcontrollers, but those have their own assembler implementation rather than the C++... 🤷