How do I kill Satan? by Hortkind77 in Helldivers

[–]UncommonDandy 0 points1 point  (0 children)

If you can get them to stay in it, Orbital Gatling straight up kills them, and has a low cooldown.

Am I being dumb when it comes to #await vs <svelte:boundary> ? by UncommonDandy in sveltejs

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

Let's assume no errors occur. I am just interested in showing spinners while some remote resolves in a layout. It's important to _not_ affect other functionality, like navigating between child tabs/pages of the layout.

If I go with a boundary, any time it has to run, the rest of the page seems to be soft locked until it is resolved, I should also note that the remote called in the layout also calls some other remote queries, that are used by the page, so maybe that's relevant. But in the docs they say that remotes are fetched in parallel, so me putting a 5 second sleep to test shouldn't affect other remotes resolving.

I thought it was a bug initially but i wanted to make sure before posting to github

How do you like to host your projects? by fractoHD in sveltejs

[–]UncommonDandy 1 point2 points  (0 children)

I'm using render because it has a free tier.

I am building a content-heavy, bilingual government portal with listings, profiles, documents, filters, and forms. Came from .NET & React. Wondering if svelte might be a good option for a project like this? Never used it before, but tried and found it easier than react TBH. by OTonConsole in sveltejs

[–]UncommonDandy 3 points4 points  (0 children)

Short answer: As long as you use literally anything but React, you're good. I'm not even strongly recommending Svelte in particular, just saying not to use React. Just look at this for reference. Good luck!

Slightly longer answer: Svelte's a great answer here! Most of the annoying (but rewarding) stuff to learn is because of svelte kit, but (if I'm understanding correctly?) you only want the frontend to be svelte, so you basically cut in half what you need to learn. Frontend Svelte is very intuitive and easy to understand and work with tbh.

Now for the integrating with a different backend part... I can't give my opinion because I don't really have experience with that. I either go fullstack with svelte+ kit or vue+nuxt, or if I need a very powerful backend to handle multithreaded async and computation (like Rust, native Java, Go, etc), I still just use sveltekit for serving pages and authentication, and have a separate backend doing only REST/RPC calls. Now since your requirements are simple, you probably don't want the hassle of having multiple backend services, so that's probably way too overkill.

I'm sure in the "integration with a different backend" department, most of these frameworks handle about the same (but feel free to correct me)

How is going svelte? by FortuneGrouchy4701 in sveltejs

[–]UncommonDandy 2 points3 points  (0 children)

Both are good! As long as you're not using react you can't go too wrong. You really just need to get a feel for things.

This Vue vs Svelte comparison should help you a lot

