Tips and Tricks – Show assembly version numbers in Windows Explorer

Sometimes you want a simple overview of all the assembly file version numbers in the bin folder in your ASP.NET project.

For example when doing an upgrade or a release.

Go to your bin folder -> show files as detailed list in windows explorer.

Right click on one of the columns:
ScreenShot715

Scroll down to file version, or just start typing file to jump fast.
Check “File version”

ScreenShot714

Tada!ScreenShot716

TroutZoom extension – syncs zoom level in vs2012 vs2013

Syncs zoom level across all windows in Visual Studio, works in vs2012 and vs2013

TroutZoom FreeThis extension manages the zoom levels for the code windows. When the zoom level is changed in one document, it gets changed for other open documents and any new documents that are opened.

via TroutZoom extension.

 

javascript – Window.onload vs document.ready ? – Stack Overflow

The ready event occurs after the HTML document has been loaded, while the onload event occurs later, when all content (e.g. images) also has been loaded.

The onload event is a standard event in the DOM, while the ready event is specific to jQuery. The purpose of the ready event is that it should occur as early as possible after the document has loaded, so that code that adds funcionality to the elements in the page doesn’t have to wait for all content to load.

via javascript – Window.onload vs document.ready ? – Stack Overflow.