Mr Speaker

Yearly Archives: 2014

Bitcoin market visualizer thing

Having a slight slither of skin in the Bitcoin game, I decided it would be prudent to more closely monitor my investments. There’s some fantastic tools for this: Bitcoin Wisdom and Trading View and Co. But they all show a single view, designed to be viewed in a browser tab. I needed something that would […]

Spam, my friend.

Hi there could I allusion some of the perceptiveness from this participant if I minister to a relation help to your site? I just deleted 18,311 pending comments that had been submitted to this blog. 99.99% were spam, but 0.01% were real comments from real people, so I had to vet them one at a […]

One-line array wrap

I like this lil’ one-liner for wrapping around an array forward, or backwards. Given an array, with a current index, you want to move either to the next item, or the previous one. Here’s the setup: var a = [“alice”, “bob”, “charlie”], current = 0; // start with “alice”, direction = Math.random() < 0.5 ? […]