Ram Bhardwajrambhardwaj.hashnode.dev·18 hours agoHow memory is stored in Stack and Heap. The in-depth discussion to tackle all Questions on Stack and Heap memory!Q1. All the Variables are stored in which memory, Stack or Heap? Answer: Stack. Yes all the variables are stored in stack.But there is a catch - All the variables are stored in stack but the data what the variables carry or refers to doesn’t necessar...36 likes·67 reads#stackvsheap
Ram Bhardwajrambhardwaj.hashnode.dev·18 hours agoHow memory is stored in Stack and Heap. The in-depth discussion to tackle all Questions on Stack and Heap memory!Q1. All the Variables are stored in which memory, Stack or Heap? Answer: Stack. Yes all the variables are stored in stack.But there is a catch - All the variables are stored in stack but the data what the variables carry or refers to doesn’t necessar...36 likes·67 reads#stackvsheap
syncfusionsyncfusion-blogs.hashnode.dev·Jan 24, 2025Mastering JavaScript Memory Leaks: Detect, Fix, and PreventTL;DR: JavaScript memory leaks occur when allocated memory is not released after it’s no longer needed, impacting performance and potentially causing crashes. This guide outlines how to identify, fix, and prevent these leaks using various tools and t...app performance
JealousGxblog.jealous.dev·Jan 15, 2025Boost Your Golang Projects with Advanced Debugging Tools and TipsDebugging is a critical skill for any developer, and mastering advanced debugging techniques is especially important when working with complex systems. In Golang, a statically-typed and compiled language known for its efficiency and concurrency, debu...Go Language
Romjan D. Hossainromjan.hashnode.dev·Jan 11, 2025Programmer's Perspective on RAMHey there! It’s been a while since i’ve written an article. Finally allocated some time to spear here :D What is a RAM? So, lets start by talking, whats a RAM? Random-access memory (RAM) is a form of electronic computer memory that can be read and c...ram
Tal Sabagtalsabag.hashnode.dev·Dec 18, 2024Needle in a haystack: How we found and solved a memory leak in our integration frameworkIntroduction Memory leaks are a source of frustration for software engineers. They hide in the depths of complex codebases, manifesting subtly but growing steadily until they disrupt the entire system. This was precisely the situation we faced in our...50 readsMemory Leak
Alberto Aldegherialbyrock87.hashnode.dev·Dec 10, 2024Preventing Memory Leaks in .NET MAUI: Best Practices and StrategiesPremise Memory leaks in .NET MAUI can occur in various ways, with events being a common culprit. This article will focus on memory leaks caused by events, while also highlighting concepts applicable to other scenarios. .NET events in general We all k...1 like·404 reads#dotnet-maui
Akshay Pariharakshayparihar.hashnode.dev·Oct 5, 2024Python's Memory Model (Reference Counting, Garbage Collection, and sys.getrefcount())Introduction: Have you ever wondered why Python seems so good at managing memory?You happily create objects left and right, and somehow, when you’re done with them, they just disappear into the abyss. Well, the secret sauce behind Python’s memory man...Python
Nile Bitsnilebits.hashnode.dev·Sep 16, 2024Top 10 Advanced JavaScript Performance Optimization Techniques and PatternsIn the world of web development today, user experience is mostly determined by performance. A sluggish website or application may cause bounce rates to rise, user annoyance, and harm to search engine results. Adopting sophisticated optimization strat...JavaScript
Prashant Baleprashbale.hashnode.dev·Aug 3, 2024Mastering Android: Essential Tips and Techniques for Memory OptimizationAs Android developer, we strive to build applications that are not only functional but also efficient. One of the key aspects if efficiency in app development is memory optimization. Poor memory management can leadto App crashes, slow performance, an...28 reads2Articles1Week
Siddhant Visputesidblogs.hashnode.dev·Jul 23, 2024Heap wants some space!So recently I wanted to perform a memory analysis on a heap dump of whooping 5GB using Eclipse’s Memory Analyzer Tool (MAT). My Eclipse IDE fainted just by the idea of opening up and parsing this gigantic dump file. One of the option here is to incre...20 likes·56 readsheapspace