🍌
C++ Feed
@cpp_aggregator
303
subscribers
218
photos
12.5K
links
Агрегатор всего подряд про C++.
Для связи:
@smertig
Powered by
https://github.com/Smertig/banana
Download Telegram
Join
🍌
C++ Feed
303 subscribers
🍌
C++ Feed
Intro to C++ Coroutines: Concept
Источник:
KDAB Blogs – KDAB
KDAB
Introduction to C++ Coroutines: Concept | KDAB
Take a look at a new and exciting C++20 feature - coroutines! As a first step in this series, learn how they do work and what they represent.
🍌
C++ Feed
[Перевод] Написание компилятора C в 500 строк Python
Источник:
Habr
Автор:
Хабр
Написание компилятора C в 500 строк Python
Несколько месяцев назад мне захотелось написать компилятор C на 500 строк Python. Сложно ли это? О да, даже если отказаться от многих функций. Но, в то же время, это ужасно интересно, а результат...
😱
1
🍌
C++ Feed
Formatting Text in C++: The Old and The New Ways
Источник:
Marius Bancila's Blog
Marius Bancila's Blog | About code. Mostly on C++
Formatting Text in C++: The Old and The New Ways
A comparison of different alternatives to format text to an output buffer in C++20
🍌
C++ Feed
HOMEd: A почему «d»? Чтобы никто не догадался
Источник:
Habr
Автор:
Хабр
HOMEd: A почему «d»? Чтобы никто не догадался
Это случилось обычным воскресным вечером, лет 15 назад. Завтра - понедельник, на работу, значит пора ложиться спать. По всей квартире горит свет, надо идти выключать, но лень! Хочу чтобы одной кнопкой...
🍌
C++ Feed
Ошибка настолько проста, что программисты её не замечают
Источник:
Habr
Автор:
Хабр
Ошибка настолько проста, что программисты её не замечают
Нам в поддержку написал пользователь о странном ложном срабатывании анализатора PVS-Studio. Сейчас станет понятно, почему этот случай заслуживает отдельной маленькой статьи и насколько у программистов...
🍌
C++ Feed
The odd cadence of narrative engineering design documents
Источник:
The Old New Thing
Microsoft News
The odd cadence of narrative engineering design documents
Following the rubric off a cliff.
🍌
C++ Feed
CppCon 2023 Back to Basics: Debugging -- Greg Law
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
CppCon 2023 Open Content: C++ Conversation: Object Lifetime -- Jason Turner
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
C++ Exceptions and Memory Allocation Failure -- Wu Yongwei
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
CppCon 2023 Expressing Implementation Sameness and Similarity in Modern C++ -- Daisy Hollman
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
curl 8.3.0
Источник:
daniel.haxx.se
👍
1
🍌
C++ Feed
CppCon 2023 "Distributed Ranges": A Model for Building Distributed Data ... -- Benjamin Brock
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
CLion 2023.2.2 Bug-Fix Update
Источник:
CLion Blog
The JetBrains Blog
CLion 2023.2.2 Bug-Fix Update | The CLion Blog
The CLion bug-fix update 2023.2.2 is now available! The fixes included in this bug-fix update are listed below. Download build 232.9921.42 from our website, through the Toolbox App, as a snap package
🍌
C++ Feed
How do I perform a case-insensitive comparison of two strings in the Deseret script?
Источник:
The Old New Thing
Microsoft News
How do I perform a case-insensitive comparison of two strings in the Deseret script?
It sort of depends on why you're comparing them.
🍌
C++ Feed
Making Gaussian Splats smaller
Источник:
Aras' website
Aras Pranckevičius
Making Gaussian Splats smaller
In the previous post I started to look at Gaussian Splatting. One of the issues with it, is that the data sets are not exactly small. The renders look nice:
🍌
C++ Feed
CppCon 2023 Back to Basics: Iterators -- Nicolai Josuttis
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
CppCon 2023 The Au Library: Handling Physical Units Safely, Quickly, and Broadly -- Chip Hogg
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
CppCon 2023 Leveraging a Functional Approach for More Testable and Maintainable ROS 2 -- Bilal Gill
Источник:
isocpp.org
(Standard C++)
🍌
C++ Feed
Создаем проект STM32 C++ FreeRTOS в vscode для очень маленьких
Источник:
Habr
Автор:
Хабр
Создаем проект STM32 C++ FreeRTOS в vscode для очень маленьких
Небольшая предыстория Жил себе спокойно, писал кодик в Keil и не парился. Писал изначально на СИ, но кода становилось все больше, а я все ленивее, перешел на С++ и ARM Compiler V6,19. Но пришел к тому...
🍌
C++ Feed
Compile-time sizes for range adaptors
Источник:
foonathan::blog()
www.foonathan.net
Compile-time sizes for range adaptors
In my previous blog post, we’ve discussed the static constexpr std::integral_constant idiom to specify the size of a range at compile-time.
Unlike the standard, our (think-cell’s) ranges library at think-cell already supports compile-time sizes natively,…