프로그램 308

grunt study 001

Javascript에서 독특한 빌드 영역을 담당하는 grunt를 알아보자(혹시 java개발자라면 ant를 생각하시면 됩니다.) GRUNTThe JavaScript Task RunnerTEST : mulder@~/Project/mulder/tools$ mkdir grunt1mulder@~/Project/mulder/tools$ cd grunt1mulder@~/Project/mulder/tools/grunt1$ lsmulder@~/Project/mulder/tools/grunt1$ npm init mulder@~/Project/mulder/tools/grunt1$ sudo npm -g install grunt-cli mulder@~/Project/mulder/tools/grunt1$ npm -S instal..

프로그램 2017.03.19

Show Full files or directory with tree format

가끔 디렉토리 구조를 본다던가, 파일리스트를 트리형식으로 보고 싶을때가 있습니다.심플한 이름의툴 "tree" 를 이용하시면 END. ubuntu : sudo apt-get install tree in MACmulder@~/Downloads/openslide-3.4.1$ brew install tree==> Downloading https://homebrew.bintray.com/bottles/tree-1.7.0.sierra.bottle.1.tar.gz######################################################################## 100.0%==> Pouring tree-1.7.0.sierra.bottle.1.tar.gz🍺 /usr/local/Cellar/..

프로그램/ubuntu 2017.02.20

Linux - Background process to NOHUP status

나의 프로세스를 살리자... 리눅스에서 터미널을 나올경우 이전에 실행했던 프로세서가 죽는다.. (백그라운드 포함)참 허잡한 실수였음.... 그럴경우 아래와 같이 백그라운드로 보내고 disown -h %1 이렇게 하여 계속 돌도록 할 수 있다.ref : http://stackoverflow.com/questions/625409/how-do-i-put-an-already-running-process-under-nohupup vote down voteaccepted Using the Job Control of bash to send the process into the background:Ctrl+Z to stop (pause) the program and get back to the shell.bg to r..

프로그램/ubuntu 2017.02.17

Front-End Web Developer's Templates

Front-End ... Web요즘 들어 점점 빠져들고 있습니다... 저 말고도 웹개발자라면 , 저와 비슷할듯 합니다.서버쪽 기술은 좋은 프레임워크 올리면 대충 정리 되죠.그러나 Front-End 는 좋은 프레임워크를 가져온다해도, 할일이 아주 아주 많습니다.간단한 탭UI에서, 트리, 챠트, ajax, websocket, file upload, 등등... 끊임없는 노가다가 기다리죠. 이런 웹개발자에게 희소식을 하나 알려 드리자면,잘 구성된 웹사이트 템플릿을 사용하면 생산성을 획기적으로 올릴수 있다는 점 입니다. 아래의 소개하는 사이트 (템플릿마켓)를 보시면 , 아!... 하는 탄성이 절로 나오는 템플릿이 즐비 합니다.Ref : https://wrapbootstrap.com/ 자... 이제 템플릿 다운로드..

프로그램 2016.12.30