Skip to main content

Jump start HTML5 with CSS and Javascript

Microsoft is giving away a free course (an accelerated one rather than full 5 day course) and a voucher to take exam 70-480 which prepares you for MCSD certification.

You can find free voucher and course here http://www.microsoft.com/learning/en/us/html5-offer.aspx.

I have started preparing for this exam. I will be using mostly online resources and will add posts here as I go along.

Comments

Popular posts from this blog

Why there is semicolon at the start of a JavaScript function?

Very often while reviewing the code for my team, I will come across a semicolon at the start of JavaScript function as show below ; (function () { 'use strict'; ...and I often wondered what purpose it served. Guess what. It is an insurance to make sure your script works fine when all other scripts are merged together;  The leading ; in front of immediately-invoked function expressions (iffe) is there to prevent errors when appending the file during concatenation to a file containing an expression not properly terminated with a ;. So there you go. Now you know what that little semicolon is doing there in your code.

What is Event Sourcing?

If you scratching your head and wondering what is Event Sourcing, this is a very good article to start. https://www.erikheemskerk.nl/event-sourcing-awesome-powerful-different/ I couldn't have explained it any better.