I no longer mantain this list. There are lots of other very comprehensive JavaScript link lists out there. Please see those, instead (Google "awesome JavaScript" for a start).
// This file is part of the Brandon Library for JavaScript (BrandonJS) | |
// Original author: Brandon Paddock, www.brandonlive.com | |
// Published under Creative Commons Attribution 4.0 International Public License | |
// http://creativecommons.org/licenses/by/4.0/legalcode | |
// BrandonJS.xhr | |
// Provides a helper which mimicks WinJS.xhr but using WinRT's new HttpClient if available. | |
// If WinRT is not available, it falls back to WinJS.xhr. | |
// This mimicks enough for common usage scenarios, but you may need to extend it for some cases. |
Since modern.ie released vagrant boxes, it' no longer necessary to manually import the ova file to virtualbox, as mentioned here.
However, the guys at modern.ie didn't configured the box to work with WinRM. This how-to addresses that, presenting steps to proper repackage these boxes, adding WinRM support. Additionally configures chocolatey package manager and puppet provisioner.
/** | |
* Created by Barrett Sonntag barretts@github on 3/2/2015. | |
* http://www.sosuke.com/writing-custom-extensions-for-the-remarkable-javascript-markdown-parser | |
* | |
* A plugin tutorial for Remarkable https://github.com/jonschlinkert/remarkable | |
*/ | |
var markdownParser = new Remarkable(); | |
// open links in new windows |
Kyle Simpson (@getify) wrote a very thoughtful post decrying optimize-js, which is a tool I wrote that exploits known optimizations in JavaScript engines to make JS bundles parse faster (especially minified bundles, due to what could be reasonably described as a bug in Uglify).
Kyle lays out a good case, but I tend to disagree with nearly all his points. So here's my rebuttal.