Mahira Technology Private LimitedPromahiratechnology.hashnode.dev·21 minutes agoCloudFormation Template -Slack channel notifications with AWS ChatbotIntroduction In today’s cloud-centric world, effective notification and alerting systems are vital for managing and monitoring resources and applications. AWS provides a powerful service called #AWS Chatbot, which integrates with popular communicatio...Discussslack
gayatri kumargeekee.hashnode.dev·Nov 15, 2024The Call Stack Chronicles: Understanding JavaScript Execution!Think of the call stack in JavaScript as a stack of storybooks. Each function in your code is like a new chapter of the story. When a function starts running, it's like opening a new chapter. But you can only read one chapter at a time. Once you fini...Saanvi Kumar and 1 other are discussing this2 people are discussing thisDiscuss·30 likesWeb Developmentjs
Siddhartha Soxyprogrammer.com·Oct 26, 2024Exploring Memory Management: A .NET Developer's Insights into GolangIntroduction Over a decade ago, as I explored the intricacies of .NET memory allocation, it struck me as intuitive and elegant. The CLR efficiently manages the Managed Heap as a contiguous slice of memory, optimizing garbage collection—a brilliant co...Discuss·218 readsBackendescape analysis
Arpit Singhd-s-a.hashnode.dev·Oct 14, 2024Stack, JavaOverview The stack is a fundamental data structure that operates on the principle of Last In, First Out (LIFO), like Queue but just reverse. This means that the last element added to the stack will be the first one to be removed. Stacks are widely us...DiscussJava
Avez Qureshiavezqureshi14.hashnode.dev·Oct 13, 2024How Javascript WorksEverything in Javascript happens inside an “ Excecution Context “ So whatever is excecuted in javascript is inside the excecution context, you can imagine this excecution context as a container in which entire javascript code is excecuted , Whenever...DiscussJavaScript
Gabriel Rufinoblog.gabrielrufino.com·Oct 13, 2024Implementing a Stack in Rust: A Simple and Versatile Data StructureIn this article, we will walk through the implementation of a basic stack data structure in Rust, leveraging generics to make it versatile for various types. The stack follows a "Last In, First Out" (LIFO) principle, meaning the last added element is...Discuss·91 readsRust
Romjan D. Hossainromjan.hashnode.dev·Oct 12, 2024Stack & Queues in Data StructureIn previous weeks, I discussed Arrays and Linked Lists. Today, I'll dive into two more fundamental data structures: Stacks and Queues. What is a Stack? A Stack is a linear data structure that follows a specific order of operations known as FILO (Fir...Discussarray
Abhishek Kumar Sharmaabhishekcrj.hashnode.dev·Oct 10, 2024Leetcode 921. Minimum Add to Make Parentheses ValidLink to Problem and LeetCode's Solution. Intuition We have to find number of extra brackets that would be required. if (() -> at last 1 bracket would be added => +1 if ((())A -> at we need (A) => +2 brackets if ((( -> we need 3 brackets i.e length...Discussleetcode
Akash De Alwiszencode002.hashnode.dev·Oct 6, 2024Understanding Java Data Structures: Stacks, Queues, Lists, and Trees.Java is a sophisticated programming language and comes with a variety of data structures to make managing data easy. Learning these data structures is important for all computer science oriented students as they are the foundation of algorithms and d...Discuss#javaqueues
Alok Guptaalokgupta.hashnode.dev·Sep 29, 2024Mastering Stack Operations: From Basics to Advanced Algorithms in C++What is a Stack? Stack is a linear data structure that follows the LIFO (Last In First Out) or FILO (First In Last Out) principle. In a LIFO order, the element inserted last comes out first, and in FILO, the element inserted first is the last to be ...Discussstack