David E. Wheeler
David E. Wheeler
Using `--noBuildLock` just gets [the build](https://github.com/theory/justatheory/actions/runs/11577504284/job/32229041151) to the next permission issue: ``` Error: error copying static files: mkdir /github/workspace/public: permission denied ``` > I created an image several months ago...
> 1. Building a Hugo site for **production** is the primary use case for this, and both CI container and CI build step (assuming there's a difference) should work (assuming...
> This is what I meant. We only care about static output generated from the container. So the user privileges in the container are only relevant at build-time (and/or during...
Well, GitHub actions don't run the `ENTRYPOINT`, so you can use [gosu](https://github.com/tianon/gosu) in the entry point script to create and execute as a less privileged user. [Here's an example](https://github.com/pgxn/docker-pgxn-tools/blob/main/bin/entrypoint.sh).
Hello! Any chance of an update to PL/Rust for Postgres 17 soonish? Thanks!
> Which Rust language server are you using? Are you using RLS, or rust-analyzer? rust-analyzer I think. I didn't realize VSCode was't using Rust's own RLS.
Thank you that does indeed fix it. Looking at 42d327f, I hadn't realized that arrays were indicated by a trailing underscore rather than `[]`. Though this isn't a custom type,...
It looks like in the two years since I opened this issue the [Path type](https://pkg.go.dev/github.com/jackc/pgx/v5/pgtype#Path) was added. Nice. So I guess this issue should be resolved? In the meantime, I've...
Ah, good to know it's the Geometry path type 🤦🏻. What is the advantage of using an adapter like github.com/vgarvardt/pgx-google-uuid vs just relying on the text behavior?
I've tried inserting and fetching uuid.UUID values with and without `github.com/vgarvardt/pgx-google-uuid` and I can't tell the difference. I assume there's a minor performance improvement when scanning?