🍌
C++ Feed
@cpp_aggregator
309
subscribers
218
photos
12.9K
links
Агрегатор всего подряд про C++.
Для связи:
@smertig
Powered by
https://github.com/Smertig/banana
Download Telegram
Join
🍌
C++ Feed
309 subscribers
🍌
C++ Feed
Making Your Prompts Personal – Qt AI Assistant 0.9.8 Released!
Источник:
Qt Blog
www.qt.io
Making Your Prompts Personal – Qt AI Assistant 0.9.8 Released!
New Qt AI Assistant 0.9.8 improves coding efficiency with custom instructions, supports Gemini 3 Pro Preview, and enhances GPT-5.1 integration.
🍌
C++ Feed
Commercial LTS Qt 6.8.6 Released
Источник:
Qt Blog
www.qt.io
Commercial LTS Qt 6.8.6 Released
🍌
C++ Feed
How to Learn Qt in 2026: Free Courses, Tutorials & What's New for Developers
Источник:
Qt Blog
www.qt.io
How to Learn Qt in 2026: Free Courses, Tutorials & What's New for Developers
Discover the latest updates from Qt Learning for 2026, including new courses, certifications, educational licenses, and university partnerships to empower developers and students worldwide.
🍌
C++ Feed
Figma to Qt: The Fastest Way to Bring Figma Designs to the Product
Источник:
Qt Blog
www.qt.io
Figma to Qt: The Fastest Way to Bring Figma Designs to the Product
In this blog, we introduce the latest release of Figma to Qt: Qt Quick Controls support, auto-layout support, improvements to live preview, and much more.
🍌
C++ Feed
Introducing the Qt Task Tree Module, Part of Qt 6.11
Источник:
Qt Blog
www.qt.io
Introducing the Qt Task Tree Module, Part of Qt 6.11
A new declarative and extensible C++ module for automated asynchronous task management, unifying various asynchronous APIs. A part of Qt 6.11.
🍌
C++ Feed
Qt 6.11 Beta 1 Released
Источник:
Qt Blog
www.qt.io
Qt 6.11 Beta 1 Released
Qt 6.11 Beta1 release blog post
🍌
C++ Feed
Qt for Android Automotive 6.8.6 is released
Источник:
Qt Blog
www.qt.io
Qt for Android Automotive 6.8.6 is released
🍌
C++ Feed
Qt for MCUs 2.8.4 is released
Источник:
Qt Blog
www.qt.io
Qt for MCUs 2.8.4 is released
Stability fixes and improvements for Qt for MCUs 2.8 are available for download.
🍌
C++ Feed
Design Handoff to Developers: How to Stay True to Your Original Vision
Источник:
Qt Blog
www.qt.io
Design Handoff to Developers: How to Stay True to Your Original Vision
Learn how to hand off design to developers effectively. A comprehensive design handoff guide covering best practices and designer-developer collaboration.
🍌
C++ Feed
Static Assertions in Rust
Источник:
KDAB Blogs – KDAB
KDAB
Static Assertions in Rust: How to Build a const_assert! Macro | KDAB
Rust has no built-in equivalent to C++’s static_assert, but you can add compile-time checks with a small const_assert! macro. Learn how it works, why it’s useful, and how to integrate it without extra dependencies.
🍌
C++ Feed
MSVC - Debugging the Static Initialization Order
Источник:
KDAB Blogs – KDAB
KDAB
MSVC Debugging Guide: Solve Static Initialization Order Fiasco in C++ | KDAB
Learn how to debug static initialization issues in MSVC. Understand constructor order, CRT startup, and how to trace crashes before main() in C++.
🍌
C++ Feed
Planning Ahead
Источник:
wxWidgets Developer Blog
wxwidgets.org
Planning Ahead - wxWidgets
🍌
C++ Feed
San Diego C++ Meetup #80 – November 2025 Edition – 2025-11-18
Источник:
Vorbrodt's C++ Blog
Vorbrodt's C++ Blog
San Diego C++ Meetup #80 – November 2025 Edition – 2025-11-18
Hello all! Our latest San Diego C++ Meetup took place on Tuesday, November 18th, 2025. This was the 80th meeting of our group! It was a slightly shorter session than usual as I’ve been quite …
🍌
C++ Feed
C#-style property in C++
Источник:
Vorbrodt's C++ Blog
Vorbrodt's C++ Blog
C#-style property in C++
C# has a nice feature called class/struct property. It is a public data member but with the ability to control read/write access, underlying storage or to compute the value on the fly. You can thin…
🍌
C++ Feed
San Diego C++ Meetup #81 – December 2025 Edition
Источник:
Vorbrodt's C++ Blog
Vorbrodt's C++ Blog
San Diego C++ Meetup #81 – December 2025 Edition
Hello everyone! Our final meeting of 2025, San Diego C++ Meetup #81, took place on Tuesday, December 9th. It was a fantastic session to wrap up the year, featuring a deep dive into the intersection…
🍌
C++ Feed
SwedenCpp 2025
Источник:
Finally a homepage
🍌
C++ Feed
20,000 issues on GitHub
Источник:
daniel.haxx.se
daniel.haxx.se
20,000 issues on GitHub
The curl project moved over its source code hosting to GitHub in March 2010, but we kept the main bug tracker running like before - on Sourceforge. It took us a few years, but in 2015 we finally ditched the Sourceforge version fully. We adopted and switched…
🍌
C++ Feed
A curl 2025 review
Источник:
daniel.haxx.se
daniel.haxx.se
A curl 2025 review
Let's take a look back and remember some of what this year brought. commits At more than 3,400 commits we did 40% more commits in curl this year than any single previous year! Since at some point during 2025, all the other authors in the project have now…
🍌
C++ Feed
no strcpy either
Источник:
daniel.haxx.se
daniel.haxx.se
no strcpy either
Some time ago I mentioned that we went through the curl source code and eventually got rid of all strncpy() calls. strncpy() is a weird function with a crappy API. It might not null terminate the destination and it pads the target buffer with zeroes. Quite…
🍌
C++ Feed
Could C++ Developers Handle an ABI Break Today? - Luis Caro Campos - CppCon 2025
Источник:
CppCon
YouTube
Could C++ Developers Handle an ABI Break Today? - Luis Caro Campos - CppCon 2025
https://cppcon.org
---
Could C++ Developers Handle an ABI Break Today? - Luis Caro Campos - CppCon 2025
---
The C++ Evolution Working Group recently reaffirmed its commitment to ABI stability, prioritizing link compatibility with C and older C++. The C++11…