Typecasting form fields in Ember
How to make sure you don't accidentally convert everything to strings when building forms in Ember.js. Spoilers: use a two-way computed property macro.
Alisdair McDiarmid
How to make sure you don't accidentally convert everything to strings when building forms in Ember.js. Spoilers: use a two-way computed property macro.
Flexbox is powerful and sophisticated, but my favourite use of it is really simple. Align things easily with this pattern.
One of my favourite new features in Ember 1.13 is closure actions. Actions are now normal JavaScript functions, so they can return a value. This is useful!
How I deploy using Linode and nginx, production data and performance problems, and thinking about lessons learned.
How to use ember-simple-auth and torii with a custom authenticator to securely establish a Slack API token.
UI design is impossible to get right first time. So I built a rough implementation, and refined it until it worked well.
Using Mirage to build an Ember test-first, creating a custom Ember Data adapter and serializer for Slack's API, and a rant about TDD.
How I started building an Ember app to display a time zone board for my Slack friends. Research, prototyping, and next steps.
How to test your Node modules with the built-in assert module, for easier to read tests and fun times.
How to fully integration test your Ember components in isolation from the rest of your app. Way better than unit testing.
Working remotely can be difficult. I've learned lessons about the importance of network connectivity, using simple tools, and over-communication.
ARM instructions use 12 bits to encode a 32-bit immediate value, using a 4-bit rotate and 8-bit constant. This is a great idea.
A bookmarklet which removes fixed-position elements from a page.
Should software engineers use advanced techniques or algorithms, or stick to the basics? It is our duty to share what we've learned through our code.
Processing tree-structured data using functional programming in CoffeeScript. A detailed explanation and translation of Tom Moertel's original Haskell.
Serialised columns in Ruby on Rails sometimes fail to load, and remain as YAML strings. This article explains how, why, and what you can do about it.
How to define the Ruby hash default value. Allows you to write cleaner, more confident Ruby code. Ideal when working with unstructured data.
ActiveRecord collections seem to be arrays, but they're not! This article explains the invisible proxy pattern which makes this possible.
Parsing JSON in C using the simple jsmn library, ideal for small embedded systems. Includes free sample code and explains how it works.
Tutorial with free sample code explaining how to use the built-in UART of the Dresden Elektronik RCB128RFA1 microcontroller board for serial communications.