Why I No Longer Write Articles About 42 School Projects

Table of Contents

Following a meeting with 42 school’s pedagogical team, I decided to remove all articles directly related to 42 projects.

The most rewarding part of every project is the whole research, testing, failing and researching again process that finally leads to a viable solution. And I wouldn’t want to deprive anyone of this journey.

By digging a little deeper into this site, you will find elements that can help you with your projects. Here is a list of useful articles about the concepts behind 42 school projects.

Get_next_line

Pipex

Minitalk

Philosophers

Minishell

Netpractice

Webserv & ft_irc


If you find yourself completely stuck on a project, don’t hesitate to send me a message to discuss it.

Happy coding and researching!

Tags :

Comments

Related Posts

Malloc: Allocating Memory in C

In compiled programming languages ​​like C, it is often useful, or even necessary, to allocate memory dynamically on the heap, in order to accommodate variables of larger or uncertain size. The malloc function allows us to ask the operating system to allocate an area of ​​memory to be used in our program.

Read More

CTF Walkthrough: Wonderland on TryHackMe

Wonderland is a freely-available capture the flag (CTF) challenge created by NinjaJc01 on TryHackMe. In this CTF walkthrough, we will fall down the cybersecurity rabbit hole and enter a strange pentesting wonderland!

Read More

Pipe: an Inter-Process Communication Method

By default, it is difficult to get two processes to communicate with each other. As we’ve seen in a previous article, even parent and child processes don’t share the same memory space. So we need to find ways to establish inter-process communication. One of these communication mechanisms is the pipe.

Read More