robert-sjoblom

Results 10 comments of robert-sjoblom

@nathanvda we forked your repo today to use this solution; if we submit a fixed PR, will you use that? I ask because while the solution works locally, we'd like...

@nathanvda github actions can publish both npm packages and gems; that's certainly one way to do it

This solved two hours of frustration for me, so thank ya'll! My solution is similar: ```javascript { data.length > 0 ? : null } ```

You need to add a file `.freetds.conf` under your `$HOME` folder, with the following content: ``` [global] client charset = UTF-8 ```

One of the reasons I used this toolbox was for the getter/setter. VSCode has native support for this, though. I found out today. It's part of its refactor functionality. -...

Seconding this; we'd switch from pgbouncer to pgcat if there was support for SCRAM passthrough

I don't know if this is relevant, but I'm getting an illegal opcode that might be of interest? Context: I'm spawning ~400 connections to various database clusters, like so: ```...

Our policy is to avoid putting anything in the `public` schema, since it's open to all users by default: https://www.postgresql.org/docs/current/ddl-schemas.html#DDL-SCHEMAS-PRIV . Therefore, we generally configure the search path for the...

Would it be possible to get this released as a patch for 0.12? Askama is now blocking all our renovate-bot PRs that uses axum and askama together, since askama can't...