Markdown: from simple text to rich documentation

Markdown (MD) has established itself as a go-to choice for creating readable and versatile text documents. Its lightweight syntax and plain-text nature make it perfect for various uses, from writing blog posts to crafting technical documentation. This article delves into the world of MD, equipping you with its fundamentals and […]

Read More…

RDS and DynamoDB: AWS Databases

Cloud AWS databases - RDS vs DDB

Two of the most popular database options are RDS (Relational Database Service) and DynamoDB. When building applications on AWS, choosing the right database is a critical decision that can significantly impact your application’s performance, scalability, and cost. This article will explore the key differences between these two services and provide […]

Read More…

AWS CI/CD pipelines: CodePipeline, CodeBuild, and CodeDeploy

Cloud AWS CI/CD pipelines - CodePipeline, CodeBuild, CodeDeploy

In today’s fast-paced development environment, continuous integration and continuous delivery (CI/CD) have become essential practices for delivering software quickly and reliably. Amazon Web Services (AWS) provides a robust suite of services to automate your CI/CD pipelines, including CodePipeline, CodeBuild, and CodeDeploy. In this article, we’ll delve into these services and […]

Read More…

Inserting test data into DynamoDB with NodeJS and TypeScript

Inserting test data into DynamoDB

In this blog post, we’ll guide you through inserting test data into a local DynamoDB instance using NodeJS and TypeScript. We’ll cover the process, including creating a local DynamoDB instance (pre-requisite), and then demonstrate how to load your CSV data using Node.js and TypeScript code. DynamoDB, a fully managed NoSQL […]

Read More…