aboutsummaryrefslogtreecommitdiff
path: root/index.html
blob: cc5e7bda04138d2062d00639ca365f6cceb33246 (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
<!DOCTYPE html>

<html>
    <head>
        <title>cacharle</title>
        <link rel="stylesheet" type="text/css" href="style.css"/>
        <meta charset="utf-8"/>
    </head>

    <body>

        <h1>Charles's website</h1>

        <h2>About me</h2>

        <p>I'm a computer science student currently at <a href="https://www.s19.be/">s19</a></p>
        <p>This site is an experiment to self host some of the services I use every day like mails and git repositories and becoming more independant in general.</p>
        <p>Inspired by a serie of <a href="https://www.youtube.com/watch?v=bdKZVIGRAKQ&list=PL-p5XmQHB_JRRnoQyjOfioJdDmu87DIJc">videos</a> posted by <a href="https://lukesmith.xyz">Luke Smith</a>.</p>

        <h2>School projects</h2>

        <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/>

        <h3>Validated</h3>
        <ul>
            <li><a href="https://github.com/cacharle/libft">libft</a> - 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</li>

            <li><a href="https://github.com/cacharle/get_next_line">get_next_line</a> - A function which read's the next line of a file descriptor each time it is called, will later be integrated to the libft</li>

            <li><a href="https://github.com/cacharle/ft_printf">ft_printf</a> - Rewrite the <code>printf</code> function</li>

            <li><a href="https://github.com/cacharle/ft_server">ft_server</a> - Introduction to Docker, An nginx server running Wordpress, phpmyamdin with a MySQL database</li>

            <li><a href="https://github.com/cacharle/cub3d">cub3d</a> - Raycasting with textures and a map generated from a formated file</a>

            <li><a href="https://github.com/cacharle/libasm">libasm</a> - Indroduction to x86_64 assembly, rewritting some basic libc function</li>
        </ul>

        <h3>Pending</h3>
        <ul>
            <li><a href="https://github.com/cacharle/computorv1">computorv1</a></li>
            <li><a href="https://github.com/cacharle/computorv2">computorv2</a></li>
            <li><a href="https://github.com/cacharle/push_swap">push_swap</a></li>
            <li><a href="https://github.com/cacharle/fractol">fractol</a></li>
            <li><a href="https://github.com/cacharle/scop">scop</a></li>
            <li><a href="https://github.com/cacharle/42run">42run</a></li>
            <li><a href="https://github.com/cacharle/ft_ls">ft_ls</a></li>
            <li><a href="https://github.com/cacharle/ft_select">ft_select</a></li>
            <li><a href="https://github.com/cacharle/ft_containers">ft_containers</a></li>
            <li><a href="https://github.com/cacharle/ft_ping">ft_ping</a></li>
            <li><a href="https://github.com/cacharle/piscine_cpp">piscine_cpp</a></li>
            <li><a href="https://github.com/cacharle/ft_services">ft_services</a></li>
            <li><a href="https://github.com/cacharle/ft_ssl">ft_ssl</a></li>
            <li><a href="https://github.com/cacharle/rubik">rubik</a></li>
            <li><a href="https://github.com/cacharle/ft_linear_regression">ft_linear_regression</a></li>
            <li><a href="https://github.com/cacharle/dslr">dslr</a></li>
            <li><a href="https://github.com/cacharle/philosophers">philosophers</a></li>
        </ul>

        <h3>Test</h3>
        <p>I've made tests for some project's</p>
        <ul>
            <li><a href="https://github.com/cacharle/ft_printf_test">ft_printf_test</a></li>
            <li><a href="https://github.com/cacharle/libasm_test">libasm_test</a></li>
            <li><a href="https://github.com/cacharle/minishell_test">minishell_test</a></li>
            <li><a href="https://github.com/cacharle/ft_containers_test">ft_containers_test</a></li>
            <li><a href="https://github.com/cacharle/ft_ls_test">ft_ls_test</a></li>
        </ul>

        <h2>Links</h2>
        <li><a href="https://github.com/cacharle">github</a></li>
    </body>
</html>