gitlab.com ssh설정 ~/.ssh/config 편집 아래내용 추가Host gitlab.com Hostname altssh.gitlab.com User git Port 443 PreferredAuthentications publickey IdentityFile ~/.ssh/id_rsa IdentityFile 은 사용자마다 다르니 맞춰주면 됨 카테고리 없음 2017.06.27
centos python3 설치하기 centos에 기본 파이썬은 여전히 2.6.6이다.ㅠㅠ 필요한 툴 설치sudo yum install yum-utils 빌드 환경 확인sudo yum-builddep python 파이썬 다운로드(https://www.python.org/ftp/python/)curl -O https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz 압축풀고, 빌드 & 설치tar xf Python-3.6.1.tgzcd Python-3.6.1./configuremakesudo make install 확인python3 -V Python 3.6.1라고 나오면 OK dev/linux 2017.06.23
PHP PDO를 써야하는 이유 중 하나 PHP는 데이터형이 자유로운 언어라지만, 느슨한 코드의 느슨한 버그는 디버깅이 어렵다. PDO returns values with the correct data types. 결국, 엄격한 코드가 필요한가 보다. dev 2017.06.19