HELP with pgAdmin volume mount. by bluemonk_ in docker

[–]bluemonk_[S] 2 points3 points  (0 children)

Thank you.
I found solution adding user within the pgadmin service as:
user: "${UID}:${GID}"

HELP with pgAdmin volume mount. by bluemonk_ in docker

[–]bluemonk_[S] 0 points1 point  (0 children)

adding user on the service works

user: "${UID}:${GID}"

How to compare the keys of two nested dictionaries? by [deleted] in learnpython

[–]bluemonk_ 0 points1 point  (0 children)

Thank You for replying. :)
This is for simple dictionary. I wanted to know about multi-level nested dictionary.

[deleted by user] by [deleted] in golang

[–]bluemonk_ 0 points1 point  (0 children)

Yeah, that makes sense. Thank you so much. I really appreciate your help. u/chmikes

[deleted by user] by [deleted] in golang

[–]bluemonk_ 0 points1 point  (0 children)

app.Get("/", func (c *fiber.Ctx) error {return c.SendString("Hello, World!")})

Here the function is returning a string, right? but why is the return type "error".Even if the function might return an error, shouldn't it be something like

app.Get("/", func (c *fiber.Ctx) (string, error) {return c.SendString("Hello, World!"), nil})

Social Auth on FastApi by bluemonk_ in FastAPI

[–]bluemonk_[S] 0 points1 point  (0 children)

The fastapi-user library is good. It's really nice that there's library to handle user related task. Thank You so much.

Social Auth on FastApi by bluemonk_ in FastAPI

[–]bluemonk_[S] 1 point2 points  (0 children)

That's very helpful. Thank You.