Running a Python Script in Docker

brown and red shipping containers

When I first started working with Docker, one of the things I needed to figure out was how to run a Python script efficiently within a container. Docker is a fantastic tool for containerizing applications, and running Python scripts in this environment can simplify dependencies and make your projects more portable. In this post, I’ll

Creating a Responsive CSS Progress Bar with Transparent Effects in React

Blog Post image with progress bar on it

Building components in React is always a rewarding experience, especially when the result is sleek, reusable, and visually impressive. Today, I’ll walk you through creating a progress bar in React that is always 100% wide, with a dynamic background that visually represents progress through a transparent effect on the right. We’ll use CSS and TypeScript

Building a Local Flink Environment with Docker and Submitting Your First Job

Apache Flink is a powerful tool for processing data streams, but setting it up locally can sometimes feel like an uphill task. As someone who appreciates a smooth development workflow, I’ve found that using Docker simplifies the process immensely. In this post, I’ll walk you through setting up Flink locally using Docker Compose, troubleshooting potential

Scanning BLE Advertisements with TypeScript and @abandonware/noble

Bluetooth Low Energy (BLE) has revolutionized how devices communicate wirelessly, enabling lightweight, low-power connectivity. If you’re diving into BLE with Node.js, understanding how to scan BLE advertisements is essential. I recently tackled this challenge using the @abandonware/noble library and TypeScript, and I want to share the process, step by step. What is BLE (Bluetooth Low

Keeping Your .NET App Configuration Fresh with Azure App Configuration

six clear glass mason jars filled with juice on black table

Managing application settings is critical for modern applications, especially when your app needs to adapt dynamically to changes without redeployment. In this blog post, I’ll share how you can use Azure App Configuration in a .NET application to keep your configuration fresh, reliable, and responsive to change. When working with Azure App Configuration, you can