惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
博客园_首页
量子位
雷峰网
雷峰网
GbyAI
GbyAI
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Cloudflare Blog
IT之家
IT之家
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
AI As Externalized Context
rellik · 2026-05-16 · via Hacker News - Newest: "AI"

Side projects used to die in the gap between sessions. Then I stopped trying to carry the context in my head.

Like most devs, I keep a mental backlog of useful-to-me project ideas. In my younger (pre-kids) days, I’d easily spend 20 or 30 hours a week playing around with personal projects, interesting programming languages, or new frameworks. As I grew and felt more constraints on my personal time, that changed; it became a few hours here-and-there, spread sparsely. Personal dev projects became difficult to maintain momentum on, and then were abandoned completely. For a couple of years, I’d open one of those projects, get a weekend or two in, then drop it for a month and never come back. The reason wasn’t lack of interest. It was the math.

The Old Math

With two young kids and a day job that deserves real focus, a side project had to clear an implicit bar: “if I get excited and load all of this into my head tonight, am I actually going to be back in this code again soon?” Usually the honest answer was no. GoalChasr, for example, was a small VueJS project selling $5 iFit-related magnets. I had a small community of repeat customers, and several ideas for growth and stickiness. I was eager, but found it hard to make any progress on the bigger changes. The friction wasn’t really “what was I going to do next.” It was rebuilding the mental model, and re-figuring out what state I’d left the code in, every time I opened the project after a several-day gap. Half the session burned before I’d written a line.

So I mostly didn’t start things. Hobbies drifted toward more discrete, self-contained stuff: hiking, playgrounds, Home Assistant automations that fit inside a Saturday.

What Changed

I didn’t notice the change all at once. It crept in. An hour of personal coding after putting the kids to bed used to be thirty minutes of context-loading and thirty minutes of actual flow. At some point it became a solid hour of productivity, because the project’s state wasn’t living in my head anymore. The plan file was sitting right there with “we left off here, the next step is this.” I could skip the reacquaintance entirely. This wasn’t light vibe-coding; it was “real” hands-on-keyboard dev work, with context being spoon-fed to me based on prior agreement & planning.

The shape that does most of the externalizing for me is a long upfront planning conversation that produces a written plan, then small implementation units against it. One workflow inside that shape (not the only one I use, though it’s representative) is Matt Pocock’s grill-me skill, where Claude interrogates me about a feature until the design is concrete, followed by ping-pong TDD (Claude writes a failing test, I make it pass by hand). The grill phase takes a non-trivial part of the total time and requires focus, because that’s where many of the implementation decisions actually get made. After that, the path is laid out and broken into small enough pieces that any one of them fits into an evening.

Regained Momentum

Lately I’ve been working on PushForward. It’s fun, though not particularly novel: a conversational AI fitness coach that pulls my Hevy (weightlifting) and Google Health (step count, etc) data into one ongoing thread so the model actually knows my training history. There are dozens of AI fitness coaches in 2026 and a handful that already do cross-tracker synthesis, so I’m not claiming the idea is unique. I’m building it because I’m the user, and because shipping a real working agent end-to-end beats reading about them.

Recently, I added the new Google Health API integration to the agent. One big upfront planning session covered the architecture, the OAuth flow, the new agent tools (get_step_count, get_weight_history, etc.), and how it slots into the existing orchestration. That got split into discrete units, each its own small plan I could knock out in an evening or two. The big plan kept the direction; the small plans were the spoon-fed next-step I’d find waiting when I came back a week later. A year ago, I wouldn’t have started this. Not because the work was harder, but because the gaps between sessions would have killed it.

Latency Tolerance

Most AI-coding takes I read are about output per hour, lines per day, “10x productivity.” Those are a difference in degree, not kind. The real change for me is something else: latency tolerance. The gap I can leave between a session and the next without the project dying went from “a few days, maybe” to “a few weeks, fine.” That is what makes dev viable as a hobby again at this stage of life, and I suspect it’s undersold relative to the speed framing. Most devs with young kids, demanding day jobs, or scattered attention will recognize this math change as much as they will the speed one.