HackerTrans
TopNewTrendsCommentsPastAskShowJobs

rgambee

no profile record

Submissions

[untitled]

1 points·by rgambee·last month·0 comments

`new Date()` Considered Harmful

futuresearch.ai
7 points·by rgambee·4 months ago·0 comments

Claude Code's MCP config can silently orphan Docker containers

futuresearch.ai
8 points·by rgambee·4 months ago·2 comments

LLMs Are Finally Good Enough to Analyse Their Own Traces

futuresearch.ai
7 points·by rgambee·4 months ago·0 comments

OpenAI is a textbook example of Conway's Law

everyrow.io
8 points·by rgambee·5 months ago·1 comments

comments

rgambee
·last month·discuss
I agree with the central point that coding agents are sticky. We're unlikely to go back to a word where humans are writing the vast majority of code themselves. When I think about whether AI is over-hyped, I return to the fact that even if AI progress stalled tomorrow, the abilities of today's AI still haven't saturated our world.

I'm more skeptical that IDEs will be dominant a few years from now. It's certainly possible. But I also find it plausible that AI continues to do more and more software development work, and humans less and less.

> the tokens are already starting to come less cheap

It may be true that frontier models have become more expensive at times (there are counter-examples though). But the stronger trend is the cost of running a model with fixed capabilities falling over time. That can't continue forever, of course. But I don't expect the fundamental costs to rise. Are you expecting providers to significantly increase their margins?
rgambee
·4 months ago·discuss
I've heard stories lately of open source projects being inundated with vulnerability reports and PRs. But in this case, it seems like AI assistance was clearly a boon for root-causing and reporting this so quickly.
rgambee
·4 months ago·discuss
Looking forward to a Veritasium video about this in the future, like the one they recently did about the xz backdoor.
rgambee
·4 months ago·discuss
Seems that the GitHub account of one of the maintainers has been fully compromised. They closed the GitHub issue for this problem. And all their personal repos have been edited to say "teampcp owns BerriAI". Here's one example: https://github.com/krrishdholakia/blackjack_python/commit/8f...
rgambee
·4 months ago·discuss
It's also been reported to their GitHub: https://github.com/BerriAI/litellm/issues/24512
rgambee
·4 months ago·discuss
I'm curious what the verification and proof stages offer beyond automated PR checks. The verification example looks rather standard.

To me, the biggest bottleneck is the fact that automated checks don't catch everything. I still need to read through the code myself before I trust it.
rgambee
·4 months ago·discuss
I'm curious what it would mean to align the interests of an AI agent with a natural ecosystem. Alignment to human values is still an unsolved problem. Alignment to an ecosystem has a lot of the same challenges as alignment to human values, like balancing diverse and often conflicting interests (what's good for a rabbit might be bad for a fox). But it has its own challenges, like lack of data.
rgambee
·4 months ago·discuss
You can add a hook to your Claude Code settings to find and stop Docker containers. But it's risky since it might stop containers being used by another CC session.

Another option is to manually clean up Docker containers periodically, for instance by searching for all containers using a particular image:

    docker ps --filter ancestor=crystaldba/postgres-mcp
rgambee
·4 months ago·discuss
I definitely see a lot of these anti-patterns in the code that CC writes. Many of these can be caught at the time the code is written without needing to wait for a PR review. To me, it seems like most of these instructions belong in CLAUDE.md instead of or in addition to a specialized review skill. Are there things in the review skill that don't belong in CLAUDE.md?