http://sanderrossel.com/mean-web-development-1-mean-the-what-and-why/
7 Essential JavaScript Functions
10 ASP.NET Performance and Scalability Secrets – CodeProject
MongoDB vs CouchDB vs RavenDB – NoSQL Comparison | NoSQL Guide
What is sharding? – Definition from WhatIs.com
Web Development Training Courses – Microsoft Virtual Academy
Windows 8 auto login without password – Super User
http://windows.microsoft.com/en-us/windows-vista/turn-on-automatic-logon
If the “Users must enter a password…” checkbox does not appear:
passwords – Windows 8 auto login – Super User.
– must leave the network domain.
TouchDevelop from Microsoft Research
TouchDevelop
Create your apps on your phone, tablet or laptop.
Works on iOS, Android, Windows, Mac or Linux.
Using ASP.NET 5 and EF7 with Modern Web Dev Tools like AngularJS and Grunt
Using jQuery to prevent Internet Explorer from accidentally submitting form on enter key
$(function () {
//page is ready
//Prevents users from accidentally submitting form with enter key (e.g. IE problem)
//http://stackoverflow.com/questions/895171/prevent-users-from-submitting-form-by-hitting-enter
$(document).on("keyup keypress", "form input[type='text']", function (e) {
if (e.keyCode === 13 /*enterkey*/ || event.keyCode === 169 /*enter on numpad*/) {
e.preventDefault();
return false;
}
});
});
Works in ajax templated context as well.