home.social

Search

1000 results for “cpp”

  1. Recently, I made a stupid mistake that made me think about the way C++ APIs handle dependencies and what we can do to prevent dangling references and lifetime issues. 🤔

    It was a surprisingly fun topic to explore that led me to the discovery of a very cool static analysis tool. Can you guess which one? 😎

    You can find out in the article I wrote about the topic here:
    medium.com/@nerudaj/type-safe-

    #cpp #StaticAnalysis #SoftwareEngineering

  2. Recently, I made a stupid mistake that made me think about the way C++ APIs handle dependencies and what we can do to prevent dangling references and lifetime issues. 🤔

    It was a surprisingly fun topic to explore that led me to the discovery of a very cool static analysis tool. Can you guess which one? 😎

    You can find out in the article I wrote about the topic here:
    medium.com/@nerudaj/type-safe-

    #cpp #StaticAnalysis #SoftwareEngineering

  3. Recently, I made a stupid mistake that made me think about the way C++ APIs handle dependencies and what we can do to prevent dangling references and lifetime issues. 🤔

    It was a surprisingly fun topic to explore that led me to the discovery of a very cool static analysis tool. Can you guess which one? 😎

    You can find out in the article I wrote about the topic here:
    medium.com/@nerudaj/type-safe-

    #cpp #StaticAnalysis #SoftwareEngineering

  4. Recently, I made a stupid mistake that made me think about the way C++ APIs handle dependencies and what we can do to prevent dangling references and lifetime issues. 🤔

    It was a surprisingly fun topic to explore that led me to the discovery of a very cool static analysis tool. Can you guess which one? 😎

    You can find out in the article I wrote about the topic here:
    medium.com/@nerudaj/type-safe-

  5. I recently had time to update the old demo for Runtime Compiled C++, moving it from GLFW2 to GLFW3 along with fixing some warnings:
    github.com/RuntimeCompiledCPlu

    I also updated our newer demos:
    RCC++ with GLFW and Dear ImGui:
    github.com/enkisoftware/RCCpp-

    and RCC++ with DX11 and Dear ImGui:
    github.com/dougbinks/RCCpp_DX1

    #Cpp #RuntimeCompiled #LiveCoding #OpenSource #GLFW

  6. Nächsten Mittwoch findet wieder die C++ User Group in Aachen statt. Wer hat Lust?

    cpp-aachen.github.io/
    #cpp #meetup #usergroup

  7. I reluctantly agreed last week to upgrade from JUCE 6 to JUCE 8 for DarkMark, since JUCE 8 contained some fixes that were needed to build on Mac.

    But as I suspected, now we're seeing problems on Linux with JUCE 8. Need to do a bit of research and see what this error is about: "non-virtual thunk to juce::TableListBox::RowComp::paint()".

    #cpp #JUCE

  8. I reluctantly agreed last week to upgrade from JUCE 6 to JUCE 8 for DarkMark, since JUCE 8 contained some fixes that were needed to build on Mac.

    But as I suspected, now we're seeing problems on Linux with JUCE 8. Need to do a bit of research and see what this error is about: "non-virtual thunk to juce::TableListBox::RowComp::paint()".

    #cpp #JUCE

  9. I reluctantly agreed last week to upgrade from JUCE 6 to JUCE 8 for DarkMark, since JUCE 8 contained some fixes that were needed to build on Mac.

    But as I suspected, now we're seeing problems on Linux with JUCE 8. Need to do a bit of research and see what this error is about: "non-virtual thunk to juce::TableListBox::RowComp::paint()".

    #cpp #JUCE

  10. I reluctantly agreed last week to upgrade from JUCE 6 to JUCE 8 for DarkMark, since JUCE 8 contained some fixes that were needed to build on Mac.

    But as I suspected, now we're seeing problems on Linux with JUCE 8. Need to do a bit of research and see what this error is about: "non-virtual thunk to juce::TableListBox::RowComp::paint()".

    #cpp #JUCE

  11. #CPPOtD Canadian Politics Poll Of The Day - Alberta Separatism edition.

    Agree or Disagree with this Statement:

    Were it to separate, Alberta will become, by whatever means, part of the United States within 10 years of independence from Canada.

    #CanPoli #CdnPoli #never51st #Alberta #ABPoli #BoostForReach

  12. #CPPOtD Canadian Politics Poll Of The Day - Alberta Separatism edition.

    Agree or Disagree with this Statement:

    Were it to separate, Alberta will become, by whatever means, part of the United States within 10 years of independence from Canada.

    #CanPoli #CdnPoli #never51st #Alberta #ABPoli #BoostForReach

  13. #CPPOtD Canadian Politics Poll Of The Day - Alberta Separatism edition.

    Agree or Disagree with this Statement:

    Were it to separate, Alberta will become, by whatever means, part of the United States within 10 years of independence from Canada.

    #CanPoli #CdnPoli #never51st #Alberta #ABPoli #BoostForReach

  14. #CPPOtD Canadian Politics Poll Of The Day - Alberta Separatism edition.

    Agree or Disagree with this Statement:

    Were it to separate, Alberta will become, by whatever means, part of the United States within 10 years of independence from Canada.

    #CanPoli #CdnPoli #never51st #Alberta #ABPoli #BoostForReach

  15. #CPPOtD Canadian Politics Poll Of The Day - Alberta Separatism edition.

    Agree or Disagree with this Statement:

    Were it to separate, Alberta will become, by whatever means, part of the United States within 10 years of independence from Canada.

    #CanPoli #CdnPoli #never51st #Alberta #ABPoli #BoostForReach

  16. is a collection of libraries.

    CHOC (Clean Header Only Classes) contains several libraries for performing various actions in C++. CHOC includes fast round trip float to string conversion, typed values that can be used in JSON, audio sample buffers, handling, code formatting, a simple wrapper for (), and more.

    Website 🔗️: github.com/Tracktion/choc

  17. is a client and server for .

    cpp-httplib implements HTTP client and server functionality with a straightforward interface. Starting a server is as simple as defining an action for a specified path and listening on a port. Server paths support regexes for more complex behaviour. cpp-httplib supports and quick static file serving.

    Website 🔗️: github.com/yhirose/cpp-httplib

  18. Discover the power of LSAN and ASAN at #CppOnSea 2024! Join Aleksei Veselovskii to dive into tips and tricks for using these tools beyond memory error detection. Enhance your debugging skills!

    youtube.com/shorts/wioV_DjznxA

    Register Now! cpponsea.uk/tickets

    #CPlusPlus #Debugging #cpp #lsan #asan

  19. In my latest blog post, "From Undefined to Defined: Using std::launder in C++," you'll learn when and why you need to do your C++ laundry.

    andreasfertig.com/blog/2026/05

    #cplusplus #cpp #cpp17

  20. In my latest blog post, "Best performance of a C++ singleton," you'll learn about how to control the performance of a singleton.

    andreasfertig.com/blog/2026/03

    #cplusplus #cpp #cpp17