12/6 BKK-NRT(XJ606) 10:45~19:00
12/12 NRT-BKK(XJ607) 20:15~0:55
- 12/6
- 10:45 Depart
- 19:00 Arrive @ Narita airport
- go to hotel [JPY ~1,500]
[alias] | |
ls = log --pretty=format:'%C(auto)%h%d %C(bold blue)(%ad)%Creset %s %C(green)<%cn>' --date=relative | |
lg = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(auto)%h%d %C(bold blue)(%ar)%C(reset) %C(white)%s%C(reset) %C(green)<%cn>' | |
lp = log -p | |
lst = log --stat | |
s = status | |
ss = status -s | |
st = stash | |
stp = stash pop | |
sta = stash apply |
server { | |
listen 80; | |
listen [::]:80 ipv6only=on; | |
server_name abc.xyz; | |
# redirect all requests to https | |
return 301 https://$server_name$request_uri; | |
} | |
server { |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
set guioptions=i | |
colorscheme evening | |
set columns=120 | |
set hidden | |
set number | |
set guifont=Consolas:h9:cANSI | |
filetype indent on | |
filetype plugin on | |
autocmd InsertLeave * if pumvisible() == 0|pclose|endif | |
set tabstop=4 |
int i = 5; // [5] <- p | |
^ | |
i | |
(...) p = &i; | |
[] = memory block | |
p = 0x1234 // addr | |
*p = 5 // value at addr p |