AJ ONeal
AJ ONeal
@jkunkee Any idea how users can run scripts with the new PowerShell permission system?
@michaelgracious What do you get for the output of this? ```pwsh Get-ExecutionPolicy -List ``` I always thought it was stupid that for a script to get permissions to run, all...
@michaelgracious I've finished updating Windows 11 ARM and it only brought my native PowerShell to 5.1.x, and Webi still works in that. So it looks like PowerShell Core can't call...
Some more notes: From https://github.com/webinstall/webi-installers/blob/7b70ab85380727919ae43b986a37a90cf832572c/webi/webi-pwsh.ps1#L136 `~/.local/bin/webi.bat`: ```pwsh @echo off powershell -ExecutionPolicy Bypass -File "%USERPROFILE%\.local\bin\webi-pwsh.ps1" %* ```
ChatGPT happened to spit this out at me about how to install `choco` while I was doing some `swift` coding today: ```pwsh Set-ExecutionPolicy Bypass -Scope Process -Force; ` [System.Net.ServicePointManager]::SecurityProtocol =...
Also while I was looking up some info on `bun`, Brave Leo spat this out: ``` iex "& {$(irm https://bun.sh/install.ps1)} -Version 1.1.6" ``` Maybe using `iex` or `irm` will help...
Hmm... That's a tough one. I think first we should get a Technical Committee together to discuss the expected outputs. Once we have a basic proposal and do a review,...
You'll need to upgrade `psql` to Postgres 17 and use `sslnegotiation=direct`. Search other issues here for some recipes for how to do it with earlier versions, or tls sni alpn...
You need to set the ALPN matcher in caddy l4 to include `postgresql`. Alternatively, you can temporarily disable ALPN in `psql` (I think the option will show up in `--help`).
I will look into this today, as soon as I can. I have handled arch aliases as best as I can in automatic fashion, but it's possible the listing structure...