phirus

joined 1 year ago
[–] [email protected] 8 points 1 year ago

Klingt nach MDR

[–] [email protected] 2 points 1 year ago

Mein südamerikanischer Angiologe redet immer nur von "Gefäßen". Ihm ist das Wort "Vene" zu elaboriert.

[–] [email protected] 4 points 1 year ago (1 children)

Je Türen knall, desto wiederkomm

[–] [email protected] 1 points 1 year ago

I'll just swallow it down in a moment of panic and feel it burning its way down.

[–] [email protected] 6 points 1 year ago

The https://hackingcpp.com/cpp/cheat_sheets.html cheat sheets for std::algorithms and containers always save me a lot of time.

[–] [email protected] 1 points 1 year ago

I also like to use std::optional if a function may not return a result so I won't have to return a pointer, that might be a nullptr.

And std::variant as a typesafe less hacky union.