#moderncpp 검색 결과

【10月14日発売】最新刊プレゼントキャンペーン ➡下記書籍を抽選で3名様に\プレゼント/ ✅応募方法 ❶当アカウントをフォロー❷このポストをリポスト 応募締切10/22まで/当選連絡はDM 『C++ソフトウェア設計』 oreilly.co.jp/books/97848144… #Cpp #ModernCpp #デザインパターン

oreilly_japan's tweet image. 【10月14日発売】最新刊プレゼントキャンペーン
➡下記書籍を抽選で3名様に\プレゼント/
✅応募方法
❶当アカウントをフォロー❷このポストをリポスト
応募締切10/22まで/当選連絡はDM

『C++ソフトウェア設計』
oreilly.co.jp/books/97848144…
#Cpp #ModernCpp #デザインパターン

The Best and the Worst of C++20 and C++23 event at JetBrains' office in Amsterdam. Thanks to @TheDutchCppGrp @jetbrains @anastasiak2512 for organizing this event. And, @lefticus for the awesome presentation. #moderncpp #cpp23 #cpp20

mamadou_gamedev's tweet image. The Best and the Worst of C++20 and C++23 event at JetBrains' office in Amsterdam.

Thanks to @TheDutchCppGrp @jetbrains @anastasiak2512 for organizing this event. And, @lefticus for the awesome presentation.

#moderncpp #cpp23 #cpp20
mamadou_gamedev's tweet image. The Best and the Worst of C++20 and C++23 event at JetBrains' office in Amsterdam.

Thanks to @TheDutchCppGrp @jetbrains @anastasiak2512 for organizing this event. And, @lefticus for the awesome presentation.

#moderncpp #cpp23 #cpp20

Avoid unused warnings! [[maybe_unused]] keeps your experimental code clean. #CppTips #ModernCpp #BestPractices


C++'a yeni başlayacak geliştiriciler ve öğrenciler için kapsamlı bir giriş rehberi yazdım📚. Gelen yüzlerce geribildirim için teşekkür ederim. Hızlıca yazıyı çıkarmaya çalıştım. Modern ve Idiomatic C++'a da değindim🚀. #cpp #moderncpp #idiomaticcpp farukeryilmaz.com/cpp-baslangic-…


Delete vs private functions! Use delete keyword to disable unwanted functions safely. #CppTips #ModernCpp #BestPractices


Left: C++98 as superset of C, step-by-step I2C. Right: Declarative C++17 with structs & templates—clean, safe, expressive. Why don’t we see more declarative code in embedded systems? 🤔 I am not even attempting the latest C++20 to C++26 features. #Embedded #IoT #ModernCpp #Cpp17

antonysigma's tweet image. Left: C++98 as superset of C, step-by-step I2C.
Right: Declarative C++17 with structs & templates—clean, safe, expressive.
Why don’t we see more declarative code in embedded systems? 🤔

I am not even attempting the latest C++20 to C++26 features.
#Embedded #IoT #ModernCpp #Cpp17

Don’t ignore returns! [[nodiscard]] warns if you ignore a function return — prevent bugs! #CppTips #ModernCpp #BestPractices


🛠️ Modern C++ (C++11/14/17/20) C++ keeps evolving: ✅ Smart pointers (safe memory) ✅ Lambdas (functional style) ✅ Concurrency support ✅ Ranges & Concepts (C++20) Modern C++ is safer, cleaner, and more expressive than ever. #Cpp #ModernCpp


Safer byte handling! std::byte > raw char buffers for memory safety. #CppTips #ModernCpp #CodeSafety


Move semantics explained! std::move doesn’t move data — it enables move semantics for efficiency. #CppTips #Performance #ModernCpp


C++ isn’t just old-school. With C++20 and C++23, it now includes: ✅ Ranges ✅ Coroutines ✅ Concepts ✅ Modules It’s evolving — fast. #ModernCpp #Cplusplus


