- π Iβm currently working on (passaion project ), Hackathon Idea Classroom (Backend), and an research paper.
- π± Iβm currently learning React.js, Django, and tackling LeetCode Java Problems.
- π― Iβm looking to collaborate on GSOC 2025 Projects.
- π€ Iβm seeking guidance for GSOC 2025 ideas and implementation.
- π¬ Ask me about C++, JavaScript, Python, or anything tech-related.
- π« Reach me via LinkedIn or email me at avk8923@gmail.com.
- β‘ Fun fact: I'm a shayar with great humor and love infusing creativity into everything I do.
from PIL import Image, ImageDraw, ImageFont
# Create a new image with background color
banner = Image.new("RGB", (1500, 500), "black")
draw = ImageDraw.Draw(banner)
# Add text
font = ImageFont.truetype("arial.ttf", 80)
draw.text((50, 200), "Welcome to My GitHub", fill="white", font=font)
# Save banner
banner.save("github_banner.png")