Giter Site home page Giter Site logo

👋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"],
        },
    }
}

Alex Gorichev's Projects

polybility icon polybility

A Duolingo-esque app where you can create your own courses

rpl icon rpl

A library to make rust array based

rusty-jlox icon rusty-jlox

My Rust version of the first jlox compiler from Crafting Interpreters

smalltext-rust icon smalltext-rust

Convert to ₛₘₐₗₗₜₑₓₜ with a small program that follows the Unix philosophy

space-sim icon space-sim

A simple space simulator made with Godot and writen in gdscript

spotube icon spotube

A lightweight free Spotify 🎧 crossplatform-client 🖥📱 which handles playback manually, streams music using Youtube & no Spotify premium account is needed 😱

terminal-adventure icon terminal-adventure

A interactive novel played purely through a terminal by navigating (mainly) with "cd" and interacting (mainly) with a command-line text editor.

uiua icon uiua

A stack-based array programming language

voklen icon voklen

Config files for my GitHub profile.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.