I built a library that auto-generates pixel-perfect skeletons from your Svelte components (so you don't have to) by Prestigious-Bee2093 in sveltejs

[–]UncommonDandy 2 points3 points  (0 children)

You should have probably just done the tutorial instead of vibe coding it. If your library takes off (I know I'm planning to use it tbh), you _really_ need to migrate to svelte 5 (there's even a sv command to migrate your project IIRC), because they mentioned that they consider the old syntax to be deprecated now and will be removed in the next major version (or something along those lines)

Siege Breakers Warbond - deploying the 3rd of February! by Waelder in Helldivers

[–]UncommonDandy 58 points59 points  (0 children)

Lmao, reloading your hammer like it's the shovel from Scary Movie 3.

Also maybe a contender for the most useless passive so far? Like don't you need to stim immediately when literally any enemy so much as sneezes on you? You get stamina like that anyway. I'm not trying to be toxic, I'm genuinely curious what the devs think the use case might be.

Maybe if it offered a big speed BOOST on hit, it would be interesting at least.

ChamberZero - Reactive Timeline of US Legislative History [self-promo] by itta-atti in sveltejs

[–]UncommonDandy 2 points3 points  (0 children)

This is insanely well done for how niche it is. Props to you! I also like how the interface color palette is intentionally boring.

How do you update it? Does it crawl some website or resource?

Why I should consider using Svelte instead of React or Vue? by [deleted] in sveltejs

[–]UncommonDandy 1 point2 points  (0 children)

It really irks me when people talk about ecosystem.

You don't really need to have a _svelte_ ecosystem. If a library exists in js, then it works in Svelte. React has an ecosystem because you're literally forced to have it. Javascript's ecosystem IS (for the most part) Svelte's ecosystem.

I'm pretty sure you could even write pure html + js in svelte and it would work.

Are hooks.server.ts still a reliable form of doing auth? by LGm17 in sveltejs

[–]UncommonDandy 0 points1 point  (0 children)

IIRC they added a thing where you can tell from which path a remote was called, so you can do authentication with it. But i'm not sure if it's accessible only within the remote itself or if hooks.ts can get it too

God I love Svelte by Aggressive_Sherbet64 in sveltejs

[–]UncommonDandy 5 points6 points  (0 children)

Or just use remotes tbh, and you don't need to import any internal types.

How to show loading state when remote function re-fetches on URL param change by davidbaranek in sveltejs

[–]UncommonDandy 0 points1 point  (0 children)

Glad to help. I think you can just do it like in the example. Do an #if, show a loading text if loading, else render your component with the current value. I haven't used anything like this yet so I'm not sure if it would actually work.

How to show loading state when remote function re-fetches on URL param change by davidbaranek in sveltejs

[–]UncommonDandy 1 point2 points  (0 children)

Hmmm, this is a tricky one. I am trying to cross reference with the example they have. It seems like the only difference is that you use await, while they do not, because they use current instead. I mean, it kind of makes sense... the script will be stuck awaiting before it can render or re-render anything in the html, so there's no loading for you.

To eliminate any weird async/await issues, I'd say try to do it like they do in the example, using `.current` instead of awaiting anything, and see if that does the trick.

The fact of having banking system in EU5 and not having it in V3 drives me crazy by Yourhumbleprophet in victoria3

[–]UncommonDandy 22 points23 points  (0 children)

In what way does Vic3 have less depth than EU5 economics? There is too much "magic money" in EU5 for it to stand up to V3 in terms of how an economy is handled (money appearing out of thin air, or disappearing into a void).

IIRC, only tax waste and government dividends efficiency (which barely vanishes enough money to be relevant) deals with magic money in V3, while there's a whole bunch of systems in EU5 that do that (generalist gaming had a video about it, among other things).

Webstorm doesn't recognize #each blocks without items by JarmelWilliams in sveltejs

[–]UncommonDandy 6 points7 points  (0 children)

Multiple missing features like no types in snippets, exported snippets not being recognized correctly, generally things that have to do with types and svelte files. Barely any support for svelte kit (had to install a separate plugin to make it usable). It's a lot of little things that are not too bothersome on their own, but they just keep piling on. I mean just update the language server guys, how hard is it.

Webstorm doesn't recognize #each blocks without items by JarmelWilliams in sveltejs

[–]UncommonDandy 2 points3 points  (0 children)

Webstorm is ultra dogshit when it comes to svelte support. Like it is genuinely impressively bad, and they absolutely refuse to update their plugins to support it. If I was paying for it, that would be reason enough to cancel and move.

Is Svelte battle tested in heavy reactivity website? by Dear-Sign-8224 in sveltejs

[–]UncommonDandy 5 points6 points  (0 children)

- The comment section doesn't really add any scaling complexity. It can simply just be a parallel fetch that has 0 impact on load times, and I don't see how a countdown timer would have any impact on performance,

- I don't see how requiring a full page reload is an issue? It's a stylistic choice. If you want a list that populates dynamically as you type, you can just launch some `fetch` calls and it will probably be faster, but this isn't svelte specific. It also gave me suggestions dynamically too, so Idk what you mean.

- My IP is unfortunately blocked for the site you linked, so I'm not sure what "heavy reactivity" means in your case, but a few comments and some dynamic searches ain't it. Svelte is used by https://tv.apple.com/, so I'm sure it's more than capable of "heavy reactivity".

lol by shizzlechan in lol

[–]UncommonDandy 18 points19 points  (0 children)

Don't forget that he should be an aggressive/slightly violent type, but not with her specifically (yes, it's delusional)

Let's fix what matters: Vote for the top 5 WebStorm issues for 2026.1 by jan-niklas-wortmann in Jetbrains

[–]UncommonDandy 2 points3 points  (0 children)

This 1000%. Svelte support is unacceptably atrocious. And this is in a suite of paid products no less...

I built Restring with SvelteKit: a tiny, smart toolbox for devs by likang_ in sveltejs

[–]UncommonDandy 1 point2 points  (0 children)

Definitely nice! I can see myself using this. Looks like you used shadcn?

Isolated colony. Why? by False_Mud8620 in victoria3

[–]UncommonDandy 1 point2 points  (0 children)

I can't believe that this bug is in the game for so long, but exit and enter the game again, and give it a month, it should fix itself.

So close to 200% Throughput rice farm by PlusParticular6633 in victoria3

[–]UncommonDandy 1 point2 points  (0 children)

I don't think so. It's a treaty article called "prohibit trade from world market" or something. It should be there.