// from https://phodal.github.io/new-project-checklist/
- 上版流程
- 上版日誌
- 開發規範
- 系統架構圖 (e.g. C4 Model)
- 採用的技術
- 專案開發指南
- 架構決策紀錄
from : https://x.com/Barret_China/status/1187272143312015360 | |
1. 專業知識學習 (會用、能改): 語言API、不依賴IDE、讀懂別人的code、調整別人code | |
2. 偵錯能力、抽象能力: 完整的測試、掌握複雜工具和參數、解決性能問題、快速定位問題 | |
3. 掌握底層原理、運行機制: 底層設計原理、核心運作機制、設計高效的演算法 |
var arr = []; | |
for (var i = 1; i <4 ; i++) { | |
arr.push(function(j) { | |
return function() {console.log(j);} | |
}(i)); | |
} | |
arr[0](); | |
arr[1](); | |
arr[2](); |
// from https://phodal.github.io/new-project-checklist/
Repo: https://github.com/ituring/tcp-book | |
環境建立: | |
Mobaxterm 登入 vagrant ssh guest1 問題 | |
參考 | |
https://stackoverflow.com/a/68515228 |
var xhr = new XMLHttpRequest(), | |
method = "your_api_method", | |
url = "you_api"; | |
xhr.open(method, url, true); | |
xhr.send(); | |
setTimeout(() => { | |
xhr.abort(); | |
}, 1000) |
course: https://github.com/bhrugen/TangyBlazor
dotnet dev-certs https --trust
(create localhost trust)
brew install mysql
brew services start mysql
brew services stop mysql
localhost
, port 3306
, user root
https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-os-x/#run-mongodb-community-edition
brew services start [email protected]
brew services stop [email protected]
mongodb://localhost:27020
(macOS) mongodb://localhost:27017
(Windows 11)https://minikube.sigs.k8s.io/docs/tutorials/docker_desktop_replacement/
https://minikube.sigs.k8s.io/docs/faq/#can-i-start-minikube-without-kubernetes-running
What does minikube docker-env mean? \
minikube start --container-runtime=docker --vm=true --no-kubernetes