Spyke

Replies

linux

Comment on

Any C# devs want to share their setup?

I do all my editing in neovim, with omnisharp as an lsp. It works pretty well. Happy to send you my dotfiles if you want.

As far as deployment, dotnet just runs on Linux now, especially if you're do8ng web, its all the same. I deploy through containers to kubernetes, and its super smooth

Comment on

Selfhostable notes app that encrypts the files on Disk?

if you're encrypting at rest you also have to consider where there encryption key is being stored.

if you're storing the encryption key plaintext on the same drive as the data, there's not much of a point in encrypting.

a TPM/HSM could solve the issue, depending on how far down the rabbit hole you need to go.

EDIT: You could also encrypt the disk of the VM/Server hosting the app. similar situation.

linux

Comment on

If I'm trying to have a software program to help optimize my computers overall health and performance what should I be looking into?

Reply in thread

I get what you're saying, but I don't think you're going to find anything like that. Linux doesn't really need some maintenance app running on top of it to keep it healthy. most of the programs that claim to do the same on windows,. android, etc. don't really do anything helpful either. If you've got a specific issue that keeps popping up, perhaps we can solve it.

linux

Comment on

If I'm trying to have a software program to help optimize my computers overall health and performance what should I be looking into?

I don't think you're going to find a magic program that will just make your computer run faster. If there is a lot of CPU usage, something is using it. try to find out what that is, and either stop the process, wait for it to finish, etc.

if you have a lot of maintenance tasks that run and take up resources, maybe try and reschedule them for other times of the day?