利用ics檔案方式匯入Google日曆
1.在Outlook行事曆按右鍵,選取共用,以電子郵件傳送行事曆
2.選擇日期範圍,再選詳細資料為完整詳細資料
3.填入e-mail寄出
4.開啟Gmail收信,滑到最下面下載xxx行事曆.ics
This is a Tang's thinking,doing,playing area.
利用ics檔案方式匯入Google日曆
1.在Outlook行事曆按右鍵,選取共用,以電子郵件傳送行事曆
2.選擇日期範圍,再選詳細資料為完整詳細資料
3.填入e-mail寄出
4.開啟Gmail收信,滑到最下面下載xxx行事曆.ics
Using "Ccache" to improve compiler time
1. Install "Ccache"
2. Create a path for compiler
ls /usr/lib/ccache
mkdir /usr/lib/ccache
pushd . //keep current path
cd /usr/lib/ccache
sudo ln -s ../../bin/ccache arm-marvell-linux-gnueabi-gcc
sudo ln -s ../../bin/ccache arm-marvell-linux-gnueabi-g++
sudo ln -s ../../bin/ccache arm-marvell-linux-gnueabi-cc
sudo ln -s ../../bin/ccache arm-marvell-linux-gnueabi-c++
popd //return pushd . keep current path
3. Put "Ccache" search path into $PATH
export PATH=/usr/lib/ccache:$PATH
4. Keep $PATH always
vi ~/.profile
==>export PATH=/usr/lib/ccache:$PATH
5. Reopen connection and check $PATH
echo $PATH