python 的 main method
之前看 python 文章好像都沒提到怎麼寫 main method, 似乎這件事情很自然, 不過我卻不知道. 看了 6.1.1. Executing modules as scripts 裡面有寫 “the code in the module will be executed, just as if you ...
之前看 python 文章好像都沒提到怎麼寫 main method, 似乎這件事情很自然, 不過我卻不知道. 看了 6.1.1. Executing modules as scripts 裡面有寫 “the code in the module will be executed, just as if you ...
今天練習 Python 的時候發現 5.6. Looping Techniques 有個提示 "To change a sequence you are iterating over while inside the loop (for example to duplicate cert...
Source Code def print_pascal(row_cnt): pascal = [] for row in range(row_cnt): cols = [] for col in range(row+1): if row ...
Description 使用 nginx 的一個主因是要支援 web application 放在別台機器上, 將相關的 request 導過去. Reference Setting Up a Simple Proxy Server Practice prepare files D:\nginx-1...
Description 使用 nginx 主要目的之一就是要存放靜態檔如 html 或圖片 Reference Serving Static Content Practice 設定讓 "GET /" 的 request 首頁導向 testhtml/data/www/index.html prep...
Description server { listen 127.0.0.1:8080; server_name server1; location /test { return 200 'server1'; ...
Reference How nginx processes a request Description server { listen 8080; server_name example.com; location /test { ...
Reference Nginx 变量漫谈(二) Nginx Embedded Variables Practice 變數的有效範圍是 request, 所以就算不同 request 也可以使用變數 config nginx.conf server { listen ...
Description 最近在練習 Nginx, 不過電腦的環境只有 Windows 也沒打算裝 VM, 所以跟網路上文章的環境不太一樣, 在這紀錄怎麼在Windows上練習. 不過最終應該還是要裝個 Linux 環境來練習比較好.. Reference Nginx 变量漫谈(一) Preparati...