Skip to content
View rcghpge's full-sized avatar
🌎
~ working on stuff
🌎
~ working on stuff

Block or report rcghpge

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

About Me

Generate an About Me for your GitHub page and also run your first line of code in Mojo 🔥

from collections import list, string

fn about_me() raises -> String:
    """
    Generate an About Me in Mojo.
    """
    var name = "Robert"
    var profession = "full-time university student."
    var interests = List[String]()
    interests.append("Research")
    interests.append("Development")
    interests.append("Programming")
    interests.append("Engineering")
    interests.append("AI")
    interests.append("Data Science")
    var current_focus = "graduating."

    var about_me_text = String("Hey, I'm " + String(name) + ". I am a " + String(profession))
    about_me_text += ("\nMy interests include:\n")
    for i in range(len(interests)):
        var interest = interests[i]
        about_me_text += String("- ") + interest + "\n"
    about_me_text += ("Currently, I'm focusing on " + String(current_focus))
    return about_me_text

fn main() raises:
    print(about_me())

TLDR: I'm Robert - MySpace taught me how to code

Pinned Loading

  1. pymo pymo Public

    A framework in Mojo for AI/ML/DL applications and other domains.

    Mojo 1

  2. webpage-template webpage-template Public

    A webpage building template. Demo in link below.

    SCSS

  3. data-3461-ml data-3461-ml Public

    Machine Learning in Python @ UTA. Spring 2025

    Python 1

  4. data-3442-lab data-3442-lab Public

    Statistical Methods for Data Science 2 in R @ UTA. Spring 2025

    R