2013年2月27日 星期三

Word 2007 combobox 下拉選單

Reference:
http://www.youtube.com/watch?v=-B_ZD6YyWs8


delete out-of-date tracelog on Linux

Reference:
http://stackoverflow.com/questions/5142429/unix-how-to-delete-files-listed-in-a-file
http://itigloo.com/how-do-i/binrm-argument-list-too-long-error/

Uses command: rm -rf `find . -name *.tr[0-9]* -print` and gets ‘/bin/rm: Argument list too long’ error.

Solution 1:
/usr/bin/find /home -mtime +7 -name *.tr[0-9]* -print > /root/list.txt
for f in $(cat /root/list.txt); do
  rm $f
done

Solution 2:
/usr/bin/find /home -mtime +7 -name *.tr[0-9]* -print | xargs rm


backup Linux on VMware ESX

Backup Linux files with Symantec Backup Exec 2012:

  • Linux on Physical machine: backup speed 750MB/min
  • Linux on VMware without vmware tools: backup speed 350MB/min
  • Linux on VMware with vmware tools: backup speed 1500MB/sec

2013年2月25日 星期一

2013 元宵節燈籠


幼稚園做的

巨城購物中心送的

幼稚園另外送的


2013年2月23日 星期六

Do not automatically mark as read (Outlook)

Reference:
http://www.msoutlook.info/question/250
  • Outlook 2007 and previous 
    • Tools-> Options…-> tab Other-> button Reading Pane…
  • Outlook 2010 and Outlook 2013 
    • tab View-> Reading Pane-> Options…

2013-02-23 理髮 & 鬆餅

到交大理髮,水池長出綠色的植物,春天就要到。


2013年2月21日 星期四