Recent posts

Data Analysis - Correlation

4 minute read

Definition Correlation measures the relationship between variables. In other words, it is a measure of how things are related and the process is called corre...

ANTLR Basics - Writing Grammar

6 minute read

ANTLR란? ANTLR (ANother Tool for Language Recognition)는 parser 생성기이다. Parser는 분석하고자 하는 텍스트를 읽어와 그것을 parse tree, 즉 Anstract Syntax Tree(AST)의 조직화된 구조로 변경시켜준다.

ASM - A Java bytecode Engineering Library (1)

2 minute read

Introduction ASM 라이브러리의 목적은 byte array 형태의 컴파일된 Java 클래스들을 생성, 변환, 분석하는 것이다. 따라서 ASM은 이러한 byte array를 읽고, 쓰고, 변환시킬 수 있는 byte보다는 high level의 개념(numeric consta...