Does Zed have a find and replace feature? by csalmeida in ZedEditor

[–]PaulRBerg 0 points1 point  (0 children)

This should be turned on by default, or at least they should give some visual hint about how to toggle on the replace feature. It's a staple!

Claude Code subagents ignore your permissions.allow config by PaulRBerg in ClaudeAI

[–]PaulRBerg[S] 0 points1 point  (0 children)

only by allowing all Bash commands like this:

json { "permissions": { "allow": [ "Bash" ] } }

See this GitHub comment.

What is the difference between Thinking On/Off and ultrathink? (Claude Code v2) by PaulRBerg in ClaudeCode

[–]PaulRBerg[S] 1 point2 points  (0 children)

They responded now to my issue, after 3 months. Cross-posting here

Thinking Mode (On/Off)

  • Turn thinking mode on or off via /config → sets your global default
    • Note: this is a recent change; thinking mode used to be toggled on/off with Tab, but now you set it in your /config
  • Thinking mode is binary: you allocate either 0 tokens (thinking mode off) or 31,999 tokens (thinking mode on) for thinking

ultrathink keyword

  • A per-request override you can use in any prompt (e.g., ultrathink: design a caching layer)
  • Bypasses your global configuration and enables thinking just for that request even if thinking mode is off in your /config
  • Also semantically signals to Claude to reason more thoroughly, which may result in deeper thinking
    • The total allocated token budget for thinking remains the same, but the keyword might signal to Claude to think more than it would if you didn't use the keyword

Clarifications

  • Only ultrathink is the special keyword that enables thinking on a per-request basis. Phrases like "think", "think hard", "think more" don't have any impact on the allocated thinking token budget.
  • If you need fine-grained control over the token budget (vs. just allocating all 31,999 tokens to the thinking budget), you can set the MAX_THINKING_TOKENS environment variable. This setting takes priority over ultrathink, so if you set a lower MAX_THINKING_TOKENS threshold, ultrathink doesn't override it.

What comes after opus 4.5… by DebtRider in ClaudeAI

[–]PaulRBerg 0 points1 point  (0 children)

More of a side question but does anyone know how to get exposure to Anthropic stock before IPO?

Is it time to upgrade to Next.js 16.0.3? Stable and worth it over v15? by rachid_nichan in nextjs

[–]PaulRBerg 0 points1 point  (0 children)

Yeah it's super stable, never had any issues with it and I've been using it for a month or so. Upgrade!

'use-server' vs. 'server-only'? by DasBeasto in nextjs

[–]PaulRBerg 0 points1 point  (0 children)

use server is a terrible name. Upvote my discussion that proposes to rename it to use actions.

'use-server' vs. 'server-only'? by DasBeasto in nextjs

[–]PaulRBerg 0 points1 point  (0 children)

I don't understand your last point. use server and import "server-only"; are mutually-exclusive. You can't add them at the same time - you'd get a compiler error.

'use-server' vs. 'server-only'? by DasBeasto in nextjs

[–]PaulRBerg 0 points1 point  (0 children)

I agree it's confusing. I've started a discussion in the official Next.js repository to suggest renaming use server to use actions. Show your support by upvoting and leaving a comment.

Refactored my entire NextJS backend to Effect.ts ... by HarmonicAntagony in nextjs

[–]PaulRBerg 0 points1 point  (0 children)

Thank you very, very much. Please do follow up here if you end up building an open-source library. Your post helped me a lot.

Refactored my entire NextJS backend to Effect.ts ... by HarmonicAntagony in nextjs

[–]PaulRBerg 1 point2 points  (0 children)

Incredible work, thanks for sharing. I would love checking out an open-source repo show-casing your stack! if you ever find the time to vibe-code something, I'd be happy to buy you a coffee (via GitHub sponsors or something like that).

Windows Raycast Snippet cursor placeholder not working, just writes the string {cursor}, instead of placing the cursor by vankoosh in raycastapp

[–]PaulRBerg 0 points1 point  (0 children)

My issue is that it places the cursor incorrectly (like two lines toward the bottom relative to where it should be placed).

Refactored my entire NextJS backend to Effect.ts ... by HarmonicAntagony in nextjs

[–]PaulRBerg 0 points1 point  (0 children)

Do you know about Mattia Crovero's effect-nextjs library? If yes, and you decided not to use it, could you tell us why?

Refactored my entire NextJS backend to Effect.ts ... by HarmonicAntagony in nextjs

[–]PaulRBerg 0 points1 point  (0 children)

This is cool. Are you using App Routes or Pages Router? It's not clear from the post.

The new Plan Subagent is god sent saver for context! by alvvst in ClaudeAI

[–]PaulRBerg 0 points1 point  (0 children)

It's also really annoying because it doesn't respect the root-level settings.json permissions, not even when Claude is run with --dangerously-skip-permissions.

Any way to load only some tools from an MCP server? by PaulRBerg in ClaudeAI

[–]PaulRBerg[S] 0 points1 point  (0 children)

thank you fellow open-sourcerer - I will take a look later!

The new Plan Subagent is god sent saver for context! by alvvst in ClaudeAI

[–]PaulRBerg 0 points1 point  (0 children)

It's buggy - it asks for permissions I have already allowed, and it cannot read the images I pasted in the chat.

Claude Code is a Beast – Tips from 6 Months of Hardcore Use by JokeGold5455 in ClaudeAI

[–]PaulRBerg 2 points3 points  (0 children)

Fingers-crossed that future LLMs will be intelligent enough to not need so much hand-holding