본문 바로가기

Study

(328)
Information Pioneers : Dom Joly Sir Tim Berners-Lee Information Pioneers: Sir Tim Berners-Lee from Information Pioneers on Vimeo. Scrpit What is Information Pioneers?Information Pioneers is a campaign from BCS, The Chartered Institute for IT, that seeks to show how the contributions of five very different people helped to shape the information society that we live in today.These five short films, created by an award-winning production team, demon..
requestWindowFeature(Window.FEATURE_NO_TITLE); requestWindowFeature(Window.FEATURE_NO_TITLE); 프레임의 타이틀 제거 잠깐 배웠던 안드로이드 다시 만지려니까 이게 모가몬지 ㅋㅋㅋ
NginX nginx (pronounced engine-x) is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server. Igor Sysoev started development of Nginx in 2002, with the first public release in 2004. Nginx now hosts nearly 12.18% (22.2M) of active sites across all domains. Nginx is known for its high performance, stability, rich feature set, simple configuration, and l..
Unknown error: Unable to build: the file dx.jar was not loaded from the SDK folder! 당분간 안드로이드에 빠져야 되서.. 어휴 안드로이드 예전에 깔짝 손대고서 다시 하려고 하니 모가 몬지 이것참 Unknown error: Unable to build: the file dx.jar was not loaded from the SDK folder! => Android SDK manager 실행 tool 삭제, 그리고 tool 재설치
opening errorlog '/var/log/lighttpd/error.log' failed: Permission denied 2012-12-21 16:03:36: (log.c.118) opening errorlog '/var/log/lighttpd/error.log' failed: Permission denied 물론 사용하시는분에 따라 설정을 달리하실수 있지만, 잘모르신다면lighttpd.conf 열어서 #server.username = "lighttpd"#server.groupname = "lighttpd" 아파치에도 이런 메뉴가 있던것 같은데. #으로 주석처리해주신다음 다시 시작하시면 저런 오류는 안나옵니다.
리눅스 용량이 가득찾을떄 확인해야할것 몇일 동안 리눅스를 안만지고 있었습니다. SSH로 로그인하니 918G 중 918을 사용중이라고 경고가 뜨는겁니다.(이서버에는 제가 파일보관요도로 쓰는것도 아니고.. 특별히 저장하는 용도로 안쓰는것이기 때문입니다.) 혹시나 파일시스템에 문제 생겼나하고, FSCK를 돌려봐도 정상적으로 나오더군요.. 결론은. 로그 크기 떄문이였습니다. 톰켓 로그 크기가 900GB가 되었더군요;;(그럴 이유가 없는데..) 제가 찾은 방법입니다. 맨처음에 du -h --max-depth=1 /du -h 용량을 출력하는데 1뎁스 만큼의 범위? 용량을 출력합니다. 저는 /usr에서 900G를 사용중이라고 떳고. 이걸 계속 따라갔습니다.... (톰켓이 왜이러지..) 혹시나 갑자기 저처럼 당황하셔가지고 구글 검색해서 들어오셨다면 , 한..
configure.ac:1: error: possibly undefined macro: dnl 아 이래서 리눅스가 싫어요 ㅋㅋㅋ 참고로 저는 lighttpd를 직접 컴파일 하던도중이였고 augogen.sh 과정에서 난 오류입니다참고로 지금 사용하는 OS는 ubuntu 입니다. onfigure.ac:1: error: possibly undefined macro: dnl If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.ac:57: error: possibly undefined macro: AC_CHECK_HEADERS configure.ac:71: error: possibly undefined macro: AC_DEFINE configure.ac:10..
sqlite insert 속도 증가시키기(java) 만약 지금 Java를 이용해서 sqlite를 사용중이시고 데이터를 insert 중이신데 속도가 느리다그런데 웹을 검색해보면 트랜잭션 하는데, 전부다 안드로이드 이야기 이다. 그러시다면 제가 포스팅한 주제를 제대로 찾아오셨습니다. 안드로이드에서 sqlite 쪽 보시면 명시적 트랜잭션 ? 이라든지 등등 많은데 자바에서는 이렇게 표현하시면 되실듯 하십니다.(제가 이것때문에 아주 어휴) Connection sqlite_conn = DriverManager.getConnection("jdbc:sqlite:test.db"); sqlite_conn.setAutoCommit(false);분기문[이곳에 insert문] sqlite_conn.setAutoCommit(true);