figuerom16

Results 10 comments of figuerom16

@endigo9740 I did watch the video and: - Switched over to the ESM style since it's much nicer. - The native ParseArgs utitility is going to make arguments very easy...

Fetch would be for the test runner only. The test will go through the entire process including spinning up the server with npm dev run. Then attempt a fetch on...

Hi @endigo9740, I didn't see any notifications from @niktek on Discord, but that's fine as I've been away also and was caught up in another project. The script is still...

https://gitlab.com/figuerom16/gosqliteadmin I implemented a boilerplate inline SQLite interface that does datatables and exports CSVs. Someone can copy/change the bits into a Svelte version. It's using a few plain JS libraries...

Is there a temporary work around for this for Cloudflare Pages? I've tried downgrading to @sveltejs/[email protected] and using @dbradleyfl method if (building) await resolve(event), but I get the same "Error:...

@ajgeiss0702 @dbradleyfl Doh! You're correct. I forgot the return. Works with the newest @sveltejs/[email protected]. Thank you much! if (building) return await resolve(event)

I have a 5 second delay for connections to close on graceful shutdown. If you're listening for an interrupt then be sure to set a kill_delay as well otherwise air...

@altanbgn > signal.Notify(quit, os.Interrupt) Be sure to capture syscall.SIGTERM also. systemd/docker uses that signal for stop and restart. Save yourself some headaches on deployment. `signal.Notify(quit, os.Interrupt, syscall.SIGTERM)`

@peterldowns @iancharters Referring to the example toml https://github.com/cosmtrek/air/blob/master/air_example.toml kill_delay operates in nanoseconds! With a value of 1 you're giving your program maybe CPU 4 clock cycles to close up your...

@peterldowns Are you on the latest air also? My air -v is v1.51.0, built with Go go1.22.2. Is there sample code I can try? Are you doing anything special to...