home.social

Search

1000 results for “cpp”

  1. Join us on the shores of C++ excellence! 🏖️ #CppOnSea 2025 promises a stellar conference experience with three tracks of content, and breathtaking views

    cpponsea.uk/tickets/

    #cplusplus #cpp #programming #TechEvents

  2. Join us on the shores of C++ excellence! 🏖️ #CppOnSea 2025 promises a stellar conference experience with three tracks of content, and breathtaking views

    cpponsea.uk/tickets/

    #cplusplus #cpp #programming #TechEvents

  3. Join us on the shores of C++ excellence! 🏖️ #CppOnSea 2025 promises a stellar conference experience with three tracks of content, and breathtaking views

    cpponsea.uk/tickets/

    #cplusplus #cpp #programming #TechEvents

  4. Join us on the shores of C++ excellence! 🏖️ #CppOnSea 2025 promises a stellar conference experience with three tracks of content, and breathtaking views

    cpponsea.uk/tickets/

    #cplusplus #cpp #programming #TechEvents

  5. Join us on the shores of C++ excellence! 🏖️ #CppOnSea 2025 promises a stellar conference experience with three tracks of content, and breathtaking views

    cpponsea.uk/tickets/

    #cplusplus #cpp #programming #TechEvents

  6. " #CPP Investments boss says he will continue to invest in #energy sector"

    In lock-step with the Canadian #Liberal government, the #Canada #pension program intends to #subsidize #fossilFuel corporations while they 'transition'.

    [Canada's #ghg rose every year until 2020, when data collection effectively stopped.]

    The CPP also reportedly mainains "indirect, passive" investments in #Russia.

    nasdaq.com/articles/cpp-invest

    ourworldindata.org/co2/country

    #News #Business #FF #CanPoli #CdnPoli #ClimateCrisis

  7. Hylo – The Safe Systems and Generic-programming Language Built on Value Semantics – Dave Abrahams

    youtube.com/watch?v=5lecIqUhEl

    #cplusplus #cpp #Hylo #Val

  8. Hylo – The Safe Systems and Generic-programming Language Built on Value Semantics – Dave Abrahams

    youtube.com/watch?v=5lecIqUhEl

    #cplusplus #cpp #Hylo #Val

  9. We have just released a new C++OnSea 2024 Conference Video!

    Hylo – The Safe Systems and Generic-programming Language Built on Value Semantics – Dave Abrahams

    youtube.com/watch?v=5lecIqUhEl

    #cplusplus #cpp #Hylo #Val

  10. 🚀 Join us as Dave Abrahams presents "Hylo: the safe systems- and generic-programming language" as our opening keynote.

    Discover the revolutionary design of Hylo, and its future direction.

    youtu.be/Ea3A5TzhT6w

    Register! cpponsea.uk/tickets

    #cpp #cplusplus #hylo

  11. 🚀Join us as Dave Abrahams presents "Hylo: the safe systems- and generic-programming language" as our opening keynote.

    Discover the revolutionary design of Hylo, and its future direction.

    Find out more: cpponsea.uk/2024/sessions/hylo

    #cpp #cplusplus #hylo

  12. 🚀Join us as Dave Abrahams presents "Hylo: the safe systems- and generic-programming language" as our opening keynote.

    Discover the revolutionary design of Hylo, and its future direction.

    youtu.be/Ea3A5TzhT6w

    Register today: cpponsea.uk/tickets/

    #cpp #cplusplus #hylo #coding #softwareengineering

  13. In my latest blog post, "What reinterpret_cast doesn't do," you'll learn about one of C++'s biggest pitfalls and how to avoid it.

    andreasfertig.com/blog/2026/04

    #cplusplus #cpp #cpp20 #cpp23

  14. C++ Insights - Episode 71: C++23: multidimensional operator[]

    In this episode, you'll learn about the change to the operator[] in C++23.

    youtu.be/_wIj799nLOc

    #cppinsights #cpp #cpp23

  15. Did you know about the C++ Insights YouTube channel?

    youtube.com/@andreas_fertig

    You get a new video there every third Wednesday of the month.

    The next video goes out in less than 24 hours!

    #cppinsights #cpp #cpp23

  16. In my main project (very large physics simulation) we're about to start allowing c++23 features. I generally try to keep c++-isms to a minimum, but I welcome things like .contains() methods and things that make c++ more pleasant (i.e. python-like). Any "favorite" c++23 features you would recommend that we adopt? Any to avoid?
    #cpp #cpp23 #software #softwareDevelopment #softwareEngineering

  17. Did you know about the C++ Insights YouTube channel?

    youtube.com/@andreas_fertig

    You get a new video there every third Wednesday of the month.

    The next video goes out in less than 24 hours!

    #cppinsights #cpp #cpp23

  18. C++ Insights - Episode 67: C++23: Why if consteval can make your code better

    In this episode, you'll learn how C++23's if consteval helps you avoiding mistakes.

    youtu.be/9bHSiqXZhFI

    #cppinsights #cpp #cpp23

  19. Can somebody explain to me, why the last static assert fails? The value type has <=> operator returning strong ordering and std::map is clearly capable of having strong-ordered <=> operator.

    Godbolt link: godbolt.org/z/xnaaoWxaq

    #cpp #cpp23 #programming #help

  20. C++ Insights - Episode 66: How C++23 handles temporary objects in range-based for-loops

    In this episode, you'll learn how C++23 reduces undefined behavior in range-based for-loops for you.

    youtu.be/ay8BnkWKKWA

    #cppinsights #cpp #cpp23

  21. Did you know about the C++ Insights YouTube channel?

    youtube.com/@andreas_fertig

    You get a new video there every third Wednesday of the month.

    The next video goes out in less than 24 hours!

    #cppinsights #cpp #cpp23

  22. We're doing some natural language processing at Safetica, so we had to integrate a tokenizer.

    First, we started with HF tokenizers that use Rust as the underlying implementation. Since we consume it as a C# package and native runtimes are not shipped for Mac (thanks Apple for preventing organizations from virtualizing Macs), I made my own C++ implementation.

    Naive implementation in 60 lines of code, using std::map. Was slower than Rust's impl. By about 25%.

    Swapped std::map for std::flat_map. It instantly outperformed the Rust implementation. By about 20%. Sure, my impl doesn't have the full feature, but we don't need that.

    Flat map is frigging cool. It is a C++23 feature, so it is not available in all compilers, but you can find open-source implementations on GitHub.

    #cpp #rust #cpp23 #programming #NLP #ai

  23. Did you know about the C++ Insights YouTube channel?

    youtube.com/@andreas_fertig

    You get a new video there every third Wednesday of the month.

    The next video goes out in less than 24 hours!

    #cppinsights #cpp #cpp23