Are you ready to level up your C++ programming skills? Whether you're a beginner or an experienced developer, there's always room for improvement. Follow along 🧵as we explore some advanced techniques and best practices. #ModernCPP #CodingTips 💻🚀


Memory management is a critical aspect of C++ programming. To avoid memory leaks and other memory-related issues, it's important to use smart pointers, such as unique_ptr and shared_ptr. #ModernCPP💡


#cpp Inline variables (C++17)! Define constants safely in headers without ODR violations. #Cpp17 #ModernCpp #CodingTips


Herb Sutter, a leading C++ standards committee chair and author, pushing modern C++ with concepts, concurrency, and tooling innovations that elevate the language and community worldwide. #HerbSutter #CppCon #ModernCpp #OpenSource #TechLeader


Exception handling is an important part of writing reliable and robust C++ code. However, it's important to use exceptions judiciously and keep them as lightweight as possible to avoid performance overhead. #ModernCPP #TryCatchException 🧐👨‍💻


Optimize branches! [[likely]] / [[unlikely]] hints the compiler for faster execution. #CppTips #ModernCpp #Performance


First, they taught us how to use a pointer, and now N-standards away - they say that pointers are evil isocpp.github.io/CppCoreGuideli… #ModernCPP


🛠️ Modern C++ (C++11/14/17/20) C++ keeps evolving: ✅ Smart pointers (safe memory) ✅ Lambdas (functional style) ✅ Concurrency support ✅ Ranges & Concepts (C++20) Modern C++ is safer, cleaner, and more expressive than ever. #Cpp #ModernCpp


Regex made easy! std::regex = powerful string pattern matching. #CppTips #STL #ModernCpp


Delete vs private functions! Use delete keyword to disable unwanted functions safely. #CppTips #ModernCpp #BestPractices


Optimize branches! [[likely]] / [[unlikely]] hints the compiler for faster execution. #CppTips #ModernCpp #Performance


Safer byte handling! std::byte > raw char buffers for memory safety. #CppTips #ModernCpp #CodeSafety


Avoid unused warnings! [[maybe_unused]] keeps your experimental code clean. #CppTips #ModernCpp #BestPractices


#cpp Inline variables (C++17)! Define constants safely in headers without ODR violations. #Cpp17 #ModernCpp #CodingTips


Don’t ignore returns! [[nodiscard]] warns if you ignore a function return — prevent bugs! #CppTips #ModernCpp #BestPractices


Move semantics explained! std::move doesn’t move data — it enables move semantics for efficiency. #CppTips #Performance #ModernCpp


Compile-time magic in C++17: if constexpr lets you branch at compile-time! #Cpp17 #ModernCpp #CodingHacks


Refreshing my skills with a deep dive into Modern C++! 🚀 Going back through the "Complete Modern C++ (C++11/14/17)" course on @udemy. It's always a great time to solidify concepts and stay sharp. #cpp #cplusplus #ModernCpp #Programming #Udemy #SoftwareDevelopment

_adityanegi69's tweet image. Refreshing my skills with a deep dive into Modern C++! 🚀 Going back through the "Complete Modern C++ (C++11/14/17)" course on @udemy. It's always a great time to solidify concepts and stay sharp.

#cpp #cplusplus #ModernCpp #Programming #Udemy #SoftwareDevelopment

Left: C++98 as superset of C, step-by-step I2C. Right: Declarative C++17 with structs & templates—clean, safe, expressive. Why don’t we see more declarative code in embedded systems? 🤔 I am not even attempting the latest C++20 to C++26 features. #Embedded #IoT #ModernCpp #Cpp17

antonysigma's tweet image. Left: C++98 as superset of C, step-by-step I2C.
Right: Declarative C++17 with structs & templates—clean, safe, expressive.
Why don’t we see more declarative code in embedded systems? 🤔

I am not even attempting the latest C++20 to C++26 features.
#Embedded #IoT #ModernCpp #Cpp17

