mac

A collection of 8 posts

wordpress

Migrating from WordPress to Octopress With Trouble Solution Painlessly

O.S.: 欠超久的wordpress轉到octopress的筆記文章…從2013/1/1正式轉戰octopress一直欠到現在T_T 要說為什麼從wordpress轉戰octopress麻,大概幾個原因點: wordpress玩膩了,而且過於方便,沒有hacker的感覺 wordpress容易安裝套件導致網站速度變慢 octopress是由script產生靜態網頁,鐵定在速度上的使用者體驗很好 繼續跟ruby保持一定的聯繫 學習撰寫markdown 省去hosting blog的麻煩與花費 嘗試新事物 這篇文章將著重在如何無痛的將wordpress轉至octopress,至於ruby, octopress, git等等的安裝說明,網路上很多教學文章,就不詳加贅述,或可參考此篇文章:Hello Octopress! Mirgration有幾個必要check的項目 Post(若使用外國開發者寫的script需注意中文編碼問題) Page(同Post) Comments(若使用Disqus便沒問題) File/Images(下文會講解Octopress URI組成,便可無痛解決) Code Format(這需端看讀者們用的wordpress程式碼上色plugin來對下方的convertor

  • hothero
    hothero
mac

Manually Compiling and Installing OpenCV on Mac / Windows Without Package Manager

OpenCV的全稱是Open Source Computer Vision Library,是一個跨平台的計算機視覺庫。OpenCV是由英特爾公司發起並參與開發,以BSD許可證授權發行,可以在商業和研究領域中免費使用。OpenCV可用於開發實時的圖像處理、計算機視覺以及模式識別程序。 (from wiki) 這篇將帶領讀者編譯OpenCV並且安裝相關執行檔與開發所用的標頭檔(如:確保pkg-config --cflags opencv, pkg-config --libs opencv正常),若是用"brew install opencv"則不會安裝cv.h等c/cpp開發用標頭檔。 Environments: Mac OSX 10.7.* ( & Windows 7 32/64 bits) (Visual Studio 2010)

  • hothero
    hothero
mac

連結Amazon EC2 Server與ssh設定

本文章講解重點focus在linux的機器上,而筆者使用的是mac osx。 使用.pem連結 首先,找出在創建instance時下載的keypair檔案(*.pem)並複製或記下此instance的IP或DNS。開啟終端機 cd 至keypair檔案的所在地。並鍵下"ssh -i sight.pem ec2-user@IP位址"連結server。 免.pem認證檔連結 做此步驟可省去以後都得要使用.pem檔認證連結server。 ``` ssh-keygen -t rsa  #(註:產生id_rsa, id_rsa.pub這兩個私鑰與公鑰,預設檔案位置在~/.ssh/內,若已有則可免去此步驟) scp -i sight.pem ~/.ssh/id_rsa.

  • hothero
    hothero
mac

using print feature : layout on mac (like fineprint on windows)

相信只要是學生,熟悉windows平台且常影印上課講義,一定都會知道fineprint這套好用的軟體。 FinePrint介紹: *萬用印表機預覽器 *刪除不需要的頁面 *轉換為灰階頁面 *移除空白頁面 *移除不要的文字與圖形 *合併多頁文件在一張頁面 *列印電子信箋 *備份列印工作 在mac上其實就有內建類似的功能,在Print中選擇layout,便可簡單選擇1, 2, 4, 6, 9, ...等頁數於同一張,方向性也有三種供選擇,如圖。

  • hothero
    hothero
ruby

warning: Insecure world writable dir

相信ruby的程式開發者或Mac使用者採用homebrew這套ruby撰寫的package manager(套件管理系統)都常常遇到這樣的問題"warning: Insecure world writable dir..."。例如: warning: Insecure world writable dir /usr/local/bin, mode 040777 warning: Insecure world writable dir /usr/local, mode 040777 這是程序沒有權限處理的問題,使用以下的指令修改即可 chown o-w 路徑(Path),例如:chown o-w /usr/local/bin 相關連結

  • hothero
    hothero
You've successfully subscribed to hothero's TechNote!