목록개발이야기 (528)
준호씨의 블로그
codeigniter hello world https://codeigniter.com/ download codeigniter unzip codeigniter php -S localhost:8080 http://localhost:8080 open welcome_message.php add "Hello World!" refresh browser
git 을 사용하다보면 global 정보가 기본 user 정보로 들어가 버린다. 그래서 github email 주소를 여러개 사용하는 유저인 경우 간혹 새로운 프로젝트를 시작 할 때 author email 주소를 잘못 지정한 채로 커밋을 해 버리는 경우가 종종 생긴다. 이럴 때 기존에 이미 커밋 해 버린 이력들에 대해 author 정보를 다시 바꿀 수 있는 방법이 있다. https://help.github.com/articles/changing-author-info/ 에 잘 나와 있다. 일단 프로젝트를 bare clone 으로 다시 받는다.git clone --bare https://github.com/user/repo.git cd repo.git아래의 스크립트를 참고 하여 스크립트를 만든다. 기존 이메..
오랜만에 읽은 책. 개발자 뿐 아니라 비개발자도 읽어 보면 좋을 것 같다. 이 책에는 저자가 그동안 온라인에 기고 했던 컬럼들을 엮은 책이다. 랜덤으로 책에 있는 내용의 온라인 컬럼을 찾아 보았다. 19 창업국가의 비밀 http://www02.zdnet.co.kr/column/column_view.asp?artice_id=20131226084001 27 함수형 프로그래밍이라는 유령 http://www.cnet.co.kr/view/18272 35 머신러닝의 시대 http://www.hani.co.kr/arti/opinion/column/685659.html 48 프로그래밍을 공부하는 인문계 대학생들에게 http://www.zdnet.co.kr/column/column_view.asp?artice_id=20..
서버를 재 구축 해야 된다거나 등의 이유로 아파치 빌드 옵션을 확인 해야 될 때가 있다. 그 방법을 정리 해 본다. 아파치가 설치 된 디렉토리로 이동 한다. /usr/local/Cellar/httpd24/2.4.23_2 build 디렉토리로 들어간다. cd build config.nice 파일을 열어 본다. $ cat config.nice #! /bin/sh # # Created by configure CC="clang"; export CC "./configure" \ "--enable-layout=Homebrew" \ "--enable-mods-shared=all" \ "--enable-unique-id" \ "--enable-ssl" \ "--enable-dav" \ "--enable-cache" \..
change directory to your apache directory /usr/local/Cellar/httpd24/2.4.23_2 then go to build directory cd build see the config.nice file $ cat config.nice #! /bin/sh # # Created by configure CC="clang"; export CC "./configure" \ "--enable-layout=Homebrew" \ "--enable-mods-shared=all" \ "--enable-unique-id" \ "--enable-ssl" \ "--enable-dav" \ "--enable-cache" \ "--enable-logio" \ "--enable-defla..