Originally published at https://allcoderthings.com/en/article/csharp-collections-list-dictionary-queue-stack In C#, collections are used to store multiple values dynamically and process them efficiently. Arrays have fixed size, but collections can grow and shrink as needed. This article covers List<T>, Dictionary<TKey,TValue> (and KeyValuePair<,>), SortedList<TKey,TValue>, Queue<T>, Stack<T>, Hash
Cuando una aplicación necesita leer un archivo, escribir en una conexión TCP o esperar datos de un disco, el kernel de Linux ofrece tradicionalmente dos caminos: bloquear el proceso hasta que la operación termine, o usar interfaces como epoll y Linux AIO para manejar múltiples operaciones concurrentes. Durante casi tres décadas, esas fueron las opciones dominantes. Pero desde la versión 5.1 del ke
In a previous post, Automatic Enum Stringification in C via Build-Time Code Generation, I described how to extract enum labels and values directly from DWARF debug information at build time. enum color { C_NONE, C_RED, C_YELLOW, C_GREEN } ; // Request enum descriptor for e_color ENUM_DESCRIBE(e_color, enum color) void foo(enum color c) { printf("Color=%s(%d)\n", ENUM_LABEL_OF(e_color, c), c)
When you first learn to write software, you are building in a utopia. On your laptop, the database is always online. The network has zero latency. The third-party API always responds in exactly 12 milliseconds. You write a function, you hit run, and the data flows perfectly from point A to point B. In the industry, we call this the "Happy Path." It is the magical scenario in which every piece of t
Stop Using Hacks for Transparent Cutouts Imagine this scenario: your designer hands you a Figma file where a beautiful hero image fades into the background via a complex grunge texture or a smooth radial gradient. Or better yet, a scrollable list that subtly vanishes at the bottom to hint at more content. Ten years ago, we would probably have reached for a glass of whiskey and started hacking toge
Comments
Today I started learning Python, and I explored some fundamental concepts that helped me understand how Python actually works behind the scenes. Python is a high-level, interpreted programming language. Being high-level means it is easy to read and write, as it is closer to human language and abstracts away hardware complexity. This makes it very different from low-level languages like assembly or
I wanted to figure out how people build payment systems without losing everyone's money. It turns out, my first attempt was a great way to lose a lot of it. I started with what felt like a simple Go service. One endpoint, one database table, and a third-party provider to handle the actual charging. The plan was straightforward: Decode the request. Call the provider to charge the user. Save the res