Code Snippets

Optimizing your python code with __slots__?

Dev Tip: Optimizing Data Models in Big Data Workflows with __slots__ In big data and MLOps workflows, you often work with massive datasets where you create millions of objects to represent data ...

View Code

List S3 Buckets

🐍 Multi-Profile S3 Safari! Ever juggled multiple AWS accounts and needed a quick S3 bucket inventory across all of them? This Python script is your guide! πŸ” The Problem When you're working ...

View Code

AWS Secrets Manager

Need to load secrets in your Node.js app without exposing them? Here's how. If you're still storing API keys or database credentials in .env files or hardcoding them into your codebase, it's ti ...

View Code

Check S3 Bucket Existence

πŸš€ Quick Tip Don’t let your deployment blow up because of a missing S3 bucket. This Bash script lets you check if a bucket exists before anything fails clean and simple. πŸ” The Problem If ...

View Code