A Tactical Approach to Landing a New Job
For me, it felt like standing at the edge of a diving board, overlooking the deep end, in the middle of the night. You more or less know what’s down there, but it sure would be scary to jump in.

For me, it felt like standing at the edge of a diving board, overlooking the deep end, in the middle of the night. You more or less know what’s down there, but it sure would be scary to jump in.
Wow, that title is a mouthful. Here's what it means: * You can use AWS SAM to easily construct at Serverless Application on AWS where the AWS Lambda code is written in Go * You can deploy your app to AWS from the CLI with sam deploy which is nice when you
A while back I created a repo on GitHub that was simply the output of doing sam init and choosing the AWS Quick Start Template for a Hello World Example. From there, I simplified the SAM template.yml file a little, restructured the folder where all my Go code lives,
While working on my chat-cli program, I realized that waiting for a response from Amazon Bedrock could take some time, depending on the nature of your prompt. To offer a better user experience, I looked into the InvokeModelWithResponseStream API method, which allows you to receive the response from Bedrock in
In yesterday's post I talked about building an Amazon Bedrock powered CLI that allowed for an interactive chat. Below is more or less the code I started with to create the command line chat. As you can see, there is an infinite loop nested within another infinite loop. One of