Skip to content
View i701's full-sized avatar
😁
Hi
😁
Hi
  • Secretariate of the Maaungoodhoo Council North Miladhunmadulu
  • Maldives
  • 01:15 (UTC +05:00)
  • X @__i701

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.

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

class Me:
    def __init__(self):
        self.greeting = "Yeeeeeeeet! πŸ‘‹, I'm Aidhaan"
        self.bio = "Full stack Web Developer from Maldives πŸ‡²πŸ‡»"
        self.languages = ['javascript', 'typescript', 'python']
        self.frameworks = ['NextJS', 'Django', 'React', 'DRF', 'Tanstack']
        self.website = 'dev.idhaan.me'
        self.projects = ['https://donors.ungoodhoo.live', 'https://gazzette.idhaan.me/docs', 'https://muft.vercel.app', 'https://portal.sarlink.net']
        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. gazzette-api gazzette-api Public

    Gazzette API with scraped data from Gazzette website.

    Python 4 1