location | layer |
---|---|
center | normal / shifted |
top left | MOD |
top right | Fn |
bottom left | Mouse |
center front | Key Id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Looks like this: | |
{"todo":[ | |
{"isbn":"0064632105"}, | |
{"isbn":"007001115X"}, | |
{"isbn":"0070079749"}, | |
... | |
*/ | |
public static class OneArrayElementPerLineNoWhitespacePrettyPrinter extends DefaultPrettyPrinter { | |
public OneArrayElementPerLineNoWhitespacePrettyPrinter() {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Sometimes you might want to rethrow the same exception but with a little extra in the message. This allows | |
* you to "clone" an exception but change the message. (C# exceptions have the capability to hold arbitrary | |
* information via the `Data` property (a `Dictionary`).) | |
*/ | |
@NonNull | |
public static Throwable replaceMessageOf(@NonNull final Throwable ex, @NonNull final String msg) { | |
// First try using reflection to just stomp on the exception instance's message | |
if (false) { | |
final var rex = stompOnMessageOf(ex, msg); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "UHK w/ layers adjusted for P16 keyboard" | |
}, | |
[ | |
{ | |
"c": "#459896", | |
"fa": [ | |
1, | |
0, |
OlderNewer