I don't store your data. Period.
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
gh alias set --shell c 'gh repo view "$1" --json "owner,name" --jq "[.owner.login, .name] | join(\"/\")" | { read dir; gh repo clone "$1" "$dir"; }' |
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
; AltGr + ' -> ` | |
<^>!':: SendText "``" | |
; AltGr + ì -> ~ | |
<^>!ì::SendText "~" | |
; AltGr + < -> « | |
<^>!<::SendText "«" | |
; AltGr + > -> » |
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
// 123 DD-MM-YYY Long title -> YYYY-MM-DD Long title | |
const path = require('path') | |
const fs = require('fs') | |
const parentDir = path.resolve('RESOLVABLE_PATH') | |
const type = 'FILE' // FOLDER or FILE | |
const entities = fs.readdirSync(parentDir, { withFileTypes: true }) | |
.filter(dirent => type == 'FOLDER' ? dirent.isDirectory() : dirent.isFile()) |