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...38 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·290 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...2Articles1Week
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
Pierre-Yves Ricaublog.p-y.wtf·May 7, 2024Cutting some Slack, for leaks and gigglesIn this article I run the new LeakCanary toolkit against the Slack Android app. Read on to learn a bunch! A new LeakCanary toolkit In two months, I will give a talk at Droidcon SF: Cutting Edges: universal heap trimming with LeakCanary 3 At Square, ...5 likes·2.4K readsAndroid
Gaurav Goswamigauravgoswami.hashnode.dev·Apr 5, 2024Memory Management In JavaScriptManaging memory manually like we do in C and in some other languages is really painful but in JavaScript we don't have to do that manually that's why JavaScript is a garbage-collected language. In C we can use functions like malloc, free, calloc and ...96 readsJavaScript