-
centos7 youtube 업로드 스크립트
외쿡에서 퍼옴 https://github.com/tokland/youtube-upload Introduction Youtube-upload is a command line Python script that uploads videos to Youtube (it should work on any platform -GNU/Linux, BSD, OS X, Windows, …- that runs Python) using theYoutube APIv3. Dependencies Python 2.6/2.7/3.x. Packages: google-api-python-client, progressbar2 (optional). Check if your operating system provides those packages, otherwise install them with pip:…
-
WO-Mic 스마트폰을 마이크로 활용하기
-
lspci
[root@xenserver-titorus ~]# lspci 00:00.0 Host bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DMI2 (rev 04) 00:01.0 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 1a (rev 04) 00:01.1 PCI bridge: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 1b (rev 04) 00:02.0 PCI…
-
XenServer 6.2 and PCI passthrough
XenServer 6.2 and PCI passthrough for LSI SAS1068E I had tried to passthrough my LSI SAS1068E to a virtual machine in XenServer 6.0 or 6.1, I forget, but I couldn’t get it working for some reason. I didn’t troubleshoot it very much though, a few Google searches seemed to point to my whitebox setup and driver/support…
-
Mapping the GPU to a Virtual Machine
Instructions Mapping the GPU to a Virtual Machine Mapping of XenServer 6.0 Virtual Machine with GPU can either be done from CLI or from GUI. It is preferred to use CLI, since it gives exact GPU cards data as compared to XenCenter GUI.Notes: Citrix XenServer Platinum Licensing is required to enable GPU-Pass through in XenServer.…
-
NSIS 명령(Command)로 컴파일 하기
-
DirectX 선그리기
DirectX 선그리기… VertexBuffer 말고 다른 방법으로 선을 그리고 싶었다… ID3DXLine 이란것이 있었따!! D3DXVECTOR3 p[3]; p[0].x =0; p[0].y = 0; p[0].z = 0.0f; p[1].x =0.1; p[1].y = 1; p[1].z = 0.0f; p[2].x =2; p[2].y = 0; p[2].z = 0.0f; p는 오브젝트의 월드공간에 있어야함 —————————————————————————- Device->BeginScene(); ID3DXLine *Line; D3DXCreateLine(Device, &Line); Line->SetWidth(width); Line->SetAntialias(true); Line->Begin(); Line->DrawTransform(p, 3, &(worldMat*viewMat*projMat), D3DXCOLOR(0.0f, 0.0f,…
-
(400gb)이번에 유출된 해킹팀(국정원에 해킹툴 판매) 하드 자료 토렌드 다운 링크
토렌트 https://mega.co.nz/#!Xx1lhChT!rbB-LQQyRypxd5bcQnqu-IMZN20ygW_lWfdHdqpKH3E 마그넷 magnet:?xt=urn:btih:51603bff88e0a1b3bad3962614978929c9d26955&dn=Hacked%20Team&tr=udp%3A%2F%2Fcoppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710%2Fannounce&tr=http%3A%2F%2Fmgtracker.org%3A2710%2Fannounce&tr=http%3A%2F%2Fbt.careland.com.cn%3A6969%2Fannounce&tr=udp%3A%2F%2Fopen.demonii.com%3A1337&tr=udp%3A%2F%2Fexodus.desync.com%3A6969&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&tr=udp%3A%2F%2Ftracker.pomf.se&tr=udp%3A%2F%2Ftracker.blackunicorn.xyz%3A6969 유출된 해킹툴 소스코드 http://github.com/hackedteam 각종 해킹툴이나 해킹관련 정보나 국정원 수단 이집트 등 해외고객들에 대한 정보가 많이 있을 듯 합니다. 출처 : 클리앙
-
subsonic SERVICE_UNAVAILABLE 에러
subsonic 이 갑자기 안될때. HTTP ERROR: 503 SERVICE_UNAVAILABLE RequestURI=/ Powered by jetty:// se soluciona, aunque algo drasticamente, eliminando la base de datos antigua. Para ello, realizar los siguientes pasos: $ /etc/init.d/subsonic stop $ sudo mv /var/subsonic/db /var/subsonic/db_ANTIGUA $ /etc/init.d/subsonic start Recordar que esto borrará los usuarios creados, por lo que será necesario crearlos de nuevo.
-
sonarqube c++ sonar runner 설치 하기
기본적으로 sonarqube 에 있는 C++ 플러그인은 상업용이다 고로 커뮤니티 버전을 다운로드 받아서 설치 해야 한다 https://github.com/wenns/sonar-cxx 위 주소가 레포지토리 이다. 패킹된 릴리즈 레포지토리는 아래와 같다. https://github.com/wenns/sonar-cxx/releases sslr-cxx-toolkit-0.9.3, sonar-cxx-plugin-0.9.3을 각각 받아서 sonarqube plugin 폴더에 복사 한다음 sonarqube 서비스를 재시작 해주면 설치된 플러그인에 커뮤니티용 c++ 플러그인이 확인될것이다.