Recent Posts

Build a simple calculator

2 minute read

The following is my solution to a coding challenge I’ve come across. I’ve implemented it in JavaScript since that is the language I am most comfortable with...

Alternatives to Zoom

1 minute read

Over the past few weeks businesses and people have been scrambling to adjust to a work from home way of life. People went searching for ways to communicate ...

How I Manage My ZSH Plugins

1 minute read

I am a big fan of zsh, so much so that part of my setup script contains instructions to install it and set it as the default shell.

Filtering unique values in an array

less than 1 minute read

Here is a quick and easy way to filter all unique values from an array using the Array.filter and Array.indexOf methods.