fleet owners lose ₹20k+ to expired docs every year
building: auto WhatsApp alerts 30/7/1 day before expiry. cron job. no app needed.
₹900/month to run for 100 trucks. one fine avoided = whole year free
what am i missing? 👇
#buildinpublic#saas#nodejs
I built 5 UI components in 45 mins.
Not because I got better at coding.
Because I finally used Claude's skills properly.
Frontend dev used to take hours. Now it takes minutes.
Most devs are using AI like Google. That's why they're stuck.
What's your AI workflow? 👇
Open source taught me more than any course ever did. 610 contributions. 48 repos. 22-day streak. Not to flex but to show what consistency looks like. Find a repo you use. Pick a "good first issue". Open a PR. That's it. No permission needed. Start today 🚀
500MB XML file. Lambda with 512MB RAM.
We used Go's streaming XML decoder — one record at a time, constant memory.
Zero-byte S3 marker for idempotency. SHA-256 per record for dedup.
/tmp for extraction. Delete after parse.
Boring decisions. Reliable systems.
#golang#aws#backend
Nobody talks about the middle part.
The 2 am moment when Google asks, "Who is your target audience?" and you - the person who BUILT it — genuinely don't know.
That broke me. Then, it rebuilt me better.
10/11 on Google Play. 100 testers loading.
#BuildInPublic#AndroidDev
Most devs think row-level security = full protection.
It doesn't stop someone from creating a post with your userId.
No hacking. No modifying data. Just passing a different ID.
Server-side identity verification is not optional.
Read more GitHub issues. That's where real learning
Just deployed a full serverless backend on AWS with one command.
API Gateway → Lambda → DynamoDB → S3 → EventBridge
All wired. All production-ready. Under 3 minutes.
This is what Infrastructure as Code looks like.
npx cdk deploy hits different. 🚀
Upgraded Appwrite to 1.9.0 and got hit with:
❌ Unknown attribute: "emailCanonical."
Migration ran. Error stayed.
Turns out — migration can fail silently and leave your schema half-broken.
Fix: verify the attribute exists in system → users collection manually.
#Appwrite#Backend
Your job title says "Software Developer." Your actual job in 2026? AI Supervisor. Agents write the code. You review, steer & architect. Adapt or get left behind. 🤖 #AIAgents#Dev#SoftwareEngineering
A developer was stuck for 3 weeks on an Appwrite bug.
The fix? One line.
❌ queries[]=limit(1)
✅ queries[0]={"method": "limit", "values":[1]}
Version syntax mismatch. That's it.
Sometimes the biggest bugs have the smallest fixes 🙌
#OpenSource#Appwrite#BuildInPublic
💀 Just built an AI that roasted me on first run
Me: "NVIDIA Mistral kesa chal raha hai?"
My own AI with my own data: "Focus: 0s. Zero productivity. Khud hi khud ka rasta rok raha hai."
THE AI CALLED ME UNPRODUCTIVE 😭
And it was 100% right 😂
#Go#NVIDIA#RAG#BuildInPublic
🔥 Just integrated Appwrite into my personal OS built in Go!
Built a full storage engine with: → Custom Store interface → Upsert / Get / List / Delete → Clean error handling
Biggest debug today — SDK method was on instance not package
Ship karte raho!
#Golang#Appwrite#CLI
🪨 Just solved Last Stone Weight on LeetCode!
Heaviest 2 stones → smash them. Equal?
Both gone 💥 Unequal?
Difference survives
Used MaxHeap → always get the heaviest in O(log N)
Heap problems are actually FUN once they click! 🔥
#DSA#LeetCode#JavaScript#CodingJourney