6 impossible things - Kevlin Henney - Opening Keynote Meeting C++ 2023
Kevlin Henney gave the opening keynote at Meeting C++ 2023
6 impossible things - Kevlin Henney - Opening Keynote Meeting C++ 2023
by Kevlin Henney
Video:
June 8-13, Brno, Czechia
June 17-20, Folkestone, UK
September 12-18, Aurora, CO, USA
November 16-21, Búzios, Rio De Janeiro, Brazil
November 26-28, Berlin, Germany
By Meeting C++ | Dec 17, 2023 02:24 PM | Tags: meetingcpp intermediate advanced
Kevlin Henney gave the opening keynote at Meeting C++ 2023
6 impossible things - Kevlin Henney - Opening Keynote Meeting C++ 2023
by Kevlin Henney
Video:
By Marco Arena | Dec 14, 2023 02:04 AM | Tags: sobjectizer intermediate c++20
A new episode of the series about SObjectizer and message passing:
SObjectizer Tales – 10. Handling GUI from main
by Marco Arena
From the article:
In this episode, we discuss how to test message passing-styled applications and provide some examples on our project.
By Marco Arena | Dec 7, 2023 01:28 AM | Tags: sobjectizer intermediate c++20
A new episode of the series about SObjectizer and message passing:
SObjectizer Tales – 9. Splitting work
by Marco Arena
From the article:
In this episode we'll delve into the fundamental way for dividing a task among several agents.
By Marco Arena | Nov 30, 2023 12:06 AM | Tags: sobjectizer intermediate c++20
A new episode of the series about SObjectizer and message passing:
SObjectizer Tales - 8. Representing errors
by Marco Arena
From the article:
In this episode we'll discuss how to model application errors and explore techniques for filtering messages within agents!
By Marco Arena | Nov 23, 2023 02:15 AM | Tags: sobjectizer intermediate c++20
A new episode of the series about SObjectizer and message passing:
SObjectizer Tales - 7. Agent composition
by Marco Arena
From the article:
In this episode, we are bringing in new agents to see the power of composition in action!
By Marco Arena | Nov 16, 2023 06:36 AM | Tags: sobjectizer intermediate c++20
A new episode of the series about SObjectizer and message passing:
SObjectizer Tales – 6. Is the stream still in progress?
by Marco Arena
From the article:
In this episode, we are exploring ways to detect if the stream is active in order to improve the current image viewer!
By Marco Arena | Nov 9, 2023 01:35 AM | Tags: sobjectizer intermediate c++20
A new episode of the series about SObjectizer and message passing:
SObjectizer Tales – 5. Sending commands
by Marco Arena
From the article:
In this upcoming post, we will explore various instances of generating commands from different segments within the program.
By Marco Arena | Nov 2, 2023 01:29 AM | Tags: sobjectizer intermediate c++20
A new episode of the series about SObjectizer and message passing:
SObjectizer Tales – 4. Handling commands
by Marco Arena
From the article:
What if we could seamlessly command the device to start and stop its acquisition with the wave of our virtual wand?
By Marco Arena | Oct 19, 2023 01:36 AM | Tags: sobjectizer intermediate c++20
A new episode of the series about SObjectizer and message passing:
SObjectizer Tales – 2. Can you call me back
by Marco Arena
From the article:
A camera vendor has just released a new SDK that works through callbacks. Basically, the user sets a function that will get called by the SDK on every new available frame. How can we integrate this into a producer agent?
By Marco Arena | Oct 12, 2023 02:22 AM | Tags: sobjectizer intermediate c++20
A new episode of the series about SObjectizer and message passing:
SObjectizer Tales - 1. Producing Images
by Marco Arena
From the article:
Since using any real camera drivers is out of scope, we’ll use OpenCV to open our default camera (e.g. the webcam) and grab frames one by one. In case you don’t have any available camera on your machine, we’ll provide a simple “virtual producer” that replays some images from a directory...