連結 : http://code.metager.de/source/xref/android/
進去可以選 版本
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月20日 星期三
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
command : ffmpeg.exe -i FILNENAME.264 -f avi -vcodec copy OUTPUTFILENAME.avi
2013年10月30日 星期三
快速copy一個資料夾內的所有檔名
在該資料夾,開啟一個記事本,將下列文字貼上、存成bat檔。
@echo off
dir /b /on >list.txt
dir /b /on >list.txt
對著這個bat檔按兩下,就會生出檔名列表的txt檔囉。
2013年10月29日 星期二
訂閱:
文章 (Atom)