Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xevion/xevion
Profile Repository
https://github.com/xevion/xevion
Last synced: 13 days ago
JSON representation
Profile Repository
- Host: GitHub
- URL: https://github.com/xevion/xevion
- Owner: Xevion
- Created: 2020-07-09T01:47:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-03T06:06:21.000Z (7 months ago)
- Last Synced: 2024-06-03T07:32:02.933Z (7 months ago)
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```rust
use std::env;
use std::collections::HashMap;
use rand::seq::SliceRandom;use Life::Interests::Technology::{
Languages::{Go, Rust},
Fields::{GameHacking, WebDevelopment},
Infrastructure::{Unraid, Docker},
};
use Life::Mental::Traits::{Diagnosed::ADHD, Undiagnosed::Autism};
use Life::Interests::Arts::{Photography, DigitalArt::AIArt};
use Life::Interests::Gaming::Simulation::{Factorio, RimWorld};impl Human {
fn me(username: &str) -> Human {
let middle_name = vec![env::var("MIDDLE_NAME").unwrap_or_default().as_str(), "C", ""].choose(&mut rand::thread_rng()).unwrap_or(&"");
let name = format!("Ryan {} W.", middle_name, last_name);let endpoints = std::collections::HashMap::from([
("discord", ".xevion"),
("email", "[email protected]"),
]);Human {
name,
pronouns: vec!["he", "they"],
occupation: Life::Occupations::Student::University.pull(),
description: "
A full-stack software engineer navigating their way through the industry.
With an attention to detail, I enjoy building projects that are elegant, robust, and impactful.
Although I specialize in Web Development, my skill set is extensive, and I'm confident in my ability to learn anything.",
recent_projects: vec![
"https://github.com/acmutsa/Portal",
"https://github.com/Xevion/rdap",
"https://github.com/Xevion/grain",
],
endpoints,
}
}
}
```