Feb 17 · 6 min read · High order functions are functions which accept a function in its argument or returns an function. Lets discuss an high order function with examples : function name(passed){ name = "Abhinab"; passed(name) } function greet(fullName){ cons...
Join discussion
Jan 11 · 4 min read · Infrastructure as Code (IaC) is a core skill for any DevOps engineer, and Terraform is one of the most widely used tools for this purpose.In this article, I’ll walk through two practical ways to create multiple EC2 instances in AWS using Terraform: ...
Join discussion
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 8, 2025 · 2 min read · I recently worked on an internal time tracking website using React, TypeScript and Next.js. One of the major features I implemented was a weekly email. This email would go out every Monday at start of business to any employees that had missing time f...
SSonu commented
Aug 29, 2025 · 6 min read · Arrays are one of the most important parts of JavaScript. Often, we need to loop through arrays and perform some action — like doubling numbers, filtering values, or adding everything together. JavaScript gives us some very useful methods: forEach()...
Join discussion