ES6 modules

0 Comments

Just some reminders, when working with ES6 modules: ES6 modules are automatically strict-mode code, even if you don’t write "use strict"; in them. When you run a module containing an import declaration, the modules it

Git 101

0 Comments

  Git is a decentralized version control system as opposed to a centralized version control system, like TFS, SourceGear Vault, Subversion, Visual Source Safe etc. A centralized version control system, has a single server that

Changed blog to HTTPS

0 Comments

Today I changed my blog to work with HTTPS. With the emerging HTTP/2 standard and google promoting HTTPS sites, I decided to convert my site from HTTP to HTTPS. After installing the certificates I used

Open Live Writer

2 Comments

A group of Microsoft volunteers, have open sourced, the formaly know “Microsoft Windows Live Writer” blog item editor. I have used Windows Live Writer for all my blog entries and now upgraded to the Open

Exclude file paths from jshint with gulp

0 Comments

If you want to jshint all JavaScript files in a folder, but want to exclude a subfolder, you can use “negation” in gulp.     var gulp = require("gulp"); var jshint = require("gulp-jshint"); var plumber