Azzam S.A

Results 335 comments of Azzam S.A

@gilescope any updates?

I am looking for the same thing. [quick-xml](https://github.com/tafia/quick-xml/issues/264) still doesn't have this feature too. My current workaround is using `yaserde` instead. It already support identation. ```rust #[derive(yaserde_derive::YaSerialize)] pub struct Person...

Also we can add similar feature but as md format.

Hi @eejdoowad > Add keybindings for the non-default profiles. Pick something sensible, or just leave them empty, e.g. "copyToORG": []. I think I have [added it](https://github.com/lusakasa/saka-key/pull/238/files#diff-0385603f35cd8b5b31b56750810a417eR473) > Update the clipboard...

- https://github.com/revoltchat/delta/

Related: https://github.com/jhelvy/splitKbCompare/issues/84

In case anyone want to print the layout (without installing the KiCad): ![keyboard_pcb-rounded-F_Fab](https://user-images.githubusercontent.com/17734314/170510435-04040cf3-2c02-4cb1-9ee0-767da0ffdbdb.svg) [cantor.pdf](https://github.com/diepala/cantor/files/8779709/cantor.pdf)

Yes. I think so. Most users have vlc installed than mplayer. I suggest if we can detect other backend other than mplayer. (mpv, vlc, etc). So we don't need to...

How to achieve this in flask level? putting `/v1/` in every blueprint is not maintainable / hard to change ``` python blp = Blueprint( "Health", __name__, url_prefix="/v1/health", description="Health operations" )...

*solution* My current solution is to skip `url_prefix` in each resources, and changing from `@blp.route("/") ` to `@blp.route("/health")`. then assigning `url_prefix` when registering bluprint ```python blp = Blueprint("Health", __name__, description="Health...