Really great must read for javascript best practises.
http://www.codeproject.com/Articles/580165/JavaScript-Best-Practices
My bookmarks and blogposts regarding Software Development in .NET, C#, Angular, JavaScript, CSS, Html
Really great must read for javascript best practises.
http://www.codeproject.com/Articles/580165/JavaScript-Best-Practices
Must have visual studio extension for simple config files transformation for ASP.NET projects
http://visualstudiogallery.msdn.microsoft.com/69023d00-a4f9-4a34-a6cd-7e854ba318b5
Good guide for freeing up diskspace in Windows 8.
http://www.hanselman.com/blog/GuideToFreeingUpDiskSpaceUnderWindows81.aspx
Might ease your web debugging:
Check out preload and prerender features.
http://www.sitepoint.com/using-modern-ie-identify-common-coding-problems/
$(document).mouseup(function (e)
{
var container = $("YOUR CONTAINER SELECTOR");
if (!container.is(e.target) // if the target of the click isn't the container...
&& container.has(e.target).length === 0) // ... nor a descendant of the container
{
container.hide();
}
});