紀錄工作上的點點滴滴
dependency-check
2024-04-28 工作雜記
下載 wget https://github.com/jeremylong/DependencyCheck/releases/download/v9.1.0/dependency-check-9.1.0-release.zip sudo unzip -q ... Read More
hugo 筆記
2024-04-27 工作雜記 hugo
hugo + gitHub 是我自己架設網站的工具,這邊我簡單紀錄一下常用的指令 新增文章 hugo new worknot/worknot-$(date '+%Y%m%d').md 預覽文章,包含草稿 hugo server 預覽文章,包含草稿 hugo server -D 寫好的 ... Read More
CLI 檢查網站憑證
2024-04-26 工作雜記 linux
curl curl https://www.google.com -v -k 2>&1 | grep -E "Connected to|subject|expire" 執行結果 ❯ curl https://www.google.com -v -k ... Read More
linux 資料基礎分析
2024-04-25 工作雜記 linux 資料分析
grep: 過濾資料 grep 要過濾出的資料 exampleFileSource.log > exampleFile.log cut 切除每行前 60 個字元 cut -b 60- exampleFile.log > exampleFile.2.log sort: 類似 sql ... Read More
程式進化史
2024-04-16 工作雜記 groovy CyclomaticComplexity
筆記一下這些年我寫的糞 code 的優化流程 一開始寫的 被檢測為 CyclomaticComplexity 。程式如下: package work.pollochang.twgcb import grails.gorm.transactions.Transactional import ... Read More
annotation 與 AOP
2024-04-13 工作雜記 java AOP
範例程式完整專案: Java 基本內置 annotation @Override 重寫父層的方法 @Deprecated 表示該方法再為雷會被棄用 @SuppressWarnings 主要的用處就是忽略警告信息 規定 annotation 可以放在哪裡 類別 ElementType.TYPE : 能 ... Read More
Mozilla Public License Version 2.0 中英文對照
2024-04-08 工作雜記 License
英文原文 MOZILLA PUBLIC LICENSE Version 2.0 1. Definitions 1.1. “Contributor” means each individual or legal entity that creates, contributes to the ... Read More
windows 透過 CLI 檢查有沒有自動更新
2024-03-28 工作雜記 winsows
今天突然收到客戶需要檢查windows 有沒有設定自動檢查更新,因為有多台實在懶得一台一台進入,然後一個一個點擊視窗擷圖,因此想說有沒有輸入 CLI 指令檢查的方法。 windows server 2000 以下是操作的版本 windows server 指令 reg query ... Read More
CNS11643 轉 UTF8 經驗
2024-03-21 工作雜記 CNS11643 Java
unicode: 萬國碼,設計上一共有17個平面。在第0的平面中,可以直接用一個 UTF-8 表示。 CNS11643: 中文標準交換碼,是中華民國國家標準11643號,簡稱CNS 11643,舊名通用漢字標準交換碼,是中華民國政府為中文資訊處理製定的字元編碼方案,與許多學術圖書館係統採用 ... Read More
db-postgresql-note
2024-03-15 工作雜記 postgresql
安裝時設定項目 安裝前檢查項目 作業系統版本 資料庫空間需要獨立空間 資料庫備份需要獨立空間 稽核確認: 資料庫連線稽核 稽核確認: 資料庫DDL異動紀錄 定期備份排程 資料庫備份 定期備份排程 user: postgres 0 1 * * * pg_dump -Fc -c dbName > ... Read More