Followed manual from this video: https://youtu.be/Z8BL8mdzWHI
This file contains 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
# https://github.com/sindresorhus/quick-look-plugins | |
brew install qlcolorcode qlstephen qlmarkdown quicklook-json qlimagesize | |
brew install --cask --no-quarantine syntax-highlight | |
# Turn of Apple complains like “QLStephen.qlgenerator” can’t be opened because Apple cannot check it for malicious software. | |
# Source: https://hargitai.co.nz/quicklook-plugin-qlgenerator-cant-be-opened-because-apple-cannot-check-it-for-malicious-software-fix-locally/ | |
sudo xattr -cr ~/Library/QuickLook/*.qlgenerator | |
qlmanage -r | |
qlmanage -r cache |
This file contains 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
» colima list | |
PROFILE STATUS ARCH CPUS MEMORY DISK RUNTIME ADDRESS | |
default Running x86_64 4 4GiB 100GiB docker |
This file contains 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
concat(format(floor(dateBetween(prop("Last edited time"), prop("Created time"), "days"))), " d ", format(floor(mod(dateBetween(prop("Last edited time"), prop("Created time"), "hours"), 24))), " h ", format(floor(mod(dateBetween(prop("Last edited time"), prop("Created time"), "minutes"), 60))), " m ") |
This file contains 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
root = true | |
[*] | |
indent_style = space | |
end_of_line = lf | |
insert_final_newline = true | |
charset = utf-8 | |
[*.{html,css,js,json,yml}] | |
indent_size = 2 |
This file contains 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
// Requests to Reverso Context from this repo: https://github.com/flagist0/reverso_context_api | |
### _request_translations | |
POST https://context.reverso.net/bst-query-service | |
Content-Type: application/json | |
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:77.0) Gecko/20100101 Firefox/77.0 | |
{ | |
"source_lang": "ru", | |
"target_lang": "en", |