‮rekcäH nitraM‮

Results 328 comments of ‮rekcäH nitraM‮

I would like to add that in our API we now use venusian like this: ``` python def step_names_and_handlers_for_category_name(self, *category_names): handlers = [] scanner = venusian.Scanner(handlers=handlers) if len(category_names) == 0:...

@thbwd yes, the front page example is what triggered me, but I have to say that I'm impressed even more if you consider changing all the other example code too....

@thbwd Well, I can only reiterate that having a non emoji string in a language that is called emoji code (and that for example allows the file extension to be...

Maybe to add a compromise, how about going this route (conceptual code following): ```js var helloWorld = "👋🌎" console.log(helloWorld) ``` That would achieve the clarity you want (albeit at the...

I have successfully implemented a `jwks_endpoint` like this: ```python def load_public_keys(): public_key_path = Path("etc") / "public.pem" public_key = JsonWebKey.import_key(public_key_path.read_bytes()) public_key["use"] = "sig" public_key["alg"] = "RS256" return KeySet([public_key]) @bp.route("/oauth/jwks") def jwks_endpoint():...

Almost forgot, to actually use the private key for `id_token` generation, I needed this code: ```python JWT_CONFIG = { "key": "secret-key", "alg": "RS256", "iss": "https://example.com", "exp": 3600, } private_key_path =...

@lepture ping?

Generating the keys seems like a great idea, I would like persistence though. It seems though, that otherwise every restart of the oidc server would require a restart of the...