Skip to content
View AntonButyrin's full-sized avatar
:octocat:
working
:octocat:
working

Block or report AntonButyrin

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
AntonButyrin/README.md
use std::io;

fn main() {

    let mut language: String = String::new();
    let mut stack: Vec<&str> = Vec::new();
    
    println!("Hi there, I'm Anton, a backend developer, type language:");

    io::stdin().read_line(&mut language).expect("Sorry, I understand only string format");

    let language: String = language.trim().to_lowercase();

    match language.as_str() {
        "python" => {
            stack = vec!["Python 3.v", "Django", "FastApi", "Flask", "SQLAlchemy", "SQLModel", "Tortoise ORM", "bs4"];
        }
        "rust" => {
            stack = vec!["Rust", "Actix-web", "Rocket", "Tokio", "Diesel", "SQLx"];
        }
        _ => {
            println!("Sorry, I don't know this language");
        }
    }

    if !stack.is_empty() {
        let other_skills = vec![
            "SQL", "PostgreSQL", "JavaScript", "HTML", "CSS", "Docker", "Nginx", "Git", "Redis", "Celery", "Kafka",
        ];
        println!("My stack: {:?}", stack);
        println!("My other skills: {:?}", other_skills);
    }
}

Popular repositories Loading

  1. Vk_bot Vk_bot Public

    Vk bot from skillbox (coursework)

    Python 1

  2. multi-clipboard multi-clipboard Public

    Rust 1

  3. parse_domain parse_domain Public

    If there is a database of domains and you want to find a valid

    Python

  4. django-project-template django-project-template Public

    Forked from 1vank1n/django-project-template

    DPT

    Python

  5. AntonButyrin AntonButyrin Public

    Config files for my GitHub profile.

  6. pycdek pycdek Public

    Forked from andreyvolobuev/pycdek

    Asynchronous python implementation of CDEK API. Used in production at Privezite.com

    Python