Skip to content
View StelStelox's full-sized avatar
😒
I hate Java
😒
I hate Java

Block or report StelStelox

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
StelStelox/README.md

Hello everyone, my name is Andrey


EN

I'm a beginner student GNU/Linux systems developer and administrator. I'm currently interested in learning systems programming languages, such as Rust, Go, and a little C++. I have experience developing websites and applications. My main projects are hosted in GitHub organization the ArslandTeam. You can find a list of my skill sets and electronic peripherals at the bottom of the MarkDown document.

RU

Я начинающий студент разработчик и администратор GNU/Linux систем. На данный момент я увлекаюсь изучением системеными языками программирования, такие как Rust, Go и не много C++. Имею опыт в разработке Web сайтов и приложений. Мои основные проекты располагаются в GitHub организации ArslandTeam. Со списком моих stack навыков и электроной перефирией вы можите ознакомиться внизу MarkDown документа


#[derive(Debug)]
pub struct Person<'a> {
    pub nickname: &'a str,
    pub name: &'a str,
    pub skills: Vec<&'a str>,
    pub dev_lang: Vec<&'a str>,
    pub web_site: &'a str,
}

#[derive(Debug)]
pub struct Devices<'a> {
    pub computer: &'a Computer<'a>,
    pub smartphone: &'a str,
}

#[derive(Debug)]
pub struct Computer<'a> {
    pub os: &'a str,
    pub cpu: &'a str,
    pub gpu: &'a str,
}

fn main() {
    let person = Person {
        nickname: "StelStelox",
        name: "Andrew",
        skills: vec!["programming", "аdministration linux os"],
        dev_lang: vec!["Rust", "Go", "JavaScript & TypeScript", "C++"],
        web_site: "stelstelox.github.io"
    };
    let device = Devices {
        computer: &Computer {
            os: "Linux Fedora 43",
            cpu: "AMD ryzen 5 7500F",
            gpu: "Radeon 9060 XT 16GB Asus",
        },
        smartphone: "Samsung Galaxy A16 4G 256GB",
    };
    dbg!(&person, &device);
}

Output:

[src/main.rs:39:5] &person = Person {
    nickname: "StelStelox",
    name: "Andrew",
    skills: [
        "programming",
        "аdministration linux os",
    ],
    dev_lang: [
        "Rust",
        "Go",
        "JavaScript & TypeScript",
        "C++",
    ],
    web_site: "stelstelox.github.io",
}
[src/main.rs:39:5] &device = Devices {
    computer: Computer {
        os: "Linux Fedora 43",
        cpu: "AMD ryzen 5 7500F",
        gpu: "Radeon 9060 XT 16GB Asus",
    },
    smartphone: "Samsung Galaxy A16 4G 256GB",
}

Pinned Loading

  1. AuroraTeam/Launcher AuroraTeam/Launcher Public template

    Исходный код лаунчера

    TypeScript 22 23