Posts

How I Use Notebook LM for Research Deep Dives and Study Guides

Image
What is it? Notebook LM is a research and study companion that helps you work with your own source material. I have been using Notebook LM for nearly a year to help prepare blog posts and do deep dives into topics that interest me. My usual workflow is simple: I collect trusted sources as documents, PDFs or web links, upload them into a notebook, then use chat to interrogate the content. From there, I use studio features to generate podcasts, video overviews, infographics, and custom reports. In practical terms, Notebook LM feels like a custom ad hoc retrieval-augmented generation (RAG) tool. You upload your documents, then query it in context rather than relying on a general model response. Custom Personas The default experience keeps improving, with better templates, export options, and integration with tools such as Gemini and Google Drive. Those defaults are a good starting point, but I get better outcomes when I add custom personas. Custom personas let me control scope,...

The Evolutionary Origins of Mushrooms and Mycelium

Image
Over the weekend, I had the chance to explore a local forest with my partner. As we wandered along the track, we came upon a variety of mushrooms and fungi sprouting from the forest floor. It was a magical moment that sparked my curiosity about these fascinating organisms. When I think of the terrestrial world, I usually picture plants as the foundational pillars of life on land. However, long before the first leaves reached for the sun, a vast, hidden network was already laying the groundwork: fungi . What fascinates me about fungi is how they exist in a category entirely their own—neither plant nor animal, yet holding the world together. Molecular evidence suggests they diverged from a common eukaryotic ancestor roughly 1.5 billion years ago (much like the deep evolutionary history I explored in my post on LUCA ). Surprisingly, they are closer evolutionary cousins to animals than plants. In their earliest days, these organisms likely lived in water and possessed flagella . But a...

How to Encode Your Engineering IP into AI Agent Skills

Image
1. The Problem: AI Amnesia We’ve all been there. You’re working with an AI agent, and for a moment, it feels like magic. Then, five minutes later, it forgets the architectural decision you just made and defaults to some generic, shallow solution. It’s disconcerting. The truth is, AI-assisted development often lacks discipline. We’ve moved away from rigorous systems and into "vibe coding"—just hoping the right prompt will magically give us a maintainable codebase. It rarely does. Matt Pocock nailed the core frustration: You have access to a fleet of middling to good engineers that you can deploy at any time. But these engineers have a critical flaw: they have no memory. They don't remember things they've done before. I’ve learned that the only way to keep these agents on track is to stop treating them like magic chatboxes and start treating them like disciplined (if forgetful) engineers. The fix? Agent Skills. These are modular, encoded processes that force...

The Brainless Problem Solver: Why Nature's Solutions Matter

Image
Introduction: The Smartest Single Cell My interest in slime mould was piqued when I read Active Context Compression: Autonomous Memory Management in LLM Agents and learned that the design drew inspiration from Physarum polycephalum . In maze experiments, the mould prunes branches that do not lead to a reward and reinforces productive paths. That simple strategy maps surprisingly well to how we now think about managing context in large language model (LLM) systems. That connection led me to look more closely at the organism itself. Physarum polycephalum looks, at first glance, like a vibrant splash of yellow paint or a forgotten kitchen spill. Yet this "blob" is a syncytium: a single, massive cell containing billions of nuclei that share one continuous cytoplasm. It might be the world's most sophisticated "brainless" computer. What captivates me is its capacity for primitive cognition. Without a single neuron, it solves mazes, remembers past stimuli, and ...

Challenges on the Path to AGI

Image
Since 1956 one of the central goals of AI is achieving Artificial General Intelligence (AGI). Recently we have seen amazing advances in AI, but there are still important challenges to solve before we get there. In this article, I draw on the AAAI 2025 Presidential Panel report to outline what the AI community sees as the critical gaps that must be resolved before AGI can be achieved. AI is in a strange place right now. New benchmark results can make it seem as if the field is nearly solved. Yet these systems still fail basic common-sense tasks that humans manage with little effort. That gap is why true AGI still feels a long way off. In this article, AGI means an AI that can perform as well as a human across a wide variety of tasks, not just produce fluent text. The big problem is what researchers call the "Reasoning Paradox." Today's Large Language Models (LLMs) are very good at producing language that sounds like reasoning, but that is not the same as reliable for...

Managing my Debian Systems with Ansible

Image
Years ago, as a DevOps engineer, I managed systems using various automation tools. However, for managing my own workstations, I chose Ansible and found a streamlined way to keep my Debian systems consistent without turning the whole exercise into another full-time job. What I like most about Ansible in this context is that it gives me structure without much friction. I can keep a clear separation between work and home machines; I can decide exactly which roles belong on which hosts through the inventory ; and I get useful safeguards such as ansible-lint and dry runs before I touch a live system. I also find the tooling approachable. The command line is simple, the module ecosystem is broad, and the documentation is good enough that I rarely feel like I am fighting the tool. The project itself is organised around small, isolated roles. Each role lives in its own directory under roles/ , with its own tasks, files, and variables, so a change to something like vim does not leak i...

Our Oldest Ancestor Was Surprisingly Sophisticated

Image
For some time, I have been following research on LUCA—the last universal common ancestor of all life on Earth. This short article draws mainly on recent work, especially the 2024 paper by Moody and colleagues, as an introduction to current thinking. What makes LUCA so compelling is the scale of the question it represents. This is not just another organism in the history of life, but the most recent point from which all modern biology descends. What seems increasingly clear is that this starting point was not simple in any everyday sense of the word. Many of us picture the earliest life as fragile and barely formed—a transitional step between chemistry and biology. In that picture, complexity emerges slowly over immense stretches of time. Current evidence points in a different direction. LUCA appears to have been a recognisable, free-living microbe rather than a primitive intermediate. It likely possessed core systems we associate with modern cells, including: A genetic code and...