Blog radlak.com

…what’s there in the world

  • Unlocking the Neuroextraordinary Brain: Physiology, Biochemistry, and ADHD

    ADHD is often treated as a single, amorphous condition, but in reality, it consists of various symptom profiles driven by unique biochemical and physiological factors. Oxford-educated psychologist Sarah Warley explains that managing ADHD effectively requires identifying these individual root causes rather than relying on a one-size-fits-all approach. By investigating physiological drivers, individuals can transition from a state of survival to thriving. The Copper-Zinc Balance and Dopamine Regulation A key biochemical factor in a subset of people with ADHD is the ratio between copper and zinc in the body, a concept highlighted by biochemist William Walsh. Copper acts as a co-factor…

  • Building the AWS for Hardware: How Diode is Automating PCB Design and Manufacturing in the US

    Decades ago, the West outsourced a critical layer of the electronics stack to Asia: printed circuit boards (PCBs). Davide Nastagi, co-founder and CEO of Brooklyn-based startup Diode, is on a mission to bring this capability back to America. By leveraging artificial intelligence to co-design and manufacture circuit boards, Diode aims to become the “AWS for electronics,” bringing the rapid, iterative speed of software development to the physical hardware world. The Problem: The Neglected Middle Child of Electronics While silicon design is highly optimized due to the millions of dollars at stake, and software features rapid, low-cost iteration, PCBs have long…

  • Unlocking Human Potential: Agency, Confidence, and Mastery

    Most people underperform relative to their true potential due to a biological predisposition toward safety and survival. Referred to as the central governor hypothesis, our brains are hardwired to prioritize comfort over peak performance. Achieving greatness is not an automatic process; it requires a conscious cognitive decision—an act of human agency—to push past these evolutionary limits. True change begins with action, not contemplation; as philosopher John Dewey noted, we do not think our way into a pattern of living, we live our way into a pattern of thinking. To break free from underperformance, individuals must identify and alter the comfortable…

  • How to Solve the Code Review Bottleneck in the Age of AI

    The rapid rise of AI-assisted development has dramatically increased code volume, shifting the primary bottleneck of software engineering from writing code to reviewing it. Senior engineers are facing burnout under the pressure of reviewing cheap, abundant AI-generated code. To address this crisis, software development must pivot toward automating the feedback loop and designing robust, agent-friendly environments rather than relying on constant human intervention. The Power of the Harness Over the Model While industry focus often centers on choosing the right LLM, the development “harness” (such as Codex, Claude Code, or GitHub Copilot) frequently plays a more critical role in implementation…

  • 12 Hidden Rules for Career Advancement Beyond Hard Work

    Working hard in silence is a career trap. While high output is valuable, career progression is ultimately driven by strategic actions, visibility, and relationship building. Many dedicated professionals find themselves stuck while others with less output get promoted simply because they understand the unwritten rules of corporate growth. To bridge this gap, you must adopt twelve deliberate habits that signal leadership potential and build career leverage. 1. Elevate Your Visibility and Impact Make work visible without bragging: Do not assume your work speaks for itself. Proactively share brief, strategic progress updates. Studies show employees who communicate progress are rated 23%…

  • How Human Taste and Agency Will Define the Future of AI

    In this discussion, host Simon Sinek interviews Wharton professor and AI expert Ethan Mollick to explore a practical, balanced perspective on artificial intelligence. Moving past the extreme camps of “doomers” and “zealots,” Mollick highlights how AI is reshaping the landscape of work, education, and human creativity. He emphasizes that human agency, unique taste, and critical thinking remain our ultimate competitive advantages in an increasingly automated world. The Disruption of the Talent Pipeline Mollick points out a critical vulnerability in the modern corporate world: the breakdown of the traditional apprenticeship model. Historically, junior employees learned their craft by performing repetitive “grunt…

  • Demystifying Google’s AI Coding Master Class: The Shift to Agentic Engineering

    Google recently released a comprehensive 51-page master class on AI coding, outlining how the industry is converging on best practices for the AI-driven software development life cycle (SDLC). This summary synthesizes the core frameworks presented, focusing on the shift from manual coding to system orchestration and why the surrounding infrastructure matters far more than the model itself. The Shift to an AI-Driven SDLC In a traditional SDLC, engineers spend the majority of their time implementing code. In an AI-driven SDLC, implementation is compressed from weeks to minutes or hours using AI agents. However, this shifts the development bottleneck to the…

  • Supercharging Developer Workflows with Custom Open Code Agents

    Transitioning from treating AI assistants as simple chat interfaces to structured development infrastructure is the ultimate unlock for modern software engineering. Custom agents allow developers to package workflows, tools, constraints, and instructions into specialized personas, bringing consistency, speed, and safety to both solo and team-based repositories. Why Custom Agents Matter Using vanilla AI agents often yields vanilla results. By creating specialized, custom agents, developers can move away from “jack-of-all-trades” AI models and design highly-targeted assistants. Custom agents offer several distinct advantages: Consistency and Quality: Define exact boundaries, temperature settings, and strict instructions for specific tasks. Speed: Avoid constantly re-explaining context,…

  • Why AI Agents Aren’t Replacing Engineers Anytime Soon: Insights from Nebius CTO Danila Shtan

    Danila Shtan, CTO of Nebius, shares his front-line experiences running a rapidly growing AI cloud infrastructure company. From navigating the complexities of early GPU adoption to managing team dynamics, Shtan offers a realistic look at how artificial intelligence is shaping software engineering, organizational culture, and the recruitment landscape. The Reality of Agentic Engineering and AI Hype Shtan strongly critiques the narrative that autonomous AI agents or “software factories” will soon replace human developers. He compares working with current AI agents to guiding a junior engineer: they lack broader context, require constant steering, and can confidently implement flawed solutions or generate…

  • Simplifying Workflows with PG Durable: Microsoft’s New Postgres Extension

    Postgres has received a significant upgrade with the introduction of PG Durable, an open-source extension developed by Microsoft. This extension brings durable, crash-proof functions directly inside PostgreSQL, allowing developers to manage scheduled jobs, automatic retries, and long-running workflows without relying on external services. Because execution steps are persisted to disk, workflows can reliably survive database restarts and crashes. Core Features and Built-in Operations PG Durable operates by representing workflows as a graph of steps. Developers can initiate workflows using df_start and track their execution via df_status or df_result. The extension includes several native capabilities to simplify complex database-level processes: Execution…

  • The Myth of Free Time: Why Modern Life Feels So Rushed

    Despite the proliferation of labor-saving technologies designed to grant us unprecedented free time, modern life feels faster and more exhausting than ever. This persistent state of busyness is not a personal time-management failure, but a systemic creation of our economic landscape. By examining the insights of four prominent thinkers, we can understand why our hours always feel scarce and how we can begin to reclaim them. Staffan Linder and the Scarcity of Abundance Writing in 1970, Swedish economist Staffan Linder predicted that rising wealth would produce frenzy rather than calm. He argued that as a society becomes richer, the economic…

  • Building a Superior, Local Memory System in Claude Code: Beyond Hermes Agent

    In the rapidly evolving landscape of AI agents, persistent memory has emerged as a crucial differentiator. While the open-source Hermes agent gained massive popularity due to its robust ability to remember past conversations, many users are deterred by its separate runtime requirements, security concerns, and strict limitations. Replicating and enhancing the best features of Hermes’ memory system directly inside Claude Code creates a private, cost-effective, and semantic-search-enabled memory setup that overcomes these limitations. The Three Pillars of Agent Memory To understand how to improve memory, we must analyze its three core phases: storage (saving important data), injection (loading context at…