is-really-empty 🌌

A Small library to tell if the passed value is really empty. Prerequisites This library uses for in and for of so at least node 4.x is required. What “empty” means Marriam-Webster definition of empty Lacking reality, substance, meaning, or value. Marked by the absence of human life, activity, or comfort A value proves to be “empty” when we can determine it contains nothing. An object or array that has been instantiated (even with a length value being set) if no fields have been populated, then it proves to be empty....

May 10, 2018
lil peep hellboy album cover

Music in 2017

It wasn’t until the very beginning of 2017 when I found out about lil peep (the girls music video to be exact). This revival of music I listened to in High School like samples from Funeral for a Friend, Senses Fail, and Brand New. Thanks to producers like nedarb and lederrick, its made this music additive to listen to, a mix of reminding how good music was a few years ago and also seeing what it has become now....

January 24, 2018

Lightbox from scratch

You don’t need jquery or lightbox to create nice images you can click and see larger versions with nice backgrounds. First we need to add an event lister for every image. We can do this a number of ways but adding it to every image with a specific class is a good way to not think about it after implementing. Array.prototype.forEach.call(document.getElementsByClassName('js-lightbox'), elm => elm.addEventListener('click', lightboxImage)) Then we have to make the mask....

February 1, 2017