Unlocking Markdown Metadata with TypeScript

gray assorted-letter jewelries in brown wooden organizer boxes

Markdown files are a staple in the world of documentation, blogging, and static site generation. They offer a simple and readable format for content, but sometimes we need more than just plain text. Metadata, often called front matter, allows us to store additional information at the top of our markdown files. This metadata can include

Building a Cross-Platform CLI Tool in TypeScript

As a developer, creating command-line interface (CLI) tools can greatly enhance productivity and automate repetitive tasks. With TypeScript’s robust type system and modern JavaScript features, we can build reliable and maintainable CLI tools. In this guide, I’ll walk you through the process of building a cross-platform CLI tool in TypeScript and compiling it into binaries

Building a Custom JSON Editor in React with and without react-json-view

white muffin tray on top of white ceramic mug

Introduction As a developer, there are times when you need to allow users to edit JSON data directly within your React applications. While libraries like react-json-view offer a quick and powerful solution, sometimes you might want to implement a custom editor to better fit your application’s needs. In this blog post, I’ll walk you through

Building a Form Validation System with Fluent UI and Zod in TypeScript

A bunch of water lilies floating on top of a body of water

Form validation is a critical aspect of web development, ensuring that user inputs are accurate and meet the required criteria before submission. Effective form validation enhances user experience by providing immediate feedback and preventing errors. In this blog post, we’ll explore how to implement form validation in a React application using Fluent UI components and

How to Force a Complete Rebuild in Docker Compose, Including Anonymous Volumes

a tug boat pulling a large container ship

If you’ve worked with Docker Compose for any length of time, you’ve likely run into a situation where you need to completely rebuild your containers. Whether it’s due to configuration changes, updates to your dependencies, or just ensuring a clean environment, sometimes a simple docker-compose up –build isn’t enough. One common issue that can plague

Simplifying Database Migrations with Docker, Flyway, and PostgreSQL

white cup with saucer

Introduction In modern software development, managing database migrations can be a complex task. Ensuring that your database schema is synchronized across different environments, such as development, testing, and production, is crucial for the stability and reliability of your application. One effective way to handle this challenge is by using Flyway, a robust database migration tool,