Use R & GitHub as a Workout planner

Over the years, I’ve been trying a bunch a different applications and methods to stay motivated to workout. But every time it’s the same: at some point the application is great but limited if you do not pay, or the workouts are repetitive, or simply I can’t get into the habit of using the … Continue reading

Advent of Code 2019-07 with R

Solving Advent of Code 2019-07 with R. [Disclaimer] Obviously, this post contains a big spoiler about Advent of Code, as it gives solutions for solving day 7. Instructions Find the instructions at: https://adventofcode.com/2019/day/7 R solution vec <- scan("input7.txt", numeric(), sep = … Continue reading

Advent of Code 2019-06 with R

Solving Advent of Code 2019-06 with R (and no JavaScript this time). [Disclaimer] Obviously, this post contains a big spoiler about Advent of Code, as it gives solutions for solving day 6. Instructions Find the instructions at: https://adventofcode.com/2019/day/6 R solution Part … Continue reading

Getting started with {golem}

A little blog post about where to look if you want to get started with {golem}, and an invitation to code with us in October. go-what? If you’ve never heard about it before, {golem} is a tool for building production-grade Shiny applications. With {golem}, Shiny developers have a toolkit for … Continue reading

JavaScript cont in R

One thing I like about JavaScript is the const declaration method, which allows you to declare a variable one time, and that variable can’t be reassigned after that. I.e, this piece of code will throw an error: node -e "const x = 12; x = 14" ## [eval]:1 ## const x = 12; x = 14 ## … Continue reading