Tootfinder

Opt-in global Mastodon full text search. Join the index!

@laimis@mstdn.social
2026-09-09 15:28:51

In the latest visual studio code update they start out with an announcement of the visual studio code documentary... LOL
Man these guys have so much cash and running out of the ideas what to do with it.
#vscode

VSCode documentary announcement
@tinoeberl@mastodon.online
2026-07-14 15:17:04

#Steady #Klimacrew
#VibeCoding mit KI-Programmierhilfen in Visual Studio Code ausprobiert.
Ich habe zwei KI-Assistenten für die direkte Integration in VSCode getestet, ob sie meine Erwar…

@jswright61@ruby.social
2026-08-19 19:14:21

I've switched to Nova from VSCode as my primary editor on my Mac. When I made the switch about a month ago, I added this function to my .zshrc:
code () {
echo "use Nova instead \`nova\`, or if you really want VSCode, \`vscode\`"
}
Could I have just pointed a code alias at nova? Sure, but how then would this dummy ever learn?
I hit my function today, first time!
Context: My primary way of open a project to work on it is from my terminal now nova…

@niklaskorz@rheinneckar.social
2026-08-01 09:06:00

Why is .config/ in git repositories not a thing? As an XDG_CONFIG equivalent to move .vscode, .zed, .forgejo away from the repository root, that would be pretty nice.
#git #forgejo #gitea

@jackie@social.linux.pizza
2026-08-26 21:56:57

microblog.jackiejude.me/slop-f
my personal anti-AI software list (I'll make a git repo for it later)
This is part of some projects I’m working on including
- a tool like vrms that allows you to scan all your installed packages with

@michabbb@social.vivaldi.net
2026-07-29 19:23:10

🖥️ Speaks LSP over stdio, so any editor with an LSP client works: #SublimeText, #Zed, #VSCode, #Cursor

@castarco@hachyderm.io
2026-08-26 14:33:50

I feel a bit dumb for having discovered that so late, but #VSCode / #VSCodium do not use the .gitignore file to decide what inodes to watch for changes...
Working on a big #Rustlang project can be a nightmare (burning CPU, eating up all the RAM...), given that the target/ directory can end up using more than 100gb of disk space.
Remember to set your "files.watcherExclude" setting to avoid that problem:
```
{
"search.useIgnoreFiles": true,
"search.useGlobalIgnoreFiles": true,
"files.watcherExclude": {
"target/**": true,
"**/target/**": true
}
}
```

@castarco@hachyderm.io
2026-08-27 19:05:16

Ok, I wrote a short article exploring this issue a little bit more in depth, as this past message left some interesting stuff out.
blog.coderspirit.xyz/blog/2026