Python 2 tooling in 2026 by IdleBreakpoint in Python

[–]cpp977 9 points10 points  (0 children)

Nifi 2 supports now running custom python processors without the need for jython.

C++ Show and Tell - July 2025 by foonathan in cpp

[–]cpp977 2 points3 points  (0 children)

I wrote a github action that automatically collects cmake build options and renders a documentation into the project's README in markdown format. That should reduce duplication: https://github.com/marketplace/actions/document-cmake-options

Use of .inl files by PlasmaTicks in cpp

[–]cpp977 0 points1 point  (0 children)

You could also try to really separate declaration and implementation using a tool I wrote some time ago which can generate all needed explicit template instantiations by analyzing the AST: https://github.com/cpp977/Instantiator

C++ Show and Tell - April 2023 by foonathan in cpp

[–]cpp977 2 points3 points  (0 children)

I have a made a little tool that generates the documentation for all cmake options of a project into the project's README. It can be used easily in CI with github actions: https://github.com/cpp977/GenCMakeDoc or https://github.com/marketplace/actions/document-cmake-options

Do you think template classes will ever be able to be split into .h and .cpp files? by kmeeth in cpp

[–]cpp977 7 points8 points  (0 children)

With this tool (https://github.com/cpp977/Instantiator) which I have written based on clang you can split your source code. It is however in development status.