Tutorial

    Typescript, Hello world!

    Typescript, Hello world!

    Typescript, Hello world! Environment install typescript compiler(실은 Transpiling, 변환) $ npm install -g typescript $ tsc -v Version 3.9.2 $ node -v v10.15.3 Ch 1. Transpiling tsc 을 이용해서 ts파일을 js파일로 변환시킨다. person.ts file 작성 class Person { private name: string; constructor(name: string) { this.name = name; } sayHello() { return "Hello, " + this.name; } } const person = new Person("Lee"); console.log..

    [graphic] libjpeg-turbo/libjpeg-turbo

    1. Referencegit hub - https://github.com/libjpeg-turbo/libjpeg-turbomain page - http://libjpeg-turbo.virtualgl.org/ Describe blog(other person) - http://hanburn.tistory.com/139 example1 - http://stackoverflow.com/questions/9094691/examples-or-tutorials-of-using-libjpeg-turbos-turbojpegexample2 - http://pingus.seul.org/~grumbel/tmp/libjpeg-test.c 2. libjpge-turbo 란 무엇인가SIMD instruction을 이용한 JPEG ..

    [golang] tutorial - korean(한국어)

    sites h2. tutorial http://go-tour-kr.appspot.com/ http://www.codingnuri.com/golang-book/index.html (from http://ysoftman.blogspot.kr/2014/11/go.htm ) h2. Memo h3. variable type bool string int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 uintptr byte // uint8의 다른 이름(alias) rune // int32의 다른 이름(alias) // 유니코드 코드 포인트 값을 표현합니다. float32 float64 complex64 complex128 h1. Question h2. = vs :=..