All
Articles 129,470Blog Posts 134,196Tech Tutorials 33,459Research Papers 25,160News 18,336
⚡ AI Lessons
Reddit r/programming
⚡ AI Lesson
1w ago
How we rebuilt our notification platform to fanout millions of notifications without timing out
Patreon sends billions of notifications each year. As our largest creator audiences grew, a legacy task responsible for generating millions of recipient-specifi
Reddit r/programming
📣 Digital Marketing & Growth
⚡ AI Lesson
1w ago
How to add alert notifications in your app, the easy(est?) way.
Here's a tiny pattern I keep reusing in my apps: "ping me when X happens" (a job failed or something else is up) without a paid service or an SDK. A Slack Incom
Reddit r/programming
⚡ AI Lesson
1w ago
Unicode's Transliteration Rules Are Turing-Complete
I've been wondering for a while if anything in Unicode could accidentally compute. It turns out that UTS #35 transliteration rules are Turing-complete. I show h
Reddit r/programming
🔐 Cybersecurity
⚡ AI Lesson
1w ago
GitHub's "Verified" commit badge isn't always the trust signal developers think it is
I recently read some interesting research on GitHub's Verified commit workflow. The issue isn't a break in Git, GPG, or commit signing itself, but rather how th
Reddit r/programming
⚡ AI Lesson
1w ago
The need for new words/terms as the antidote to bad software
I'll preface to say I'm not at all a programmer, so pardon me for saying anything stupid The increasing amount of slop is no secret, and but software as a whole
Reddit r/programming
⚡ AI Lesson
1w ago
Experiences with Outlier
How is it going for you all working on projects for this platform? I’ve read that sometimes they ban you without even giving you a heads up, is that true? Also,
Reddit r/programming
☁️ DevOps & Cloud
⚡ AI Lesson
1w ago
Rootless container checkpoint/restore in CRIU without CAP_SYS_ADMIN
I've been working on rootless container checkpoint/restore in CRIU and wrote up some notes on the prototype, major failures, and the path toward the current imp
Reddit r/programming
🔐 Cybersecurity
⚡ AI Lesson
2w ago
Most Secure Way to Store Auth Tokens
Where should your auth token live so an XSS bug can't steal it? Here's how to build auth that survives the crazy non-secure world we live in. submitted by /u/cr
Reddit r/programming
👁️ Computer Vision
⚡ AI Lesson
2w ago
The Quest for Computer Vision in Rust
Everyone does CV in Python/C++. I did it in Rust anyway – and it worked. 🦀 Libraries compared, code breakdown, and why I chose kornia‑rs submitted by /u/darryl
Reddit r/programming
⚡ AI Lesson
2w ago
Nordstjernen Web Browser
Nordstjernen is a web browser, written from scratch in C, focused on supporting the HTML and CSS standards. It runs on Windows, Mac and Linux, with an Android p
Reddit r/programming
☁️ DevOps & Cloud
⚡ AI Lesson
2w ago
eBPF Looks Illegal: running your code inside the Linux kernel
A visual walkthrough of Linux eBPF. It goes through the basic pipeline: write a small C program, compile it with clang, load it with bpf(), get it past the veri
Reddit r/programming
⚡ AI Lesson
2w ago
Addition by subtraction in software design
submitted by /u/Adventurous-Salt8514 [link] [comments]
Reddit r/programming
⚡ AI Lesson
2w ago
Execution Truth vs Execution Authority
Ran into this while working on a coordination primitive for a payments system: locks and consensus (Redis, Raft, etcd) all answer "who can act right now" none a
Reddit r/programming
🏗️ Systems Design & Architecture
⚡ AI Lesson
2w ago
Trust your compiler: Modern C++
submitted by /u/Either_Collection349 [link] [comments]
Reddit r/programming
⚡ AI Lesson
2w ago
Zig: All Package Management Functionality Moved from Compiler to Build System
submitted by /u/Either_Collection349 [link] [comments]
Reddit r/programming
📊 Data Analytics & Business Intelligence
⚡ AI Lesson
2w ago
What ORMs have taught me: just learn SQL
submitted by /u/Either_Collection349 [link] [comments]
Reddit r/programming
☁️ DevOps & Cloud
⚡ AI Lesson
2w ago
Are Your Tests Slowing You Down? • Trisha Gee
In this talk, Trisha identifies issues that slow down developers when writing, running and debugging tests, and look at tools that can help developers with each
Reddit r/programming
☁️ DevOps & Cloud
⚡ AI Lesson
2w ago
How I Built a CLI That Automatically Bridges Jira Status Changes with Git Branching
Most teams still suffer from a classic disconnect: the gap between what a developer is actually doing in their local Git repo and what Jira shows to the rest of
Reddit r/programming
⚡ AI Lesson
2w ago
Open source is a thankless job and I think we've lost the plot on how we treat maintainers
I saw an issue today on a fairly popular project (better-auth, see the link to the issue attached). No repro, no context, just a wall of caps and profanity endi
Reddit r/programming
☁️ DevOps & Cloud
⚡ AI Lesson
2w ago
Beyond Happy Path Engineering: the Network
What happens when network calls stop behaving like clean request/response interactions. Timeouts, retries, duplicate side effects, idempotency, backoff, circuit
Reddit r/programming
⚡ AI Lesson
3w ago
Switching a million lines of code from Java threads to Kotlin coroutines, by rewriting three files
I wrote a technical deep dive about how we migrated one of Denmark's most used Android apps with one million lines of code powered by Java threads, into Kotlin
Reddit r/programming
🏗️ Systems Design & Architecture
⚡ AI Lesson
3w ago
Platforms: Build Abstractions, not Illusions • Gregor Hohpe
Let’s be honest, the tech we use today is amazing, but it can also be complex. It’s only natural that teams want to build platforms that hide this complexity to
Reddit r/programming
⚡ AI Lesson
3w ago
Got tired of greedy apps charging a fortune for SAT prep so i found a solution
Hey guys im 17 and prepping for SAT as an international student. When i started this journey i was pretty confused as to what resources to use. ppl suggested kh
Reddit r/programming
⚡ AI Lesson
3w ago
Resource based slot range splitting in a distributed databases
So for learning purposes I was reading a few research papers on the topic of databases. I read through a few papers like gfs, cockroachdb, dynamodb, raft etc..
DeepCamp AI