Skip to content
View awmie's full-sized avatar
πŸ’­
equality is just a fantasy
πŸ’­
equality is just a fantasy

Highlights

  • Pro

Block or report awmie

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
awmie/README.md
from dataclasses import dataclass

@dataclass
class AboutMe:
    name: str = "Amritava Kole"
    email: str = "[email protected]"
    linkedin: str = "https://www.linkedin.com/in/amritava-kole-521bb0229/"
    website: str = "https://awmie.github.io/aboutme/"
    projects: list = ("Discord AI music Bot", "Chain of Though Project - ChatGroq", "Arcadia Esports", "Haven't listed all yet")
    skills: list = (
        "Python", "JavaScript", "TypeScript", "C++", "HTML5", "CSS3", "PHP", "TailwindCSS", "Three.js",
        "MongoDB", "MySQL", "Node.js", "NPM", "Django", "Flask", "TensorFlow", "Keras", "SciPy", "NumPy",
        "Pandas", "Google Cloud", "Heroku", "Vercel", "Anaconda", "Docker", "Linux", 
        "Adobe After Effects", "Adobe Premiere Pro", "Adobe XD", "Affinity Designer", "Canva"
    )

    def __str__(self):
        return f"πŸ‘‹ {self.name}\nπŸ“§ {self.email}\nπŸ”— {self.linkedin}\n🌐 {self.website}\n" + \
               "\nπŸ“Œ Projects:\n" + "\n".join(f" - {p}" for p in self.projects) + \
               "\n\n⚑ Skills & Tech Stack:\n" + ", ".join(self.skills)

if __name__ == "__main__":
    print(AboutMe())

copy and Run the above code here



GitHub Streak

Pinned Loading

  1. GroqChat GroqChat Public

    Chain of Thought + Groq API usage interface

    TypeScript 1

  2. GenZChat GenZChat Public template

    chat what u like

    HTML 1

  3. tishmish tishmish Public

    discord music bot

    Python 3 1

  4. RunPython RunPython Public

    online ide

    TypeScript

  5. ArcadiaEsports ArcadiaEsports Public

    The ARCADIA ESPORTS @mygbu

    HTML 3 3

  6. SongRec SongRec Public

    song recommendations using ai agents

    Python