Travis Aaron WagnerforTAWDEVtawdev.hashnode.net·Jul 21, 2022Identifying and Fixing Memory Leaks in JavaScriptWe've all been there before—you're testing your site or application in your browser and suddenly it becomes unresponsive, slow, or starts crashing. You may not realize it, but this could be due to a memory leak in your JavaScript code. So what are me...Discuss·20 likes·124 readsJavaScript
José HortaforCreative Lightboxjoshhortt.hashnode.net·Dec 5, 2022How to build a bullet-proof study system while learningNo matter what your skill levels are in topics you would like to master, you can change your thinking and change your life. If you’re already an expert, this peep under the mental hood will give you ideas for turbocharging successful learning, includ...Discuss·13 likes·131 readslearning
Mithilesh GaikwadforMithilesh's Blogesymith.hashnode.net·Feb 10, 2023Memory Management in UNIXMemory in an operating system (OS) refers to the physical storage space in a computer that is used to store data, instructions, and information for the programs that are currently running. Memory is an essential component of a computer system, as it ...Discuss·10 likes·97 readsos
Harsh MangeforBit Fetchharshmange.hashnode.net·Apr 23, 2023Process vs Thread: Understanding the Key DifferencesBoth processes and threads are used to achieve parallelism in programs. However, there are several differences between the two. A process is a running program that has its own memory space, system resources, and state. Each process is a separate inst...Discussprocess
Harsh MangeforBit Fetchharshmange.hashnode.net·Apr 21, 2023How Memory Management Works in LinuxLinux uses a demand-paged virtual memory management system, which allows applications to use more memory than is physically available in the system. The virtual memory system is based on the concept of memory pages, which are fixed-size blocks of mem...Discussoperating system
Vimal Saraswatforvimalsaraswat.hashnode.net·Apr 1, 2023CS50 Week 4: Exploring Memory in C ProgrammingWeek 4 Memory Memory is a fundamental concept in computer science and plays a critical role in how programs operate. Understanding how memory works is beneficial for any aspiring programmer who wishes to write efficient and bug-free programs. In this...DiscussCS50cs50
Code BuzzforCode Buzzcodebuzz.hashnode.net·Mar 18, 2023How to Generate and Analyse Java Heap DumpPrerequisites Install and Setup Java - How do I install Java? Steps Write and execute a simple Java program. public class SimpleJavaProgram { public static void main(String[] args) { List<String> list = null; while(tr...Discuss·4 likes·38 readsHow-toJava
Vamsi KrishnaforVamsi's blogvamsieth.hashnode.net·Feb 25, 2023Static memory vs Dynamic memoryIntroduction Computer memory is a critical component of any computer system, and it can be broadly categorized into two types: static memory and dynamic memory. Static memory and dynamic memory differ in terms of their allocation and size, and each t...Discussmemory-management
Mitchell RobinsonforVercidium Enginevercidium.hashnode.net·Feb 10, 2023C# - Improving Array Performance with .NET 7.NET 7 introduced a new static class called NativeMemory, which can be used to allocate unmanaged memory. Normally when working with arrays in C#, the .NET runtime manages the allocation of memory and frees it when it's no longer used, hence the name...Discuss·124 readsC#
Mithilesh GaikwadforMithilesh's Blogesymith.hashnode.net·Feb 10, 2023Memory Management in UNIXMemory in an operating system (OS) refers to the physical storage space in a computer that is used to store data, instructions, and information for the programs that are currently running. Memory is an essential component of a computer system, as it ...Discuss·10 likes·97 readsos
James OkoliefordevJames' Tech Hubdevjames.hashnode.net·Jan 15, 2023Why segmentation fault occurs in C - programming?A segmentation fault, also known as a segfault, is a specific kind of error caused by accessing memory that “does not belong to you.” This can happen in a variety of ways, such as: Accessing memory that has already been freed Attempting to read or ...Discuss·38 readsC
{{ MonaCodeLisa }}for{{ MonaCodeLisa }}monacodelisa.hashnode.net·Dec 27, 2022Install or Upgrade M.2 SSD - Dell Optiplex 7050 microIn this video, I will go over how to install or upgrade an M.2 SSD on a Dell Optiplex 7050 micro. To start, let's examine the previous SSD and the new SSD that I will be using. The previous SSD is a 126GB M.2 SATA SSD, while the new SSD is a 250GB M....Discuss·33 readsHardwarehardware
elcharitas.(eth|lens|crypto|any)forelcharitas.deviamelcharitas.hashnode.net·Dec 7, 2022Rediscovering React.memo 🤯React is a popular and powerful JavaScript library for building user interfaces. However, as applications grow and become more complex, performance can become an issue. One effective way to optimize the performance of React applications is to use the...Discuss·4 likes·42 readsReact