Some of my favorite CodePens
Pure CSS Gradient Brackground Animation
I wanted to have a nice background effect without using any javascript.
๐ย https://codepen.io/giseleblair/pen/LYLJymw
calculate time between
I forget exactly why I needed this, but I had a CSV file with start and end dates. And I needed to know how much time had lapsed.
๐ย https://codepen.io/giseleblair/pen/MWzGgVv
substring, indexof
This might sound silly but Iโm always forgetting how to use .substring() so I created this as a quick reference for myself. It only console logs the results
๐ย https://codepen.io/giseleblair/pen/MWmZmJx
html form
In the same spirit of forgetfulness as above, I hate having to reinvent the wheel any time I need a quick form. So this is my go-to.
๐ย https://codepen.io/giseleblair/pen/abJQBxo
javascript filter unique array values
I work with a lot of arrays, so filtering should be second nature to me. But itโs not, so hereโs my placeholder for when I am trying to do the most basic task like getting the unique values of an array.