error

    [react-native] android build시 npm list의 compile버전에 대한 문제

    Error react-native npm 하위 프로젝트의 android compile 버전이 root project의 버전과 상이하여 발생하는 문제 error: resource android:style/TextAppearance.Material.Widget.Button.Borderless.Colored not found. error: resource android:style/TextAppearance.Material.Widget.Button.Colored not found. Solution this fixed for megradle.build에서 하위 프로젝트에 대한 버전을 명시해준다.in android/build.gradle subprojects { afterEvaluate {project -> if ..

    [Synergy] 초기에 설정하는 방법!! qt_temp나 config못찾는 문제 해결방법

    에러 메세지 [2016-07-19T11:43:31] INFO: detected process not running, auto restarting[2016-07-19T11:43:32] INFO: starting server[2016-07-19T11:43:32] INFO: config file: /tmp/qt_temp.th1740[2016-07-19T11:43:32] INFO: log level: INFO[2016-07-19T11:43:32] ERROR: cannot read configuration "/tmp/qt_temp.Zb1740": read error: line 2: invalid character 0xffffffec 위의 에러 메세지거나 Synergy.conf를 못찾는다는 에러가 쭉쭉 1초에 한 ..

    [Docker] install, but error!! (include solution)

    (Ubuntu 16.04 64bit) Error message$ docker run hello-world Cannot connect to the Docker daemon. Is the docker daemon running on this host? SolutionLogout and Login or check this web page, https://github.com/docker/kitematic/issues/1010

    [sdkman] install, error solution (fail to download)

    현상)Prime the config file...Download script archive... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0100 637 100 637 0 0 466 0 0:00:01 0:00:01 --:--:-- 931Download file : http://api.sdkman.io/res?platform=Linux&purpose=installExtract script archive...[/home/hklee/.sdkman/tmp/res-3.3.4.zip] End-of-cen..

    [ruby] /usr/local/lib/ruby/1.8/webrick/server.rb:91 error

    로그 중, /usr/local/lib/ruby/1.8/webrick/server.rb:91 에서 에러가 발생했다고 출력됨. 해결방법은 ruby version을 1.9대로 설치하니 해결이 되었다.

    Singleton pattern에서 이상한 부분 발견!

    Singleton pattern에서 이상한 부분 발견!

    1. error를 발견했는데. error가 static으로 선언된 변수를 못찾아서 나오는 문제였습니다. 도통 이유를 알 수 없어서 이리 저리 헤매다가 어느 사이트를 찾았습니다. http://developer.nokia.com/community/discussion/showthread.php/213834-Singleton-implementation-undefined-reference 근데 이류를 모르겠네요...private로 선언한 변수를 어떻게 저런 방식으로 사용하지?어마무시하게 헷갈리네요;;내일 이유를 어쭤보고 알아봐야겠습니다. 2. error code undefined reference to `xxx::s_xxxx' 3. 다시 재현해서 기록해보기록 했습니다. 코드는 아래와 같습니다. #ifndef SI..

    Java Error message 종류를 알아봅시다.

    1. 목적 Java Error Message의 종류가 궁금했습니다. 2. 사용 방법 throw new XXXXX(error Message); 3. Reference Class Throwablehttp://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html - http://docs.oracle.com/javase/7/docs/api/java/lang/Error.html- http://docs.oracle.com/javase/7/docs/api/java/lang/Exception.html

    error ) undefined reference to 'xxxxxx'

    이건,,,, jni에서 코딩을 하고 있을때였다. jni에 thread pool을 연결해서 native에서 오는 event들을 queue에 넣어두고 thread가 일을 하게 하는.. 그런 클래스를 추가하고 있었는데,,, 문제는 Thread pool이 완성되고 나서 본래의 jni의 코드에 추가를 하고 나서 발생했다. 컴파일을 하니 Thread pool 클래스의 함수를 찾지 못하는 것이였다.여러번 생각해도 답도 안나오고 이것 저것 해봐도 답이 안나왔다. 그러다가 아래의 글을 보면서 곰곰히 생각을 해봤다.http://www.cplusplus.com/forum/unices/142922/ 그리고 퇴근하기 3분전... 생각이 떠올랐다.'미리 정해진 빌드 구조로 인해서 참조를 못하는 것일 수 있겠다.' 지금 하고 있는..