My CS101++ series is complete now.
https://t.co/q6CX4eyoE6
18 episodes that try to introduce Computer Science fundamentals in a way that is understandable to anyone from any background.
Next time someone tries to sell me 2FA I'll put a drill through their phone and watch them try to vaguely function as a 21st century human being.
In other news, my phone unexpectedly died yesterday night.
I wrote a thing:
https://t.co/VKpmqXqIZ2
These guidelines were distilled from 20 years of working with C++, watching many talks, attended several trainings. I would welcome comments, please review I make issue as you wish.
#cpp#guidelines#programming
When I mention that I work with C++, I regularly get the question: is C++ even used anywhere these day ?
@lefticus 's 400th episode of C++ weekly gives a nice overview of how most of the world's software actually relies on C++ in some way.
https://t.co/AFBR8d0yFS
One of the hardest things as a parent: not reacting when your daughter takes a handful of food, and while keeping full eye contact, casually hurls it off the table.
Must. Not. Giggle.
@supahvee1234@isocpp Just yesterday did a similar thing! It appears all of us are struggling with this simple task. Glad to see there's going to be a proposal 😜
As a team lead, if you want your team to get better, you have to let people fail and learn from their mistakes
Protecting them from their mistakes is not the same
🙋🏿♂️I have a bunch!
First, somewhat controversial: Imposter syndrome isn't real!
The feeling is very real, but if we think of it as imposter syndrome then it seems like the problem is with the person feeling it, and not with the environment.
Imposter syndrome is lack of safety.
These two things are incompatible:
1) performance reviews that are genuinely helpful for growing people.
2) performance reviews that are tied to firing quotas or compensation changes.
Cool cool I implemented the six usual special member functions (default ctor, copy/move ctor/assignment, and dtor) for a language sum type.
To avoid std::variant's pesky valueless-by-exception zombie state, implicit assignments that would leave the lhs valueless are deleted.