Recent posts

Caching: Redis, Memcached, use in APIs

3 minute read

Caching is a mechanism that helps store copies of data or computational results in a temporary storage location to improve data retrieval speeds and reduce l...

Sets in Python

3 minute read

What are Sets in Python? Python sets are an unordered collection of unique elements. They are a specialized data structure that allows only one occurrence of...

List Comprehensions in Python

3 minute read

What are List Comprehensions in Python? List comprehensions provide a shorthand syntax to generate lists. They are written within square brackets [] and cons...