Hello everyone!
Here is the summary of the last session, took place on Tuesday, April 15 2025.
The session had few topics discussed.
First, I’d like to announce that we have a new Sponsor to our meetup!
Jetbrains has generously agreed to sponsor the yearly Meetup fees!


It is super fun to have your favorite editor being the one sponsor it. Such a win win for me 🙂
Thank you Maria and the team from Jetbrains helping me on that!
Meetup page can be found here
The recording can be found here:
Discussion points in the meetup:
- What am I snacking – I talked a bit on Patrice Roy‘s new book “C++ Memory Management” which is an excellent book! Grab it!
- AI Assistant and vibe coding. Gave some insights from my experience working on multiple tools, evaluating multiple plugins to IDEs. And it’s fantastic. I’m so scared! The future is here and things IMO will only get better. Senior engineers will have super powers, Junior engineers would need to make sense of what is given to them and I’m afraid that w/o enough experience, this is a challenging part.
- Quiz How much impact RTTI (class types w/ or w/o virtual functions) has on typeid?
- RAII. Here is what we covered:
- Simple RAII class
- I realized after the meeting that I missed having =delete for the copy ctor so we do not mess up copying the handle and risking in double cleanup of the same handle.
- Better to = delete your copy/op= so you are on the safe side.
- Using simple SFINAE
- Using simple concepts
- Using static_assert
- Why different instantiation of the RAII class fails.
- Function pointers
- References to functions
- add_pointer_t
- decltype(auto), return (x), decltype((x))
- What did Scott Meyers had to say in his last book (Effective Modern C++: C++11/14)
- Using https://cppinsights.io/ to decipher templates.
- Using unique_ptr<> with custom deleter.
- Using gsl::finally
- Capture-less lambdas in un-evaluated context.
- Simple RAII class

Thank you for reading!
Kobi