Slides of the 3rd of July 2019 BeCPP Meeting

On July 3rd, 2019, the Belgian C++ Users Group had their next event sponsored by CluePoints.

Slides of the 3rd of July 2019 BeCPP Meeting

About the event:

  • “What’s new in Visual C++ 2019?” by Marc Gregoire
  • “Statistical Scientific programming: challenges in converting R to C++” by Olivia Quinet

If you couldn’t attend the event in person, or if you would like to go over the material again, you can download them from the BeCPP website.

C++ Day 2019 (mostly in Italian)

A full day of C++, mostly in the Italian language:

C++ Day 2019

November 30, 2019

Parma

 

In a nutshell

The C++ Day 2019 is a full-day event entirely dedicated to the C++ language, hosted in Parma (Italy), the 2020 Italian capital of culture.

The event consists in some technical sessions and networking.

 

Who should attend the C++ Day 2019?

This event is made by C++ professionals for C++ professionals, students and enthusiasts. Whoever is interested in the C++ language and is keen on meeting the Italian C++ ecosystem is welcome!

 

What can I find in the C++ Day 2019?

The agenda consists of 9x50-min and 2x30-min tech talks, 1x45-min "Ask Us Everthing" Q&A Panel, and more than 140 min allocated for networking.

This year, most of the sessions are in the Italian language.

You can refer to the detailed program for more information.

 

When and Where will the C++ Day 2019 take place?

The event will be held on November 30 at the University of Parma.

Check-in opens at 8.30 AM, the main event begins at 9.30 AM and will last for a full day.
 

Who supports this event?

The event is co-organized with Elettric80.

Beckhoff and Leica Geosystems support the event.

 

Do I need to register?

The C++ Day 2019 is free, but you must register to facilitate the organization of the event.

Please consider the "Supporter Ticket" to contribute to the main expenses.

Registration page here.

Access tuple-like container by type to return an index -- Krzysztof Ostrowski

How would you look for an item in a tuple by the item's type, and return the item's index within that tuple?

Access tuple-like container by type to return an index

by Krzysztof Ostrowski

From the article:

Presentation of a technique that composes an application of a lazy fold expression, and an idea of type embellishment that introduces an implicit context in which the current tuple element is embedded.

C++ on Sea 2020 - Call for Speakers is open

The Call for Speakers is now open, and will run until the end of November.

by C++ on Sea

by C++ on Sea

From the article:

If you're interested in presenting a 60 minute or 90 minute talk, or a one day workshop, please visit the above link to go to the Call For Speakers page for more information and a link to the Speaker Portal.

C/C++ Include Guidelines -- Thomas Young

Good practices for setting up include files are key to keeping large code-bases manageable, in pre-modules C++, and this article presents 15 rules to keep you on the right track.

C/C++ Include Guidelines

by Thomas Young

From the article:

The rules listed here are relatively mechanical, by which I mean that these are things that can be applied locally to individual bits of source code, without strokes of genius or flashes of inspiration, but with the possibility to nevertheless significantly improve code organisation, which is useful particularly in the case of large legacy code bases.

CopperSpice: std::variant

New video on the CopperSpice YouTube Channel:

std::variant

by Barbara Geller and Ansel Sermersheim

About the video:

In this video, we discuss the std::variant class and its relationship to C++ unions. We explore the drawbacks and constraints of the union abstraction in C++, how they changed in C++11, and how variant addresses many of these shortcomings.

Please take a look and remember to subscribe!

Generate stub code from Gherkin DSL -- Zebedee Mason

A small Gherkin DSL parser that generates stub code

Cornichon

by Zebedee Mason

From the article:

The supported frameworks are:

  • cpp/cppunittest - Microsoft's Visual C++ test framework
  • cpp/googletest - Google Test

How to Merge Consecutive Elements in a C++ Collection--Jonathan Boccara

Simple and sweet.

How to Merge Consecutive Elements in a C++ Collection

by Jonathan Boccara

From the article:

Merging identical consecutive elements in a collection is a recurring need, in C++ or elsewhere in programming.

For example, we could want to aggregate a collection of hourly results into a collection of daily results: all the results of each day get aggregated into one for that day. In this case, being “identical” means being on the same day, and “aggregating” means taking two results with a common date, and creating a result at this date and with the sum of their amounts...