#cppweekly نتائج البحث
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


Yess. I purchased one at a fair price and loved already! Test, test, test and test. @lefticus #cppweekly

IMPORTANT UPDATE 7: Leanpub Won't let me set a price below $4.99, so this is the last coupon. Thanks for the 500 retweets!! This is the lowest price you'll ever seen C++ Best Practices for, so take advantage of it. 9 hours left! leanpub.com/cppbestpractic…
My epic Doom port to C++ is up as episode 214 of C++ Weekly! (10 hrs long after editing!) If you watched the live stream there's a link to the final conclusion of it in the description. You won't believe what happens! youtu.be/0dkzLdqH9V4 #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 214 - Epic 10 Hour Port of Doom to C++
Latest C++ Weekly is up. Teach Yourself C++ in ∞ Days! youtu.be/zUQz4LBBz7M #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 237 - Teach Yourself C++ in ∞ Days
How well do you know the C++ standard library? Have you ever used std::nextafter? youtu.be/-F0j2VN4xEU #cppweekly #cplusplus
youtube.com
YouTube
C++ Weekly - Ep 223 - Know Your Standard Library: std::nextafter
Multiple Destructors in C++20?! How and why you would want to declare multiple destructors. youtu.be/A3_xrqr5Kdw #cpp20 #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 231 - Multiple Destructors in C++20?! How and Why
This one simple trick can increase the performance of you standard containers by 3.5x! youtube.com/watch?v=q6A7cK… #cpp #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 222 - 3.5x Faster Standard Containers With PMR!
Kevin Carpenter giving credits to @lefticus and encouraging everyone to listen to #CppWeekly in his talk "Back 2 Basics - Tooling Intuition" @meetingcpp #meetingcpp2023 #cpp #cplusplus #cpplus #conference

And that's the news to wake up to. You @lefticus rock with the amount of #cpp society work you do, especially these days. Regular @cppcast episodes, #cppweekly, and few streams on top (some taking more than 10 hours :D ). I admire!
For those of you waiting for more C++20 RPG content, I just recorded 3 more episodes yesterday. Next one will air Monday.
If you want to use custom allocators and PMR efficiently and avoid dynamic allocations, you *have* to watch this C++ Weekly episode. youtu.be/6BLlIj2QoT8 #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 245 - PMR: Mistakes Were Made (By Me)
My free C++ course "Understanding C++ Through Lambdas" is fully available now. The 6th and final episode went live today. This is the complete playlist of all videos in the course. youtube.com/playlist?list=… #cplusplus #cpp #cppweekly
A bit late, but hopefully worth it! Ep 176 of C++ Weekly - The Important Parts of C++11 in 12 Minutes. youtu.be/D5n6xMUKU3A #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 176 - Important Parts of C++11 in 12 Minutes
#cppweekly Ep 150: C++20's Lambdas For Resource Management youtu.be/XhxV1NP5RGs #cplusplus #cpp20
Types That Shall Not Be Named! youtu.be/jWgSkM8N0Bc #cplusplus #cpp #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 249 - Types That Shall Not Be Named
@lefticus found a bug in my code that was due to std::array and operator[] - a 2d array from c#: byte[,] lookup = new byte[4, 4]; ported to a 1d array: std::array<int, 4*4> lookup{}; and yet something like this had snuck in: std::cout << lookup[1, 2]; What gives? #cppweekly
Curious about C++20? I have (so far) published 22 C++Weekly episodes about C++20 features! youtube.com/playlist?list=… #cplusplus #cppweekly #cpp
Oh, and of course, everything is `constexpr` except for the display code. It's all based on this C++ Weekly episode: youtube.com/watch?v=3SXML1… #constexpr #cppweekly
How much are unnecessary copies of expensive (non-trivial) objects costing you? What about moves? Those aren't free either. You could `=delete` them, but that's a bit heavy handed. There's another option for your custom types: #cplusplus #cppweekly youtu.be/5wJ-jKK_Zy0
youtube.com
YouTube
C++ Weekly - Ep 241 - Using `explicit` to Find Expensive Accidental...
C++ Weekly Ep 206, Surprising Conversions with CTAD youtu.be/IhjvznH9GvI #cpp17 #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 206 - Surprising Conversions with CTAD
More C++20! With what I think is a real-world practical use case for [[likely]] and [[unlikely]] #cplusplus #cppweekly #cpp20 youtu.be/ew3wt0g99kg
youtube.com
YouTube
C++ Weekly - Ep 220 - C++20's [[likely]] and [[unlikely]] With...
Sometimes ideas struck me like a lightning strike. 🤣 Seeing our respected C++ educator, Jason @lefticus reposting my query, I remembered his #cppweekly github. Submitted as a wish github.com/lefticus/cpp_w… I hope Jason will happily consider my wishlist in 2024. Thanks a lot, Jason
github.com
[C++ weekly]: My wishlist #2 : Zero to hero on C++ developer ecosystem · Issue #350 · lefticus/cp...
Channel Is this a "C++Weekly" or "The [Fill in the Blank] Programmer" episode request? C++ Weekly Topics What topics are important to cover for this episode? Fundamentals of Con...
Anyone please point to me a "Zero to hero" course (Pluralsight or Udemy or O'Reilly or YouTube) on C++ developer ecosystem involving Conan, Cmake, clang-tidy (We haven't started using Conan 2.0 yet, 1.59 at present. Excuse me, @conan_io). This is driving me crazy, enjoying it too
Kevin Carpenter giving credits to @lefticus and encouraging everyone to listen to #CppWeekly in his talk "Back 2 Basics - Tooling Intuition" @meetingcpp #meetingcpp2023 #cpp #cplusplus #cpplus #conference

