Flow & Causality → (Causes): Direct, linear causation.
⇉ (Cascade): A causal chain where one effect triggers multiple others.
⇢ (Counterfactual): A hypothetical causal link; "what if."
⇄ (Feedback): A mutual, two-way causal relationship.
Flow & Causality → (Causes): Direct, linear causation.
⇉ (Cascade): A causal chain where one effect triggers multiple others.
⇢ (Counterfactual): A hypothetical causal link; "what if."
⇄ (Feedback): A mutual, two-way causal relationship.
| ---@class Interface | |
| ---@class Class | |
| ---@field toTable fun(self): table | |
| ---@field sameClass fun(self, other: Class): boolean | |
| ---@field isInstance fun(self, classType: ClassT): boolean | |
| ---@field implements fun(self, interface: Interface): boolean | |
| ---@class ClassT | |
| ---@field new fun(self, string): Class |
| include(ExternalProject) | |
| set(GLFW_DIR "${CMAKE_CURRENT_SOURCE_DIR}") | |
| if(NOT EXISTS ${GLFW_DIR}) | |
| file(MAKE_DIRECTORY ${GLFW_DIR}) | |
| endif() | |
| if(NOT EXISTS ${GLFW_DIR}/include) | |
| file(MAKE_DIRECTORY ${GLFW_DIR}/include) |
| #!/bin/bash | |
| usage() { | |
| echo "Cmake commands to clang complete generator usage:" | |
| echo "$0 input/directory [output/directory]" | |
| } | |
| generate_file() { | |
| cat $1/compile_commands.json | | |
| sed -r '/command/!d | |
| s/^ *"command": "// |
| import re | |
| from hashlib import md5 | |
| from markdown import markdown | |
| def gfm(value): | |
| # Extract pre blocks. | |
| extractions = {} | |
| def pre_extraction_callback(matchobj): | |
| digest = md5(matchobj.group(0).encode('utf-8')).hexdigest() | |
| extractions[digest] = matchobj.group(0) |