• Blur Overlay jQuery Plugin

    A jQuery plugin for creating full-page overlays, blurring the content behind it. Check out the demo! Background I’m not saying blur effects in user interfaces haven’t always been cool, but they really became popular when iOS 7 was released a few years ago. Proper use of blur can provide a...


  • Using ESLint for Code Style and Quality

    View the slides! Over the past year at work I’ve learned the value of linting your code. Especially on a big project, having a tool to enforce code style conventions can make everything easier to read and understand. And if you’re strict enough with your linting rules, you can even...


  • Using ES2015 and Beyond with Babel

    View the slides or check out the code samples! You’ve probably already heard of ES2015 (aka ES6), the newest version of the ECMAScript specification, the spec on which JavaScript is based. Maybe you’re already using ES2015 features in Node or in a browser with transpilers like Babel or Traceur. But...


  • Unit Testing AngularJS Applications

    Over the last few years I’ve written several apps using Angular, but only after a project for work have I had to worry about unit testing them. Much like learning the framework itself, there are a number of techniques you need to pick up to be able to properly unit...


  • jQuery Plugins as Angular Directives

    So you’ve chosen AngularJS as your framework of choice for you next big web project. Good for you! But during the course of development you realize you need to utilize some external libraries. Maybe you need a slider component, and decide to go with the one included with jQuery UI....