Built an AI agent that turns book PDFs into chapter-wise summaries you can chat with.
Async pipeline (Inngest) processes pages in background → structured chapters → ask anything.
Still improving context + cross-chapter reasoning.
#AI#AIAgents#LLM#BuildInPublic#typescript
Just built something fun on Hugging Face.
It’s me as a chatbot.
Ask it about my background, experience, and career journey.
Basically an interactive “about me” or online resume page.
Try it here → https://t.co/Tbh4JHkoeL
#AI#Chatbot#HuggingFace#MachineLearning#GenerativeAI
Started part-time on a Flutter project. The code’s a mess, basic GetX setup, no structure. Looks like an agency let a few interns rushed it. Feels wrong. If you’re building for a founder, give them real value. Half-baked code is just deception. Now thinking about dev. it from 0.
Part 2: From 68MB ➡️ 27MB — continuing the exact steps I took to shrink my Flutter app size without losing features.
More tips below 👇 #FlutterDev#AppOptimization
💥One tiny bug should NOT crash your entire Remix app.
Tired of global error boundaries ruining everything?
🔥Start using component-level error boundaries and stop the madness.
📌Full article👉https://t.co/62Kzdhvc2F
#RemixJS#ReactJS#WebDevelopment@remix_run@FullstackDevJS
React: Authentication & Role-Based Navigation!
Had to revisit React for my company’s requirements & built role-based protected routes using React Router v6!
🔥 Key Learnings
✅ Protected Routes with RequireAuth
✅ Role-Based Access Control
✅ Smooth Login & Navigation
@reactjs
🚀 Just launched my new Flutter package, dynamic_row_table, on https://t.co/d6mYTflLYH🎉
Create dynamic tables with multiple lines per cell for flexible and customizable row layouts. Perfect for dashboards or any app requiring more table customization!
🚀Continuing My DevOps Journey!
I’ve made great progress in my DevOps learning, covering key topics like:
AWS : Managing users, billing, and permissions
VM Setup: Manual and automated setup for Windows/Mac Intel/M1 chips
Tools: Chocolatey, Homebrew, and Ubuntu 20 prerequisites
🎯 Learned the basics of API versioning & error handling in Go!
Using chi :
✔️ Modular routers for /v1 endpoints.
✔️ Centralized error handling with clean JSON responses.
✔️ CORS setup for secure cross-origin requests.
Small steps, big impact! 🚀 #Golang#APIDesign#DevLearning
Weekend Project: Bookstore API in #GoLang!
CRUD for books
RESTful API with Gorilla Mux
MySQL + GORM for DB
Modular & clean structure
Faced challenges with 405 errors & Git conflicts but resolved them!
Repo: https://t.co/r3CoLKiVSy
What did you build this weekend? 🚀#golang
Built my first RESTful Movie API with GoLang & Gorilla Mux!
Fetch, add, update, delete movies
Learned JSON encoding, efficient slice handling like `Movies = append(Movies[:i], Movies[i+1:]...)`, & clean code structuring.
#GoLang#Coding@golangch
🛠️ Go Tip: Serving Static Files Made Easy! 🛠️
If you’re building web apps with Go, efficiently serving static assets (CSS, JS, images) is essential. Here’s a quick way to do it using http.FileServer and http.StripPrefix. Let’s break it down: