Most active commenters

    ←back to thread

    502 points alazsengul | 22 comments | | HN request time: 1.198s | source | bottom
    Show context
    pm90 ◴[] No.44564397[source]
    I think the amount of turmoil around these deals is giving more weight to the possibility that we’re in a massive bubble thats quite divorced from any kind of fundamentals. Sooner or later the bubbles gonna burst.
    replies(13): >>44564436 #>>44564444 #>>44564507 #>>44564837 #>>44564856 #>>44564871 #>>44565061 #>>44566422 #>>44568840 #>>44570092 #>>44570792 #>>44571345 #>>44572790 #
    nikcub ◴[] No.44564871[source]
    > divorced from any kind of fundamentals

    Anthropic ARR went $1B -> $4B in the first half of this year. They're getting my $200 a month and it's easily the best money I spend. There's definitely something there.

    replies(22): >>44564952 #>>44564962 #>>44565035 #>>44565278 #>>44565374 #>>44565387 #>>44565422 #>>44565447 #>>44565517 #>>44565637 #>>44565761 #>>44565844 #>>44566449 #>>44567425 #>>44568353 #>>44569351 #>>44569976 #>>44570595 #>>44571349 #>>44572134 #>>44575913 #>>44579934 #
    hn_throwaway_99 ◴[] No.44565447[source]
    "Sooner or later the bubble's gonna burst" and "There's definitely something there" aren't mutually exclusive - in fact they often go together.

    It makes me perhaps a little sad to say that "I'm showing my age" by bringing up the .com boom/bust, but this feels exactly the same. The late 90s/early 00s were the dawn of the consumer Internet, and all of that tech vastly changed global society and brought you companies like Google and Amazon. It also brought you Pets.com, Webvan, and the bajillion other companies chronicled in "Fucked Company".

    You mention Anthropic, which I think is in a good a position as any to be one of the winners. I'm much less convinced about tons of the others. Look at Cursor - they were a first moving leader, but I know tons of people (myself included) who have cancelled their subscription because there are now better options.

    replies(9): >>44565540 #>>44565789 #>>44566666 #>>44567060 #>>44567139 #>>44570863 #>>44572666 #>>44581313 #>>44582976 #
    1. ttrmw ◴[] No.44565789[source]
    what're you finding better than cursor now?
    replies(3): >>44565962 #>>44566263 #>>44566387 #
    2. rock_hard ◴[] No.44565962[source]
    Devin is light years ahead of Cursor. It’s not even the same category!

    I stopped writing code by hand almost entirely and my output (measured in landed PRs) has been 10x

    And when I write code myself then it’s gnarly stuff and I want AI to get out of my way…so I just use Webstorm

    3. andrewmutz ◴[] No.44566263[source]
    Cline is absolutely fantastic when you combine it with Sonnet 4. Always use plan mode first and always have it write tests first (have it do TDD). It changed me from a skeptic to a believer and now I use it full time.
    replies(1): >>44566470 #
    4. g42gregory ◴[] No.44566387[source]
    Claude Code with Pro, Max100, or Max200 subscriptions. Works with any IDE including none.

    For the time being, nothing comes close, at least for me.

    replies(4): >>44566592 #>>44569808 #>>44572658 #>>44580956 #
    5. v5v3 ◴[] No.44566470[source]
    How much is it costing you?
    replies(2): >>44566526 #>>44566949 #
    6. jjmarr ◴[] No.44566526{3}[source]
    As much as you theoretically want to spend, since it's pay-per-use.

    I spend $200/month by using Sonnet 4. Could be higher if you want to use Opus.

    replies(1): >>44568981 #
    7. 6Az4Mj4D ◴[] No.44566592[source]
    Can you please share your Claude usage workflow?

    I use Github copilot and often tend to be frustrated. It messes up old things while making new. I use Claude 4 model in GH CP.

    replies(3): >>44567488 #>>44569394 #>>44572987 #
    8. ewoodrich ◴[] No.44566949{3}[source]
    I use Roo Code (Cline fork) and spend roughly $15-30/mo by subscribing to Github Copilot Pro for $10/mo for unlimited use of GPT-4.1 via the VS Code LM API, and a handful of premium credits a month (I use Gemini 2.5 Pro for the most part).

    Once I max out the premium credits I pay-as-you-go for Gemini 2.5 Pro via OpenRouter, but always try to one shot with GPT 4.1 first for regular tasks, or if I am certain it's asking too much, use 2.5 Pro to create a Plan.md and then switch to 4.1 to implement it which works 90% of the time for me (web dev, nothing too demanding).

    With the different configurable modes Roo Code adds to Cline I've set up the model defaults so it's zero effort switching between them, and have been playing around with custom rules so Roo could best guess whether it should one shot with 4.1 or create a plan with 2.5 Pro first but haven't nailed it down yet.

    replies(1): >>44572178 #
    9. fzzzy ◴[] No.44567488{3}[source]
    I use github copilot chat right now. First I use ask mode to ask it a question about the state of the codebase outlining my current understanding of the condition of the code. "I'm trying to x, I think the code currently does y." I include a few source files that I am talking about. I correct any misconceptions about the plan the llm may have and suggest stylistic changes to the code. Then once the plan seems correct, I switch to agent mode and ask it to implement the change on the codebase.

    Then I'll look through the changes and decide if it is correct. Sometimes can just run the code to decide if it is correct. Any compilation errors are pasted right back in to the chat in agent mode.

    Once the feature is done, commit the changes. Repeat for features.

    replies(2): >>44567641 #>>44570827 #
    10. 6Az4Mj4D ◴[] No.44567641{4}[source]
    Does it remember context from chat mode and when you switch to agent mode?
    replies(2): >>44568543 #>>44568645 #
    11. addandsubtract ◴[] No.44568543{5}[source]
    Yes. I think it used to be separate tabs, but now chat/agent mode is just a toggle. After discussing a concept, you can just switch to agent mode and tell it to "implement the discussed plan."
    12. Paradigma11 ◴[] No.44568645{5}[source]
    Yes, it can't change between edit and ask/agent without losing context but ask <-> agent is no problem. You can also change to your custom chat modes https://code.visualstudio.com/docs/copilot/chat/chat-modes without losing context. At least that's what I just did in VSCode Insiders.

    Here are some nice copilot resources: https://github.com/github/awesome-copilot

    Also, I am using tons of markdown documents for planning, results, research.... This makes it easy to get new agent sessions or yourself up to context.

    13. macrolime ◴[] No.44568981{4}[source]
    You can use Claude Code as a provider if you want it subscription based

    https://docs.cline.bot/provider-config/claude-code

    14. csomar ◴[] No.44569394{3}[source]
    GitHub Copilot models are intentionally restricted, which unfortunately makes them less capable.

    I'm not the original poster, but regarding workflow, I've found it works better to let the LLM create one instead of imposing my own. My current approach is to have 10 instances generate 10 different plans, then I average them out.

    15. cft ◴[] No.44569808[source]
    My problem with Claude code versus Cursor is that with Cursor I could "shop around" the same context with different foundational model providers, often finding bugs this way or or getting insights.

    Sometimes one model would get stuck in their thinking and submitting the same question to a different model would resolve the problem

    replies(1): >>44571324 #
    16. ghm2180 ◴[] No.44570827{4}[source]
    I also do the same. I am on the 200$ maxpro plan. I often let the plan go to pretty fine level of detail, e.g. describe exactly what test conditions to check, what exact code conditions to follow. Do you write this to a separate plan file? I find myself doing this a lot since after compaction Claude starts to have code drift.

    Do you also get it to add to it's to-do list?

    I also find that having the o3 model review the plan helps catch gaps. Do you do the same?

    17. virgildotcodes ◴[] No.44571324{3}[source]
    I’m unaffiliated, but I’ve really been enjoying this - https://github.com/BeehiveInnovations/zen-mcp-server

    It allows you to have CC shoot out requests to o3, 2.5 pro and more. I was previously bouncing around between different windows to achieve the same thing. With this I can pretty much live in CC with just an editor open to inspect / manually edit files.

    18. greggh ◴[] No.44572178{4}[source]
    Looking at Cline, wondering what the real selling points for Roo Code are. Any chance you can say what exactly made you go with Roo Code instead of Cline?
    replies(1): >>44573212 #
    19. hn_throwaway_99 ◴[] No.44572658[source]
    This was my answer as well. And I think it just highlights all the serious dangers for the "API wrapper companies" compared to the foundation model companies.

    User experience is definitely worth something, and I think Cursor had the first great code integration, but then there is very little stopping the foundation model companies from coming in and deciding they want to cut out the middleman if so desired.

    20. mkozlows ◴[] No.44572987{3}[source]
    Github Copilot is weirdly bad, and all the alternatives are better. Sometimes people think "they have the same model, must be the same," but it's not.
    21. ewoodrich ◴[] No.44573212{5}[source]
    Cline has two modes (Plan and Act) which work pretty well but Roo Code has 5 modes by default. (Code, Ask, Architect, Orchestrator, Debug) and it's designed so that users can add custom modes. e.g. I added a Code (simple) mode with instructions about the scale/complexity of tasks it can handle or decide to pass it to Code for a better model. I also changed the Architect mode to evaluate whether to redirect the user to Code or Code (simple) after generating a plan.

    Roo Code just has a lot more config exposed to the user which I really appreciate. When I was using Cline I would run into minor irritating quirks that I wished I can change but couldn't vs. Roo where the odds are pretty good there are some knobs you could turn to modify that part of your workflow.

    22. d_sc ◴[] No.44580956[source]
    Amp Code is also very good, they released about 2 weeks ago their Oracle feature which leverages o3 to do reviews (https://ampcode.com/news/oracle). Amp leans the closer to Claude Code more than other solutions I’ve seen so far, the team there is really leaning into the agentic approach.

    I watch the changes on Kilo Code as well (https://github.com/Kilo-Org/kilocode). Their goal is to merge the best from Cline & Roo Code then sprinkle their own improvements on top.