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 Cybersecurity";
} else {
state.current_focus = "Testudo: Risk Management Perp Trading App";
}
return state;
}
🚭
no_smoking
Highlights
- Pro
Pinned Loading
-
pg-queue
pg-queue PublicPostgreSQL job queue, pub/sub, and cache for Rust — replace Redis with SKIP LOCKED and LISTEN/NOTIFY
Rust
-
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.

