Security in modern software development is no longer just a final checklist before deployment—it’s a continuous process that spans from design to delivery. At AWS re:Invent 2025, Amazon introduced one of its most impactful security innovations to date: AWS Security… Read More ›
Tutorials
AWS Lambda + Rust: Officially Supported and Ready for Production 🚀
On 14 November 2025, AWS announced that Rust support in AWS Lambda is now Generally Available (GA), graduating from its previous “experimental” status to a fully supported runtime for production workloads, backed by AWS Support and the Lambda SLA. If… Read More ›
🌿 What Is Amazon Greengrass and Why It’s a Game-Changer for Edge Computing
In today’s connected world, billions of devices generate vast amounts of data every second — from industrial sensors to smart home devices. Sending all that data to the cloud for processing can be slow, expensive, and sometimes impractical. This is… Read More ›
Use Projen to deploy custom packages to AWS CDK
Projen is a tool that streamlines managing AWS CDK projects by automating tasks like file generation and dependency management. It allows developers to focus on infrastructure code instead of project setup. By following specific commands, users can create projects, configure repositories, and publish packages to npm and GitHub.
Creating a Lambda Warmer with AWS CDK and TypeScript
In this guide, we’ll create an AWS Lambda function that acts as a “warmer” to keep another Lambda function warm, reducing cold start times. We’ll use the AWS Cloud Development Kit (CDK) and TypeScript. Prerequisites Ensure you have the following… Read More ›
The Go Series – Introduction
What is Go and why is it popular? Go (also known as Golang) is a programming language developed by Google in 2009. It is a statically-typed, compiled language designed for building scalable and efficient systems. Go has gained popularity in… Read More ›
Go Lang – Introduction
Go is a programming language created by Google in 2009. It is a statically-typed language with syntax similar to C, but it also has some features of functional programming languages. Go is designed to be simple, efficient, and scalable, and… Read More ›
AWS CDK – API Gateway Custom Domain
When creating the Simple Web Service in the CDK we got an output that was API Gateways unique random domain. This is not a useful domain for a production system as we often want to place the API’s behind a… Read More ›
The Simple Web Service in AWS CDK
The Simple Web Service is one of the best simple patterns that you will often see in a serverless architecture. Coined by Jeremy Daly – https://www.jeremydaly.com/serverless-microservice-patterns-for-aws/#simplewebservice this stack is a great one to build for a fundamental web application. The… Read More ›
Catch DynamoDB TTL Events
DynamoDB, AWS’s fast, flexible NoSQL serverless database service that provides single-digit millisecond performance at any scale, has many useful built-in features. In this article we are going to look at how the Time to Live (TTL) feature can be enable… Read More ›