- Vue官方教學 https://vuejs.org/v2/guide/
- Vue.js 手牽手,一起嗑光全家桶(Alex教學影片) https://ithelp.ithome.com.tw/articles/10203978
[網路教學]Vue教學文章或影片
2019年5月11日 星期六
標籤:
javascript,
Programming,
Vue
[轉][程式] Postman - 測試Web Service的工具
2019年5月6日 星期一
原文: Postman - 測試Web Service的工具
Postman 是用來測試 Web Service 方便的工具,在法蘭克還不認識它之前,要測試自己撰寫的 Web Service 都要用 HTML 刻一個表單,然後放上許多 input 的元件並且一個一個填入參數去 Call API,過程可說是相當麻煩,但是自從知道 Postman 後,就再也沒有自己刻過表單了。Postman 是 Chrome 的應用程式並可在 Chrome Web 商店找到它。今天就來介紹利用 Postman(Client端) 呼叫 TOS - ESB (Server端) 的一些基本功能並找兩個範例來實作,當然 Server 並非一定要跟法蘭克一樣是使用 TOS - ESB,也可是政府開放平台或公司後台的 API。
標籤:
Programming
轉:建立安全的登入模組
2019年5月5日 星期日
原文:https://en.wikibooks.org/wiki/PHP_Programming/Building_a_secure_user_login_system
關鍵點:
關鍵點:
$timeout = 60 * 30; // In seconds, i.e. 30 minutes. $fingerprint = hash_hmac('sha256', $_SERVER['HTTP_USER_AGENT'], hash('sha256', $_SERVER['REMOTE_ADDR'], true)); session_start(); if ( (isset($_SESSION['last_active']) && $_SESSION['last_active']<(time()-$timeout)) || (isset($_SESSION['fingerprint']) && $_SESSION['fingerprint']!=$fingerprint) || isset($_GET['logout']) ) { setcookie(session_name(), '', time()-3600, '/'); session_destroy(); } session_regenerate_id(); $_SESSION['last_active'] = time(); $_SESSION['fingerprint'] = $fingerprint; // User authenticated at this point (i.e. $_SESSION['email_address'] can be trusted).
標籤:
php,
Programming
轉: How to enable and start services on Alpine Linux
2019年5月4日 星期六
Alpine Linux 是個小巧輕量的 Linux系統,非常值得試試
原文:https://www.cyberciti.biz/faq/how-to-enable-and-start-services-on-alpine-linux/
原文:https://www.cyberciti.biz/faq/how-to-enable-and-start-services-on-alpine-linux/
How do I add or delete service at boot time on an Alpine Linux? How do I enable service such as Nginx/Apache at boot time on an Alpine Linux? How do I start/stop/restart services on an Alpine Linux?
Alpine Linux comes with OpenRC init system. This tutorial shows how to use the various command on OpenRC to manage services.View status of all services
Type the following command:# rc-status
訂閱:
文章 (Atom)