Find me...

若有寫開箱文食記合作需求...
請mail至我的信箱
謝謝!

2013年12月6日 星期五

[開箱] Macbook Pro Retina 13" (2013)

好像不知不覺就入手macbook了耶...XD
雖然很早就蠻想買的 但一直都沒啥動力
直到最近 想要完成某件事情
藉此給了自己一個動力去買mac!

一開始我是考慮macbook air 13" with 8GB RAM & 256GB SSD
但是再多加4000多元,就能買到macbook pro retina 13"
而且CPU跟螢幕都能夠獲得很明顯的升級 (不過重量多了220克左右)

最後在店員問了我一個致命性的問題後,我就二話不說買了MBPR:
"你有在玩單眼嗎?"

對,我立馬就買了...XD

好像有點潮厚... @@"
(感謝同事再次幫忙當modelXD)

第一次寫Apple的產品開箱,希望能儘量把它的質感給帶出來
請大家看看囉!!

2013年12月4日 星期三

[android] 如何讓mac os使用adb指令

今天光了不少時間在設定mac的adb,為此記錄下來一下
以免之後還走冤枉路,也分享給大家看看。

Mac OS version: 10.9
Version of adb: 1.0.31
  • Get android sdk and install it
  • Set the environment path for android platform tools
    • export PATH=$PATH:/XXX (XXX is the path of platform tools)
  • Get the vendor id of android device (make sure it is already connected to host
    • execute the following command in terminal
      • system_profiler SPUSBDataType
  • Echo the vid to ~/.android/adb_usb.ini
    • echo xxx > ~/.android/adb_usb.ini (xxx is the vid of device)
  • Restart adb
    • adb kill-server
    • adb start-server
    • (However, in my experience, it is recommended to restart your mac)
經過以上的步驟,理論上就能夠在mac os上使用adb了