On The Art Of Software Time Estimates

Posted on

‘How long is it going to take?’ Asks the client or the manager. It’s a tough question to answer, especially when you’re still processing all the requirements for the task. A time estimate should be well.. an estimate. It is easy for that estimate to become the deadline. An estimate requires you to make a […]

Read More

Create a HMAC Authorization Header in NodeJS

Posted on

There are a ton of HTTP Authorization methods to use when trying to authenticate against an API. One such is the Hash Message Authentication Code (HMAC) authentication scheme. This method provides a way for the server to cryptographically verify the request by hashing the request itself, and then creating the MAC out of the HTTP […]

Read More

An AWS Code Build spec for your typescript node project

Posted on

AWS Code Build is a great addition to your AWS infrastructure. Today, we are going to focus on one aspect of the software deployment process. Building! Before we dive in, let me provide some context about the architecture and my plan for the CI/CD process. The project behind this post is a node.js express project written […]

Read More