Posts

Showing posts from July, 2025

From Court to Teammates: An Inspiring Story

Image
T he most inspiring thing I read this morning: Shaq has been fixing/refurbishing basketball courts for 30 years because he knows they help kids a lot. Economic Times 30-Jul-2025 The story showed how playing on one of those courts probably gave Daniels, who grew up in the city, a big chance. He got good enough to play in the NBA. Later, something cool happened: he and Shaq became teammates on the Boston Celtics! Now, Shaq and Daniels are working together to fix up another court where Daniels lives. It's amazing to see how playing on a court as a kid can change your life, lead to surprising friendships, and make you want to help other kids too.

How (A)I built a simple Flutter app over a weekend with zero manual code!

Image
I wanted to create a simple "Goal tracking" app for personal use. An app which will allow me to add goals and mark them manually whenever I achieve them. So I fired up Gemini CLI . I don't remember the actual prompts nor does Gemini CLI save the history, but the initial prompt was something like this. Prompt:   "You are an expert Flutter developer. Create a simple "stock goal tracking" app to allow users to add manual goals. It should allow users to mark the goal as achieved." Within a few seconds, it not only created the app but also added some built-in goals! But it used "shared preferences" ( a different storage usually for minor things). So I had to prompt it to use the sqlite database (personal preference).                                                                 It also added a "Title" as well as "Description"....