I am a professional and freelance developer. I write about things that I just learned and provide status updates on my side projects.
Subscribe to my newsletter and never miss my upcoming articles
Do you need to install a specific version of node on linux? That's usually one of my first steps. Along with installing chrome and visual studio code. Installing Node Version Manager The easiest way I've found to get node installed is with Node Versi...
Did you know there's a simple way to create mock responses for AWS AppSync queries? To accomplish this you just need to create the query, a special data source, and a resolver. Define the Query To keep things simple, we're going to be prototyping the...
How do you handle the awkward transition phase when you're replacing a query in the backend, but the frontend hasn't been updated to use the new query? The answer is @deprecated! Well, the answer isn't deprecated itself 🤦. You can annotate the old q...
https://anchor.fm/just-write-apps/episodes/Getting-Sidetracked-eu95jv How do I stop my side-projects from getting sidetracked? I've started so many projects over the years with an honest intent on building a product, but very few have ever ended up f...
If you're like me you create scripts to automate things all the time. While you can do quite a bit withbash, it's just a lot easier to use your primary language--in this case TypeScript. With just a few tricks you can start writing your scripts in Ty...
Do you hate dealing with tsconfig files? My problem is that I just don't spend enough time with them to learn all the settings. I create the config once for a new project, usually leaving most things as default, then never touch it again. Fortunately...