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
/** | |
* AION Language Changer | |
* Run with NodeJS | |
*/ | |
const fs = require('fs'); | |
const readline = require('readline'); | |
const FILE_DATA_ENG = 'D:/Games/Aion/L10N/enu/data/data.pak'; |
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
/** GIT 명령어 모음 **/ | |
// Remote 관련 | |
- remote 정보 보기 | |
git remote -v | |
// Branch 관련 | |
- Local branch 보기 | |
git branch |
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
// Type definitions for Quill 1.3 | |
// Project: https://github.com/quilljs/quill/ | |
// Definitions by: Sumit <https://github.com/sumitkm> | |
// Guillaume <https://github.com/guillaume-ro-fr> | |
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | |
/** | |
* A stricter type definition would be: | |
* | |
* type DeltaOperation ({ insert: any } | { delete: number } | { retain: number }) & OptionalAttributes; |