You kid, but it's actually true. One of the earliest recorded uses of non-trivial math was when the ancient Babylonians and Egyptians used it for financial calculations, including taxes.
They did, however, also use math for construction and astronomy.
Needless to say, math is still heavily used for all of these things.
Replicators are pretty similar to transporters. If you have a replicator and you fully understand how it works, you probably already know how to build a transporter.
It will be a very good day for Java when/if Project Valhalla is finally completed. Besides value types, it also aims to allow nullability to be restricted.
That doesn't help for long-lived objects that should have been inlined inside another object. This is a problem for simple wrapper classes like Optional, and it's the reason why it's not recommended to use Optional as anything other than a return value.
Fun fact: in #bash, comments are not limited to scripts. You can write them in interactive sessions too.
This can be useful for leaving yourself a note for later, perhaps on a separate tmux window where you'll be doing the thing.
Comments will also appear in your bash_history, so if someone will be investigating what you're about to do and it's going to be a bad look, you can leave a comment to explain.
One thing I miss about the #KDE 1 / #GNOME 1 / #MacOS 9/X days is that there were a zillion different #GUI themes, each with cool and unique looks for widgets. Gradients, drop shadows, brushed metal textures, buttons that look like glass vials full of blue liquid, you name it. GUIs actually looked cool.
Now custom themes, where they exist at all, are nothing but flat, solid, desaturated colors and rounded rectangles. It's dreadfully boring.
Programmer here. It *is* a simple request. I've written code that inserts an extra space, for exactly the sort of reason you're talking about, on many occasions.
There is a catch, though. If the text with the extra space is then fed to some code that trims all extra spaces off, then yeah, it's gonna trim that extra space too. In that case, the code needs to insert the extra space *after* trimming.
Perhaps your colleague isn't allowed to change that code?