Best of AI CodingJanuary 2026

  1. 1
    Article
    Avatar of tdsTowards Data Science·19w

    Maximum-Effiency Coding Setup

    A developer shares their optimized coding workflow centered around Claude Code in the Warp terminal. Key techniques include using Git worktrees to run multiple AI agents in parallel without conflicts, creating slash commands for repetitive prompts, maintaining a low threshold for delegating tasks to agents, and always using frontier models despite higher costs. The setup organizes work by folders in Warp tabs with split panes for concurrent agents, switching to Cursor only for critical infrastructure requiring manual control.

  2. 2
    Article
    Avatar of collectionsCollections·20w

    Linus Torvalds Unveils AudioNoise: An Open-Source Digital Guitar Pedal Project

    Linus Torvalds released AudioNoise, an open-source digital guitar pedal simulator on GitHub that explores digital signal processing and hardware design. The project uses manually coded C components and AI-assisted Python visualization through Google's Antigravity AI IDE. Torvalds advocates for 'vibe coding' with AI tools for non-critical projects, particularly when working with less familiar programming languages. AudioNoise runs on RP2354 hardware with TAC5112 codec, demonstrating how AI coding assistants can bridge research and implementation while enhancing learning outcomes.

  3. 3
    Article
    Avatar of rubyflowRuby Flow·17w

    The single most important thing that made me believe AI coding could work

    AI coding assistants often ignore instructions and coding conventions, leading to frustration. The breakthrough came from using Claude's "skills" feature combined with "hooks" - pre-edit scripts that block file modifications unless the appropriate skill is loaded. This forcing function ensures the AI reads and follows project-specific conventions before making changes. The author shares their Rails convention skills and enforcement hooks that transformed their AI coding workflow from unreliable to dependable.

  4. 4
    Video
    Avatar of t3dotggTheo - t3․gg·20w

    Anthropic just burned so much trust...

    Anthropic has restricted Claude Code subscription tokens from being used with third-party tools like Open Code and Claudebot, forcing users to only use their official harness. This move breaks existing workflows where developers were using their $100-200/month subscriptions across multiple tools. The restriction appears designed to lock users into Anthropic's closed-source ecosystem while they allow usage through their own closed-source Agent SDK. OpenAI responded by officially supporting Open Code integration with ChatGPT subscriptions. The decision has damaged Anthropic's reputation among developers who see it as anti-competitive and contrary to open development practices.

  5. 5
    Article
    Avatar of cursorCursor·20w

    Best practices for coding with agents · Cursor

    Cursor's coding agents can autonomously complete multi-file refactors and iterate until tests pass. Effective usage requires planning before coding (using Plan Mode), managing context strategically, and customizing behavior through Rules (static instructions) and Skills (dynamic capabilities with hooks). Key workflows include test-driven development, parallel agent execution across worktrees, cloud agents for delegated tasks, and Debug Mode for complex bugs. Success depends on writing specific prompts, providing verifiable goals through tests and linters, and carefully reviewing AI-generated code.