1. Day 1/100 Addendum

    Came up with another way to do the RPN calculator by attaching functions in a JavaScript "dictionary":

    // jshint esversion: 6
    
    function add(p) {
        return p.x + p.y;
    }
    
    function multiply(p) {
        return p.x * p.y;
    }
    
    function subtract(p) {
        return p.x - p.y;
    }
    
    function divide(p) {
        return p.x …
    read more
  2. Regrets

    I try not to dwell on certain decisions that later turn out to be bad moves, but one that keeps popping up is my insistence on putting a hard disk drive on my Atari 800XL computer.

    Let me explain.

    Putting a hard disk drive (HDD) on my Atari 800XL was …

    read more

links

social