From 5c8e359696b05bbd52a13a908c8aa6e4e1bbe5b9 Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 24 Jul 2020 17:10:15 +0200 Subject: Cleaning home page --- index.html | 61 ++++---------------------------------- school.html | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 14 +++++++++ 3 files changed, 117 insertions(+), 56 deletions(-) create mode 100644 school.html diff --git a/index.html b/index.html index cc5e7bd..f464e4d 100644 --- a/index.html +++ b/index.html @@ -7,67 +7,16 @@ - - +

Charles's website

About me

- -

I'm a computer science student currently at s19

-

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.

+

I'm a computer science student currently at s19, a summary of my progress can be found here

+

This site is an experiment to host some of the services I use every day like a mail server and a git server and becoming more independant in general.

Inspired by a serie of videos posted by Luke Smith.

-

School projects

- -

Most of these are in C and respect the coding style of the school called the norm, the guidelines of each project are detailed in the subject.pdf file of each repository.

- -

Validated

- - -

Pending

- - -

Test

-

I've made tests for some project's

- -

Links

  • github
  • - +
  • my git server
  • +
    diff --git a/school.html b/school.html new file mode 100644 index 0000000..b1749e0 --- /dev/null +++ b/school.html @@ -0,0 +1,98 @@ + + + + + cacharle + + + + +
    +

    School projects

    + +

    Most of these are in C and respect the coding style of the school called the norm, the guidelines of each project are detailed in the subject.pdf file of each repository.

    + +

    Validated

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameDescription
    libftRewrite 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
    get_next_lineA function which read's the next line of a file descriptor each time it is called, will later be integrated to the libft
    ft_printfRewrite the printf function
    ft_serverIntroduction to Docker, An nginx server running Wordpress, phpmyamdin with a MySQL database
    cub3dRaycasting with textures and a map generated from a formated file
    libasmIndroduction to x86_64 assembly, rewritting some basic libc function
    + +

    Pending

    + + + + + + + + + + + + + + + + + + +
    computorv1
    computorv2
    push_swap
    fractol
    scop
    42run
    ft_ls
    ft_select
    ft_containers
    ft_ping
    piscine_cpp
    ft_services
    ft_ssl
    rubik
    ft_linear_regression
    dslr
    philosophers
    + +

    Test

    +

    I've made tests for some project's

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    TestTested
    ft_printf_testft_printf
    libasm_testlibasm
    minishell_testminishell
    ft_containers_testft_containers
    ft_ls_testft_ls
    + +
    + 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; +} -- cgit