Login
Discover
Waves
Communities
Login
Signup
Topics
#cplusplus
Global
Trending
Hot
New
Top
#cplusplus
New
Top communities
Create your community
latest #cplusplus created topics on internet
rev.tryout
Ecency
2026-05-26 10:00
My Micro Controller Journey Begins
I've long had a box with a few electronic parts and some micro controllers lying around. Among them are a Raspberry Pi Pico, an Arduino UNO, a small display, a physical switch, an NFC sensor and some other
$ 0.082
3
1
serpent7776
DBuzz
2026-03-09 17:36
Reversing the order of types in a parameter pack in #cplusplus (nostd, 100% ...
... organic code)
$ 0.090
1
serpent7776
DBuzz
2026-01-18 13:44
Detecting value/type in #cplusplus
serpent7776
DBuzz
2026-01-16 17:59
If you want your #cplusplus build to be more epic do this change: $ sed -i'' ...
... s/FPIC_FLAG/EPIC_FLAG/g CMakeLists.txt
jongolson
Bitcoin Backed Hive
2026-06-23 03:51
Promoted
This Is Why You Keep A Journal...
See that first picture I posted..... Those are the 5 journals I have been writing in over the past few years. I first heard about journaling from the world famous success thinker - Jim Rohn. I was captivated
serpent7776
DBuzz
2026-01-12 21:07
Lifetimes in #cplusplus are so easy.
serpent7776
DBuzz
2026-01-10 12:56
#cplusplus
serpent7776
DBuzz
2025-11-26 18:00
It took 2 decades to ship contracts. #cplusplus
serpent7776
DBuzz
2025-11-18 16:24
#cplusplus value ...
... categories.
asterkame
YAF - Young Art Fair
2026-06-25 10:18
Promoted
Painting a Blossoming Tree under Moonlit Sky
Hello Everyone! I drew a landscape with the full moon yesterday. There are the full moon with flower branches in this picture. I drew the picture with watercolor. In the first step, I drew the moon with
serpent7776
DBuzz
2025-10-31 19:28
#cplusplus
serpent7776
DBuzz
2025-09-27 12:33
in C++11 destructors default to noexcept. -Wterminate warns about it. Any ...
... noexcept(false) from base or member is propagated, but destructor body is not taken into consideration. Even if you have throw in destructor body, it still might be implicitly marked noexcept. #cplusplus
serpent7776
DBuzz
2025-09-03 16:31
#TIL static_assert(false, ...) got improved and it's now accepted in ...
... templates. #cplusplus
serpent7776
DBuzz
2025-07-16 16:38
Current mood: fixing memory corruption by removing a call to ...
... non-signal-async-safe function from a signal handler. #cplusplus
apnigrich
Caturday
2026-06-27 12:14
Promoted
The Happy Tom
And it's Caturday again Greetings, my friends. When you arrive at your country house after staying in a cramped city apartment. I broke free! That's exactly what this cat thinks. Friends, did you recognize
serpent7776
DBuzz
2025-03-28 21:42
Reversing space delimited words in a string in #rust and #cplusplus (assuming ...
... ASCII-only string).
serpent7776
DBuzz
2025-03-21 19:43
Function that applies a given function f on every element of a tuple t in #python ...
... and #cplusplus
serpent7776
DBuzz
2025-02-24 17:34
The way to check if given type T is convertible to std::string using to_string in ...
... C++17. #cplusplus
serpent7776
DBuzz
2025-01-28 21:58
Parameter passing in #cplusplus is so simple.
cliffblank
tarot
2026-06-20 17:01
Promoted
🌈 Weekend Tarot Check-In: The Queer Tarot Pulls No Punches
Eight cards. Zero ambiguity. The universe has thoughts. I pulled an eight-card weekend spread this morning using the Queer Tarot — and I have to say, the cards are practically throwing a party on my behalf.
serpent7776
DBuzz
2025-01-14 20:55
Classes without members should not be classes. #cplusplus
serpent7776
DBuzz
2024-11-15 21:53
In #cplusplus you cannot normally compare two random pointers with operator<, but ...
... std::less is an exception - It guarantees total ordering of pointers.
serpent7776
DBuzz
2024-10-18 20:40
Validating date format in #cplusplus
serpent7776
DBuzz
2024-07-17 16:32
#TIL operator-> is called recursively #cpp #cplusplus If a user-defined ...
... operator-> is called, operator-> is called again on the resulting value, recursively, until an operator-> is reached that returns a plain pointer. After that, built-in semantics are applied