On Windows CE.
On Windows CE.
I’m just a hobbyist but…are you guys using exceptions like they’re conditional statements?? I thought those were for only when shit is seriously wrong and execution can’t continue in the current state. Like if some resource was in a bad state or some input was malformed.
Or maybe I haven’t worked on anything complex enough, I dunno.
Panasonic Toughbook: you accidentally applied to a job on an oil rig.
Sometimes you’ll notice the side effects, like if you have a small OLED or LCD screen and start getting garbage characters in your strings.
for (auto it = line.begin(); it != line.end(); it++) { snort(line); }
Maybe I should keep it a hobby and not pursue a career. That kind of shit would mess with me. I tend to pour my heart and soul into my programming.
Stashing it on the shelf next to my copy of the Windows 2000 source code…
“Mom, I want Scrabble.”
“We have Scrabble at home…”
Thank you for your service, Marine.
Yes but millions were also providing that data for free until Reddit decided it was all theirs to control and monetize. Don’t blame the users.
Any government that is trying to promote “transparency” and their own national security should be using open source software.
Looks like classic case of trying to dereference an invalid pointer? Fix was an early return, returning a default Qvariant().
I’m not an expert in Qt, I just like following this stuff to learn.
If you think that was toxic, you must be very new to the Internet.
The part that annoys people is when you doubled down to try to save your argument instead of saying something along the lines of “yeah, you’re right”.
It’s eventually going to have to be stored in plaintext somewhere. Where are you then putting the encryption key for the encryption keys and how do you start the chain of decryption without the first key?
Printing debug messages didn’t do much for me for this one time where a class was overflowing a buffer right in the constructor, and everything was fine creating an instance of it, passing it around, etc., until I actually go to use one of its methods later on in the program and it crashes. It was on an ESP32 and I had to decode the stack trace and everything to find it, took me hours because I had to learn what even to do with a stack trace.