What a great surprise cppweekly on a Sunday! #CPP #cppweekly youtu.be/15U4qutsPGk
youtube.com
YouTube
C++ Weekly - Ep 318 - My Meetup Got Nerd Sniped! A C++ Curry Function
@lefticus found a bug in my code that was due to std::array and operator[] - a 2d array from c#: byte[,] lookup = new byte[4, 4]; ported to a 1d array: std::array<int, 4*4> lookup{}; and yet something like this had snuck in: std::cout << lookup[1, 2]; What gives? #cppweekly
Yess. I purchased one at a fair price and loved already! Test, test, test and test. @lefticus #cppweekly

IMPORTANT UPDATE 7: Leanpub Won't let me set a price below $4.99, so this is the last coupon. Thanks for the 500 retweets!! This is the lowest price you'll ever seen C++ Best Practices for, so take advantage of it. 9 hours left! leanpub.com/cppbestpractic…
Last 4+ laptops purchased for the family have been @lenovo. My main problem with them at the moment is they are very slow to adopt @AMDRyzen and only in a select few lines. Also, I want one that travels well, and that limits a lot. Maybe @lenovo should sponsor #cppweekly ? :D
Types That Shall Not Be Named! youtu.be/jWgSkM8N0Bc #cplusplus #cpp #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 249 - Types That Shall Not Be Named
If you want to use custom allocators and PMR efficiently and avoid dynamic allocations, you *have* to watch this C++ Weekly episode. youtu.be/6BLlIj2QoT8 #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 245 - PMR: Mistakes Were Made (By Me)
How much are unnecessary copies of expensive (non-trivial) objects costing you? What about moves? Those aren't free either. You could `=delete` them, but that's a bit heavy handed. There's another option for your custom types: #cplusplus #cppweekly youtu.be/5wJ-jKK_Zy0
youtube.com
YouTube
C++ Weekly - Ep 241 - Using `explicit` to Find Expensive Accidental...
Latest C++ Weekly is up. Teach Yourself C++ in ∞ Days! youtu.be/zUQz4LBBz7M #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 237 - Teach Yourself C++ in ∞ Days
Part two of my PMR allocator series is up youtu.be/vXJ1dwJ9QkI Longer than usual, but I couldn't find anything to leave out! This one was done in cooperation with @TechAtBloomberg #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 235 - PMR: Amazing, Fast, But, Not Quite Magic
Multiple Destructors in C++20?! How and why you would want to declare multiple destructors. youtu.be/A3_xrqr5Kdw #cpp20 #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 231 - Multiple Destructors in C++20?! How and Why
C++ Weekly Ep 230: Building A Higher Performance Bit Pattern DSL. A walk through the process of building a compile-time optimized tool for readable bit masking and matching. youtube.com/watch?v=-GqMLn… #cppweekly #cplusplus
youtube.com
YouTube
C++ Weekly - Ep 230 - Building A High Performance Bit Pattern Match...
If you paid close attention to the end of episode 225 you might have wondered how it's possible for operator-> overloads to work like they do. It's because THEY ARE MAGIC youtu.be/mAHHKDyLmCI #cplusplus #cppweekly
How well do you know the C++ standard library? Have you ever used std::nextafter? youtu.be/-F0j2VN4xEU #cppweekly #cplusplus
youtube.com
YouTube
C++ Weekly - Ep 223 - Know Your Standard Library: std::nextafter
This one simple trick can increase the performance of you standard containers by 3.5x! youtube.com/watch?v=q6A7cK… #cpp #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 222 - 3.5x Faster Standard Containers With PMR!
More C++20! With what I think is a real-world practical use case for [[likely]] and [[unlikely]] #cplusplus #cppweekly #cpp20 youtu.be/ew3wt0g99kg
youtube.com
YouTube
C++ Weekly - Ep 220 - C++20's [[likely]] and [[unlikely]] With...
And that's the news to wake up to. You @lefticus rock with the amount of #cpp society work you do, especially these days. Regular @cppcast episodes, #cppweekly, and few streams on top (some taking more than 10 hours :D ). I admire!
For those of you waiting for more C++20 RPG content, I just recorded 3 more episodes yesterday. Next one will air Monday.
Another episode of C++ Weekly. As always, worth watching and get to know maybe something useful. Don't hesitate. Hey, it's so short you can get over it on the toilet and no-one will notice ;) #cpp #cppweekly #watchingonthetoilet #mynaughtything youtu.be/IcQl1Oh9AvQ
My epic Doom port to C++ is up as episode 214 of C++ Weekly! (10 hrs long after editing!) If you watched the live stream there's a link to the final conclusion of it in the description. You won't believe what happens! youtu.be/0dkzLdqH9V4 #cplusplus #cppweekly
youtube.com
YouTube
C++ Weekly - Ep 214 - Epic 10 Hour Port of Doom to C++
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


