In this case, an alternative to "-", U+002D HYPHEN-MINUS, is "−", U+2212 MINUS SIGN. On Linux, I considered mapping the keypad substract key to it, but instead I configured a xcompose alias.
gold +1.2%
oil −6.4%
corn +5.2%
Add alcohol to the mix and you're cooked. An alcoholic in this state can take years to come back to some sense of functional. Or any other addictive drug. Not a nice spot to be. with or without the drugs.
https://github.com/kentonv/dvorak-qwerty
Maintaining this has been a big PITA though, and gets harder as operating systems increasingly don't want to support software intercepting keystrokes for security reasons.
I would not recommend learning dvorak, for this reason.
Colemak avoids this problem by leaving the most-important hotkeys where they are, so might be OK? But I haven't tried it, and I am not really sure how much benefit these alternative layouts really bring, TBH.
I do the same, except I don't use a randomly generated address. Rather, I use something that identifies who it is. e.g., if I had a relationship with Tesla, the email address would be 'tesla@myemaildomain'.
What (if anything) is the advantage of using a randomly generated email address over the scheme I use?
N.B., I'm not dissing your strategy at all. I do exactly the same. I'm just curious about the "randomly generated" bit.
> No, you cannot just do something like this: > ``` return { data, message: "OK" }; ```
Yes, in Java you can:
return new Object() {
String message = "OK";
Object data = itsValue;
};
There are many reasons to dislike Java and it is nowhere near my programming language of choice. The specific semantic deficiency you chose happens to be an invalid one.