Skip to content
View 0xrnp's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report 0xrnp

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
0xrnp/README.md
#[derive(Debug)]
struct Developer {
    name: &'static str,
    role: &'static str,
    location: &'static str,
    core_stack: Vec<&'static str>,
    exploring: Vec<&'static str>,
    interests: Vec<&'static str>,
}

fn main() {
    let me = Developer {
        name: "Rudra Narayan Panda 👋",
        role: "Software Engineer — curious about what happens under the hood",
        location: "Odisha, India",

        core_stack: vec![
            "Java",
            "Spring Boot",
            "Hibernate",
            "Microservices",
            "AWS",
            "PostgreSQL",
            "MongoDB",
            "Redis",
            "Kafka",
            "RabbitMQ",
            "Elasticsearch",
            "Datadog",
        ],

        exploring: vec![
            "Rust",
            "Database Internals",
            "Apache Cassandra",
            "Surreal DB",
            "Distributed Systems",
        ],

        interests: vec![
            "Scalable Systems",
            "System Design",
            "Performance Engineering",
            "Backend Engineering",
        ],
    };

    println!(
        "Building scalable systems, understanding how they work, \
         and making existing systems better."
    );

    println!("{:#?}", me);
}

Pinned Loading

  1. 0xrnp 0xrnp Public

    2

  2. dotfiles dotfiles Public

    My dotfiles

    Shell