Lessons Learned From Conducting Junior Software Engineer Interviews for Small CompaniesAug 18, 2022·6 min read
Create Beautiful Banners and Other Graphics Easily Using HTML and CSS - ExamplesIntroduction I previously posted about using HTML and CSS to create banner images on the fly without the use of any tooling other than chrome. Create Beautiful Banners and Other Graphics Easily Using HTML and CSS It seemed to garner a fair amount of ...Sep 5, 2022·6 min read
Use setTimeout in React to Defer LogicIntroduction setTimeout is a very commonly used JavaScript function. It is very useful for many things, such as timing how long an alert should show, or debouncing a button to prevent double clicks. However when using higher level rendering framework...Aug 14, 2022·3 min read
Tailwind CSS Tips to Make Your Life EasierIntroduction Tailwind CSS has won me over, and now if I can get away with using it, I will. However with great power comes great responsibility, and with Tailwind, that mean writing classes in a way that gets you what you need, with as few classes as...Aug 12, 2022·5 min read
Create Beautiful Banners and Other Graphics Easily Using HTML and CSSIf you are a web developer, chrome is all you need to create great graphics for your contentAug 4, 2022·3 min read
Create a Reusable Button Component in ReactIntroduction Following good practices allows you to write better code, React is no exception, and after writing button components for every project I have worked on, this is, in my opinion, the best approach for a reusable button component. NOTE: Th...Aug 3, 2022·6 min read