Todd Jacobsen

Results 9 comments of Todd Jacobsen

What benefit would this provide? Is there a practical use of "text/plain" in production? From the spec: > Payloads using the text/plain format are intended to be human readable. They...

Thanks @taconi! I've been trying to get xonsh completions working with macports bash and had no luck until using this xontrib! One additional constraint I found with macports is to...

I have Gtk+2 and had to change `from gi.repository import Gtk` to `try:`     ` import gtk as Gtk` `except ImportError:`     ` from gi.repository import Gtk` I don't have Gtk+3 system...

`$date.getLocale().getAvailableLocales()` should return long list of locales, rather than just `en_US_POSIX en en_US` and `$date.format( "MMMM yyyy", $date.getDate(), $date.getLocale().forLanguageTag("fr-CA") )` should return month name in French `aout`

@bradwbradw you can tell pipx to use an older python version by specifying another python executable on your path, for example `pipx install --python python3.11 awsebcli`

I believe #28134 "remove pg base docker image" will fully resolve this. Tests good on master qa

FYI this shellingham update is required to install typer-cli alongside current poetry

HA Proxy needs to be able to get timezone data from the OS, which is provided by the `tzdata` package in Debian and Alpine. Setting the `TZ` environment variable is...

I would say this is intentional. I do understand the need to keep containers as simple as possible. In my opinion, an image should include all OS packages required to...