분류 전체보기 577

SED를 이용한 파일내 문자열 일괄 변환

텍스트파일을 다루거나, 개발자라면 자주 만나는 작업입니다.sed 를 이용하여 한방에...ref : http://unix.stackexchange.com/questions/159367/using-sed-to-find-and-replaceref : http://www.brunolinux.com/02-The_Terminal/Find_and%20Replace_with_Sed.html replace string in the file : by SED (Stream EDitor) A512.html 안의 모든 411 문자열을 512 로 바꾼다. (1회 수행하려면 g 를 제외)ex) sed -i -e 's/411/512/g' ./A512.html find 를 이용한 확장 사용 (다중 파일처리)$ find /home/da..

편하게 살자 2015.12.04

async.js waterfall 사용방법

ajax 콜을 여러번 시리얼하게 요청 하고자 한다면... 아래의 async waterfall 을 사용하길 추천 합니다... Project : https://github.com/caolan/async Guide: http://hatemogi.com/holiday-project-day-10/waterfall(tasks, [callback])Runs the tasks array of functions in series, each passing their results to the next in the array. However, if any of the tasks pass an error to their own callback, the next function is not executed, and the ma..

프로그램/script 2015.11.24

Wordpress 사이트 개발 시작

- Wordpress 설치 : 4.3.1 개인적으로 가장 다루기가 편한 CMS라고 생각합니다. 적절한 아이디어만 있다면 좋은 사이트 및 강력한 사이트가 가능 하죠. - 깔끔한 무료 테마 (처음 사용하는데 맘에 듭니다.) : WP_Forge - 제가 좋아하는 플러그인 (거의 모든분들이 설치할듯) : Page Builder by SiteOrigin SiteOrigin Widgets Bundle TinyMCE Advanced -- 현재 작업중인 사이트

프로그램/web 2015.11.10