About Me

Hi, I'm Aryan 👋 A passionate Full Stack Software Developer 🚀
I'm very flexible with time zone communications
I constantly try to improve
My tech stack
MERNExpressReactJS
AWSNextJSDjango
Developer
Engineer turned

Current status :
Learning GoLang
Do you want to start a project together?
My Tech Stack
RecentProjects
A small selection of my recent works.


MarketMentor - Stocks Chatbot
An open-source AI chatbot leveraging function calling to display TradingView stock market widgets.


BoxZone - Ecommerce
A modern e-commerce platform with advanced scalability and responsiveness.


LikeLoop - Social Media App
A real-time social media platform to share updates and connect with friends.


Globe Glider - Travel Website
A full-fledged tourism website to explore and book global travel experiences.
My Education
lifeMantra.py
1import time
2import random
3
4def eat():
5 print("🍕 Eating junk...")
6
7def sleep():
8 print("😴 Sleeping like a log...")
9
10def code():
11 bugs = random.randint(0, 5)
12 print(f"💻 Coding... introduced {bugs} bugs.")
13 return bugs
14
15def fix_bugs(bugs):
16 fixed = max(0, bugs - random.randint(1, 3))
17 print(f"🔧 Tried fixing bugs. {bugs - fixed} more added.")
18 return fixed + random.randint(1, 2) # extra bugs
19
20life = True
21bugs = 0
22
23while life:
24 eat()
25 sleep()
26 bugs += code()
27 bugs = fix_bugs(bugs)
28 if bugs > 42:
29 print("💥 Too many bugs. Rage quit.")
30 life = False
31 time.sleep(1)
32