Kieran Pilkington

Results 71 comments of Kieran Pilkington

@serversathome The health checks you have will check that "http://localhost:3000/api/heartbeat" returns 200 OK status within 25 seconds of the container starting (interval * retries = 25s). After the last try,...

"3. Support framework plugins" 🎉🎉🎉 I have been using the linter for months now, works great on JS/TS, and have been eagerly waiting for Svelte support. Out of curiosity, how...

Just updated. The same is true of a lot of belongs_to or has_one methods, e.g. `@country ||= @user.country` where country fires an SQL query to fetch the record, but could...

@adiguba I had considered that, but it just doesn't feel very Svelte-like. It would be really great if Svelte had a $watch/$track/$monitor rune for this purpose, where it doesn't run...

@notpeter Hmm, is this really a duplicate? That other ticket is a bug about unsaved buffers and not being able to close the search tab without prompts. This ticket is...

@adiguba Because the docs say that $effect is run when component is mounted, in otherwords, it is the same thing as onMount. And Svelte5 is encouraging the use of $effect....

Ok, so let's consider this use case (please ignore that there are obviously other ways to it, like using `.then/.catch`, but it should demonstrate a valid use case people might...

@Sanidhyafeaturist Hmm, how would this affect things as new logs are coming in though? The migration would likely miss some records added just after it completes, then drop table would...

If bind:this is run when the component is created through, why does the variable it binds to need to be reactive? It won't change, it's assigned once... seems like Svelte...

I'm also seeing some issues after upgrading. In a Rails application that uses Mongoid, it is changing `Company.count > 0` into `Company.any?`, except Mongoid does not define `.any?` on the...