#CppPollOfToday: Which C++11 language features are you using?
https://meetingcpp.com/mcpp/survey/?q=52
#cplusplus
#cpp
#CppPollOfToday: Which C++11 language features are you using?
https://meetingcpp.com/mcpp/survey/?q=52
#cplusplus
#cpp
C++OnSea 2025 SESSION ANNOUNCEMENT: Better Threading Support in C++20 by Lieven de Cock
https://cpponsea.uk/2025/session/better-threading-support-in-cpp20
Register now at https://cpponsea.uk/tickets/
MongoDB is hiring Senior Software Engineer, Identity & Access Management (Fullstack)
๐ง #csharp #cplusplus #golang #java #javascript #typescript #react #redux #aws #azure #gcp #mongodb #seniorengineer
๐ New York City, New York
โฐ Full-time
๐ข MongoDB
Job details https://jobsfordevelopers.com/jobs/senior-software-engineer-identity-access-management-fullstack-at-mongodb-com-mar-24-2025-3a3d9f?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
๐ง Coding interviews still stuck on LeetCode puzzles?
At C++ on Sea 2025, Kristen Shaker takes the stage to expose how current interview practices fail experienced engineers โ and what we can do instead.
https://cpponsea.uk/2025/session/from-leetcode-to-leadership-fixing-broken-engineering-interviews
Retro C++ quiz #32
Given the following in C++
void f() {
using ArrayType = int[10];
ArrayType t;
t.~ArrayType();
}
This is without checking:
A. Well-formed
B. Ill-formed
C. Show Answers
All those angle brackets in C++ are to warn you that it's going to hurt. If not now, definitely later when you have gotten comfortable with that code.
Book of the Day: A Complete Guide to Standard C++ Algorithms by ล imon Tรณth
https://meetingcpp.com/mcpp/books/book.php?hash=87d72914df2393c75c1b64030c729ff5a768795b
#cplusplus
#cpp
Tickets Now on Sale for C++ on Sea - 23rd - 25th June 2025 - ยฃ575 for the main three day conference!
Four additional C++ workshops available on 26th - 27th June
For more information please visit: https://cpponsea.uk
Visit Meeting C++ 2025 with assistance and your wheelchair
https://www.meetingcpp.com/meetingcpp/news/items/Visit-Meeting-Cpp-2025-with-assistance-and-your-wheelchair.html
#cpp
#cplusplus
currying in C++ would be very simple through supporting a special tuple type:
convert function to closure:
(R (*F)(X, Y, Z)) -> cl<F>
extending closures:
cl<F>(X, Y) -> cl<F, X, Y>
cl<F, X>(Y) -> cl<F, X, Y>
cl<F, X, Y>(Z) -> cl<F, X, Y, Z>
applying closures:
cl<F, X, Y, Z>() -> (R (*F)(X, Y, Z))(X, Y, Z)
My CPU is producing a lot of heat in recent days. Most of the time I'm doing #wakegp experiments to fine tune parameters. And I'm also compiling various versions of #Luanti to find out or fight with regressions and report them upstream.
I'm just glad I invested into buying this CPU plus a decent AIO. I can compile debug enabled Luanti from scratch in just about 5 minutes. Interestingly, compiling a debug enabled wakegp with incremental builds takes at least the same amount or even more.
wakegp is written in Rust, Luanti is written in C++. Luanti is a far larger codebase. But I guess the problem's that many of Luanti deps are shared libraries so I don't have to do the compiling or linking for them.
#Rust #programming #dailyNote #cplusplus #compiling #heavycomputation #computation
C++OnSea 2025 SESSION ANNOUNCEMENT: Missing (and future?) C++ Range Concepts by @foonathan
https://cpponsea.uk/2025/session/missing-and-future-cpp-range-concepts
Register now at https://cpponsea.uk/tickets/
Learn about Generic programming in C++ with templates and auto with Nicolai Josuttis next week
https://meetingcpp.com/mcpp/training/trainingslisting.php?tid=39
#cpp
#cplusplus
Returning several values from a function in C++ (C++23 edition)
https://lemire.me/blog/2025/05/18/returning-several-values-from-a-function-in-c-c23-edition/
#cpp
#cplusplus
๐พ Herding cats or standardizing C++? Why not both!
Join Timur Doumler at C++ on Sea 2025 for a keynote exploring the future of C++ safety: contracts, UB, vendor tools, and the human side of evolving a language.
https://cpponsea.uk/2025/session/contracts-safety-and-the-art-of-cat-herding
C++OnSea 2025 SESSION ANNOUNCEMENT: Understanding Large and Unfamiliar Codebases by Mike Shah & Chris Croft-White
https://cpponsea.uk/2025/session/understanding-large-and-unfamiliar-codebases
Register now at https://cpponsea.uk/tickets/
Book of the Day: A Tour of C++ (3rd Edition) by Bjarne Stroustrup
https://meetingcpp.com/mcpp/books/book.php?hash=13223271b205a859b898f972f5dde45a70ac8339
#cplusplus
#cpp
I wrote a blog post again:
๐ข๐๐ป๐ถ๐ป๐ด ๐ฎ๐ป๐ฑ ๐ป๐ผ๐ป-๐ผ๐๐ป๐ถ๐ป๐ด ๐++ ๐ฅ๐ฎ๐ป๐ด๐ฒ๐
The first article in a series discussing some of the underlying properties of C++ ranges, and in particular range adaptors.
https://hannes.hauswedell.net/post/2025/05/17/non-owning-range/
#cplusplus #moderncpp #ranges #views #programming #cpp #SmallWeb
Mastering C++ Game Animation Programming - Book review with Author Michael Dunsky
https://www.youtube.com/watch?v=QyD9_7KCqjQ
#cpp
#cplusplus
#gamedev