Skip to content
View TheGittyPerson's full-sized avatar
  • 17:28 (UTC +09:00)

Block or report TheGittyPerson

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
TheGittyPerson/README.md

Greetings! 👋

I code for fun mostly.

class Person:
    def __init__(self, name, age, hobby, gender,
                 nationality, fav_food, fav_emoji):
        self.name = name.title()
        self.age = age
        self.hobby = hobby
        self.gender = gender
        self.nationality = nationality
        self.fav_food = fav_food
        self.fav_emoji = fav_emoji
        ...

    def greet(self) -> None:
        print(
            f"Hello! I'm {self.name}. {self.fav_emoji}"
            f"\nI'm {self.age} years old."
            f"\nI'm from {self.nationality}."
            f"\nI love {self.hobby} and {self.fav_food}."
        )


me = Person(
    "morpheus",
    "hah not telling you",
    "programming",
    "male",
    "Ormaphea",
    "norishio potato chips",
    "\U0001F972"
)
me.greet()
Hello! I'm Morpheus. 🥲
I'm hah not telling you years old.
I'm from Ormaphea.
I love programming and norishio potato chips.

(Eager to learn more)

Pinned Loading

  1. day-quality-tracker day-quality-tracker Public

    A simple Python CLI that helps you track your day quality ratings and visualize them on a graph using the `matplotlib.pyplot` module.

    Python 1 2

  2. kinky-button kinky-button Public

    Are you kinky? Do you like buttons? This is just for you.

    JavaScript 2

  3. SpotifyAdMuter SpotifyAdMuter Public

    Spotify Ad Muter (SAM) is a Python CLI that automatically detects Spotify (Desktop app) ads on macOS and mutes Spotify.

    Python 1

  4. random-walk random-walk Public

    A simple Python simulation API that generates some beautiful random walks using the Matplotlib library.

    Python 1

  5. PyPacks PyPacks Public

    A simple Python script that automatically installs third-party dependencies using pip.

    Python

  6. bicycle-cipher bicycle-cipher Public

    A Python module for Bicycle cipher encryption and decryption. See `README.md` for what the Bicycle cipher is.

    Python 1