18 stories tagged with #computerscience, in publish-time order across the WeSearch catalog. Tag pages update as new stories ingest.
⌘ RSS feed for this tag → or search "Computerscience"
What Happens Before Your C Program Reaches the CPU?
Most developers know how to write C code. Far fewer know what actually happens after they press...…
My Journey Through Hackathons (~₹4L)
I started participating in hackathons during my first year of college. At that time, I had very...…
Hello, Array: malloc, free and Manual Bookkeeping
Post 1 of the Dynamic Arrays in C series · Full source code The Problem No One Starts...…
Road to Senior #2: How Computers Think in Numbers
⏱️ Reading time: 7-9 minutes 🎯 Difficulty: Beginner - Intermediate 📂 Themes: Computer Science,...…
Edge Computing
Edge computing is simply localized data processing. But is it still edge computing if it is not...…
The Hidden Side of AI Nobody Talks About...
At first I thought Artificial Intelligence was mainly about networks and training models.. After...…
Comunicación y sincronización entre procesos distribuidos
La comunicación y sincronización entre procesos distribuidos es uno de los aspectos más complejos e...…
What Are Buffers, Really?
Buffers are temporary memory spaces used to hold data while it is being moved from one place to...…
Fractal Time Oriented Programming
Everything is an Instanton (a localized event). Instantons "exchange" Solitons (causal...…
Building SQLite from Scratch: 740 Lines of C++23 to Understand Every Byte of a .db File
You fire up a MySQL client, connect to port 3306, send off your SQL, and the server parses,...…
Visual Guide to TCP at the Transport Layer
I built a detailed visual diagrams for the Transmission Control Protocol (TCP) — one of the core...…
Difference Between StackOverflowError and OutOfMemoryError in Java
StackOverflowError occurs when stack memory is exhausted due to excessive method calls, typically...…
Go Garbage Collection: Tri-Color Mark & Sweep, Write Barriers & STW Optimization
Garbage collection is one of Go's most misunderstood subsystems. It's often blamed for latency...…
Python Object Model: How CPython Represents Everything as an Object
In object-oriented theory, "class" and "object" are two fundamental concepts. In Python, both exist...…
Python list Internals: How Dynamic Arrays Work Under the Hood
A Python list is a capacity-adaptive linear container backed by a dynamic array. This design gives...…
The Piece Table - the Unsung Hero of Your Text Editor
If you were to write a text editor, how would you store an open file in memory?…
Time Complexity & Big-O Notation Explained Simply
Handling 10 inputs is easy. Handling 10 lakh inputs is where real skill shows. That's what time...…
Why Your Computer Reads Numbers Backwards: Byte Order Explained
What is Byte Order? Before understanding byte order, we need to understand one thing: A byte = 8...…