1. Day 16/100: More Shut the Box

    Played a little more with the functional aspects of Scheme / Racket wit the Shut the Box program:

    #lang racket 
    (define tiles `(1 2 3 4 5 6 7 8 9))
    
    (define (dice)
        (+ 1 (random 6)))
    
    (define (roll) 
        (list (dice) (dice)))
    
    (define dice-roll (roll))
    
    (define sum-roll (apply + dice-roll))
    
    (define tilelist '(4 …
    read more
  2. Day 14/100: Pressing onward

    Today was mostly cleaning up other projects so I didn't get a whole lot of time to do actual coding. However I did get the opportunity to learn more about React / React Native / Redux at our local coding group so that was time well spent. Hoping to put some of …

    read more

links

social