I built my own personal dashboard to track my life I was tired of my data being scattered across apps, spreadsheets, and services I couldn't query, finally decided to build my own system. https://preview.redd.it/cpjvdx1t1dyg1.png?width=1643&format=png&auto=webp&s=70e3635a8e461021a1d6baeaeea2ef5aa75ecb79 It first started as a habit tracker for flashcards and guitar practice but then I added runs, books, movies, games, subscriptions, YouTube feeds. Everything lives in one place with one database and access through REST API. Since all my data is structured and accessible, hooking up LLM is really beneficial. Now I can just ask "What books did I read this year?" and it queries my database directly. Runs on a Raspberry Pi at home through Tailscale. Stack: SQLite, Bun + Hono, React, Vercel AI SDK. I wrote the full story here: [The Personal Backend I Wish I Had Sooner](https://jakmaz.com/blog/personal-backend) Since this is meant to be personal, I'm not sharing a codebase.…