Thursday, November 3, 2016

영주권 프로세스!!

http://www.immihelp.com/green-card-process/

Thursday, October 13, 2016

미국에서 집사기

보면 좋은 블로그.
http://m.blog.naver.com/aries94/90182635221

Wednesday, October 12, 2016

Linux kernel display driver

https://people.freedesktop.org/~marcheu/linuxgraphicsdrivers.pdf

This is pdf file that shows how linux kernel display works

Tuesday, October 11, 2016

Monday, September 19, 2016

Monday, September 12, 2016

흠..

왜 깃 패치는 patch am 처럼 hunk처리를 못하는가??


Monday, June 13, 2016

applying multiple patches in linux
for i in /path/to/patches/*.patch; do patch -p1 < $i; done
for i in /path/to/patches/*.patch; do git am < $i; done