Fotis Gimian

Results 157 comments of Fotis Gimian

Using `use` and `source` with a dynamic path seems to be troublesome here: ``` C:\Users\Fots〉use ($nu.config-path | path dirname | path join completions 'git.nu') * 09/22/2022 07:54:52 PMError: nu::parser::module_not_found (link)...

Interestingly I have the same issue on Windows. I'm using Sublime Text as my Git editor via `subl -w` and invoking a command such as `git commit --amend` via PowerShell...

> It would be lovely! Would you like to work on it? I may give it a try soon, we're currently integrating typing into our projects so I'm still getting...

For Gunicorn, you can reference the official [Deploying Gunicorn](http://docs.gunicorn.org/en/stable/deploy.html) docs which I found very helpful recently. I think it would be good to make a recommendation on which workers are...

Hope it's OK if I post another little tip I've learned here. If you are deploying with Gunicorn, it's important that you configure logging to write to Gunicorn's error logger...

Please see my comment at https://github.com/encode/databases/issues/61#issuecomment-699499574 for information on how this can be done for asyncpg. In my personal opinion, I think the two values should be returned separately, via...

I've done lots more digging on this. I'm using databases with a PostgreSQL database (i.e. with the asyncpg backend. The reason this issue gets trickier is that databases passes the...

@euri10 Great trick, thanks heaps! Though I do believe that databases itself also has a little problem in that it doens't unquote parts of the URL (particularly the netloc) after...

@gvbgduh Thanks so much, yeah I think that the fix on asyncpg to do this was only just merged into master. So this should be safe for the next release...

The only little thing that's a bit inelegant is when interrogating credentials via the databases library, youl'l still get URL encoded ouptut: e.g. ``` In [1]: from databases import Database...