Hugo - Install Hugo on MacOS

Hugo 在 MacOS 下可直接透過 Homebrew 安裝。 brew install hugo ...

April 6, 2024 · 1 min · 87 words · Larry Nung

Decode JWT token with jq

使用 JWT token 免不了有時會需要解碼看裡面存放的內容,在可以連到外網的環境下,很多網站工具都可以滿足我們的需求,但若是在網路比較受限的環境下,就不能依賴於外網的網站工具了。 ...

March 20, 2021 · 1 min · 174 words · Larry Nung

Generate self-signed certificates with dotnet dev-certs

dotnet dev-certs 提供 https 命令可供自產 HTTPS 開發憑證。 ...

March 11, 2021 · 1 min · 317 words · Larry Nung

gauth - Host Google authenticator server

要起 gauth 服務供二階段認證使用,可將 gauth 程式碼下載下來。 ...

March 8, 2021 · 1 min · 104 words · Larry Nung

NuGet - Create and publish a package with dotnet CLI

要建立 NuGet 套件,需先確認專案檔內有設計 NuGet 套件所需之資訊,像是套件識別碼、版本、作者、公司等。 ...

February 18, 2021 · 1 min · 192 words · Larry Nung

MongoDB - Creating a MongoDB replica set in single Docker container

透過 Docker 去起 MongoDB replica set,多半網路上的做法都是用多個容器去做,這邊筆者考量測試與開發上的便利性,試著用一個容器去起 MongoDB replica set。 ...

January 28, 2021 · 1 min · 292 words · Larry Nung

dotnet-counters - Monitor specified process

dotnet-counters 可用來監控 .Net Core 的 Process,像是這邊筆者準備了一份簡單的程式想要觀察其 CPU 與 Memory 這些資源上的變化狀況。 ...

January 21, 2021 · 1 min · 196 words · Larry Nung

dotnet-counters - Install with dotnet tool

要用 dotnet tool 安裝 dotnet-counters,可調用 d otnet tool install 帶入 –global 參數指定安裝至全域,並在最後帶入 dotnet-counters 指定安裝 dotnet-counters 套件。 ...

January 20, 2021 · 1 min · 101 words · Larry Nung

dotnet-trace - Install with dotnet tool

要用 dotnet tool 安裝 dotnet-trace,可調用 dotnet tool install 帶入 –global 參數指定安裝至全域,並在最後帶入 dotnet-trace 指定安裝 dotnet-trace 套件。 ...

January 18, 2021 · 1 min · 97 words · Larry Nung

'HomeBrew - Error: homebrew-core is a shallow clone.'

使用 HomeBrew 如果出現 “Error: homebrew-core is a shallow clone.” 錯誤。 ...

January 5, 2021 · 1 min · 46 words · Larry Nung