RSS Parrot

BETA

🦜 Standard C++ | Articles & Books

@isocpp.org.blog@rss-parrot.net

I'm an automated parrot! I relay a website's RSS feed to the Fediverse. Every time a new post appears in the feed, I toot about it. Follow me to get all new posts in your Mastodon timeline! Brought to you by the RSS Parrot.

---

Your feed and you don't want it here? Just e-mail the birb.

Site URL: isocpp.org/blog

Feed URL: isocpp.org/blog/rss/category/articles-books

Posts: 10

Followers: 1

Concurrency Flavours -- Lucian Radu Teodorescu

Published: February 4, 2026 23:03

Concurrency has many different approaches. Lucian Radu Teodorescu clarifies terms, showing how different approaches solve different problems. Concurrency Flavours by Lucian Radu Teodorescu From the article: Most engineers today use…

Exclusive state access, I -- Andrzej Krzemieński

Published: January 27, 2026 22:55

Value semantics is a way of structuring programs around what values mean, not where objects live, and C++ is explicitly designed to support this model. In a value-semantic design, objects are merely vehicles for communicating state, while identity,…

Singleton done right in C++ -- Andreas Fertig

Published: January 21, 2026 18:21

In today's post, I like to touch on a controversial topic: singletons. While I think it is best to have a codebase without singletons, the real-world shows me that singletons are often part of codebases. Singleton done right in C++ by Andreas…

2025, A Year of Conferences -- Sandor Dargo

Published: January 9, 2026 17:33

Conferences are never just about the talks — they’re about time, travel, tradeoffs, and the people you meet along the way. After a year of attending several C++ events across formats and cities, this post is a personal look at how different conferences…

A Guest Editorial -- Quasar Chunawala, Frances Buontempo

Published: January 7, 2026 17:29

C++20 introduced coroutines. Quasar Chunawala, our guest editor for this edition, gives an overview. A Guest Editorial by Quasar Chunawala, Frances Buontempo From the article: You’ve likely heard about this new C++20 feature, coroutines. I…

Time in C++: std::chrono::high_resolution_clock: Myths and Realities -- Sandor Dargo

Published: January 2, 2026 17:22

std::chrono::high_resolution_clock sounds like the obvious choice when you care about precision, but its name hides some important caveats. In this article, we’ll demystify what “high resolution” really means in <chrono>, why this clock is often just an…

Coroutines – A Deep Dive -- Quasar Chunawala

Published: December 30, 2025 17:18

Coroutines are powerful but require some boilerplate code. Quasar Chunawala explains what you need to implement to get coroutines working. Coroutines – A Deep Dive by Quasar Chunawala From the article: The following code is the simplest…

Concurrency Flavours -- Lucian Radu Teodorescu

Published: December 26, 2025 17:15

Concurrency has many different approaches. Lucian Radu Teodorescu clarifies terms, showing how different approaches solve different problems. Concurrency Flavours by Lucian Radu Teodorescu From the article: Most engineers today use…