Some of my fave C64 memories as a kid: listening to cassette tapes with stuff stored on them, punching in COMPUTE! listings with MLX, discovering 6510 and learning the Merlin assembler, long runs in Moon Patrol, making sprites with Gary Kitchen’s GameMaker, trying to understand how GEOS could possibly work, wearing out the spiral binding of the Programmer’s Reference Guide.
> best weapon against complexity spirit demon is magic word: "no"
In counterpoint, I believe small teams can remain small. Small teams can ship simple monoliths with high velocity, commit count, and quality. Service orientation didn’t suddenly become low-cost because of agents; the boundaries between multiple services that version and deploy independently are still tricky beasts to wrangle. And it’s not clear why “running more agents” is inherently desirable or impactful; my small team’s (admittedly anecdotal) experience is that the value quickly saturates.
It may be an age thing. 15-ish years ago, TDD, BDD, Red/Green Testing, and a whole bunch of others were hot topics. They’re still useful approaches to know about, even if some (like, IMO, BDD) didn’t really stand the test of time.
My strong feeling while reading this “philosopher CEO”’s manifesto: consumer VPNs primarily help customers fight for their right to stream Netflix. This doesn’t strike me as effective advertisement.
This thread is pretty quiet for what strikes me as a substantial set of changes with, presumably, more substantial changes still to come for anyone not grandfathered into a Pro plan.
I get the impression that the intersection of HN posters and Copilot users is quite small in practice; that Claude Code and Codex suck up all the oxygen in this room. But it seems plausible we’ll see similar “true costs greatly exceed our current subscription pricing” from Anthropic and OpenAI someday soon…
Using Copilot Pro with Pi, way better and smarter than using Claude Code. I haven't gotten a single e-mail and just wanted to use Opus (I use Sonnet 95% of the time with Opus for issues where Sonnet is struggling) and got an error message. No prior warning, nothing, I'm pissed. They just rugpulled all paying customers man. I liked Copilot because I can plan my usage over a whole month and I'm not "forced" to use it for a week before hitting limits unlike Claude and Codex.
Do you have a citation on this? I have a Claude Pro subscription and looked at the comparison page and it says this under Pro:
Everything in Free and:
Claude Code directly in your codebase
Power through tasks with Cowork
Higher usage limits
Deep research and analysis
Memory that carries across conversations
> But it seems plausible we’ll see similar "true costs greatly exceed our current subscription pricing" from Anthropic and OpenAI someday soon
Enterprise might stick around, but individually, I reckon the developers will flock to OpenCode + open weights (Qwen/GLM/Codestral). The problem then is, if the open weight models impress these new adopters, they will shout about it from rooftops (conferences, social media, blogs) in unison, which might result in an exodus. Especially troublesome considering developers are a major market for both frontier labs (Anthropic & OpenAI) & its IPO ambitions.
> If you hit unexpected limits or these changes just don’t work for you, you can cancel your Pro or Pro+ subscription and you will not be charged for April usage. Please reach out to GitHub support between April 20 and May 20 for a refund.
Speaking as someone where he only 'real' option we have at work is Copilot Plugin, but I also use Copilot Plugin at home....
This is a shitty shitty shitty move.
As a personal user, I can now only use Opus 4.7 at a 7.5x 'Introductory' multiplier if I upgrade to pro+, but at work I can still apparently do Opus 4.6 at a 3x Multiplier on my work 'enterprise' account.
Honestly it strikes me as though someone at Github Copilot took Palantir's manifesto to heart; Screw the individual, consolidate power to companies on every level.
My parents bought one for the house when I was in elementary school. I still remember the sound of the Speech Synthesizer, discovering 20 GOTO 10, and playing Hunt the Wumpus.
CEOs have many audiences; great CEOs communicate capably with each.
FWIW it's not entirely clear to me who Entire's long-term customer is, but the (interesting!) CLI that shipped today is very much for developers who are busy building with agents.
Watching their public roadmap to see what happens. Right now, it looks about the same as it has for a while: useful new features and expected maintenance, moving along at a reasonable if not blistering clip.
I made some small contributions to cpython during the 3.14 cycle. The codebase is an interesting mix of modern and “90s style” C code.
I found that agentic coding tools were quite good at answering my architectural questions; even when their answers were only half correct, they usually pointed me in the right direction. (I didn’t use AI to write code and I wonder if agentic tools would struggle with certain aspects of the codebase like, for instance, the Cambrian explosion of utility macros used throughout.)
This was around 2021 so AI code tools had not yet eaten everyone. One of the most interesting challenges was finding the right value judgements when blending multiple type systems. I doubt any agentic coding tool could do it today.
I blended the python type system with a large low-level type system (STEP AIM low level types) and a smaller set of higher-level types (STEP ARM, similar to a database view). I already was familiar with STEP, so I needed to really grok what Python was doing under the covers because I needed to virtualize the STEP ARM and AIM access while making it look like "normal" Python.
Oh, that's very interesting work. And, yes, I'd also be surprised if (today's) agentic tools were at all helpful for that: it's way outside of distribution, and conceptual correctness truly matters.