분류 전체보기

    cocos-2dx js note

    http://cocos2d-x.org/docs/tutorials/javascript/parkour-game-with-javascript-v3.0/chapter2/en/index.html

    [ubuntu] boot usb로 기존의 home directory 접속하기

    자세히 다루지는 않지만 이렇게 하면 되긴 합니다. 우선 gparted를 사용해서 내 partition의 이름을 확인합니다.저는 /dev/sda2입니다. 그리고 아래 링크에서 얻은 힌트로 이 명령어를 입력합니다.(http://askubuntu.com/questions/412758/how-can-i-access-my-home-folder-in-a-live-usb-directly) sudo mount /dev/sda1 /mnt -o loop 그리고 cd /mnt 하면 똬~!

    [openGL] ubuntu에서 삼각형 출력하기

    [openGL] ubuntu에서 삼각형 출력하기

    1. 설치sudo apt-get install freeglut3-dev 2. 코드http://coden.tistory.com/38 3. 컴파일gcc -o out main.c -lglut -lGL 4. 실행

    [Ubuntu ] 16.04 bumblebee / optimus off

    http://askubuntu.com/questions/758972/does-ubuntu-16-04-support-hybrid-graphics-cards-bumblebee http://deviantcj.tistory.com/467

    [ubuntu] nvidia, intel install

    3d 가속이 사용되지 않아서, 찾다가 이런게 있어서 블로깅합니다.http://ubuntuhandbook.org/index.php/2016/04/switch-intel-nvidia-graphics-ubuntu-16-04/

    [android] Error when loading the SDK:

    Cannot reload AVD list: cvc-enumeration-valid: Value '280dpi' is not facet-valid with respect to enumeration '[ldpi, mdpi, tvdpi, hdpi, xhdpi, 400dpi, xxhdpi, 560dpi, xxxhdpi]'. It must be a value from the enumeration. Error parsing C:\Users\Binil\AppData\Local\Android\sdk\system-images\android-22\android-wear\armeabi-v7a\devices.xml cvc-enumeration-valid: Value '280dpi' is not facet-valid with ..

    [android] BufferedReader에 대해서

    https://developer.android.com/reference/java/io/BufferedReader.html public class BufferedReader extends Reader java.lang.Object ↳java.io.Reader ↳java.io.BufferedReader Reads text from a character-input stream, buffering characters so as to provide for the efficient reading of characters, arrays, and lines. BufferedReader in = new BufferedReader(new FileReader("foo.in")); 이걸 사용하면 1byte씩 옮기지 않고 뭉텅..

    [android] StringBuffer에 대해서

    https://developer.android.com/reference/java/lang/StringBuffer.html A string buffer is like a String, but can be modified. At any point in time it contains some particular sequence of characters, but the length and content of the sequence can be changed through certain method calls. String과 비슷하지만 수정이 가능하다.길이는 가변적이다.