cd C:\Users\${username}\AppData\Local\Microsoft\PowerToys\Keyboard Manager- Backup file existing one of
default.json - Download
default.jsonand add it to the current folder
| key |
|---|
| Esc |
| DELIMITER $$ | |
| DROP FUNCTION IF EXISTS `json_extract_c`$$ | |
| CREATE FUNCTION `json_extract_c`( | |
| details TEXT, | |
| required_field VARCHAR (255) | |
| ) RETURNS TEXT CHARSET utf8 | |
| BEGIN | |
| SET details = TRIM(LEADING '{' FROM TRIM(details)); |
| body { | |
| font-family: Arial, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| .c-avatar, .c-avatar--interactive { | |
| display: none; | |
| } |
| package main | |
| func UpdateQualityOld(items ...*Item) { | |
| for i := 0; i < len(items); i++ { | |
| if items[i].name != "Aged Brie" && items[i].name != "Backstage passes to a TAFKAL80ETC concert" { | |
| if items[i].quality > 0 { | |
| if items[i].name != "Sulfuras, Hand of Ragnaros" { | |
| items[i].quality = items[i].quality - 1 | |
| } |
If anyone is interested in setting up their system to automatically (or manually) sign their git commits with their GPG key, here are the steps:
$ git config --global commit.gpgsign true ([OPTIONAL] every commit will now be signed)$ git config --global user.signingkey ABCDEF01 (where ABCDEF01 is the fingerprint of the key to use)$ git config --global alias.logs "log --show-signature" (now available as $ git logs)$ git config --global alias.cis "commit -S" (optional if global signing is false)$ echo "Some content" >> example.txt$ git add example.txt$ git cis -m "This commit is signed by a GPG key." (regular commit will work if global signing is enabled)| { | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| //following will be in italic (=FlottFlott) | |
| "comment", | |
| "entity.name.type.class", //class names | |
| "keyword", //import, export, return… | |
| "constant", //String, Number, Boolean…, this, super |
This text is the section about OS X Yosemite (which also works for macOS Sierra) from https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/#mac-os-x
The last time i visited this link it was dead (403), so I cloned it here from the latest snapshot in Archive.org's Wayback Machine https://web.archive.org/web/20170523131633/https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/
| // Source: https://news.ycombinator.com/item?id=11718653 | |
| * b69B80Oo | |
| * 1Il| | |
| * ij | |
| * 5S | |
| * 9gq | |
| * co | |
| * rn m | |
| * cl d | |
| * vv w |
To not have "data" as root level but just pure array of data.