Making of GoDoctor: an MCP server for Go development
A deep dive into the design and implementation of GoDoctor, a specialized Model Context Protocol (MCP) server for Go. This talk explores how giving agents specialized tools can significantly improve their effectiveness and reliability.
Tech Talk: Diagnostic agent using Gemini and OSQuery
Inspired by the "computer" in Star Trek, in this talk we are going to create a natural language diagnostic agent that can answer questions about your computer, from asking the number of cores and amount of memory installed to running a "Level 1 Diagnostic Procedure". This AI agent will be built step by step using Python, Vertex AI, Gemini and OSQuery.
The Gopher's Craft in the Age of AI
The talk explores the evolving role of Gophers in the age of AI, focusing on extending language models with custom tools and integrating AI as a powerful extension of skills, using the Model Context Protocol (MCP) and live Go demonstrations.
How to create a diagnostics agent using Gemini and OSQuery
Inspired by the "computer" in Star Trek, in this talk we are going to create a natural language diagnostic agent that can answer questions about your computer, from asking the number of cores and amount of memory installed to running a "Level 1 Diagnostic Procedure".
How to Build an MCP Server with Go and Gemini CLI
Hands-on workshop on building and deploying a Model Context Protocol (MCP) server to extend the capabilities of the Gemini CLI, transforming it into a specialized development expert.
A Gopher's Guide to Vibe Coding
As vibe coding quickly becomes the new buzzword we Gophers could not be left out of this party. In this talk I'm going to share my experiences while developing testquery - a tool to extract information from Go tests - starting from product ideation to the implementation.
Hello, MCP World!
Keynote presentation at GopherCon UK 2025. An introduction to the Model Context Protocol (MCP), exploring its core concepts, architecture, and the building blocks used to create AI-enabled applications with Go.
Go for GenAI!
Keynote presentation at DevFest @ Bletchley Park 2025. Exploring the intersection of Go and Generative AI, demonstrating how to build robust, production-ready AI applications using the Go ecosystem.
Gemini 2.x for Developers
Hands-on workshop on building and deploying applications with the latest Gemini 2.x models, covering multimodal capabilities, tool use, and best practices for developer workflows.
Production Ready 'Hello, World!'
Going beyond the basics to implement a 'hello world' API with production-grade documentation, logging, error handling, configuration, and testing.
Who test the tests?
An exploration of mutation testing in Go. Learn how to programmatically rewrite code to ensure your tests are actually catching bugs.
Fun with Generics
Two years after their introduction, how can we use Go generics for more than just slices and maps? A deep dive into building a monads library and an Option type.
Fun with Slices
A deep dive on the slice type, starting from arrays and slice declaration syntax, slicing operations, copying, resizing and its surprising (or not) side effects.
Fun With Pointers
This talk covers effective pointer usage in Go, from declaration and memory allocation (stack vs. heap) to practical use cases, including pointer vs. value receivers, unsafe package tricks, and nuances of nil pointers with interfaces.