Efficiently Scrubbing Sensitive Information in Python with Regex

gray metal shelf with toilets and towel

Handling sensitive information is a critical aspect of software development, especially when dealing with user data. Whether it’s masking Social Security Numbers (SSNs), email addresses, or URLs, ensuring that this data is appropriately scrubbed is essential for maintaining privacy and security. In this post, I’ll share my experience creating a Python function that efficiently scrubs

Optimizing Flink Kafka Offsets Configuration for Seamless Data Streaming

clear glass pitcher beside coffee glass

Flink’s Kafka integration can be an excellent choice for building near real-time data pipelines. Offsets are at the center of these pipelines, governing exactly where Flink should begin reading data and how it responds to any missing or invalid positions. By combining Flink’s offset initializers with Kafka’s own offset resets, you can create robust and

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