blob: 8b91ede1047777492f9d37de1a8f2ba97e32ac6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
<!DOCTYPE html>
<html>
<head>
<title>cacharle</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<meta charset="utf-8"/>
<link rel="icon" type="image/png" href="favicon.png" />
</head>
<body><div id="page-wrapper">
<h1>School projects</h1>
<p>Most of these are in C and respect the coding style of the school called the <a href="norm.pdf">norm</a>, the guidelines of each project are detailed in the <b>subject.pdf</b> file of each repository.<p/>
<h2>Validated</h2>
<table>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/libft">libft</a></td>
<td>Rewrite some of libc's functions, this project will be used and improved throughout the other project since we're
generally not allowed 3rd party functions that aren't syscall</td>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/get_next_line">get_next_line</a></td>
<td>A function which read's the next line of a file descriptor each time it is called, will later be integrated to the libft</td>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/ft_printf">ft_printf</a></td>
<td>Rewrite the <code>printf</code> function</td>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/ft_server">ft_server</a></td>
<td>Introduction to Docker, An nginx server running Wordpress, phpmyamdin with a MySQL database</td>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/cub3d">cub3d</a></td>
<td>Raycasting with textures and a map generated from a formated file</td>
<tr>
<td><a href="https://git.cacharle.xyz/libasm">libasm</a></td>
<td>Indroduction to x86_64 assembly, rewritting some basic libc function</td>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/minishell">minishell</a></td>
<td>Minimalistic shell based on bash</td>
</tr>
</table>
<h2>Pending</h2>
<table>
<tr><td><a href="https://git.cacharle.xyz/ft_services">ft_services</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/philosophers">philosophers</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/ft_containers">ft_containers</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/computorv1">computorv1</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/computorv2">computorv2</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/push_swap">push_swap</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/fractol">fractol</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/scop">scop</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/42run">42run</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/ft_ls">ft_ls</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/ft_select">ft_select</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/ft_ping">ft_ping</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/piscine_cpp">piscine_cpp</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/ft_ssl">ft_ssl</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/rubik">rubik</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/ft_linear_regression">ft_linear_regression</a></td></tr>
<tr><td><a href="https://git.cacharle.xyz/dslr">dslr</a></td></tr>
</table>
<h2>Test</h2>
<p>I've made tests for some project's</p>
<table>
<tr>
<td>Test</td>
<td>Tested</td>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/ft_printf_test">ft_printf_test</a></td>
<td><a href="https://git.cacharle.xyz/ft_printf">ft_printf</a></td>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/libasm_test">libasm_test</a></td>
<td><a href="https://git.cacharle.xyz/libasm">libasm</a></td>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/minishell_test">minishell_test</a></td>
<td><a href="https://git.cacharle.xyz/minishell">minishell</a></td>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/philosophers_test">philosophers_test</a></td>
<td><a href="https://git.cacharle.xyz/philosophers">philosophers</a></td>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/ft_containers_test">ft_containers_test</a></td>
<td><a href="https://git.cacharle.xyz/ft_containers">ft_containers</a></td>
</tr>
<tr>
<td><a href="https://git.cacharle.xyz/ft_ls_test">ft_ls_test</a></td>
<td><a href="https://git.cacharle.xyz/ft_ls">ft_ls</a></td>
</tr>
</table>
</div></body>
</html>
|