Welcome to my blog! Here you’ll find my latest posts.
Takeaways From Google Hackathon
Intro Throughout the month of January I worked on an ai agent that helps dementia patients with their reminiscence therapy. During this process I learned a lot about developement in the new era of AI. In this post I want to share some of my key takeaways from the experience and some of the things I learned along the way. 1. Coding with AI In late November Anthropic released Claude Opus 4.5 and like many others, I believe this was a major turning point in software development or any knowledge based work. Throughout this project I utilized Claude Code and Google’s Antigravity IDE to help me plan features and build them out. These tools are game changers for knowledge work because they can quickly retrieve information from documentation like the context7 mcp server, your codebase, or the internet. While have a better model does produce better results, the real trick is all about giving the model the best context possible. Using the context7 mcp server to give the model access to the documentation for the various apis I was using meant that I didn’t have to spend time looking through the documentation for code examples or syntax and instead spend time architecting the application to meet my needs. So while coding with AI is clearly here to stay, these models can also be beneficial when creating a PRD or feature specs. The ability to quickly retrieve information about apis or libraries was very beneficial for me during the planning fase when I needed to compare two different options for a certain use. ...