Skip to content

Instantly share code, notes, and snippets.

View goodGid's full-sized avatar
😎

Kiyong Shin goodGid

😎
View GitHub Profile
@goodGid
goodGid / markdown.json
Last active July 14, 2021 11:49
markdown.json
/*
settings.json 파일에서
다음과 같은 설정을 해줘야한다.
"[markdown]": {
"editor.quickSuggestions": true
}
ref : /Users/user/Library/ApplicationSupport/Code/User/settings.json
*/
{
@goodGid
goodGid / settings.json
Last active June 15, 2021 07:52
settings.json
{
"files.exclude": {
".deploy_git/*": true,
"db.json": true,
"public/*": true
},
"[markdown]": {
"editor.quickSuggestions": true
},
"window.zoomLevel": 1,
@goodGid
goodGid / keybindings.json
Created May 23, 2021 03:08
keybindings.json
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "shift+cmd+k",
"command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "cmd+1",
"command": "workbench.action.openEditorAtIndex1"
@goodGid
goodGid / I'm an early 🐤
Last active March 18, 2021 00:51
I'm a night 🦉
🌞 Morning 33 commits ███▊░░░░░░░░░░░░░░░░░ 17.9%
🌆 Daytime 66 commits ███████▌░░░░░░░░░░░░░ 35.9%
🌃 Evening 30 commits ███▍░░░░░░░░░░░░░░░░░ 16.3%
🌙 Night 55 commits ██████▎░░░░░░░░░░░░░░ 29.9%
@goodGid
goodGid / 2020 Plan Note.md
Last active September 27, 2020 13:40
2020 Plan
@goodGid
goodGid / peek.md
Last active September 15, 2020 03:26
How to use `peek()` method
public class Goodgid {

    public void printEven() {
        List<Integer> numbers = Arrays.asList(2, 3, 4, 5);

        numbers.stream()
               .map(x -> x + 17)
               .filter(x -> x % 2 == 0)
               .limit(3)
@goodGid
goodGid / Alias Setting.md
Last active April 26, 2020 11:55
Alias Setting

FYI

  • Alias Setting for server management

Start Server

@goodGid
goodGid / [1] 개발 환경 설정 방법.txt
Last active January 22, 2019 09:19
Ethereum education
## 빌드 환경 구성 및 빌드
1. Git 설치
A. sudo apt-get install git
2. 우분투 환경 업데이트
A. sudo apt-get update
3. 빌드 필수 구성요소 설치
A. sudo apt-get install build-essential
## 01 블록체인 네트워크 설치
1. 루트 권한 접속
A. sudo su
2. 소스코드의 빌드를 위해 Go언어와 C컴파일러를 설치한다.
A. apt-get install -y build-essential libgmp3-dev golang git tree