C++ isn’t just old-school. With C++20 and C++23, it now includes: ✅ Ranges ✅ Coroutines ✅ Concepts ✅ Modules It’s evolving — fast. #ModernCpp #Cplusplus


Just started a new C++ project and we're actually using C++20. No more C++11 limbo! Feels so good to finally leverage those new features, especially ranges. Anyone else seeing a shift in project standards for C++? #cppdev #moderncpp


Herb Sutter, a leading C++ standards committee chair and author, pushing modern C++ with concepts, concurrency, and tooling innovations that elevate the language and community worldwide. #HerbSutter #CppCon #ModernCpp #OpenSource #TechLeader


I’m happy to share that my new C++23 course is now live on Udemy! Learn Modern C++ the way professionals use it—real projects, CMake, vcpkg, Docker, and the latest C++23 features. Get your copy now: udemy.com/course/cpp23-f… #cpp #cplusplus #moderncpp #udemy


Improve code safety and efficiency with "Modern C++ Paradigms" at the KDAB Training Day (8 May). This one-day training course covers value semantics, modern error handling, range-based programming, and more. Early bird tickets on training.kdab.com/ktd25/ #Cpp #ModernCpp #CPlusPlus

KDABQt's tweet image. Improve code safety and efficiency with "Modern C++ Paradigms" at the KDAB Training Day (8 May). This one-day training course covers value semantics, modern error handling, range-based programming, and more. Early bird tickets on training.kdab.com/ktd25/ #Cpp #ModernCpp #CPlusPlus

【10月14日発売】最新刊プレゼントキャンペーン ➡下記書籍を抽選で3名様に\プレゼント/ ✅応募方法 ❶当アカウントをフォロー❷このポストをリポスト 応募締切10/22まで/当選連絡はDM 『C++ソフトウェア設計』 oreilly.co.jp/books/97848144… #Cpp #ModernCpp #デザインパターン

oreilly_japan's tweet image. 【10月14日発売】最新刊プレゼントキャンペーン
➡下記書籍を抽選で3名様に\プレゼント/
✅応募方法
❶当アカウントをフォロー❷このポストをリポスト
応募締切10/22まで/当選連絡はDM

『C++ソフトウェア設計』
oreilly.co.jp/books/97848144…
#Cpp #ModernCpp #デザインパターン

After watching last #cppweekly episode, friend of mine did some small analysis. Here is original code & code after removing words. 34 words vs 36 punctuation marks. Fortunately we do not read such code in 99% of our time. #cpp #moderncpp

WojciechRazik's tweet image. After watching last #cppweekly episode, friend of mine did some small analysis. Here is original code & code after removing words. 34 words vs 36 punctuation marks. Fortunately we  do not read such code in 99% of our time. #cpp #moderncpp
WojciechRazik's tweet image. After watching last #cppweekly episode, friend of mine did some small analysis. Here is original code & code after removing words. 34 words vs 36 punctuation marks. Fortunately we  do not read such code in 99% of our time. #cpp #moderncpp

How about some animated vector graphics in win32 desktop apps using DesktopWindowTarget, DispatcherQueue, CompositionPathGeometry, Windows::UI::Composition, C++/WinRT, Win2D @windowsui sample and blogpost coming next week #nativegraphicsnerdout #moderncpp

ClarkeZone's tweet image. How about some animated vector graphics in win32 desktop apps using DesktopWindowTarget, DispatcherQueue, CompositionPathGeometry, Windows::UI::Composition, C++/WinRT, Win2D @windowsui sample and blogpost coming next week #nativegraphicsnerdout #moderncpp

The Best and the Worst of C++20 and C++23 event at JetBrains' office in Amsterdam. Thanks to @TheDutchCppGrp @jetbrains @anastasiak2512 for organizing this event. And, @lefticus for the awesome presentation. #moderncpp #cpp23 #cpp20

mamadou_gamedev's tweet image. The Best and the Worst of C++20 and C++23 event at JetBrains' office in Amsterdam.

