Brad Peabody

Results 200 comments of Brad Peabody

Interesting, it seems like it's choking on not having a go.sum on github.com/vugu/vjson and github.com/vugu/xxhash This looks related (indeed I think it's the cause): https://github.com/golang/go/issues/44129 It's probably not a big...

> I assume you don't see this behaviour on versions of go before 1.16? I have not run into this before, no. I actually just upgraded to 1.16 I'm getting...

Ah, okay great. Glad that's working. So just to confirm, you do `vgrun -new-from-example=simple .`, and then `go mod tidy`, followed by `vgrun devserver.go` it works properly, yes? If so,...

I see. Yeah the core of the issue seems to be that now the Go 1.16 compiler wants you to explicitly download any missing packages (whereas it was doing this...

@owenwaller Thanks, yeah this is definitely a bummer. Overall I think the solution is going to be to move toward a more consistent build setup where the backend and frontend...

Suggestions welcome on how to solve this. The issue is that on normal HTML pages the CSS is provided on the initial page load. But without server-side rendering (which Vugu...

Unfortunately the ready() approach doesn't work here - that is a wrapper around https://developer.mozilla.org/en-US/docs/Web/API/Window/DOMContentLoaded_event, which has already fired by the time wasm code loads. There might be an event on...

This is on the roadmap to support as I agree it would ease transition for some people. But I do not believe it works currently (some of the code for...

Interesting idea! There's nothing out of the box for this right now but I don't see any reason it couldn't be done. Most of the effort required would be at...

Definitely interesting. rqlite looks like a fascinating project. I'm not sure if it makes sense to try to make something that is geared around SQL and can work for different...