20 Janwoff 폰트 만들기(ttf -> woff)
woff 는 웹폰트 포맷 중 하나입니다. 가장 최근에 나온 웹폰트 포맷이며, 모든 브라우저에서 적용 가능합니다. (단, ie는 9부터 적용 가능.) http://people.mozilla.com/~jkew/woff/ 페이지에서 sfnt2woff 을 받은 후, 원하는 글꼴(ttf)를 드래그 하면 쉽게 변환이 됩니다.
Read More ...29 AprCoding A HTML 5 Layout From Scratch
HTML5 and CSS3 have just arrived (kinda), and with them a whole new battle for the ‘best markup’ trophy has begun. Truth to be told, all these technologies are mere tools waiting for a skilled developer to work on the right project. As developers we shouldn’t get into pointless discussions of which markup is the [...]
Read More ...18 Feb[우분투] Installing PHP APC
sudo apt-get update sudo apt-get install apache2-threaded-dev apache2-dev php5-dev php-pear make sudo pecl install apc sudo vi /etc/php5/apache2/php.ini //extension=apc.so 추가 sudo /etc/init.d/apache2 restart //추후에 apc 업그레이드 하려면 //sudo pecl upgrade apc
Read More ...18 Feb우분투 apt 한국 미러 사이트 접속 안될때
우분투 apt 사용하여 업데이트 및 패키지 설치 등을 할때, 한국 미러 사이트(http://kr.archive.ubuntu.com/)에 접속이 안될 경우가 있다. 접속이 안되는 경우에는 sudo vi /etc/apt/source.list //해당 파일에서 kr.archive.ubunutu.com 을 ftp.daum.net 으로 변경하면 된다.
Read More ...17 FebMySQL Replication 구축 방법
본 포스트에서 나오는 경로는 우분투 리눅스 기준으로 작성하였습니다. #1. Master Server /etc/mysql/my.cnf 에서 server-id = 1 log_bin = /var/log/mysql/mysql-bin.log binlog_do_db = DB명 #사용 되는 옵션(do: 해당 DB(table)만 | ignore: 해당 DB(table) 제외하고) #binlog-do-db(table) #binlog-ignore-db(table) #replicate-do-db(table) #replicate-ignore-db(table) #여러개의 DB(table)을 입력 시에는 ","로 구분하는 것이 아니고 하나하나 작성 해야함 #ex) binlog_do_db [...]
Read More ...

