Created
May 17, 2025 12:45
-
-
Save btc-c0der/4085898dede4b31939645f91783f6772 to your computer and use it in GitHub Desktop.
Balança pesada
This file contains hidden or 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
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdbool.h> | |
| // === DEFINIÇÕES === | |
| #define BALANCE_POINT 42 | |
| #define GODMODE_KEY "JAH_BLESS" | |
| #define MODO_LIBRIANO true | |
| typedef enum { TRUTH_MODE, SHADOW_MODE } ModoEspiao; | |
| typedef struct { | |
| char codinome[32]; | |
| int harmonia; | |
| int disfarces_ativos; | |
| bool god_mode; | |
| ModoEspiao modo; | |
| } EspiaoLibriano; | |
| // === FUNÇÕES CORE === | |
| void ativarGodMode(EspiaoLibriano* l) { | |
| if (l->harmonia >= BALANCE_POINT) { | |
| l->god_mode = true; | |
| printf("\n>> %s ativou GOD MODE. Equilíbrio alcançado.\n", l->codinome); | |
| } else { | |
| printf("\n>> %s em desequilíbrio. Meditação recomendada.\n", l->codinome); | |
| } | |
| } | |
| bool detectarHarvardismo(const char* discurso) { | |
| const char* palavras[] = { | |
| "Harvard", "Ivy", "Stanford", "Disruptivo", "Networking de Alto Valor" | |
| }; | |
| for (int i = 0; i < sizeof(palavras)/sizeof(palavras[0]); i++) { | |
| if (strstr(discurso, palavras[i]) != NULL) return true; | |
| } | |
| return false; | |
| } | |
| bool detectarMITdivino(const char* discurso) { | |
| return strstr(discurso, "MIT") != NULL && | |
| strstr(discurso, "inovação") != NULL; | |
| } | |
| void analisarDiscurso(const char* discurso) { | |
| printf("\n[ Analisando discurso: \"%s\" ]\n", discurso); | |
| if (detectarHarvardismo(discurso)) { | |
| printf(">> ALERTA: Harvardismo detectado. Filtrando...\n"); | |
| printf(">> Resposta: \"Sabedoria não tem crachá. Deus usa quem Ele quiser.\"\n"); | |
| } else if (detectarMITdivino(discurso)) { | |
| printf(">> MIT detectado com boas intenções!\n"); | |
| printf(">> Resposta: \"MIT vibes positivas confirmadas. Inovação a serviço da luz.\"\n"); | |
| } else { | |
| printf(">> Discurso limpo. Energia suave.\n"); | |
| } | |
| } | |
| void executarMissao(EspiaoLibriano* l, const char* discurso) { | |
| ativarGodMode(l); | |
| analisarDiscurso(discurso); | |
| printf("\n[Missão Ativada - Codinome: %s]\n", l->codinome); | |
| if (l->modo == TRUTH_MODE) { | |
| printf(">> Modo VERDADE: Diplomacia afiada, estilo rastafári.\n"); | |
| } else { | |
| printf(">> Modo SOMBRA: Operando no subtexto com códigos sagrados.\n"); | |
| } | |
| if (l->god_mode) { | |
| printf(">> Operação em modo DIVINO. Justiça com sabedoria.\n"); | |
| } else { | |
| printf(">> Operação em modo mortal. Estilo + Consciência = Vitória.\n"); | |
| } | |
| } | |
| // === MAIN === | |
| int main() { | |
| EspiaoLibriano fausto = { | |
| .codinome = "0M3G4_L1BR4", | |
| .harmonia = 47, | |
| .disfarces_ativos = 3, | |
| .god_mode = false, | |
| .modo = TRUTH_MODE | |
| }; | |
| const char* discurso_entrada = | |
| "Estudei no MIT com foco em inovação distribuída, voltada à regeneração espiritual do planeta."; | |
| executarMissao(&fausto, discurso_entrada); | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment