You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A concurrent programming project that simulates the Dining Philosophers Problem. It explores process synchronization using threads, mutexes, processes, and semaphores to prevent deadlocks and manage resource sharing efficiently.
A mini shell implementation written in C that supports command execution, built-in commands, environment variable management, input/output redirection, and piping.
A system administration project from Ecole 42 focused on containerization. It sets up a multi-container infrastructure using Docker and Docker Compose with services like Nginx, WordPress, and MariaDB, all secured with SSL.
This repository contains solutions and resources for the CPP Modules in the 42 school curriculum. Each module covers specific aspects of C++ programming and is designed to progressively build proficiency in object-oriented programming concepts, memory management, and advanced C++ features.
This is project aiming to create a simple Internet Relay Chat (IRC) server. There is no Server-to-Server communication, only Server-to-Client communication. RFC 1459 is referenced and HexChat is used as client.
A 2D adventure game built with MiniLibX. Players collect items on the map and reach the exit using the W, A, S, and D keys. The map includes walls, collectibles, and free spaces. The goal is to collect all items and find the shortest path to escape.
A 3D first-person game built using raycasting and MiniLibX, inspired by Wolfenstein 3D. The project features real-time rendering of a textured world with player movement, door interaction, and customizable maps. Designed to run smoothly in a minimal graphical environment.
This project is designed to reimplement the basic C functions from the C Standard Library (Libc) and create your own custom standard library. As a bonus you will also need to implement some data structures and functions such as linked-list.
A project that demonstrates inter-process communication in C using UNIX signals. It features a server-client system where messages are sent bit by bit using SIGUSR1 and SIGUSR2.