Skip to content
View Mageas's full-sized avatar
🏠
Learning new languages
🏠
Learning new languages

Highlights

  • Pro

Organizations

@heartnerds
Block or Report

Block or report Mageas

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Mageas/README.md

Hello, I'm Arnaud Gaydamour!

I am currently living in Lyon, France and I am studying again. I am self-taught and I am learning programming through small personal projects in my free time.


Linkedin  Youtube  Youtube 

struct Identity<'a> {
    name: &'a str,
    username: &'a str,
    location: &'a str,
    web: &'a str,
}

struct Skill<'a> {
    name: &'a str,
    list: Vec<&'a str>,
}

fn main() {
    let me = Identity {
        name: "Arnaud Gaydamour",
        username: "Mageas",
        location: "Lyon, France",
        web: "https://gitea.heartnerds.org/Mageas",
    };
    
    let my_skills = vec![
        Skill {
            name: "Languages",
            list: vec!["Rust", "Shell", "Python", "Javascript", "PHP", "HTML", "CSS"],
        },
        Skill {
            name: "Frameworks",
            list: vec!["React", "SugarCRM", "NestJS", "Laravel"],
        },
        Skill {
            name: "Operating system",
            list: vec!["Linux", "Windows"],
        },
        Skill {
            name: "Devops",
            list: vec!["Docker", "Nginx"],
        },
        Skill {
            name: "Tools",
            list: vec!["Git", "Vim", "VSCode", "Emacs"],
        },
    ];
}

Pinned

  1. twitch_recover_rs twitch_recover_rs Public

    Twitch Recover is a free tool for recovering direct m3u8 links (compatible with sub-only VODs)

    Rust 2 1

  2. rs-uptobox rs-uptobox Public

    Rust wrapper crate around the Uptobox API.

    Rust

  3. mkv_default_track mkv_default_track Public

    Changing default languages and subtitles in Matroska files.

    Rust 1

  4. simple-arch-installer simple-arch-installer Public archive

    This script allows you to install Arch Linux (UEFI) easily and quickly without any bloat.

    Shell

  5. goulagos goulagos Public

    GoulagOs is my own archlinux distribution.

    Shell

  6. single-gpu-passthrough single-gpu-passthrough Public

    This tutorial allows to create a KVM.

    5 2