Slack: Build a chat bot with Hubot in JavaScript
Hubot is an scriptable chat bot framework created by GitHub. The newer version supports JavaScript (ES6+), no more CoffeeScript!
Hubot is an scriptable chat bot framework created by GitHub. The newer version supports JavaScript (ES6+), no more CoffeeScript!
xlsxwriter 的文件寫得比較好
ipdb is an interactive Python Debugger with IPython integration, which features tab completion and syntax highlighting, etc. In layman's terms, ipdb is a better pdb.
MkDocs is a static site generator that builds modern webpages based on your Markdown documents and a simple YAML file.
Python 裡的所有東西都是 object function 也是 所以你可以對 function 做任何跟 object 一樣的事 例如把一個 function 當成參數丟給另一個 function 當然也可以 decorate class 不帶參數的 decorator 第一層 def 接收 func 第二層 def 接收 func 的 *args, **kwargs 通常意義下的 decorator 是把 func(就是 something_1、something_2)丟給 decorator function 做一些額外的動作 然後回傳該 func 原本的 return 並不操作 func 本身 如果要操作 func 本身 例如幫 func 增加一個 attribute 請參考下下面的例子 def func_wrapper(func):… Read More