標籤

C (1) Matlab (11) maple (2) paper (1) python (14)

2014年6月19日 星期四

2014年4月29日 星期二

install adb android debug.

Under Ubuntu terminal:
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update

sudo apt-get install android-tools-adb android-tools-fastboot

Use connect android putty
ifconfig eth0, get IP.

Under Ubuntu terminal:
adb kill-server
adb connect XXX.XXX.XXX.XXX

install app (.apk at Ubuntu)
adb install XXX.apk.

adb push ..
adb pull ..

2013年11月24日 星期日

Find Memory Leak using visual studio

#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>


在想要看有沒有leak的地方加上.
_CrtDumpMemoryLeaks();

就會Dump出目前leak的memory

2013年11月18日 星期一

FFMPEG 純包 Container 沒有再編碼 Command

ffmpeg 包 avi container h264 without re-encoding

command : ffmpeg.exe -i FILNENAME.264 -f avi -vcodec copy OUTPUTFILENAME.avi