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.
Я начинающий студент разработчик и администратор 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",
}


