How to get the amount of elapsed minutes in current quarter in T-SQL

0 Comments

If you want to know the amount of elapsed minutes in the current quarter, you can use the following T-SQL code: declare @CurrentDateTime datetime = '2014-03-27 10:56:10' declare @MinutesPassedInHour int = convert(int, datepart(minute, @CurrentDateTime)) declare

Clear the appCache in Google Chrome

0 Comments

If you want to clear the appCache for a site in Google Chrome, browse to: chrome://appcache-internals     Then click on the remove button for the specific site.

Disable Application Cache during development on IIS.

0 Comments

In production we use Application Cache, to distribute a new version of a Single Page Application. In development I immediately want to see my CSS, JavaScript and HTML code changes, without changing the “*.appcache” on