Justin Israel

Results 216 comments of Justin Israel
trafficstars

I was having a play with this embedded solution and found that this modified approach only requires one file instead of two: **main.go** ```go package main // ... var web...

And one more variation that might even be better, since it allows for making the embedding a build constraint: **main.go** ```go package main //... var ( resources app.ResourceProvider ) func...

fwiw I have already hit crashes 2 times in my first app, by using `app.If()` and not remember that its always evaluated, and that code path has a null pointer...

I've also come to the same point where I have questions about the best approach to structuring multiple components. My first project now has a similar shape to this original...

Thanks for the clarification, @maxence-charriere. That info, combined with the implementation details from @oderwat about how a private instance is created from the type explains some of the behaviours I...

FWIW I have the same requirements as @jimsmart and approached the solution using the `BeforeCopy` hook. I hit one issue which I just fixed via #80 (thanks for merging). So...

Thanks for the reply! Shame to hear the project isn't widely used. I wouldn't then expect you to invest a bunch of time in this feature unless it is going...

Any movement on this? I've been exploring bubblewrap for a sandboxed build env and seem to also need this feature for chown purposes.

Fair enough, and thanks for the reply. I've only started experimenting with the project on an Ubuntu system, without setuid. So I am not familiar with the code or an...