diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-11-09 17:39:05 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-11-09 17:39:05 +0100 |
| commit | 9d2c650d7cadf57ecef3d5a1d39f5f98e298ec64 (patch) | |
| tree | ed33badc6aa8305a5e6ea688a6a08e532c92d268 /school.html | |
| parent | f47491b3a89ba769760bb555ea72f1416cb0cb08 (diff) | |
| download | cacharle.xyz-templates.tar.gz cacharle.xyz-templates.tar.bz2 cacharle.xyz-templates.zip | |
Trying to DRY the html with templatestemplates
Diffstat (limited to 'school.html')
| -rw-r--r-- | school.html | 107 |
1 files changed, 0 insertions, 107 deletions
diff --git a/school.html b/school.html deleted file mode 100644 index 8b91ede..0000000 --- a/school.html +++ /dev/null @@ -1,107 +0,0 @@ -<!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> |
