diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-07-24 17:10:15 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-07-24 17:10:15 +0200 |
| commit | 5c8e359696b05bbd52a13a908c8aa6e4e1bbe5b9 (patch) | |
| tree | 6a63d970d68e2b1cc627fde6111ddbc5ceba9caf /school.html | |
| parent | 107784e82eef97a4bf5a322d606eddcbbee0db0a (diff) | |
| download | cacharle.xyz-5c8e359696b05bbd52a13a908c8aa6e4e1bbe5b9.tar.gz cacharle.xyz-5c8e359696b05bbd52a13a908c8aa6e4e1bbe5b9.tar.bz2 cacharle.xyz-5c8e359696b05bbd52a13a908c8aa6e4e1bbe5b9.zip | |
Cleaning home page
Diffstat (limited to 'school.html')
| -rw-r--r-- | school.html | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/school.html b/school.html new file mode 100644 index 0000000..b1749e0 --- /dev/null +++ b/school.html @@ -0,0 +1,98 @@ +<!DOCTYPE html> + +<html> + <head> + <title>cacharle</title> + <link rel="stylesheet" type="text/css" href="style.css"/> + <meta charset="utf-8"/> + </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> + </table> + + <h2>Pending</h2> + <table> + <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_containers">ft_containers</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_services">ft_services</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> + <tr><td><a href="https://git.cacharle.xyz/philosophers">philosophers</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/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> |
