[Study & Job]/[기타] 썸네일형 리스트형 엥? 엥? QT 다운로드 주소~ 흠냐 이거 쓸만하넹~ http://qt-project.org/downloads 쓸만한 개발툴까지 다 제공해주구 따로 깔 필요도 없구 크로스 컴파일도 쉽고!! 후훗 한동안 이거가지고 놀아야징 여기두 괜찮넹 http//www.fred.net/brv/chart/ http://www.wetopics.com/ 요긴 제일 번창한 커뮤니티 QT를 이용한 그래프라이브러리는 이걸로 끝장이다!! http://www.slac.stanford.edu/grp/ek/hippodraw/ 위에꺼 아니면 http://thdev.net/217 이거 http://www.qt-dev.com 여기는 QT 커뮤니티 한국꺼 그리고 아래는 QT자체에서 제공해주는 놈 http://qwt.sourceforge.net/ 메모리 덤프 드라이버 냉무~ 나중에 연재하장~ python에서 "‘ascii’ codec can’t encode character: ordinal not in range(128)" 에러에 대한 처리방법 VS 개발 환경에서는 습관적으로 Unicode 환경을 선택을 하기에 별 문제가 되지 않았는데, Python으로 프로젝트를 진행하려고 하니 Encoding 문제에 부딧히네요. codecs 모듈로 encode/decode하는게 귀찮아서 구글링을 해보니 "‘ascii’ codec can’t encode character: ordinal not in range(128)" 에러에 대한 처리방법중 하나가 있길래 스크랩해 둡니다. 프로그램 시작부에 아래 코드 삽입~~ import sysreload(sys)sys.setdefaultencoding("utf-8")[출처] Python: ‘ascii’ codec can’t encode character: ordinal not in range(128) 문제 해결 방법|작성자.. 크롤러의 설계 걍 설계전에 그림을 그리는 버릇이 있어서 그리다가 백업용으로 올려둔다. python hash값 구하기 #!/usr/bin/env python import hashlib def string_to_md5(content): """Calculate the md5 hash of a string. This 'string' can be the binary content of a file too.""" md5 = hashlib.md5() md5.update(content) return md5.hexdigest() def file_to_md5(filename): """Calculate the md5 hash of a file. Memory-friendly solution, it reads the file piece by piece. http://stackoverflow.com/questions/1131220/get-md.. 이전 1 ··· 3 4 5 6 7 8 9 10 다음