TWIL - Week #25
This Week I Learned: Azure Previously, Azure Virtual Machines deployed in suspended subscriptions would be deleted when the spending limit was passed (the data drives would be preserved – but the VM instances themselves would be deleted). Now when a subscription is disabled, VMs deployed inside it will simply move into the stopped de-provision state that was recently introduced (which allows a VM to stop without incurring any billing). JavaScript Editing JavaScript code in real time is possible in Chrome and Chromium based browsers . After loading a web page completely, press the F12 key to open Developer Tools, then open the 'Sources' tab. Now open any JavaScript file loaded on the browser and you can directly edit it by clicking anywhere in that file. After making modifications press Ctrl+S to save the changes. The browser will automatically take in the new code. If there are some syntax errors in your code then it will display them in the console. So keep an ey...