Yess. I purchased one at a fair price and loved already! Test, test, test and test. @lefticus #cppweekly

IMPORTANT UPDATE 7: Leanpub Won't let me set a price below $4.99, so this is the last coupon. Thanks for the 500 retweets!! This is the lowest price you'll ever seen C++ Best Practices for, so take advantage of it. 9 hours left! leanpub.com/cppbestpractic…
Kevin Carpenter giving credits to @lefticus and encouraging everyone to listen to #CppWeekly in his talk "Back 2 Basics - Tooling Intuition" @meetingcpp #meetingcpp2023 #cpp #cplusplus #cpplus #conference

Something went wrong.
Something went wrong.
United States Trends
- 1. Good Wednesday 28.5K posts
- 2. #wednesdaymotivation 6,293 posts
- 3. #LoveYourW2025 206K posts
- 4. Jay Jones 57.2K posts
- 5. Hump Day 12.6K posts
- 6. Markey 1,146 posts
- 7. #VxWKOREA 53.4K posts
- 8. Moulton N/A
- 9. #GenV 4,498 posts
- 10. And the Word 75.8K posts
- 11. St. Teresa of Avila 2,342 posts
- 12. #15Oct 4,281 posts
- 13. Young Republicans 102K posts
- 14. Raila Odinga 189K posts
- 15. Happy Hump 7,768 posts
- 16. Tami 5,281 posts
- 17. Voting Rights Act 7,363 posts
- 18. HSBC 1,783 posts
- 19. hobi 36.9K posts
- 20. Lonzo 3,680 posts