AboutProjectsEducationContactLife & Stories
Hi! I'm
Aryan

a
designer
Developer based in India.
Designer

UI/UX Designer with a passion for
designing beautiful and functional
user experiences. Minimalist who
believes that less is more.

<Coder>

Full stack developer who focuses
on writing clean, elegant and
efficient code. Love HTML, CSS,
Javascript and a touch of MongoDB.

/git.svg
/twit.svg
/link.svg
/reddit.svg
/google.svg
/insta.svg

About Me

/photo_6060146018424569263_y.jpg
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

/golang.png
/grid.svg
Current status :
Learning GoLang
Do you want to start a project together?

My Tech Stack

  • logo
  • logo
  • logo
  • logo
  • logo
  • logo
  • logo
  • logo
  • logo
  • logo
  • logo
  • logo
  • logo
RecentProjects

A small selection of my recent works.

bgimg
cover

MarketMentor - Stocks Chatbot

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

icon
icon
icon
icon
icon
icon

Live Site

bgimg
cover

BoxZone - Ecommerce

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

icon
icon
icon
icon
icon
icon

Live Site

bgimg
cover

LikeLoop - Social Media App

A real-time social media platform to share updates and connect with friends.

icon
icon
icon
icon
icon
icon

Live Site

bgimg
cover

Globe Glider - Travel Website

A full-fledged tourism website to explore and book global travel experiences.

icon
icon
icon
icon

Live Site

Want to know more about my Projects?

Click any image to see the project live link or Github repository.

Boxzone

Boxzone

LikeLoop

LikeLoop

CyberScoop

CyberScoop

NewsFlow

NewsFlow

eNotes

eNotes

NewsFlow

NewsFlow

eNotes

eNotes

GlobeGlider

GlobeGlider

NewsFlow

NewsFlow

SmartBridge

SmartBridge

Dropout Visualize

Dropout Visualize

ScoreStream Pro

ScoreStream Pro

Boxzone

Boxzone

Dropout Visualize

Dropout Visualize

E Free Invoice

E Free Invoice

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