Dec 5, 2025 · 3 min read · Today in the #30DaysOfAWSTerraform challenge, I learned one of the most powerful topics in Terraform — meta-arguments. These special arguments allow Terraform to create multiple resources efficiently, control resource dependencies, and manage how res...
Join discussionSep 15, 2025 · 1 min read · The mood is full of celebration, tradition, and a renewed desire to indulge in meaningful luxury as the festival seasons of Navratri, Dhanteras, Diwali, and the wedding season follow one another. Among the many styles that have been popular this year...
Join discussionAug 24, 2025 · 2 min read · Working with sets in Python is common when handling unique collections of data. However, many learners get confused between the regular set operations (like difference() or intersection()) and their in-place update counterparts (like difference_updat...
Join discussionAug 11, 2025 · 6 min read · Ever noticed how sets can simplify data uniqueness? We often talk about creating and iterating over sets, but the simple act of adding elements is sometimes glossed over. Yet, understanding how the add operation works can save you from silent failure...
Join discussionJul 26, 2025 · 4 min read · Introduction In Python, data structures like lists, tuples, dictionaries, and sets are fundamental for storing and managing data efficiently. Each has unique characteristics suited for different use cases. In this blog, we will explore each structure...
Join discussion
Jul 5, 2025 · 12 min read · 1. Introduction One of the first steps to becoming proficient in JavaScript is to understand its core foundations: data types and data structures. These elements determine how data is stored, accessed, and manipulated throughout your code. In this bl...
Join discussion
Jun 7, 2025 · 5 min read · This blog is generated as a usecase of this other blog(Automating blog creation with own agent vs mcp) that helped me automate the writing of this blog. Alright, buckle up buttercups. Today we're diving into the murky, sometimes terrifying, world of...
Join discussionMay 10, 2025 · 4 min read · In the previous blog, we got to know about Python’s other data structure “Tuples↖︎”. In this blog, we will discuss “Set”. Let’s get started. What is a Python Set? Imagine we’re organizing a party. We make a guest list, but realize… we accidentally wr...
Join discussion
May 9, 2025 · 4 min read · When it comes to handling data collections in JavaScript, arrays and objects have long been our go-to tools.However, as applications have grown more complex, JavaScript has introduced two specialized data structures: Maps and Sets. Both offer powerfu...
Join discussion