使用 Flask-SQLAlchemy 連接 MSSQL 進行 CRUD Posted on 2023-07-07 Edited on 2025-01-16 In Python Word count in article: 387 Reading time ≈ 1 mins. 安裝套件 123pip install Flaskpip install flask-sqlalchemypip install pymssql Read more »
使用 SSH 建立通道 Posted on 2023-05-07 Edited on 2025-01-16 In Linux Word count in article: 320 Reading time ≈ 1 mins. 本機特定端口轉發至跳板機 1ssh -p [跳板機端口] -C -f -N -g -L [本地端口]:[遠端服務IP]:[遠端服務端口] [帳號]@[跳板機IP] Read more »
使用 lldb 分析 Dotnet 核心傾印檔案 Posted on 2023-05-07 Edited on 2025-01-16 In .Net Word count in article: 713 Reading time ≈ 3 mins. 查詢服務資訊 使用 journalctl 查詢服務 Log 12journalctl -r --identifier=[服務的identifier] --since "2 minute ago"journalctl -r -u [服務名稱] --since "2 day ago" 取得系統產生的傾印檔案 安裝 apport 1sudo apt install apport 進入目錄 /var/crash 搜尋核心傾印檔案,之後使用 apport 解壓縮 1apport-unpack [核心傾印檔案].crash [解壓縮目錄] Read more »
如何解析 JSON 資料 Posted on 2023-05-07 Edited on 2025-01-16 In .Net Word count in article: 157 Reading time ≈ 1 mins. 建立 JSON 檔案 建立檔案 Request.json 內容如下 123456789101112131415{ "info": { "address": [ { "town": "Belgrade" }, { "town": "Paris" }, { "town": "Madrid" } ] }} Read more »
Win10 家用版安裝 Docker Posted on 2023-05-05 Edited on 2025-01-16 In Docker Word count in article: 443 Reading time ≈ 2 mins. ⚠️請注意,因 Win10 家用版本身不支援安裝下方功能,開啟後可能發生未知錯誤,僅供學習使用 Read more »