Dan Horrigan
Dan Horrigan
I think this being over complicated, and overthought. **File Support** In my opinion, file support is of little real world value. If you are already copying files, exporting those values...
@stancl Sorry about that, I had one, not sure what happened. It's updated.
This is likely do to the session needing reloaded. Basically, it added it, but your current PS session doesn't know about it yet. This is normal (same thing happens in...
@cpruijsen What the full NSException that gets thrown? You should see it in the Xcode output window (in the screenshot, it is the pane at the bottom right below the...
This is actually already supported. On Android, you have to add the a Custom Digits Theme to your `styles` resource file. I have created a pull request to add these...
A little late here, but you could put a CloudFront distribution in front of your ALB and add a custom error page for 502/504 statuses to that origin.
Some notable reasons one might prefer the FPM over the Function: - Performance: the overhead of starting PHP for each invocation can add up quickly for high throughput functions. The...
Multiple connections are supported. To open another connection, open a New Window (`ctrl + shift + N` or the via the menu bar)
@matmper Ah, then this is a duplicate of #542. IMO, because beekeeper opens tables in tabs, mixing table tabs from different connections is just asking for trouble (e.g. running a...
Pgpass is supported in `pg`, however, it only uses it if `password === null` ([see here](https://github.com/brianc/node-postgres/blob/master/packages/pg/lib/client.js#L224-L232)). The issue is that Beekeeper sets `password` to `undefined` of its blank ([here](https://github.com/beekeeper-studio/beekeeper-studio/blob/master/apps/studio/src/lib/db/clients/postgresql.ts#L1556)). I...