Kieran Pilkington
Kieran Pilkington
I'm in the same boat as @MathiasWP . Upgrading my app to Svelte 5. In most places, I use const for my $props without issue. But if it includes $bindable,...
@MathiasWP Thanks for the recommendation. I want this enforced in all other areas of my codebase however. I can turn the rule to warning for Svelte files as a whole,...
@mikededo Great news, thanks. Now just need to wait for v3.0.0 to be released :-)
I'd like to make my interest in this known. I'm in the process of moving all my production applications from Datadog to self-hosted Signoz, which rely on OTel providers. We...
Hmm, does the suggestion from @dagadbm actually stop source maps from being generated, or does it simply clear them out at the end? I've been trying to speed up a...
Confirming that this issue is still present in the newly released 1.9 version.
Related issue: https://github.com/seattlerb/path_expander/issues/8
@DenisDenis9331 Looks like 1.1.3 of path_expander was released which fixes this issue
Hey. Just experimenting with AssemblyScript, trying to make a AS version of Conways Game of Life (https://github.com/KieranP/Game-Of-Life-Implementations). Was unable to get a very simple `for ... of ...` from JS/TypeScript...
According to the docs (https://www.assemblyscript.org/stdlib/map.html), it recommends using `has` first: ```ts private cell_at(x: u32, y: u32): Cell | null { const key = `${x}-${y}` if (this.cells.has(key)) { return this.cells.get(key) }...