Thanks to @TheDutchCppGrp @jetbrains @anastasiak2512 for organizing this event. And, @lefticus for the awesome presentation.

#moderncpp #cpp23 #cpp20
mamadou_gamedev's tweet image. The Best and the Worst of C++20 and C++23 event at JetBrains' office in Amsterdam.

Thanks to @TheDutchCppGrp @jetbrains @anastasiak2512 for organizing this event. And, @lefticus for the awesome presentation.

#moderncpp #cpp23 #cpp20

How did you spend your evening? #cpp #cpp17 #moderncpp

BMEngine's tweet image. How did you spend your evening? #cpp #cpp17 #moderncpp

I first came across the #Pimpl idiom in #cpp in a talk by @herbsutter on #ModernCpp through @Microsoft Channel9 over a decade ago and since then I've been using it everywhere in order to reap the benefits. In #UnrealEngine it's a bit tricky. Here is the plain C++ vs #UE 👇 1/2

mamadou_gamedev's tweet image. I first came across the #Pimpl idiom in #cpp in a talk by @herbsutter on #ModernCpp through @Microsoft Channel9 over a decade ago and since then I've been using it everywhere in order to reap the benefits. In #UnrealEngine it's a bit tricky. Here is the plain C++ vs #UE 👇 1/2
mamadou_gamedev's tweet image. I first came across the #Pimpl idiom in #cpp in a talk by @herbsutter on #ModernCpp through @Microsoft Channel9 over a decade ago and since then I've been using it everywhere in order to reap the benefits. In #UnrealEngine it's a bit tricky. Here is the plain C++ vs #UE 👇 1/2
mamadou_gamedev's tweet image. I first came across the #Pimpl idiom in #cpp in a talk by @herbsutter on #ModernCpp through @Microsoft Channel9 over a decade ago and since then I've been using it everywhere in order to reap the benefits. In #UnrealEngine it's a bit tricky. Here is the plain C++ vs #UE 👇 1/2
mamadou_gamedev's tweet image. I first came across the #Pimpl idiom in #cpp in a talk by @herbsutter on #ModernCpp through @Microsoft Channel9 over a decade ago and since then I've been using it everywhere in order to reap the benefits. In #UnrealEngine it's a bit tricky. Here is the plain C++ vs #UE 👇 1/2

...from Multi-paradigm Programming with modern c++ by Georgy Pashkov. One of the best courses I've ever bought on Udemy! #moderncpp #cpp

manoloon1's tweet image. ...from Multi-paradigm Programming with modern c++ by Georgy Pashkov. One of the best courses I've ever bought on Udemy! #moderncpp #cpp

Learning modern c++ -> 4 Standard Library algorithms that accept parallel execution : std::reduce , std::transform_reduce, std::inclusive_scan and std::exclusive_scan #cpp #moderncpp

manoloon1's tweet image. Learning modern c++ -> 4 Standard Library algorithms that accept parallel execution : std::reduce , std::transform_reduce, std::inclusive_scan and std::exclusive_scan #cpp #moderncpp
manoloon1's tweet image. Learning modern c++ -> 4 Standard Library algorithms that accept parallel execution : std::reduce , std::transform_reduce, std::inclusive_scan and std::exclusive_scan #cpp #moderncpp

