22/Jan 2018
2 min. read
I like to automate when I can. Sometimes it is it boring stuff, sometimes it's for the fun of figuring it out. When I first started using hugo I found that having the latest hugo installed on each of my machines was, at times, a tiresum exercise when all I wanted to do was write a post. So, I made a custom docker image and makefile to automate it. If I want to build the latest hugo, I run make hugo.
11/Jan 2018
1 min. read
I have slowly switched myself to primarly using Linux over the last year. One of the things I met early on was Spotify apparently did not catch the keyboard media keys to control music. After some hunting I found an article from the archlinux wiki that gave me a good place to start. To hookup the basics, just place the following into your ~/.xbindkeysrc
# Spotify Keys "dbus-send --print-reply --dest=org.
31/Jul 2017
2 min. read
I recently got switched from VDSL+ to Cable and wanted to see if I was getting consistent speeds. So I setup a script to run hourly and hit up speedtest.net. I recorded the results in CSV and creating a gnuplot script to make a nice graph.
My setup Ubuntu 16.04.2 LTS VM running on byhve FreeNas 11 Wired connection with 1Gbps cabling and switching gear Speedtest-cli wrapped in a script to append to a log file gnuplot to make nice graph My sript was stashed in my home folders ~/bin/speed.
11/Apr 2014
1 min. read
I used to think, "Give it 110%", was logically impossible. That was, until I realized I was applying the statement individually instead of as a whole. The whole is greater than the sum of its parts.
Aristotle Unlike this comic by SMBC, that extra 10% does not come from some external sources. That +10% comes from a team of people cooperating towards the same goal. Next time someone tells you to give it 110%, put your team first.
23/Jan 2014
1 min. read
Like using CoffeeScript and want to publish your NPM modules but write them in CoffeeScript? It is actually really easy to do.
{ . . . "main": "build/index.js" "scripts": { "prepublish": "coffee --bare --compile --output build lib" }, . . . } `prepublish` is run before a `npm package` command. The one above compiles the contents of `./lib` and puts it in `./build`. You will want your package.json main to point to the build directory for module entry.
20/Jan 2014
2 min. read
I see a common mistake with lots of people new to TDD and unit testing in general:
Tests that appear to pass, but really do not. I have seen a few different ways this can happen:
Flat out testing the wrong conditions for passing. Not understanding how the test framework is asserting. Trying to test for too many things in one test, missing the important state for passing. Lazy test, that is written to always pass to get green bar.