Dmitry Budaev

Results 40 comments of Dmitry Budaev

Actually there are ways to implement dropdown and modal without JS, as soon as Gitea uses Tailwind you can check how it's done in daisyUI and use the similar approach...

Search could be done with htmx

Centered image, not cropped, not stretched. Just as you see it originally when open SVG file. I think it makes sense if you want to use the icon as avatar,...

@Vasilich Depends on use-case it may be that you only need to specify either `--width` _or_ `--height`, but not both, then it should work as you mentioned.

As a start it would be nice to remove all siblings under the html tree and leave only one branch to the selected element. This shouldn't require any stylesheet updates.

It is possible to set icon color on web, here is an example: ```html ``` But `resvg --background white test.svg test.png` will render black circle on white background, as there...

Adding `--eol LF` should help to remove second newline when you press Enter as the default option is to send `\r\n`, here is the full command: ```sh miniterm.py /dev/ttyUSB0 115200...

Is comment above is generated by AI based on my initial comment but with different wording? Sorry if I'm wrong, but it looks like it.

I believe it would be beneficial to have not only diff, but also what files were changed. Here is the APIs from other services that have info about files added/modified/deleted/renamed:...

Another example: ```python from unittest import TestCase tests: list[type[TestCase]] = [] testCaseClass = type("Foo", (TestCase,), {}) # Argument to bound method `append` is incorrect: Expected `type[TestCase]`, found `type` tests.append(testCaseClass) ```