typedef enum {
MODE_STUDYING,
MODE_BUILDING
} OperationalMode;
struct EmbeddedState {
const char *dialogue;
const char *current_focus;
void *system_boundary;
};
struct EmbeddedState init_system_state(OperationalMode mode) {
struct EmbeddedState state = {
.dialogue = "Nothing goes with a percocet like some good air conditioning, ya know?",
.system_boundary = (void *)0xC0000000
};
if (mode == MODE_STUDYING) {
state.current_focus = "bachelor of souless IT corp-slop";
} else {
state.current_focus = "testudo";
}
return state;
}
🚭
no_smoking
fullsnack | linux | ai-dev | devops
- Melbourne
-
22:35
(UTC -12:00) - @testudo-0x
Highlights
- Pro
Pinned Loading
-
testudo-raas
testudo-raas PublicA containerized rust microservice that isolates mathematical risk logic from network I/O through a stateless gRPC interface.
Rust
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.

