# Projects I've built
These projects were built during my spare time and most of them are licensed under the MIT license. Use at your own risk.
- Telia is a statically and strongly typed programming language inspired on modern languages, such as Python, Go and Rust. It is compiled to native and efficient machine code using LLVM. Telia is still pretty imature and not ready to use.
- chip8.rs is a CHIP8 interpreter written in Rust for playing retro games, such as Snake and Space Invaders.
- filesystem.c is a simple filesystem implementation using linked allocation algorithm written in C. Nothing too fancy, it was just for learning purposes.
- game-of-life is an implementation of "Conway's Game Of Life" written in C++
- TodoScanner is a command-line interface written in Golang for converting your TODO comments in issues on your open-source repositories.
- SocialApp is an API written in FastAPI - a Python web framework - for simulating a social media. By using a graph-based database called Neo4J, I could simulate some social media features, such as following, unfollowing, and comment on a post. Additionally, I've used PostgreSQL for storing other informations, such as comments to other user's posts.