Blogs

Lists I Create

Todo List Let’s start out with the classic todo list. I create one of these just about every day with things I want to accomplish for that day. Anything that wasn’t completed the day(s) before is evaluated and, if still important, carried over and placed at the top of a new list, and if …

Troubleshooting Network …

Sometimes we need to retry prior network requests to troubleshoot issues. Sometimes we need to modify the request, e.g. remove or update cookies, payload values, etc. Chrome’s Developer Tools can give us the same network request in cURL form that we can then modify and paste into a terminal to …

Merge Multiple Nested …

If you have a need to merge multiple simple or complex JavaScript objects together into a single object, overriding or extending previous values, this helper function is handy. I often use multiple different objects to manage things like the configuration values for my applications. I might have one …