Skip to content

Instantly share code, notes, and snippets.

View LouisWayne's full-sized avatar

Fresh Off The Boat LouisWayne

View GitHub Profile
@LouisWayne
LouisWayne / aion-language-changer.js
Last active February 9, 2019 05:18
북미 아이온 언어 변경 (한국어, 영어) Node JS
/**
* 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';
@LouisWayne
LouisWayne / git-commands.txt
Last active March 25, 2018 04:12
git commands
/** GIT 명령어 모음 **/
// Remote 관련
- remote 정보 보기
git remote -v
// Branch 관련
- Local branch 보기
git branch
@LouisWayne
LouisWayne / index.d.ts
Last active August 20, 2017 01:12
@types/quill: v1.3.0
// 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;