Posts
All the articles I've posted.
-
Handling NoneType Errors When Extending Lists in Python
When working with Python, especially with functions that return lists or other iterable objects, you might encounter a TypeError that says something like: TypeError: 'NoneType' object is not iterable
-
Tracking File Changes in S3 Using ETags
When working with AWS S3, tracking changes to files can be essential, especially when versioning is not enabled on the bucket. The ETag associated with each file in S3 can provide a simple way to
-
Working with S3 Object Metadata: Understanding ETags and Last Modified Dates
When working with AWS S3, managing large amounts of data effectively involves understanding key metadata like the ETag and Last Modified date. These properties help track file changes and ensure data
-
Implementing Retries in Python
In many real-world applications, simply handling an error isn't always enough. Sometimes, the failure is temporary, and retrying the operation can help resolve the issue. In this post, we’ll explore
-
Efficiently Listing and Filtering S3 Objects by Date
When working with AWS S3 buckets, it’s common to have a large number of objects stored, and you might need to filter them based on certain criteria like dates. This blog post will guide you on how to
-
Handling Division Errors and Implementing Basic Retry Logic in Python
In Python, error handling is essential for preventing crashes and ensuring smooth execution. One common error that developers encounter is the ZeroDivisionError , which occurs when trying to divide by
-
Handling Split Errors in Azure Data Factory: A Step-by-Step Guide
In Azure Data Factory (ADF), we often use expressions to manipulate strings and extract specific parts of data. One common operation is splitting strings based on a delimiter. However, this can
-
Customizing Legends in Seaborn Boxplots: A Guide
Creating clear and informative visualizations is key to effectively communicating data insights. In this post, we will explore how to customize legends in Seaborn boxplots, ensuring that the labels