About Me

Building
scalable digital experiences
Developer
Engineer turned

My Tech Stack
A small selection of my recent works.


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


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


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













