Yuvraj Singh JadonforYuvraj's CS Blogyuvraajsj18.hashnode.net·Sep 12, 2020What Happens When You Run a Computer Program?Introduction How do you run a computer program? You may double click the icon. Or You may run it through a terminal if you happened to be a programmer. In both cases the Operating System launches the program after performing some operations and h...Tapas Adhikary and 4 others are discussing this5 people are discussing thisDiscuss·82 likes·700 readsoperating system
KishoreforKishore's Blogjustinkishore.hashnode.net·Nov 21, 2020FeaturedUnderstanding Processes, Threads and CPU CoresHello, everyone 👋 In this article you will read about Processes, Threads, CPU Cores and how these are related. What is a Process? A set of instruction given to Computer to perform a task is called Computer Program. When this program is executed, Ope...Discuss·76 likes·2.9K readscpu
Rafik NaccacheforTech Novelsturbopape.hashnode.net·Aug 25, 2020Generate, Monitor and Throttle CPU Load in GoThe Rise of Nowhere Man I originally wanted to write a Go vs. Rust vs. Python piece, shouted-out about it on Linkedin - But then saw in comments - and rightfully so - that there was already some prose dealing about it on the internets. I thought as I...Discuss·42 likes·2.3K readsGo Language
Heretechalforheretechal.hashnode.net·Feb 12, 2023The RISC-V Files - Part 2: Digging DeeperA look at the ISA As before, please note that I am not a RISC-V expert. This information has been gleaned from multiple sources and where possible I'll link to the original documents. The RISC-V ISA was designed to be as modular as possible so that m...Discuss·107 readsriscv
MITHIN DEVforDATA CANDIESmithin-edu.hashnode.net·Jan 8, 2023MULTIPLEXER IN DIGITAL LOGIC? It's Easy If You Do It Smart🟢What is Multiplexing? 🔹Multiplexing means many to one. 🔹The technique of mixing one or more signals and broadcasting them on a single channel is known as multiplexing. In analogue communication systems, a communication channel is a limited resour...Discuss·1 like·34 reads#multiplexing
ABDULLAH HASSANfortechdoctor.hashnode.net·Dec 27, 2022CPU Scheduling Algorithm in OsThere are two types of CPU Scheduling algorithms 1: preemptive These types of algorithms are used for running multi processes at the same time. means these algorithms are used in context switching. if you are not familiar with context switching, don'...Discuss·37 readsFirst come first serve
Prakash Nath JhaforTechBinprakashjha.hashnode.net·Nov 26, 2022CPU Unit in KubernetesIn this article, we are going to discuss the CPU unit that is used in Kubernetes. Following is the example of adding CPU resource requests and limits in a typical Kubernetes deployment. resources: requests: cpu: "250m" limits:...Discuss·1 like·27 readsKubernetesKubernetes
Jatin RawatforThe Dev guyjatinrawat.hashnode.net·Oct 4, 2022Starvation and Aging in Operating SystemStarvation: It happens when a low priority task ready to enter CPU is unable to get the CPU time for execution and remains in the queue. 127->low priority 0->high priority Generally we take 127 as low priority and 0 as high priority in Operating Syst...Discuss·1 like·38 readsoperating system
Sonia Manoubiforcrunchcrunchcrunchcrunch.hashnode.net·Sep 16, 2022Simple explanation : what is the difference between Intel , AMD & ARM processors ?I've been working for some months on a Macbook M1, and i had to adapt in order to make some applications work on my machine, but i did not know very well the reason about that, so i decided to dig a new subject : Processors Definition What is a Proce...Discuss·82 readsARM
A Alfred RodriguezforAlfred Explainsalfred-explains.hashnode.net·Aug 2, 2022How to choose a CPU for a windows machine?Let's understand CPU as simple as possible... The CPU or processor is the warehouse of billions of transistors, which control the flow of current within them. They communicate to the computer as – Hey machine, I am allowing Ampere through the gat...Discuss·28 readscpu
JusticeforJustice Blogjustice-hub.hashnode.net·Jul 9, 2022Why are there no 128-bit CPUs?Why does it seem like this evolution has stopped there? What do these bits represent? Will there be 128-bit processors in the future? What are bits? In the simplest terms, bits are the basic unit of information in computing. They can be either on or...Discuss·10 likes·29 readsprograming
Shuran XuforEmbeddedVilleembeddedville.hashnode.net·Jun 2, 2022A Deep Dive into the CPU Usage Calculation on LinuxIt is undoubtedly to say that insufficient system resources such as storage, memory or CPU can greatly affect an application’s performance, so monitoring these components is a must for any high-performing yet resource-constraint systems. Unlike disk ...Discuss·7 likes·97 readsLinux
hari hara sankarforhari's bloghariii.hashnode.net·May 8, 2022CPU scheduling simulation using PygameIntroduction Pygame is a python gaming library used to make simple 2D games, but I have used this library to create a simulation of CPU scheduling algorithms. If you are new to pygame read the basics here. CPU scheduling CPU Scheduling is a proce...Discuss·35 readsPython 3