Results 109 comments of Sam Morris

Since (I think) I filed this issue, FreeIPA has been enhanced to tell NetworkManager to configure the system's DNS to use 127.0.0.1/::1 as its resolver. So probably the original reason...

I gave `PIP_PYTHON` a go and it works, thanks! (Grumble, I looked for this years ago, and tried `--root`, `--prefix` and `--target` before giving up and assuming that Pip always...

Sure. I was trying to show examples of this working using the `--python=` option to `pip install`, however there's a problem with the order of the command line arguments that...

Ready for you to take a look.

/remove-lifecycle rotten

Note to self: there's an Azure AD specific class available, `social_core.backends.azuread_tenant.AzureADV2TenantOAuth2` which might be better to override. It uses the `preferred_username` claim for the user ID. But it also uses...

I haven't had a chance to take another look at this. According to [ID token claims reference], the `roles` claim is always present in both v1.0 and v2.0 tokens. According...

I'm able to fetch the metadata refresh URL just fine myself: ``` $ http -h https://www.bing.com/HPImageArchive.aspx mkt==auto idx==0 n==8 mbl==1 format==js Accept:application/json HTTP/1.1 200 OK Accept-CH: Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile,...

Thanks for that. I have to add: ``` imports.gi.versions.Soup = '2.4'; ``` Then I get: ``` $ ./bing.js Gjs-Message: 11:55:48.890: JS LOG: message code: 200 Gjs-Message: 11:55:48.890: JS LOG: {"market":{"mkt":"en-GB"},"images":[{"startdate":"20230308","fullstartdate":"202303080000","enddate":"20230309","url":"/th?id=OHR.IntlWomensDayChange_EN-GB0996253952_1920x1080.jpg&rf=LaDigue_1920x1080.jpg&pid=hp","urlbase":"/th?id=OHR.IntlWomensDayChange_EN-GB0996253952","copyright":"Cibeles...

Looks like it: ``` >>> import gi >>> gi.require_version("Soup", "3.0" >>> from gi.repository import Soup >>> mes = Soup.Message.new_from_encoded_form("GET", "https://www.bing.com/HPImageArchive.aspx", Soup.form_encode_hash({"format": "js", "idx": "0", "n": "1", "mbl": "1", "mkt": "auto"}))...