Install
C & C++
Systems, embedded, toolchains, and modern C/C++ evolution.
- 8 Tracked terms
- Last 30 days Feed window
What this topic collects on
An article joins this feed when it matches these terms. Each one is also a search of its own.
Related topics
Latest in C & C++
Two Locks on a Green Build: Prompt Hashes and RSS Caps for AI C++ Evals
11+ hour, 35+ min ago (730+ words) A patch landed with every assertion green. The return values matched the golden file. Then a latency dashboard moved: an inner loop that once touched a stack buffer now called std::vector::resize on every request. The eval harness never…...
Installing Fedora 45 on Stratis storage
20+ hour, 3+ min ago (552+ words) The Anaconda installer in Fedora 45 will introduce a new option for storage configuration: Stratis, a modern solution for local storage management. Stratis isn’t a completely new technology, it uses existing tools and technologies like device mapper, LUKS, and XFS and…...
C Programming in 2026: Why the Language Still Matters Today
2+ day, 6+ hour ago (740+ words) C23 introduces new features while older standards remain widely used. Linux kernel development continues relying heavily on C alongside Rust. C may be one of the oldest widely used programming languages, but it remains firmly embedded in modern computing. From operating…...
Unreal C++ Course Chapter 109
3+ day, 3+ hour ago (220+ words) In this chapter we set up the enumerations for the player character's equip state, in my case AEchoCharacter. I declared my enumerations in a separate header file CharacterState.h which can also be used for other states besides equipping items:…...
Web Programming in C++ with WFC
3+ day, 9+ hour ago (654+ words) C++ is one of the most powerful and widely used programming languages in the world. It is well known... Tagged with cpp, httplib, tutorial, webformscore....
Unreal C++ Course Chapter 107
3+ day, 9+ hour ago (22+ words) On doing Chapter 107. Attaching the Sword, I had some interesting bugs/hangups. I was using a... Tagged with gamedev, programming, software....
(d+027) Shader
3+ day, 13+ hour ago (25+ words) 업그레이드 삼각형 한줄한줄 그래픽스 API에 익숙해지고 있다. 코드를 이해하는데 한줄한줄 의미가 너무 커서 코딩을 처음 배우는 듯한 기분이 들곤한다. 새로운... Tagged with devjournal, gamedev, graphics....
A one-number triage tool for C code (and a cheap feedback loop for LLM output)
3+ day, 15+ hour ago (215+ words) C gets hard to trust in three predictable ways: deep nesting, pointers to pointers, and a->b->c chains where nobody null-checks the middle pointer. So I wrote a tiny scorer that squashes that into one number per function: Each factor is…...
Write Safer Programs with std::optional
3+ day, 15+ hour ago (33+ words) <T> Motivation C++ traditionally uses NULL to indicate the absence of a value. If this case isn't handled correctly, programs can crash or exhibit undefined …...
I built a transport-independent foundation for JSON API clients in Perl
4+ day, 4+ hour ago (640+ words) Writing a simple API client is easy. Then the client starts being used in production. Suddenly, it needs to handle: At that point, what started as a small API wrapper often becomes a collection of infrastructure code. I found myself…...