Skip to content
View Voklen's full-sized avatar
⌨️
Enjoying my custom keyboard
⌨️
Enjoying my custom keyboard

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.

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

👋Hello, I'm Alex

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

// Struct definitions

pub struct Me<'a> {
	name: &'a str,
	uptime_years: u64,
	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 struct SoftwarePreferences<'a> {
	os: &'a str,
	desktop_environment: &'a str,
	browser: &'a str,
	search_engine: &'a str, // Not local software, but software nevertheless
	editor: &'a str,
}

Pinned Loading

  1. Daily-Diary Daily-Diary Public

    An app to create a diary entry every day

    Dart 83 5

  2. voklen.github.io voklen.github.io Public

    The source code for my personal website.

    Astro 3 1

  3. Covalent-Molecule-Simulation Covalent-Molecule-Simulation Public

    Visual simulation of PD-PD forces

    GDScript 2

  4. Space-sim Space-sim Public

    A simple space simulator made with Godot and writen in gdscript

    GDScript 3 1

  5. Output-Source Output-Source Public

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

    Python 2

  6. Bearings Bearings Public

    Calculate bearings from coordinates (written in Uiua)