2015年3月31日 星期二

網路上發現的有趣的話

「守不住KOBE,是因為你不知道他的下一步。」

「守不住MJ,是因為你即使知道他的下一步也沒用。」

「守不住LBJ,是因為你不知道他的下一步...還有幾步。」

2015年3月18日 星期三

有趣的時間地圖

http://timemap.kuansim.com/

invision

http://www.invisionapp.com/

這網站沒什麼

就是把圖片配上可自訂區塊產生互動的行為+可以線上即時協作

真的厲害,方便UI人把IDEA發揮,但不拘泥於程式

2015年3月17日 星期二

Ubuntu設定GIT Server

  1. sudo apt-get install git
    


可能還要用, 但是沒用

How to Setup Git


After Git is installed, whether from apt-get or from the source, you need to copy your username and email in the gitconfig file. You can access this file at ~/.gitconfig. 

Opening it following a fresh Git install would reveal a completely blank page:
sudo nano ~/.gitconfig

You can use the follow commands to add in the required information.
git config --global user.name "NewUser"
git config --global user.email newuser@example.com

You can see all of your settings with this command:
git config --list

If you avoid putting in your username and email, git will later attempt to fill it in for you, and you may end up with a message like this:
[master 0d9d21d] initial project version
 Committer: root 
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:

    git config --global user.name "Your Name"
    git config --global user.email you@example.com

After doing this, you may fix the identity used for this commit with:

    git commit --amend --reset-author

Nexus and Nexus 4升級Android 5.0棒棒糖注意事項

要把Debug模式關掉才可以正常傳輸檔案
要進入Bootloader模式時才可以用原廠的flash-all.bat,因為那時算是fastboot模式,平常在windows時是adb模式



直接進入bootloader模式, 在關機狀態, 同時按住Vol 上和下, 還有電源鍵

更新5.0時,遇到竟然不能使用原廠的方法, 有可能是xposed影響, 但沒機會試
最後是採用

加上http://forum.xda-developers.com/showthread.php?t=1992063

fastboot flash boot boot.img
fastboot flash system system.img
fastboot flash recovery recovery.img
etc.