aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html61
-rw-r--r--school.html98
-rw-r--r--style.css14
3 files changed, 117 insertions, 56 deletions
diff --git a/index.html b/index.html
index cc5e7bd..f464e4d 100644
--- a/index.html
+++ b/index.html
@@ -7,67 +7,16 @@
<meta charset="utf-8"/>
</head>
- <body>
-
+ <body><div id="page-wrapper">
<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>I'm a computer science student currently at <a href="https://www.s19.be/">s19</a>, a summary of my progress can be found <a href="school.html">here</a></p>
+ <p>This site is an experiment to host some of the services I use every day like a mail server and a <a href="https://git.cacharle.xyz">git server</a> 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>
+ <li><a href="https://git.cacharle.xyz">my git server</a></li>
+ </div></body>
</html>
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>
diff --git a/style.css b/style.css
index 69023c3..dcacff8 100644
--- a/style.css
+++ b/style.css
@@ -13,3 +13,17 @@ a {
color: #1E88E5;
text-decoration: none;
}
+
+td, th {
+ padding: 2px;
+}
+
+div#page-wrapper {
+ margin-left: 30px;
+ margin-right: 30px;
+}
+
+h1 {
+ text-align: center;
+ text-decoration: underline;
+}