1. Day 4/100 No progress

    Today I had a few other things going on, but also had the "you have all of these things that you'd like to do, so let's ruminate on how you're not doing any of them" phase. Hoping to play a little tonight with some more code tonight, but sometimes the …

    read more
  2. 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

links

social