published at 24.10.2024 22:31 by Jens Weller
Save to Instapaper Pocket
While I'm happy that Meeting C++ 2024 is not the last online conference, I do have once again to wonder if its the last hybrid one.
published at 09.10.2024 16:52 by Jens Weller
Save to Instapaper Pocket
Thinking about conference t-shirt design for Meeting C++ 2024, I started to play around with the text highlighting abilities in Qt. I've started with the QHighlighter example.
published at 29.09.2024 20:32 by Jens Weller
Save to Instapaper Pocket
Recently I wondered what I get in term of C++ features for upgrading my system from version 13 to 14 of GCC...
published at 03.07.2024 15:13 by Jens Weller
Save to Instapaper Pocket
In late June of 2012 the first announcements were made about a new C++ conference called Meeting C++. With its first edition being close to Düsseldorf and in the next year in Düsseldorf.
published at 28.03.2024 17:10 by Jens Weller
Save to Instapaper Pocket
My last blog post dealt with a possible solution to providing a stable memory address. Some of the feedback pointed towards arena/pool allocators to be used instead.
published at 19.03.2024 18:18 by Jens Weller
Save to Instapaper Pocket
Some APIs allow you to store a pointer to your data element. This is used to access additional information from your types to display them in Model/View Architecture.
published at 15.03.2024 18:59 by Jens Weller
Save to Instapaper Pocket
Last year I've written last year about my plans to return to C++, taking on some project ideas with C++20 and CMake.
published at 08.02.2024 15:24 by Jens Weller
Save to Instapaper Pocket
Last year featured 4 job fairs, one in each quarter. Lets look at the data about candidates and compare to the community survey of Meeting C++.
published at 01.02.2024 17:52 by Jens Weller
Save to Instapaper Pocket
In one class I have a string_view which can represent various value types. One of them is a "date-time type", such as a std::time_t or std::chrono::time_point.
published at 09.12.2023 22:01 by Jens Weller
Save to Instapaper Pocket
I've had the opportunity to meet with Rainer Grimm this week during a short trip to southern Germany.
published at 21.09.2023 17:55 by Jens Weller
Save to Instapaper Pocket
A few days ago it caught my attention that Meeting C++ 2023 would be the last C++ organisation with an online part of its conference.
published at 27.06.2023 21:13 by Jens Weller
Save to Instapaper Pocket
Thats right, today 11 years ago was the announcement for Meeting C++ 2012.
published at 08.06.2023 17:35 by Jens Weller
Save to Instapaper Pocket
Like last year, Meeting C++ organized an event centered around technical speaking.
published at 18.05.2023 16:19 by Jens Weller
Save to Instapaper Pocket
Not that I've been away from C++, its just that for the last few years I've been busy with other things to start new projects. And hence mostly did take care of written, productive code. But this has changed now, and I'd like to take my time and learn whats new in C++ land and how to apply this to my new code.
published at 26.04.2023 17:41 by Jens Weller
Save to Instapaper Pocket
For over 2 years Meeting C++ organizes an online C++ job fair, featuring a form to share your CV/resume with the sponsoring employers. This post is about looking at the aggregate from this form filtered through the regions, which is continents in this case.
published at 31.03.2023 17:28 by Jens Weller
Save to Instapaper Pocket
I've been wondering if there is another easy way to improve performance of last weeks post on using boyer_moore_horspool search for replacing strings.
published at 23.03.2023 15:43 by Jens Weller
Save to Instapaper Pocket
On Wednesday I've read an interesting blog post by Julien Jorge on Effortful Performance Improvements, where it is shown how to improve an replace function which runs replacements on a string. Its part of a series on performance and improving a code base, you should go read all of them!
published at 16.03.2023 17:14 by Jens Weller
Save to Instapaper Pocket
And so the devil said: "what if there is an easier design AND implementation?"
published at 08.03.2023 17:25 by Jens Weller
Save to Instapaper Pocket
Playing around with std::variant lead to me wondering how std::any would compare to it. Afterall its also a single value store.
published at 02.03.2023 12:12 by Jens Weller
Save to Instapaper Pocket
I've started sketching out a piece of software that I'm about to write. And part of this is a variant, so I was wondering about variants performance and if the various ways to access its value differ.