AboutProjectsEducationContactLife & Stories
Hi! I'm Β Aryan
a
designer
based in India.
Designer

Creative developer 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 React, Javascript,
Golang and building applications.

/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 πŸš€

Building

scalable digital experiences

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.

bgimgcover

GoTrack - Finance Management Platform

A modern full-stack finance tracking platform for managing transactions, analytics, accounts, and budgets with real-time visual insights.

icon
icon
icon
icon
icon
icon

Live Site

bgimgcover

VoteChain - Decentralized Voting System

A blockchain-based voting platform enabling secure, transparent, and tamper-proof elections using Ethereum smart contracts.

icon
icon
icon
icon
icon

Live Site

bgimgcover

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

bgimgcover

BoxZone - Ecommerce

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

icon
icon
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