gpg์ ์ค์ ํด๋ณด์! commit์ Verified๊ฐ gpg์ ์ฐ๊ด์ด ์์๋ค๋ ์ง๊ธ์ด๋ผ๋ ์๊ฒ๋์ด์ ๋คํ์ด๋ค.
๐
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
| const fs = require('fs'); | |
| const path = require('path'); | |
| const pattern = /{{\s*[bB]ug\("?(\d+)"?\)\s*}}/g; | |
| const replacement = '[Firefox bug $1](https://bugzil.la/$1)'; | |
| function processFile(file) { | |
| fs.readFile(file, 'utf8', (err, data) => { | |
| if (err) { | |
| console.error(err); |
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
| // {{ARIARole("button")}} => <a href='/ko/docs/Web/Accessibility/ARIA/Roles/button_role'><code>button</code></a> | |
| const fs = require("fs"); | |
| const path = require("path"); | |
| const replaceInFile = (file) => { | |
| const data = fs.readFileSync(file, "utf8"); | |
| const result = data.replace(/\{\{\s*ARIARole\s*\(\s*['"]([^'"]+)['"]\s*\)\s*\}\}/g, "<a href='/ko/docs/Web/Accessibility/ARIA/Roles/$1_role'><code>$1</code></a>"); | |
| fs.writeFileSync(file, result, "utf8"); | |
| } |
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
| function checkType(variable) { | |
| return Object.prototype.toString.call(variable).slice(8,-1); | |
| } |
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
| export GPG_TTY=$(tty) | |
| alias holee='git config --unset user.name&&git config --unset user.email&&git config user.name "hochan222"&&git config user.email "[email protected]"&&git config --list' |
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
| const padStart = (targetLength: number, padString: string, str: string): string => { | |
| return str.length >= targetLength ? str : new Array(targetLength - str.length + 1).join(padString) + str; | |
| }; |
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
| CONTENT_TRANSLATED_ROOT=/Users/tonybyeon/Desktop/translated-content/files | |
| EDITOR=code |
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
| while 1 ; do leaks [ps] ; sleep 3 ; clear ; done |
NewerOlder
