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
| sudo cp /usr/share/zoneinfo/Asia/Seoul /etc/localtime |
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
| package main | |
| import ( | |
| "io" | |
| "os" | |
| "strings" | |
| ) | |
| type rot13Reader struct { | |
| r io.Reader |
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
| package main | |
| import "code.google.com/p/go-tour/tree" | |
| import "fmt" | |
| type Tree struct { | |
| Left *Tree | |
| Value int | |
| Right *Tree | |
| } |
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
| ssh-keygen | |
| ssh-copy-id -i root@ip_address |
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
| set number " line ํ์๋ฅผ ํด์ค๋๋ค. | |
| set ai " auto indent | |
| set si " smart indent | |
| set cindent " c style indent | |
| set shiftwidth=4 " shift๋ฅผ 4์นธ์ผ๋ก ( >, >>, <, << ๋ฑ์ ๋ช ๋ น์ด) | |
| set tabstop=4 " tab์ 4์นธ์ผ๋ก | |
| "set expandtab " tab ๋์ ๋์ด์ฐ๊ธฐ๋ก | |
| set ignorecase " ๊ฒ์์ ๋์๋ฌธ์ ๊ตฌ๋ณํ์ง์์ | |
| set hlsearch " ๊ฒ์์ ํ์ด๋ผ์ดํธ(์์ ๊ฐ์กฐ) | |
| set background=dark " ๊ฒ์ ๋ฐฐ๊ฒฝ์ ์ฌ์ฉํ ๋, (์ด ์์์ ๋ง์ถฐ ๋ฌธ๋ฒ ํ์ด๋ผ์ดํธ ์์์ด ๋ฌ๋ผ์ง๋๋ค.) |
OlderNewer