Jens Tröger
Jens Tröger
I think it would help to clarify [in the documentation](https://docs.pylonsproject.org/projects/colander/en/latest/api.html#colander.DateTime) that a deserialized `datetime` object is by default _aware_ (i.e. its `tzinfo` attribute is set to a timezone object provided...
My question seems somewhat similar to other `None` related problems, e.g. https://github.com/Pylons/colander/issues/140, https://github.com/Pylons/colander/issues/186, https://github.com/Pylons/colander/issues/204. It seems to me that deserializing a `None` string should yield the same, instead of `colander.Invalid:...
I’m trying to [`show_text()`](https://cairocffi.readthedocs.io/en/stable/api.html#cairocffi.Context.show_text) a string of UTF8 encoded Arabic or Farsi (both are [rtl scripts](https://en.wikipedia.org/wiki/Right-to-left)) but I get only rectangles. I’ve tried with Apple’s [Monaco](https://en.wikipedia.org/wiki/Monaco_(typeface)) and Google’s [Noto Sans](https://www.google.com/get/noto/#sans-lgc),...
Hello, based on your [SLSA SVG badge](https://github.com/slsa-framework/slsa/blob/main/docs/images/gh-badge-level3.svg) I created a [shields.io](https://shields.io/) badge [](https://slsa.dev/) which is this URL: ``` https://img.shields.io/badge/SLSA-level%203-green?logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAAAolt3jAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAABMlBMVEXvMQDvMADwMQDwMADwMADvMADvMADwMADwMQDvMQDvMQDwMADwMADvMADwMADwMADwMQDvMQDvMQDwMQDvMQDwMQDwMADwMADwMQDwMADwMADvMADvMQDvMQDwMADwMQDwMADvMQDwMADwMQDwMADwMADwMADwMADwMADwMADvMQDvMQDwMADwMQDwMADvMQDvMQDwMADvMQDvMQDwMADwMQDwMQDwMQDvMQDwMADvMADwMADwMQDvMQDwMADwMQDwMQDwMQDwMQDvMQDvMQDvMADwMADvMADvMADvMADwMQDwMQDvMADvMQDvMQDvMADvMADvMQDwMQDvMQDvMADvMADvMADvMQDwMQDvMQDvMQDvMADvMADwMADvMQDvMQDvMQDvMADwMADwMQDwMAAAAAA/HoSwAAAAY3RSTlMpsvneQlQrU/LQSWzvM5DzmzeF9Pi+N6vvrk9HuP3asTaPgkVFmO3rUrMjqvL6d0LLTVjI/PuMQNSGOWa/6YU8zNuDLihJ0e6aMGzl8s2IT7b6lIFkRj1mtvQ0eJW95rG0+Sid59x/AAAAAWJLR0Rltd2InwAAAAlwSFlzAAAOwwAADsMBx2+oZAAAAAd0SU1FB+YHGg0tGLrTaD4AAACqSURBVAjXY2BgZEqGAGYWVjYGdg4oj5OLm4eRgZcvBcThFxAUEk4WYRAVE09OlpCUkpaRTU6WY0iWV1BUUlZRVQMqUddgSE7W1NLS1gFp0NXTB3KTDQyNjE2Sk03NzC1A3GR1SytrG1s7e4dkBogtjk7OLq5uyTCuu4enl3cyhOvj66fvHxAIEmYICg4JDQuPiAQrEmGIio6JjZOFOjSegSHBBMpOToxPAgCJfDZC/m2KHgAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMi0wNy0yNlQxMzo0NToyNCswMDowMC8AywoAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjItMDctMjZUMTM6NDU6MjQrMDA6MDBeXXO2AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg== ``` Unfortunately, the logo is embedded into the link as a...
I think it would be useful (at least for my use case) to have a “move” event, similar to the current `switch` event. It fires when the user holds e.g....
First, I think the call to `extractContent()` in the `Editable.getContent()` function https://github.com/livingdocsIO/editable.js/blob/58f9a24e39b21a6c501c9fb28ef837d8ca018edc/src/core.js#L270 should actually be ```javascript return content.extractContent(element, false) ``` to ensure that the argument `keepUiElements` is a boolean as...
Hello, Github Actions that we’ve written and used in the past (both public and private repos) have been using this Action successfully, e.g. [here](https://github.com/jenstroeger/python-package-template/blob/e5a047f9b0eeef74d06250eb1b63f73c6b63849b/.github/workflows/codeql-analysis.yaml#L42-L43): ```yaml - name: Checkout repository uses:...
**Is your feature request related to a problem? Please describe.** Related to my question/issue https://github.com/actions/checkout/issues/874. As described there, we had pinned an Action like so: ```yaml - name: Checkout repository...
**Describe the bug** Here’s a scanning alert: https://github.com/jenstroeger/python-package-template/security/code-scanning/38 It suggests to use `pip` with a hash instead of a pinned version. Alas, [pip install](https://pip.pypa.io/en/stable/cli/pip_install/) does not have such a feature....
### Description To increase trust in commits, particularly in the context of current [software supply-chain](https://en.wikipedia.org/wiki/Software_supply_chain) issues, it may be useful to enforce signed commits with various `cz` commands. To maintain...