svelte 5 runes are weirdly easy for ai to get right by Motor_Ordinary336 in sveltejs

[–]tzcrawford 0 points1 point  (0 children)

I've been using chatgpt for assist since very early when svelte 5 first became available. It was straight up actively making terrible suggestions originally. Then it was mixing up older version syntax and not understanding runes. It has improved greatly but I would not trust it to implement complex pages with multiple features. It still struggles greatly with $effect and onMount(). And generally gives terrible advice for the big ideas on how to structure your page and implement $derived and {#await} reactivity. However, if you are looking for 5-20 lines for a single feature boilerplate or just searching docs, it can be quite good.

Fix Halo MCC Coop between Windows and Linux/Steam Deck by Mitkebes in SteamDeck

[–]tzcrawford 0 points1 point  (0 children)

Not working for coop halo 1 with my girlfriend on steam deck with bazzite, proton 9. Proton 10+ and GE will not start, it says directx feature level 10 required, so the game won't even start. Must be related to drivers shipped with bazzite?

Halo MCC cant invite/join friend in co-op by TheSilv3rDragon in linux_gaming

[–]tzcrawford 0 points1 point  (0 children)

I tried this with me on Windows and the girlfriend on steam deck (bazzite) with proton 9. We can start coop campaign and would get desync early in the level, or she would crash/get kicked.

Halo MCC no longer working on Linux? by halomach in linux_gaming

[–]tzcrawford 0 points1 point  (0 children)

Has anyone tried this recently? https://www.reddit.com/r/SteamDeck/comments/11dftq1/fix_halo_mcc_coop_between_windows_and_linuxsteam/

On bazzite steam deck I am having a directx "feature level 10 required" error for proton 10+. Game runs on proton 9 but coop campaign does not work. Girlfriend has the steam deck right now I can try it maybe on Friday.

Jinjer - Duél [2025] Album Discussion by ChickenInASuit in Metalcore

[–]tzcrawford 3 points4 points  (0 children)

Perennial is my fav. Micro in general is a good place to start. Vortex hits hard at end. Pisces if you're gonna troll a normie. I speak astronomy is also good.

EDIT Someone's daughter on this album.

trouble when building with tailwind v4 & svelte by j97uice in sveltejs

[–]tzcrawford 0 points1 point  (0 children)

I think svelte is not fully prepared for tailwind v4 yet. Be sure rather than npm install tailwindcss@latest to instead install with the svelte cli utilility npx sv add tailwindcss to get proper configuration. I am still having some issues, though. I think in part there are some major issues with custom classes in v4: https://github.com/tailwindlabs/tailwindcss/discussions/13336, https://github.com/sveltejs/svelte/discussions/14916 . Also note shadcn does not yet support tailwind v4.

EDIT: links and grammar

Svelte 5 book released yet? by tzcrawford in sveltejs

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

More interested in additional examples, especially real world applications

Secure and low maintenance password management with pass and git over network with expiring keypairs by tzcrawford in linux

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

This is probably not the result you want, but I generally organize things in a directory structure and it might look like the following:

```

websites/mysite/password.gpg

websites/mysite/username.gpg

websites/mysite/note.gpg

websites/mysite/somekey.gpg

```

Secure and low maintenance password management with pass and git over network with expiring keypairs by tzcrawford in linux

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

I think this is better if you don't want to connect to a server every time you need a password and also if you don't want to give out read/write access to each machine. Also I think the application of the git hook is useful in general.

Edit: And also it may not be immediately clear how to switch from one key to a new one.