When applications are running in production, they become black boxes that need to be traced and monitored. One of the simplest, yet main, ways to do so is logging. Logging allows us - at the time we develop our software - to instruct the program to emit information while the system is running that will be useful for us and our sysadmins.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[dependencies] | |
egui = "0.21" | |
egui_extras = "0.21" | |
eframe = "0.21" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The ``P11X_DECLARE_ENUM`` macro and the ``p11x::bind_enums`` function | |
// bind enums to Python's ``enum.Enum`` or one of its subclasses | |
// (``enum.IntEnum``, ``enum.Flag``, ``enum.IntFlag``) -- unlike | |
// ``pybind11::enum_`` which uses an unrelated implementation. | |
// | |
// Use as follows: | |
// | |
// .. code-block:: c++ | |
// | |
// // Define module_name.NameOfPythonEnum as an enum.Enum subclass, with |
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm