Open-source contributions, experiments, and cutting-edge development projects
Advanced Discord bot leveraging OpenAI's GPT models for intelligent conversations, code assistance, and community management. Features include context-aware responses, role-based permissions, and custom command frameworks.
!chat how are you doing today?
Bot response: I am doing great! how about you?
!ask who is benjamin franklin?
will determine wiki response
Full-featured programming language built from scratch with lexical analysis, parsing, semantic analysis, and code generation. Includes features like while loops, extensions, strings, comments, all sorts of variable initializations and more!
variable1 = 10;
variable2 = "string";
variable3 = 34.5;
variable4 = true;
make i = 0;
while (i < 10) {
write(i);
i += 1;
}
High-performance encryption toolkit implementing AES, RSA, and custom cipher algorithms. Features secure key generation, file encryption, and network security protocols optimized for speed and security. Currently private project
int encrypt_file(const char* input, const char* key) {
AES_KEY aes_key;
AES_set_encrypt_key(key, 256, &aes_key);
}