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 - this is my GitHub page.

Pinned Loading

  1. pymo pymo Public

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

    Mojo 2

  2. mojo mojo Public

    Forked from modular/mojo

    The Mojo Programming Language

    Mojo

  3. web-page-template web-page-template Public template

    A webpage building template. Demo in link below.

    SCSS

  4. llm.mojo llm.mojo Public

    Forked from dorjeduck/llm.mojo

    port of Andrjey Karpathy's llm.c to Mojo

    Mojo

  5. engineering-analysis-project engineering-analysis-project Public

    Engineering project for break-even cost analysis estimation bid.

    MATLAB

  6. ibm-data-science-professional-certificate ibm-data-science-professional-certificate Public

    IBM's Data Science Professional Certificate course @ Coursera

    Jupyter Notebook