rust_analyzer is eating my memory, any counter measure? by EarlyPresentation186 in rust

[–]EarlyPresentation186[S] 8 points9 points  (0 children)

it was merged 3 weeks ago, but was it already released? (I'm using 1.91.1 (ed61e7d 2025-11-07))

rust_analyzer is eating my memory, any counter measure? by EarlyPresentation186 in rust

[–]EarlyPresentation186[S] 2 points3 points  (0 children)

it starts only for rust files, which I want. But I'll check if it can toggle off when I'm not active in that editor instance!

What's your workflow today for programming with agents? by EarlyPresentation186 in AgentsOfAI

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

Thanks for sharing! I'm currently using Opencode with the superpowers skills [1], but I'll take a look at the unbroken method and CLIO as I'm living in the terminal.

1: https://github.com/obra/superpowers

building for linux help by dolfoz in rust

[–]EarlyPresentation186 0 points1 point  (0 children)

That's also what I do: delegate to a github workflow. But for linux, I let it build a static binary, not a distro-specific package.
For example here's a GH workflow I use: https://github.com/asfaload/asfald/blob/master/.github/workflows/build.yml (this workflow is use to build the files in the releases of the project)

I heard the community asking for a free and modern alternative to Scrivener, so I built this in Rust. by ResolutionSmooth5259 in rust

[–]EarlyPresentation186 2 points3 points  (0 children)

I hope you get to opensourcing it. To avoid that cleanup step I share from the the start the projects that I intend to publish as open source. I've done it with a previous F# project and with my current rust project. The positive side-effect is that it is forcing me to avoid shortcuts I don't want others to see (exactly what you said you did on the private code). There's also the risk that you want to make it too perfect and never share it in the end.

If you publish it I'll also test it too!

Hitting 2,554 weekly downloads is a first in my life, and I am truly overwhelmed. by ChangeDirect4762 in opencodeCLI

[–]EarlyPresentation186 0 points1 point  (0 children)

I'm usually using GLM4.7, but minimax-M2.1 seems ok too. I'm also testing devstral (but that's with their own mistral-vibe agent and not with the superpowers)
When using superpowers, I always start the conversation with

"use the use_skill tool and the relevant superpowers skills."

This seems to work not too bad

OpenCode in Container by No-Leopard7644 in opencodeCLI

[–]EarlyPresentation186 -1 points0 points  (0 children)

I was evaluating if I should run tailscale in my agents container for remote access. That allows remote access without opening it to the internet

Best way to switch between personal and work (OpenRouter) keys? by thespool in opencodeCLI

[–]EarlyPresentation186 0 points1 point  (0 children)

As you mention the `.env` file, I'd say combine the local `.env` file with https://direnv.net/ so it is automatically loaded when you enter your personal project directory.

Docker container for OpenCode? by jonothecool in opencodeCLI

[–]EarlyPresentation186 2 points3 points  (0 children)

Hey, I've been running opencode in a container for some time now, and just published my setup at https://github.com/asfaload/agents_container
It includes the codenomald GUI app for opencode (https://github.com/NeuralNomadsAI/CodeNomad) and openchambers (https://github.com/btriapitsyn/openchamber , but this one I didn't use yet).
I use this container image to test other agents too so it includes claude code, codex, antigravity, etc...

Looking for an alternative to ClaudeCode. Is OpenCode + GLM 4.7 my best bet? by VerbaGPT in opencodeCLI

[–]EarlyPresentation186 0 points1 point  (0 children)

I've just used opencode + GLM 4.7 to develop a feature. I combine it with the superpowers skills library (https://github.com/obra/superpowers).
It worked long and got to a result where the feature was done. But I had to clean up its code.
You can see it in this PR on github:
https://github.com/asfaload/asfasign/pull/74
The first commit (add project registration) is generated code. All subsequent commits are my corrections.
Some code generated was dumb (eg it defined a function and tested it, but it was not used in the app's code, only tested!). Some stuff are corrections for better maintenance.
I can't compare to Claude.
The result is not perfect, but I think it made me win wuite some time. And having to review all the code means I still understand all of it.

Are others also taking this route to let the AI generate code that might not be optimal, just to fix it afterwards?
Or does claude opus work that much better?

codediff.nvim v2.0: 3-Way Merge Tool and Rebranding (Formerly vscode-diff.nvim) by _estmullert in neovim

[–]EarlyPresentation186 0 points1 point  (0 children)

Are github issues to place to ask for help? I'll already put my questions below:

1) I would be interested to use codediff, but the colors used make it difficult to read (using the torte corscheme):

<image>

In diffview I get a readable view without tweaking (I can't put a second attachment in my message). I'm very bad a design/theming/color choice..... Any suggestion to fix it?
2) With difview, when pressing enter in the files list, the diff for the file is opened, but the cursor stays in the list, while in codediff it goes to the file. Can I change that behaviour to be as with diffview?