Skip to content
View i701's full-sized avatar
😁
Hi
😁
Hi
Block or Report

Block or report i701

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
i701/README.md
import random

class Me:
    def __init__(self):
        self.greeting = "Yeet! πŸ‘‹, I'm Aidhaan"
        self.bio = "Full stack Web Developer from Maldives πŸ‡²πŸ‡»"
        self.languages = ['javascript', 'typescript', 'python']
        self.frameworks = ['NextJS', 'Django', 'React', 'DRF']
        self.website = 'dev.idhaan.me'
        self.projects = ['https://donors.ungoodhoo.live']
        self.facts = [
            "I love Telegram.",
            "Not only do I love Telegram, I obsess over it.",
            "I loathe Viber.",
            "I like chocolate cake.",
            "I love football.",
            "I don't like my native language, Dhivehi."
        ]

    def get_random_fact(self) -> str:
        """Get a random fact about me."""
        return random.choice(self.facts)



if __name__ == "__main__":
    me = Me()
    print(me.get_random_fact())

Ashutosh's github activity graph

i701

Pinned Loading

  1. remix-todo remix-todo Public

    Yet another Another To-do app but in remix.

    TypeScript