Force IE in Edge Mode

If you’re seeing Internet Exploder loading your site in an old compatibility mode, try adding the following to your web.config file: <system.webServer> <httpProtocol> <customHeaders> <add name=”X-UA-Compatible” value=”IE=Edge” /> </customHeaders> </httpProtocol></system.webServer> It may or may not work – I haven’t had the time or patience to learn all the various scenarios that screw up Internet Exploder, […]

Javascript Async Await

JavaScript gives you lots of different ways to run code asynchronously. Originally callbacks were the only way to go. Now you’ve got RxJS Observables, Promises, and the newest “async” and “await” keywords, which actually are just syntactic sugar for Promises. Learn more here View code on GitHub