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...41 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·366 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...27 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
Raicode.flatmarstheory.com·May 30, 2024Mastering Memory Management in CIn the realm of modern computing, where artificial intelligence (AI) and supercomputers are pushing the boundaries of what's possible, the importance of secure and efficient programming practices cannot be overstated. One foundational aspect that und...32 readsbuffer overflows
Shubham Bankarshubhsbankar.hashnode.dev·May 18, 2024Recursive component in ReactBuilding a Recursive File Tree Component in React In this blog, I will walk you through creating a recursive file tree component in React. This component can be particularly useful for applications that need to display hierarchical data structures, s...React