HHashinharshitdevio.hashnode.dev·8h ago · 5 min readUNIX File DescriptorsImagine you are visiting your favourite museum, the one you've waited your whole life to visit. But at the entry point of the museum just before entering you need to submit all of your stuff like your00
GMGian Michele Pasinelliindevtools-embedded.hashnode.dev·Jun 25 · 6 min readCalcDocs Gets Even Better: Interactive Tolerance Propagation in the Distribution Webview in VS CodeCalcDocs introduces an updated distribution-based uncertainty propagation engine integrated directly into its VS Code webview. The goal is to support engineers working with formulas and derived quanti00
GLGabriel Le Rouxingabrielleroux.hashnode.dev·Jun 23 · 6 min readI Replaced Every Polling Hangfire Job With RabbitMQ (And What I'd Warn You About)Hangfire is one of those libraries that makes you look smart for almost no effort. Drop in a NuGet package, point it at the database you already have, get a dashboard for free. For a single .NET servi00
SSSarvesh Santinbitstosystems.hashnode.dev·Jun 15 · 7 min readBlinking an LED using Timer Interrupt CTC Method | AVR Bare Metal #4In the previous articles, we used Timer1 of the ATmega328P to generate delays for blinking the onboard LED. Till now we have explored two approaches. The first was the Polling Method, where the CPU co00
KJKausthubh J Raoinkausthubh.hashnode.dev·Jun 9 · 8 min readDon't vibe-code, embrace learning primitivesDisclaimer These are all the things i am still currently learning and exploring, Although i am sure most of the things addressed here are true, I am bound to make mistakes, that's why having a communi00
SSSarvesh Santinbitstosystems.hashnode.dev·Jun 4 · 9 min readBlinking an LED using Timer Interrupt Method | AVR Bare Metal #3In the previous article, I wrote and flashed my first bare metal AVR program without using the Arduino IDE. We blinked the onboard LED of the Arduino UNO using AVR GPIO and Timer1. I mentioned earlier00
VVoidinvoiddev.hashnode.dev·Jun 2 · 3 min readBuilding Arc: A Programming Language Written in C After One Year of Learning to CodeA year ago, I started learning programming. Like many beginners, I began by building small projects, experimenting with different technologies, and trying to understand how software actually works. Ev20
SSSarvesh Santinbitstosystems.hashnode.dev·May 25 · 13 min readBlinking an LED using Timer Polling Method | AVR Bare Metal #2In the previous article, I set up the AVR toolchain on Linux. Now it’s finally time to write and flash the first bare metal AVR program without using the Arduino IDE. Blinking a LED on microcontroller00
SSSarvesh Santinbitstosystems.hashnode.dev·May 19 · 4 min readFrom Arduino IDE to AVR GCC | AVR Bare Metal #1Introduction It has been a while since I started playing around with microcontrollers. My journey began with the Arduino UNO and programming it using the Arduino IDE. Later, I spent some time learning00
LWLim Woojaeinjaylog.hashnode.dev·May 18 · 8 min read[CS fundamentals] Linked List Creation & Insertion explained in C. Introduction In this article, we will look at fundamentals of linked lists. Linked list is a really powerful data structure especially when you deal with insertion and deletion. Imagine an array with 00