

It’s ef sock in my head


It’s ef sock in my head


Ah, a low radar signature house.
The WTF case isn’t allowed because it would allow modification of the const. From https://en.cppreference.com/w/cpp/language/implicit_conversion
int main() { const char c = ‘c’; char* pc; char** ppc = &pc; const char** pcc = ppc; // Error: not the same as cv-unqualified char**, no implicit conversion. *pcc = &c; *pc = ‘C’; // If the erroneous assignment above is allowed, the const object “c” may be modified. }


This is Java, so you can even turn those ints into Integers and doubles into Doubles if you want to maximize the objects in that part of the code. In all seriousness, though, it looks perfectly fine to me.
Never underestimate the power of C++!
Flying might be undefined behaviour but we don’t have to think about that!


Would DBeaver suffice?
Real programmers test in production.
Java isn’t as verbose as Appkit/UIKit, I think. Take a look: https://developer.apple.com/documentation/uikit/nstextselectiondatasource https://developer.apple.com/documentation/appkit/nstextinputclient


The C in Cmake maybe stands for cat. It would make sense.
Oh, shit. Step on it! Quick!
Nobody can stop you from spending your money as you see fit, 24/7/365, from anywhere, to anywhere, instantly, and for free.
Except it’s not.


Is the tweet supposed to be funny? I can’t tell.
This has likely been done intentionally for humour’s sake, but take a look at some of the names in Apple’s AppKit framework, like https://developer.apple.com/documentation/appkit/nspreviewrepresentingactivityitem
This is where you’d normally go “there must be a better way…”