http://blog.igk.me/2014/05/ubuntu-nodejs-npm.html 요약: $ sudo apt-get install python-software-properties curl $ sudo add-apt-repository ppa:chris-lea/node.js $ sudo apt-get update $ sudo apt-get install nodejs $ curl https://www.npmjs.org/install.sh | sudo sh 여기부터 전체 내용 시작. 이 내용은 Ubuntu 14.04 LTS 64bit 기준으로 확인하였다. 요즘 Node.js 관련해서 뭔가 하려면 NPM 버전이 높아야 하는데 기본 저장소 패키지는 버전이 낮음. 따라서 모두 최신버전으로 설치하기 위한 작업..
안드로이드 각 디바이스별 GL/EGL extensions 목록은 다음 사이트에 가면 얻을 수 있다. 넥서스5에 관한 것은 아래의 링크와 같다. http://delphigl.de/glcapsviewer/gles_generatereport.php?reportID=124 EGL_KHR_get_all_proc_addresses EGL_ANDROID_presentation_time EGL_KHR_image EGL_KHR_image_base EGL_KHR_lock_surface EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_fence_sync EGL_KHR_create_context E..
EGL10 egl = (EGL10) EGLContext.getEGL(); EGLDisplay display = egl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); int[] version = new int[2]; egl.eglInitialize(display, version); Log.d(TAG, "EGL vendor: " + egl.eglQueryString(display, EGL10.EGL_VENDOR)); Log.d(TAG, "EGL version: " + egl.eglQueryString(display, EGL10.EGL_VERSION)); Log.d(TAG, "EGL extensions: " + egl.eglQueryString(display, EGL10.EGL_E..
#include #include #include #include #include #include #include #include #include #include #include #include int main() { // 이더넷 데이터 구조체 struct ifreq *ifr; struct sockaddr_in *sin; struct sockaddr *sa; // 이더넷 설정 구조체 struct ifconf ifcfg; int fd; int n; int numreqs = 30; fd = socket(AF_INET, SOCK_DGRAM, 0); // 이더넷 설정정보를 가지고오기 위해서 // 설정 구조체를 초기화하고 // ifreq데이터는 ifc_buf에 저장되며, // 네트워크 장치가 여러개 있을 수 있으므..
리눅스에서 프로그래밍할때 IntelliJ 기반의 CLion이라는 툴을 사용해보았다. CLion은 Makefile이 아닌 범용 maketool인 CMake를 사용한다. 그래서 Makefile 대신에 CMakeLists.txt를 만들어줘야 빌드가 된다. 1. 아래는 long string에 대한 에러가 날때 사용한다. CFLAGS옵션 이다.MakefileFLAGS = -g -O3 -fpermissive -w CMakeLists.txtset(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fpermissive") 2. 아래는 include directory에 대해서 설정이다. I옵션이다.MakefileINCS = -I/usr/include -I/usr/local/mysql/include -I/..
#include #include #include #include #include #include #include #include #include #include #define MAXEVENTS 64 static int make_socket_non_blocking(int sfd) { int flags, s; flags = fcntl(sfd, F_GETFL, 0); if (flags == -1) { perror("fcntl"); return -1; } flags |= O_NONBLOCK; s = fcntl(sfd, F_SETFL, flags); if (s == -1) { perror("fcntl"); return -1; } return 0; } static int create_and_bind(char *po..
//처음에 UUID를 KeyChain에서 불러오는데 nil이라면 UUID를 생성해서 KeyChain에 저장한다. //저장 후에 다시 함수를 호출 하면 저장된 값을 리턴한다. NSString* getUUID() { // initialize keychaing item for saving UUID. KeychainItemWrapper *wrapper = [[KeychainItemWrapper alloc] initWithIdentifier:@"UUID" accessGroup:nil]; NSString *uuid = [wrapper objectForKey:(__bridge id)(kSecAttrAccount)]; if( uuid == nil || uuid.length == 0) { // if there is no..
- Total
- Today
- Yesterday