Earlier quoted context omitted.
That's because jj is relatively new, and constantly changing. The official tutorial is (by their own admission), out of date. People's blog posts are fairly different in what commands/usage they recommend, as well. I know it, because I recently learned jj, with a lot of struggling. If a human struggles learning it, I wouldn't expect LLMs to be much better.
That's ironic considering jj is supposed to make version control easier.
What makes Claude Code so damn good
201–210 of 322 posts
Re: What makes Claude Code so damn good
#202Earlier quoted context omitted.
Depends on the algorithm. When you've been coding for a few decades, you really, really don't want to write yet another trivial algorithm you've written multiple tens of times in your life. There's no joy in it. Let the LLM do the boring stuff, and focus on writing the fun stuff. Also, setting up logging in Python is never fun.
> Also, setting up logging in Python is never fun. import logging
Configuring it to produce useful stuff (e.g. timestamps, autologging exceptions, etc). Very boilerplate and tedious.
Re: What makes Claude Code so damn good
#203Earlier quoted context omitted.
Depends on the algorithm. When you've been coding for a few decades, you really, really don't want to write yet another trivial algorithm you've written multiple tens of times in your life. There's no joy in it. Let the LLM do the boring stuff, and focus on writing the fun stuff. Also, setting up logging in Python is never fun.
Right-- it's only really capable of trivial code and boilerplate, which I usually just copy from one of my older programs, examples in docs, or a highly-ranked recent SO answer. Saves me from having to converse with an expensive chatbot, and I don't have to worry about random hallucinations. If it's a new, non-trivial algorithm, I enjoy writing it.
Oh, and the chatbot is cheap. I pay for API usage. On average I'm paying less than $5 per month.
> and I don't have to worry about random hallucinations.
For boilerplate code, I don't think I've ever had to fix anything. It's always worked the first time. If it didn't, my prompt was at fault.
Re: What makes Claude Code so damn good
#204Re: What makes Claude Code so damn good
#205Am I missing something here? Or is this just Anthropic shilling?
Re: What makes Claude Code so damn good
#206Earlier quoted context omitted.
Productivity boost is unbelieveable! If you handle it right, its a boon - its like having 3 junior devs at hand. And I'm talking about using the web interface. I guess most people are not paying and cant therefore apply the project-space (which is one of the best features), which unleashes its full magic. Even if I'm currently without a job, I'm still paying because it helps me.
LOL why do I get downvoted for explaining my experience? :-D
Re: What makes Claude Code so damn good
#207I don't get it. The title says "What makes Claude Code so damn good", which implies that they will show how Claude Code is better than other tools, or just better in general. But they go about repeating the Claude Code documentation using different wording. Am I missing something here? Or is this just Anthropic shilling?
Re: What makes Claude Code so damn good
#208I don’t know if I’m doing something wrong. I was using Sonnet 4 with GitHub Copilot. Recently a week ago switched to Claude Code. I find GitHub Copilot solves problem and bugs way better than Claude Code. For some reason, Claude Code seems very lazy. Has anyone experience something similar?
I use ChatGPT, and I have used Claude several times. I’ve not found Claude to be better. I’ve come to the conclusion that all these posts asking why Claude is so good at coding, are all part of some marketing approach. I think it’s tied to how Claude prefers to hook into repos, I think maybe it’s tied to a business strategy of acquiring a mega code dataset. So they are especially motivated to push this narrative vs s…
Re: What makes Claude Code so damn good
#209Just fyi, at the end of the article there is a link to minusx.com which has an expired certificate. This server could not prove that it is minusx.com; its security certificate expired 553 days ago
Re: What makes Claude Code so damn good
#210Earlier quoted context omitted.
(author of the blogpost here) Yeah, you can extract a LOT of performance from the basics and don't have to do any complicated setup for ~99% of use cases. Keep the loop simple, have clear tools (it is ok if tools overlap in function). Clarity and simplicity >>> everything else.
does a framework like vercel's ai sdk help, or is handling the loop + tool calling so straightforward that a framework is overcomplicating things? for context, i want to build a claude code like agent in a WYSIWYG markdown app. that's how i stumbled on your blog post :)
Nice, do share a link, would love to check out your agent!