본문 바로가기

Language

Python Naming rule https://www.python.org/dev/peps/pep-0008/#constants 참조 더보기
JVM Locale http://stackoverflow.com/questions/8809098/how-do-i-set-the-default-locale-for-my-jvm 참조 The default locale of your application is determined in three ways. First, unless you have explicitly changed the default, the Locale.getDefault() method returns the locale that was initially determined by the Java Virtual Machine (JVM) when it first loaded. That is, the JVM determines the default locale fro.. 더보기
파이썬이 느린 이유? 참조 : https://medium.com/@cookatrice/why-python-is-slow-looking-under-the-hood-7126baf936d7#.r3qi2twip 더보기
BCI 1. BCI란? - 자바 바이트 코드를 읽고, 쓰고, 변환 할 수 있다. 이는 소스 파일의 변경 없이 원하는 작업을 할 수 있다는 것 2. 구현 - module-common BciAgent 간단하게 구현- 실행방법은 C:\ 에 BciAgent가 들어 있는 jar와 javaassist.jar를 같이 넣어줌.- Jar를 Export 할 때 MANIFEST.MF를 '기존에 있는 것을 사용한다' 체크- MANIFEST.MF에 아래와 같이 만들어주기. Manifest-Version: 1.0Premain-Class: module.common.bci.BciAgentBoot-Class-Path: ./javassist.jarCan-Redefine-Classes: true - java -javaagent:module-co.. 더보기
BTrace 1. BTrace란? 특정 변수의 값이나 메서드 호출 여부, 호출 횟수, 수행 시간 등을 추적할 때 사용할 수 있는 도구 애플리케이션의 소스 코드나 JVM 옵션을 수정할 수 없을 때 유용 (운영에서 사용 가능) 위와 같은 것이 가능한 이유는 JDK 6.0 에서 지원해주는 VirtualMachine 이라는 것 때문 참조 : http://d2.naver.com/helloworld/9042309 더보기
Jupyter 설치 및 실행 방법 ====================================================================================설치 방법==================================================================================== 1. IPython 설치 (이거 안되네. 밑에 2번 쥬피터는 된다. 원격에서)- http://yujuwon.tistory.com/entry/ipython-%EB%85%B8%ED%8A%B8%EB%B6%81-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0- 추가적으로 해줄 것 pip install jupyter pip install markupsafe 2. Jupyter 설치- htt.. 더보기
Python Decompiler 참고 https://sourceforge.net/projects/easypythondecompiler/?source=typ_redirect 더보기
Python + Mysql 연동 (Window) 참고 https://ujjaini.wordpress.com/2010/08/19/how-to-setup-mysqldb-for-python-on-windows/ 참고 http://www.codegood.com/ 파이썬에서 import MySqlDB 사용 더보기