Oracle SQL Developer - Snippets

要使用 Oracle SQL Developer 的 Snippets 功能,我們可以點選 [ View | Snippets ] 主選單選項。 ...

October 7, 2016 · 1 min · 242 words · Larry Nung

NanoProfiler - a light weight .NET profiling library

NanoProfiler 有許多的套件。 如果是 Web 專案,安裝 NanoProfiler.Web 即可 (會連帶安裝 NanoProfiler)。 ...

October 5, 2016 · 1 min · 371 words · Larry Nung

Swashbuckle - Seamlessly adds a swagger to WebApi projects

要在 Web API 加上 Swagger 支援,可以為專案裝上 Swashbuckle 套件。 ...

October 4, 2016 · 1 min · 210 words · Larry Nung

Common.Logging - A portable logging abstraction for .NET

Common.Logging 是一 Log 元件,提供 Log 的抽象接口介面,以及許多不同的實作,支援 Log4net,Nlog,Microsoft Enterprise Library logging,Microsoft Application Insights,Microsoft Event Tracing for Windows,及 Serilog。 ...

October 1, 2016 · 1 min · 383 words · Larry Nung

'SonarLint for Visual Studio - SonarAnalyzer for C# and Visual Basic .NET'

SonarLint for Visual Studio 能讓 Visual Studio 與 SonarQube 整合,將 SonarQube 的 Rule 透過 Analyzer 的方式整進 Visual Studio,讓 Visual Studio 能用 SonarQube 的 Rule 下去對程式進行分析。 ...

September 30, 2016 · 1 min · 146 words · Larry Nung

SonarQube - Failed to start SonarQube windows service

在啟動 SonarQube windows service 食,有可能會看到像下面這樣的畫面: ...

September 28, 2016 · 1 min · 98 words · Larry Nung

SonarQube - Setup SonarQube windows service

要設定 SonarQube Windows 服務,只要運行 InstallNTService.bat 檔即可。 ...

September 28, 2016 · 1 min · 146 words · Larry Nung

Grunt - grunt-contrib-imagemin

grunt-contrib-imagemin 套件可以用 Grunt 來將進行檔的壓縮。 ...

September 23, 2016 · 1 min · 191 words · Larry Nung

Grunt - Hello Grunt

接著實際來用用看 Grunt,首先 gruntfile 先用 require 載入 grunt,然後用 registerTask 註冊一個任務,這邊帶入任務名為 default,並將任務的動作用 function 指定,這邊這個任務就只是簡單的顯示 hello world 訊息而已。 ...

September 22, 2016 · 1 min · 391 words · Larry Nung

++i vs i++

i++ 與 ++i 如果在不影響結果的情況下使用,有可能是在 for 迴圈的遞增條件下,或是只是很單純的呼叫,可能因為編譯器最佳化的關係,兩者其實沒有什麼不同。 ...

September 10, 2016 · 2 min · 771 words · Larry Nung