Skip to content
View Voklen's full-sized avatar
🦀
Rust
🦀
Rust
Block or Report

Block or report Voklen

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
Voklen/README.md

👋Hello, I'm Alex

pub struct SoftwarePreferences<'a> {
    os: &'a str,
    desktop_environment: &'a str,
    browser: &'a str,
    search_engine: &'a str, // Not local software, but software nevertheless
    IDEs: Vec<&'a str>,
}

pub struct Me<'a> {
    name: &'a str,
    uptime_years: u128,     // A u128 might be a biiit exccessive for age...
    pronouns: Vec<&'a str>, // Vector because pronouns could be added or removed during human's runtime
    favorite_languages: Vec<&'a str>,
    software_preferences: SoftwarePreferences<'a>,
}

pub fn main<'a>() -> Me<'a> {
    Me {
        name: "Alex Gorichev",
        uptime_years: 18,
        pronouns: vec!["he", "him", "they", "them"],
        favorite_languages: vec!["Rust", "Python", "GDScript"],
        software_preferences: SoftwarePreferences {
            os: "Arch linux",
            desktop_environment: "Hyprland",
            browser: "Firefox",
            search_engine: "Ecosia",
            IDEs: vec!["Helix", "VSCodium"],
        },
    }
}

Pinned

  1. Daily-Diary Daily-Diary Public

    An app to create a diary entry every day

    Dart 43 2

  2. Crypto-Forum Crypto-Forum Public

    A cryptographically secure command line based forum

    Rust 1

  3. voklen.github.io voklen.github.io Public

    The source code for my personal website.

    JavaScript 2 1

  4. Covalent-Molecule-Simulation Covalent-Molecule-Simulation Public

    Visual simulation of PD-PD forces

    GDScript 2

  5. Space-sim Space-sim Public

    A simple space simulator made with Godot and writen in gdscript

    GDScript 2 1

  6. Output-Source Output-Source Public

    A python program that prints out it's own source code

    Python 2