You have installed GPG, then tried to perform a git commit and suddenly you see this error message after it 😰
error: gpg failed to sign the data
fatal: failed to write commit object
Understand the error (important to solve it later!)
| #ifndef __SWITCHS_H__ | |
| #define __SWITCHS_H__ | |
| #include <string.h> | |
| #include <regex.h> | |
| #include <stdbool.h> | |
| /** Begin a switch for the string x */ | |
| #define switchs(x) \ | |
| { const char *ss__sw = (x); bool ss__done = false; bool ss__cont = false; \ |
| #include <stdio.h> | |
| #define STR2(x) #x | |
| #define STR(x) STR2(x) | |
| #ifdef _WIN32 | |
| #define INCBIN_SECTION ".rdata, \"dr\"" | |
| #else | |
| #define INCBIN_SECTION ".rodata" | |
| #endif |
(draft; work in progress)
See also:
| black==23.1.0 | |
| click==8.1.3 | |
| contourpy==1.0.7 | |
| cycler==0.11.0 | |
| fonttools==4.39.2 | |
| kiwisolver==1.4.4 | |
| matplotlib==3.7.1 | |
| mypy-extensions==1.0.0 | |
| numpy==1.24.2 | |
| packaging==23.0 |
aka what i did to get from nothing to done.
note: these are designed to be primarily a re-install guide for myself (writing things down helps me memorize the knowledge), as such don't take any of this on blind faith - some areas are well tested and the docs are very robust, some items, less so). YMMV