Among the various projects completed during my core curriculum at 42 Heilbronn, these 7 represent my most significant technical milestones.
| Project | Synopsis | Core Stack |
|---|---|---|
| Inception | System Administration Suite. Built a custom Docker infrastructure. Orchestrates a secure network of containers (NGINX, WordPress, MariaDB) with dedicated volumes and established bridges. |
| Project | Synopsis | Core Stack |
|---|---|---|
| MiniRT | Raytracing Engine. A multi-threaded renderer that simulates real-world light physics. Calculates shadows, ambient lighting, diffuse reflection, and geometric intersections. | |
| FDF | 3D Wireframe Visualizer. Converts raw coordinate data maps into a topographical landscape using isometric projection matrices and Bresenham's line algorithm. |
| Project | Synopsis | Core Stack |
|---|---|---|
| ft_irc | IRC Server. A compliant Internet Relay Chat server built from scratch. Handles multiple clients via non-blocking I/O (poll), channel operations, and operator authentication. | |
| Philosophers | Concurrency Simulation. Solves the classic synchronization problem using threads and mutexes. Focuses on preventing data races, deadlocks, and resource starvation. | |
| MiniShell | Custom Bash Replica. Developed a custom shell in C mimicking Bash. Implemented command parsing, pipelines, I/O redirection, signal handling, and environment management. | |
| Libft | Custom C Library. A complete re-implementation of the standard C library (libc). Rebuilt generic memory handling, string manipulation, and list processing functions. |