Structured bindings and references! it's easy to grasp by looking at the example I'm not gonna say anything on this one (: #cpp #cplusplus #moderncpp

shayan_ebz's tweet image. Structured bindings and references! it's easy to grasp by looking at the example I'm not gonna say anything on this one (: #cpp #cplusplus #moderncpp

See how to prevent common bugs, and how to leverage tools to make your code safer 👇 cppstories.com/2021/override-… #cpp #ModernCpp #programming #safecode

pvs_studio's tweet image. See how to prevent common bugs, and how to leverage tools to make your code safer 👇

cppstories.com/2021/override-…

#cpp #ModernCpp #programming #safecode

@emBOconference here we come! Our fabulous @imrmann will be attending (and speaking). Stop by to say hi or to learn about how to speed up your #modernCpp dev-process.

incredibuild's tweet image. @emBOconference here we come! Our fabulous @imrmann will be attending (and speaking). Stop by to say hi or to learn about how to speed up your #modernCpp dev-process.

Having fun teaching a 3 day course on Modern C++ for a bunch of Cisco engineers. #lysaker #cisco #moderncpp #isocpp #cyberdojo olvemaudal.com/talks

olvemaudal's tweet image. Having fun teaching a 3 day course on Modern C++ for a bunch of Cisco engineers. #lysaker #cisco #moderncpp #isocpp #cyberdojo olvemaudal.com/talks

Learning Modern C++? Here are some posts that can help you expand your modern C++ knowledge: embt.co/2YtGZyb #developers #programming #moderncpp #CBuilder #learncpp embt.co/3H6ORXV#develo… @CppLearning

EmbarcaderoTech's tweet image. Learning Modern C++? Here are some posts that can help you expand your modern C++ knowledge: embt.co/2YtGZyb #developers #programming #moderncpp #CBuilder #learncpp embt.co/3H6ORXV#develo… @CppLearning

Hey, C++Builder Developers! Here are some new picks for you from LearnCPlusPlus.org: Color to Alpha Example, Learn to Use Clipboard, Printing in Modern C++, and much more. Check it out: embt.co/31ezTeC #learncpp #cpp #moderncpp #CBuilder

EmbarcaderoTech's tweet image. Hey, C++Builder Developers! Here are some new picks for you from LearnCPlusPlus.org: Color to Alpha Example, Learn to Use Clipboard, Printing in Modern C++, and much more. Check it out: embt.co/31ezTeC #learncpp #cpp #moderncpp #CBuilder

Left: C++98 as superset of C, step-by-step I2C. Right: Declarative C++17 with structs & templates—clean, safe, expressive. Why don’t we see more declarative code in embedded systems? 🤔 I am not even attempting the latest C++20 to C++26 features. #Embedded #IoT #ModernCpp #Cpp17

antonysigma's tweet image. Left: C++98 as superset of C, step-by-step I2C.
Right: Declarative C++17 with structs & templates—clean, safe, expressive.
Why don’t we see more declarative code in embedded systems? 🤔

I am not even attempting the latest C++20 to C++26 features.
#Embedded #IoT #ModernCpp #Cpp17

One nice use of constexpr is to clarify functions / ctors calls that take a lot of parameters. Rather than having to go through back & forth class definition, I just declare the constexpr vars like so. This is a good example for @JUCElibrary Audio/MIDI component #cpp #moderncpp

mathieugarcia's tweet image. One nice use of constexpr is to clarify functions / ctors calls that take a lot of parameters. Rather than having to go through back & forth class definition, I just declare the constexpr vars like so. This is a good example for @JUCElibrary Audio/MIDI component #cpp #moderncpp

Our first Trainer will be @rainer_grimm , he is an independent instructor giving modern C++ seminars and published several books about modern C++ and concurrency. In his 3,5h training you will see how to use #modernCpp for your embedded target!

emBOconference's tweet image. Our first Trainer will be @rainer_grimm , he is an independent instructor giving modern C++ seminars and published several books about modern C++ and concurrency.
In his 3,5h training you will see how to use #modernCpp for your embedded target!

Our second announced Speaker is Paul @Sickeroni Targosz. He mainly deals with #tmp optimizations using #modernCpp 17 on bare metal. His talk will be all about USB and is called USB for the masses. Paul will show us the current situation and and what can be done better!

emBOconference's tweet image. Our second announced Speaker is Paul @Sickeroni Targosz. He mainly deals with #tmp optimizations using #modernCpp 17 on bare metal. His talk will be all about USB and is called USB for the masses. Paul will show us the current situation and and what can be done better!

Loading...

Something went wrong.


Something went wrong.


United States Trends