Skip to content
View nironwp's full-sized avatar
🏠
Working from home
🏠
Working from home

Highlights

  • Pro

Block or report nironwp

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

cat lib.rs

struct MoreAboutMe {
    technologies: Technologies,
}

impl MoreAboutMe {
    fn index() -> MoreAboutMe {
        MoreAboutMe {
            technologies: Technologies {
                frontend: Frontend {
                    javascript: vec!["React", "Next", "Redux"],
                    css: vec!["Materialize", "Tailwind", "Styled-components", "Bootstrap"],
                },
                backend: Backend {
                    java: vec!["Springboot"],
                    javascript: vec!["Node", "Nest", "Express", "Fastify"],
                    rust: vec!["Shuttle", "Rocket", "Actix"],
                    python: vec!["Django"],
                },
                db: vec!["MongoDB", "Postgres", "MySQL", "Sqlite"],
                dev_ops: vec!["Docker", "AWS", "Azure", "GCP"],
                misc: vec!["Firebase", "Socket.IO", "Postman", "Insomnia", "Xampp", "Eclipse", "Nginx", "Apache"],
            },
        }
    }
}

struct Technologies {
    frontend: Frontend,
    backend: Backend,
    db: Vec<&str>,
    dev_ops: Vec<&str>,
    misc: Vec<&str>,
}

struct Frontend {
    javascript: Vec<&str>,
    css: Vec<&str>,
}

struct Backend {
    java: Vec<&str>,
    javascript: Vec<&str>,
    rust: Vec<&str>,
    python: Vec<&str>,
}

Popular repositories Loading

  1. hexagonal-architecture hexagonal-architecture Public

    This GitHub repository showcases a Go-based project implementing the Hexagonal Architecture pattern, emphasizing the use of adapter ports for clean separation of concerns and flexible component int…

    Go 1

  2. nironwp nironwp Public

  3. desafio-vaga-front-jr-UR desafio-vaga-front-jr-UR Public

    Challenge related to Front End React Junior developer vacancy

    TypeScript

  4. ETHDaddy ETHDaddy Public

    Become the owner of your own domain name on Ethereum with ETHDaddy! List and mint unique domain name tokens and use them as custom identifiers in decentralized applications. Experience blockchain t…

    JavaScript

  5. rust-vercel-homepage rust-vercel-homepage Public

    This project is a test prototype to evaluate the use of the Rust language as a front-end framework. It includes a basic implementation of the Vercel homepage using Yew and Trunk.

    SCSS

  6. infra-aws-template infra-aws-template Public

    This repository provides Terraform templates for creating an AWS infrastructure solution.

    HCL