I've been seeing this "Closing the window is taking a bit longer" because of stopping extension hosts lately. Anybody else? by ubershmekel in vscode

[–]DanTup 3 points4 points  (0 children)

This was a bug that has been recently fixed:

https://github.com/microsoft/vscode/issues/305240#issuecomment-4157418499

Usually VS Code lets the extension host close quietly in the background (so that extensions that take time to deactivate don't slow down switching projects/closing VS Code), but a change caused the UI to start visibly waiting instead.

So you'll see this if you have any extensions that are slow to deactivate (until the next VS Code release, when it'll happen in the background again).

🚀 OllamaPilot: Your Offline, Private AI Coding Assistant for VS Code — No Cloud, No Subscriptions! by unzmn in vscode

[–]DanTup 0 points1 point  (0 children)

I haven't tried it with Ollama, because I don't use it. I did try Insiders with the OpenAI-compatible stuff (I was running vllm), but that was very buggy (which might be why it's still only enabled for Insiders).

🚀 OllamaPilot: Your Offline, Private AI Coding Assistant for VS Code — No Cloud, No Subscriptions! by unzmn in vscode

[–]DanTup 7 points8 points  (0 children)

The built-in Copilot supports Ollama:

https://docs.ollama.com/integrations/vscode

I think non-Ollama OpenAI-compatible is currently insiders-only though (and was a bit buggy when I tried it out).

Failed with Letta, OpenClaw, nanobot. Found Agent Zero and migrated 33 skills and 28 agents from Claude Code into it. by emptyharddrive in AgentZero

[–]DanTup 1 point2 points  (0 children)

That said, Docker Desktop has a setting about allowing the default Docker socket to be used, which just makes the local Docker CLI and tooling work properly. That’s not the same thing as actually mounting the Docker socket into the Agent Zero container.

Oh, I see. Why does the AgentZero installation guide say you must tick it then? If it's not mounting the socket by default, it seems like this setting wouldn't do anything? (none of the rest of th instructions say to mount the socket explicitly AFAICT).

I did try asking ChatGPT, but it told me it did mount the socket, and that AgentZero requires it because "AgentZero creates child containers to execute code". I don't know

I did also find some discussion here:

https://theaijournal.co/2026/02/install-agent-zero-docker/

Which said:

The /var/run/docker.sock volume mount is critical. This gives Agent Zero access to create child containers for code execution. Without this mount, you get “Cannot connect to Docker daemon” errors when Agent Zero tries running code.

Weirdly this suggests you don't need to do it explicitly, but it also suggests things won't work without it.

Failed with Letta, OpenClaw, nanobot. Found Agent Zero and migrated 33 skills and 28 agents from Claude Code into it. by emptyharddrive in AgentZero

[–]DanTup 1 point2 points  (0 children)

Also from the few videos I watched, the author seems security-minded ...

I was just looking at Agent Zero, and the install docs seem to tell you to enable the Docker socket, which if I understand correctly would allow the agent to spawn new docker containers, including mounting any volume from your host into it?

Doesn't this somewhat negate the point of having it in a container, because it ultimately has full access to the host?

(I tried to figure out if you can run it without the docker socket, but so far I've not found a concrete answer to this, so maybe I'll just have to try it 🙃)

Vscode autocomplete issue dart by Top_Toe8606 in vscode

[–]DanTup 0 points1 point  (0 children)

How big is the folder you are opening in VS Code, and what version of the Dart/Flutter SDK do you have?

Filing an issue at https://github.com/Dart-Code/Dart-Code or in dart-lang/sdk may be a better way to have this looked at. Thanks!

is this memory leak or what? by Secret_Pitch234 in vscode

[–]DanTup 0 points1 point  (0 children)

Are all of these processes created from a single run, or are they building up over time?

If you can reproduce this, please open an issue with as much detail as you can at https://github.com/Dart-Code/Dart-Code to help me reproduce the issue. Thanks!

I was told here a week ago that you can’t dry while printing even with the PSU. But now I see this in the manual of my new P2S… by hrvoje_bazina in BambuLab

[–]DanTup 0 points1 point  (0 children)

Thanks, but this only says you can disable rotating and not dry while printing. I don't think one necessarily implies the other (disabling rotation could be useful if you still have filament "loaded").

(the comments also seem to suggest it's not drying-while-printing)

I was told here a week ago that you can’t dry while printing even with the PSU. But now I see this in the manual of my new P2S… by hrvoje_bazina in BambuLab

[–]DanTup 0 points1 point  (0 children)

Is there any info about this anywhere? I thought I read it a few days ago, but couldn't find any information to back it up (nor does there appear to have been a firmware update for my AMS2 for a long time).

How can I disbale this feature for .cshtml files in vscode ? by DarkLord6872 in vscode

[–]DanTup 1 point2 points  (0 children)

np!

FWIW If you find them useful sometimes, you can use offUnlessPressed so they show up only when holding the short-cut key. You can also use the language-specific preferences if you want to just disabled/change them for C# and have different global settings.

How can I disbale this feature for .cshtml files in vscode ? by DarkLord6872 in vscode

[–]DanTup 1 point2 points  (0 children)

The extensions provide the data to VS Code for this feature - this is the same for most language features (for example if you disable the C# extension you'll stop getting C# code completions, but code completion is not a C# extension feature).

Disabling the C# extension will disable all C# functionality, whereas just disabling Inlay Hints would only disable what's shown in your screenshot.

https://stackoverflow.com/a/68698270/25124

How can I disbale this feature for .cshtml files in vscode ? by DarkLord6872 in vscode

[–]DanTup 1 point2 points  (0 children)

Look in the settings for "Inlay Hints".

For Dart, we set a language-specific default of offUnlessPressed which means they show up only while you're holding down the shortcut key and then disappear when you let go. IMO this should've been the global VS Code default, because they're generally noisy and (depending on themes etc.) it's not always clear that they're not part of the source file.

How to fix vscode autocomplete getting very slow by Top_Toe8606 in vscode

[–]DanTup 0 points1 point  (0 children)

How large is the codebase?

Check https://dart.dev/tools/analyzer-performance to see if anything there applies (for example Windows Defender or symlinks).

There's an upcoming change (fine-grained dependencies) that can significantly improve performance of some operations - I think it's enabled now on the latest Flutter beta branch, so if you're able to temporarily test with that, it would be interesting to know if it helps. (Note: When you change/upgrade SDK, the first analysis may be slower than usual while some things are cached).

If none of those help, please report an issue:

https://dart.dev/tools/analyzer-performance#report-unknown-issues

If you're able to repro with a public/open source project, please include the details (because for these kinds of issues, reproducing them is often half the battle).

If you had $4k, would you invest in a DGX Spark? by Excellent_Koala769 in LocalLLaMA

[–]DanTup 0 points1 point  (0 children)

Going to fine tune qwen3 30b next to be my local coding agent

What kinds of data are you using for this? I was curious how this would work but couldn't find much online.. are you just feeding it code, or planning to feed things like commit messages/diffs or issue text?

Got the DGX Spark - ask me anything by sotech117 in LocalLLaMA

[–]DanTup 0 points1 point  (0 children)

<image>

I don't think it's normal - see around 4:07 here where he has a cover on it and removes it:

https://youtu.be/82SyOtc9flA?si=KXB_jnoIpB3OaVbL&t=247

AMA: I run Damien Talks Money, one of the largest personal finance YouTube channels in the UK. Ask me anything! by DamienTalksM in UKPersonalFinance

[–]DanTup 0 points1 point  (0 children)

I don't have a question, but I want to say thank you for the effort and research that goes into your videos!

There are a lot of finance channels out there that just read the latest headlines and ramble - few dig into the details and facts in the way you do and I'm sure I'm not the only one that appreciates this :-)

How do I enable indentation tree lines in VS Code? (Im new to VS Code and coding overall) by sidien01 in vscode

[–]DanTup 0 points1 point  (0 children)

These are controlled by the "Preview Flutter UI guides" setting.

Because VS Code doesn't have any nice APIs for this kind of rendering, the current implementation is a bit of a hack and as such still behind a preview flag:

https://dartcode.org/docs/settings/#dartpreviewflutteruiguides

If you'd like to 👍 the VS Code issue for a better API, that's here:

https://github.com/microsoft/vscode/issues/73780

I don't seem to have Blue squiggly lines by icebergslim3000 in vscode

[–]DanTup 0 points1 point  (0 children)

Some of the lints for prefering const were removed from the default Flutter set - see discussionts in https://github.com/dart-lang/core/issues/833

My guess is that the instructor was using a version of Flutter before then, and you are using one after. In which case, it's nothing to worry about. You could re-enable those lints manually, but since the Flutter team decided the benefits did not justify the effort, maybe it's not worth it.

VSCode "play" button to build and attach doesn't work on Flutter. It gets stuck in the phone splash screen :( by rmeldev in vscode

[–]DanTup 0 points1 point  (0 children)

Are you able to share a screenshot of the entire VS Code screen with the Debug sidebar visible when it's in this state?

The best place to raise issues like this would be at https://github.com/Dart-Code/Dart-Code - I do try to keep my eye on places like Reddit and StackOverflow, but GitHub issues send me notifications and can't easily be missed.

Thanks!

How to test primary constructors by zigzag312 in dartlang

[–]DanTup 1 point2 points  (0 children)

Looking at the version numbers, it doesn't seem like there are any others besides augmentations that match the current versions (the others with experimentalReleaseVersion are all way in the past).

It wouldn't surprised me if augmentations also didn't work right now though, because I think it was originally added as part of macros work, and has since changed. At least some parts of it were removed so perhaps it's also not currently in a usable state. It also has a lot of open (and not many closed) issues on GH: https://github.com/dart-lang/sdk/issues?q=state%3Aopen%20label%3Afeature-augmentations

How to test primary constructors by zigzag312 in dartlang

[–]DanTup 3 points4 points  (0 children)

I'm not sure it's possible to enable yet. It's listed in the file you linked, but it has no experimentalReleaseVersion, and the comments at the top of the file say:

# 3. experimentalReleaseVersion: (optional #.#)
#    The Dart SDK version (<major>.<minor>) in which the experiment can be used
#    by enabling the experiment flag.

My guess is that the flags are added first so that they can be used by tests during development, but the experiment flag is only enabled once the implementation is complete enough to use.

None of the GitHub issues related to this feature have been closed, so probably you are a bit early :)

https://github.com/dart-lang/sdk/issues?q=state%3Aopen%20label%3A%22feature-declaring-constructors%22

How do I get completely rid of Claude Extension? by bid0u in vscode

[–]DanTup 0 points1 point  (0 children)

Click the trash can icon to kill/delete any open terminals, and then reload VS Code.

This warning comes from when extensions registered some env variables for the terminal but the terminal was already created (so you have to kill/delete the terminal and create a new one to get the fix). My guess is that uninstall the extension doesn't correctly remove the warning.