Software engineer. Living and working out of the West coast. Passionate about all things tech, but naturally inclined toward the front-end. I love the intersection of maths (in most of its many forms) and code.
Development interests
const isOliverProductive = (caffeineMg = 0) => (+caffeineMg <= 200)
? new Error(`Oliver remains in half-wake state. Provide at least ${201 - +caffeineMg} more mg of caffeine!`) : (+caffeineMg > 400)
? new Error('Oliver\'s having a caffeine headache!')
: true;