I recently purchased a new Macbook Pro 14in. While it has been a great machine for my work, I have encountered this very annoying issue…
Read More
I learned you can create class instances pretty easily with class expressions. As you might have already learned from my other post on self…
I recently started using the GitHub API for a project I'm working on. My goal was to have users fill out a form and when the form is…
If you want to stream videos in your Microsoft OneDrive or SharePoint, you can use the Microsoft Graph API to get the streaming urls. I…
Static site generators, such as Gatsby, Hugo, Nuxt, and more make it really easy to develop web applications. However, it can be hard to use…
Sometimes you may need to mock a function such that it returns different values after x number of calls. Using the mockImplementationOnce…
As you may already know, since iOS 14 , with the Shortcuts app on the iPhone, you can run scripts over SSH on a server . However, due to…
In the Jest test framework, you are probably familiar with using the test() function for running a test. You may have also seen tests that…
I was recently using Codespaces for a project and found myself having to repeat a command in the terminal over and over again. It was a pain…
If you haven't noticed, it seems every application nowadays is asking users for their phone numbers, regardless if it is actually necessary…
In iOS 14 , Apple added the Shortcuts app which allows you to automate tasks on your iPhone. To create a Shortcut you put together Actions…
In this tutorial, I will go through how to deploy a Fluid Framework application. Once you complete this, you will have a working Fluid…
In the last tutorial we built the initial version of our Holiday Blog. However, it lacks a core feature that a lot of blogs have, images. In…
Overview In this tutorial we will work together on using GatsbyJs to build a blog about different Holidays. This tutorial is intended to…
I was recently on the CodeSandbox site and one of the templates I saw was for something called Blitz.js . It was the first time I heard of…
In the last post we learned what Immediately-Invoked Function Expressions (IIFE) are, and in this post I will touch on their use cases and…
I was recently checking out a presentation online and saw the term "self invoking functions". I heard it many times but never really took…
Previously I had worked on a list component that needed to change the style of a list item once a user clicks on it. In this post I will…
A while back I was working on a feature for a project I built to display a countdown. I wanted the countdown to display the number of days…
React hooks are useful as they allow you to encapsulate and reuse stateful logic in your components. setTimeout is a useful JavaScript…
Background As I mentioned in my previous post, What is this blog????? , this site is a total redesign of the previous version. I decided to…