분류 전체보기 468

[2012/04/23] 정리

* Web- 웹 브라우져 기반의 OS : pieOShttp://pieos.com/ - 전문지식을 코스 행태로 정리, Pinterst 와 비슷한 인터페이스http://curriq.com/ - HTML5 기술을 활용한 html 을 pdf 로 만들어주는 쉘 명령어.http://code.google.com/p/wkhtmltopdf/ * 개발자 블로그http://tech.naver.jp/blog/?p=1420 - 개발 회사의 문화란 어떻게 만들어지는걸까http://curiouspaul.wordpress.com/2012/04/27/%EA%B0%9C%EB%B0%9C-%ED%9A%8C%EC%82%AC%EC%9D%98-%EB%AC%B8%ED%99%94%EB%9E%80-%EC%96%B4%EB%96%BB%EA%B2%8C-%..

Tasking 2012.04.26

[2012/04/16] 정리

* Web- 웹앱을 쉽게 서버/환경 설정 고민없이 5분만에 완성http://www.firebase.com/ * DB/데이타- 트위터 분산 관리 라이브러 Gizzardhttp://gywn.net/2012/03/gizzard-a-library-for-creating-distributed-datastores/ * 트렌드- 2012년 기술 트렌드http://valleyinside.com/2012-technology-trend/ * 개발 블로그http://m.blog.naver.com/ez_/140157300770 * 인생에 도움 되는 글- 개똥이님 블로그슬럼프 - 답없는 세상(2)http://gaddongyi.wordpress.com/2012/04/09/%EC%8A%AC%EB%9F%BC%ED%94%84-%EB%..

Tasking 2012.04.26

대용량 텍스트 파일 내용 변경하기

텍스트 파일 내용중에 일부를 다른 문자열로 치환하기 위해 sed 로 실행해보았다.텍스트 파일은 12 GB 정도, 서버 : CPU Intel Xeon 2.6 GHz, RAM 4GB# sed 's/AAA/BBB/g' text > conv_text실행시간 : 대략 20분에서 30분에서 작업이 종료. -> sed 자체에서 변경하는 부분이 문제일 수도 있지만, redirect 로 다른 파일로 저장하는 것도 실행 시간에 문제가 되었을 것이다. perl 을 사용해서 동일한 작업을 수행했다.# time perl -pe 's/AAA/BBB/g' textreal 6m51.624suser 1m3.129ssys 0m42.110s-> 대략 6,7분 사이에 완료되었다. 백업파일 옵션을 안줘서 그런가해서 다시한번 테스트 해보았다...

Engineering/Etc 2012.04.19

[2012/04/02] 정리

- 무료 폰트http://www.myfonts.com/ - 하둡을 이용한 대용량 PCAP 데이타 분석https://labs.ripe.net/Members/wnagele/large-scale-pcap-data-analysis-using-apache-hadoop - ELSA 대용량 로그 분석기http://code.google.com/p/enterprise-log-search-and-archive/ - 구글의 증강현실 안경 테스트http://bits.blogs.nytimes.com/2012/04/04/google-begins-testing-its-augmented-reality-glasses/ - 블로거 글: 직원관리 전에 관리할 사람http://gaddongyi.wordpress.com/2011/08/26/..

Tasking 2012.04.10

autoconf 2.6x for CentOS 5

CentOS 5(마지막판인 5.5)에서 autoconf 버전이 2.59 라서 어떤 소스에서는 configure 도중 다음과 같은 에러가 발생한다.aclocal.m4:20: warning: this file was generated for autoconf 2.61.You have another version of autoconf. It may work, but is not guaranteed to.If you have problems, you may need to regenerate the build system entirely.To do so, use the procedure documented by the package, typically `autoreconf'.configure.ac:3: error:..

Engineering/Linux 2012.04.06