Skip to content
View Brobb954's full-sized avatar

Highlights

  • Pro

Organizations

@The-Middle-Men-OTC
Block or Report

Block or report Brobb954

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

Good Morning! I'm Brandon Robb

I'm aspiring software developer with a military background in aviation maintenance, currently a junior at Auburn University pursuing a Bachelor of Computer Science with a graduation date of August 2025

Top Langs


struct Applicant {
    name: String,
    college_level: String,
    education: String,
}

fn applyForInternship(applicant: &Applicant) -> String {
    Let internship = "Software Developer";
    Let company = "Your Company";
    Let location = "Remote";
    Let duration = "Any";

    if company.is_hiring() && applicant.is_qualified() {
        return "You're hired!";
    } else {
        return "Sorry! Try again another time.";
    }
}

fn main() {
    let me = Applicant {
        name: String::from("Brandon Robb"),
        college_level: String::from("Junior"),
        education: "Pursuing a B.S. in Computer Science".to_string(),
    };

    let application_status = applyForInternship(&me);
    println!("{}", application_status);
}

Military Service:


Languages Learned:

Languages Learning:

Tech Stacks:

Certifications and Licenses:



Projects

  • Simple Budget It
    • Created to be a budgeting app that is simple to use but packed with robust features. It is currently functional in python but I am in the process of converting it to a Tauri app which uses a rust back end and a react front end.
    • Right now it simply tracks income and expenses inputed by the user in a excel spreadsheet, with the upgrade to Tauri it will rely on a postgres database for more efficent data storage and retrival. I will also be looking to implement a multiple budget, interface to be able to use it for forcasting months in advance or tracking budget overtime, I would also like to create charts to show trends.
  • Trust Rent
    • TrustRent is a cutting-edge web application designed for the Solana network, leveraging the speed and transparency of blockchain to transform the rental market. The TrustRent platform is built with the aim of optimizing rent payments and security deposit management, guaranteeing instant transactions, yielding financial benefits, and fostering trust between tenants and landlords.
    • My role in this project was to create the backend using Anchor, a rust based framework for Solana, to create the smart contracts that would handle the transactions between the tenants and landlords. I also created the database schema and the API endpoints that would be used by the front end to interact with the smart contracts.

Popular repositories Loading

  1. simply_budget_it simply_budget_it Public

    A simple local program that allows the user to forecast their income/expenses or track daily expense/income

    Rust 1

  2. school_projects school_projects Public

    Programs I have built as part of earning my degree

    Assembly

  3. Brobb954 Brobb954 Public

  4. cryptosync cryptosync Public

    TypeScript

  5. kickstart.nvim kickstart.nvim Public

    Forked from nvim-lua/kickstart.nvim

    A launch point for your personal nvim configuration

    Lua

  6. reviews-fe reviews-fe Public

    Forked from auburnonlinecs/reviews-fe

    The front-end code for the course reviews project that will consume the API

    TypeScript