Day 5 saw me play a little with JavaScript and JQuery. I've been a little leery of adding JQuery to my repertoire because I always worry about learning a way to hide complexity and eventually having to unlearn it because it hid something useful or didn't fully abstract away something …
read moreDay 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 moreDay 3/100: More Scheme
Today was more reading of Structure and Interpretation of Computer Programs. Played a bit with recursion although the "Counting Change" problem is throwing me for a loop right now (no pun intended).
Didn't sit-down proper to work on coding today. I think part of this was some procrastination of other …
read moreDay 2/100: Scheming Guile
Today was a bit off as yesterday we had a car accident (we're fine, car is fine, just a fender bender) and took Pixel to the vet (she's fine). That bled into today with all of the joys of insurance wrangling and other business.
But during the downtime I played …
read moreDay 1/100 Addendum
Came up with another way to do the RPN calculator by attaching functions in a JavaScript "dictionary":
read more// 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 …