
- 編譯二進制檔案 (加速部署及跨平台)
- 編譯自動檢查 Static 型態 (你不會把 string 欄位帶入 Integer)
- 效能 (Go 並發跟 Python thread 比起來節省許多資源)
- 不需要 web framework (Go 內建大多數 Library 像是 HTTP, JSON, HTML templating)
- 好用的 IDE (內文提到 Webstorm, PHPStorm) 我推薦用 VSCode
介紹一堆美食日記,生活日記,電腦筆記
# install python pip tool and fabric command yum -y install python-pip pip-python install fabricAPT
# install python easy_install aptitude -y install python-pip # install fabric command pip install fabric安裝 capistrano 可以透過 Ruby gem。
$ gem install capistranoContinue reading “Fabric 管理多台 Linux 機器的 command tool”
# 字串轉換小寫 string.lower # 字串轉換大寫 string.upper # 切割字串 string.split # 合併字串 string.join # 找尋字串 string.findContinue reading “[Python] OSSF::自由軟體鑄造場 Python network programming -進階”
#!/usr/local/bin/python for i in range(1,10): for j in range(1,10): print "%d*%d=%s" % (i,j,i*j), print ""Continue reading “[高雄] Python 入門 – Python tutorial”
# cd /usr/ports/lang/python25/ # make install clean底下這張圖就是安裝好的結果: