2017年10月25日 星期三

ChatBot Class 操作教學課程連結(上課講師:郭冠宏)

ChatBot Class 操作教學課程連結
1.Chatbot 的趨勢與應用介紹
2.使用 chatfuel 打造 chatbot
3.使用 manychat 打造 chatbot
4.用 Node.js 實作 Facebook Chatbot
5.用 Node.js 實作 LINE Chatbot
6.用 Node.js 實作 Telegram Chatbot
7.使用 Chatbot 的分析工具
上課講師:郭冠宏
Chatbot class github data link ==> https://github.com/ntu-csie-train/chatbot-class

Heroku Paas server  ==>  https://www.heroku.com/

Fb developers 申請開發者帳號 ==>developers.facebook.com

LINE developers 開發者帳號申請 ==> https://developers.line.me/en/
LINE@生活圈 Account 帳號申請 ==>http://at.line.me/tw/

2017年8月27日 星期日

Python 自動化測試

http://www.qa-knowhow.com/?p=1936

Selenium自動化測試技術文章彙整(140+篇!)


http://www.qa-knowhow.com/?p=2531

https://medium.com/@jemmy1234/%E5%88%A9%E7%94%A8-python-%E5%81%9A%E7%B6%B2%E9%A0%81%E8%87%AA%E5%8B%95%E5%8C%96%E6%B8%AC%E8%A9%A6-902d6361b4e3

http://icodding.blogspot.tw/2015/11/pythonselenium-web.html

2017年8月14日 星期一

NodeJS PM2 Note

https://github.com/Unitech/pm2

PM2 is a production process manager for Node.js applications with a built-in load balancer. It allows you to keep applications alive forever, to reload them without downtime and to facilitate common system admin tasks.

Starting an application in production mode is as easy as:

$ pm2 start app.js

2017年8月10日 星期四

Fwd: 让Nodejs来管理定时任务later



http://blog.fens.me/nodejs-cron-later/

将介绍如何利Javascript做为服务端脚本,通过Nodejs框架web开发。Nodejs框架是基于V8的引擎,是目前速度最快的Javascript引擎。chrome浏览器就基于V8,同时打开20-30个网页都很流畅。Nodejs标准的web开发框架Express,可以帮助我们迅速建立web站点,比起PHP的开发效率更高,而且学习曲线更低。非常适合小型网站,个性化网站,我们自己的Geek网站!!


CentOS7 # linux GUI2CLI and CLI2GUI mode switch command


##顯示目前系統預設運作層級
$sudo systemctl get-default
graphical.target

#切換運作層級至文字模式(runlevel 3)
 
$sudo systemctl isolate multi-user.target

#切換運作層級至 GUI 模式(runlevel 5)
$sudo systemctl isolate graphical.target

#設定開機啟動至文字模式(runlevel 3)
$sudo systemctl set-default multi-user.target

#設定開機啟動至 GUI 模式(runlevel 5)
$sudo systemctl set-default graphical.target