Daniel Tompkins

Results 24 comments of Daniel Tompkins

I got this error too. Solution: `sudo $VISUAL /usr/local/bin/termv` Where $VISUAL = vim or your default editor Edit line 156. Change `alt-]` to something else and save.

Awesome, thanks for taking a look @kasper. Loving Phoenix as someone coming from i3 on Linux. Glad you could confirm the bug.

Hey @kasper I was trying to verify this by building master locally. I'm using Node v19.7.0, NPM v9.6.2 I'm using Xcode 14.2 Build version 14C18 I get **BUILD SUCCEEDED** without...

Thanks a lot for your response @antogno. The `fork-ts-checker-webpack-plugin` also worked for me. I was a little concerned at first because your configuration example is a little daunting. However, the...

I'm having this issue too with Nvim 0.10.0. The proposed fix seems to work for me. Is something other than free time holding back this PR from getting merged...?

FWIW, there are some forks out there with the fix implemented: https://github.com/bbjornstad/pretty-fold.nvim Easy swap if you're using a plugin manager. Might switch back to `anuvyklack`, but seems like there's low...

Interesting... thanks for those added insights. I'll take a look at SCRAM and see what that's about. If it's doing favors for security, then it might be something we don't...

MacOS 14.5 here... But now I'm realizing that may be less relevant.. because psycopg is actually run containerized (Alpine Linux) on the Mac. Perhaps manually updating those dependencies in the...

I'm building the Postgres 16 image on Alpine 3.20. I tried manually `apk add libpq` before pip installing `psycopg[binary]`. I was able to get the application running by overriding `/var/lib/postgresql/data/pg_hba.conf`...

I looked back over the `psycopg` documentation and realized I hadn't loaded `libpq` at all as a dependency. However, adding it (with `apk add libpq`) did not resolve the issue....