Florian Best

Results 263 comments of Florian Best

Ahh I got it.... 'Shift+A'. Maybe filtering the input and add this automatically? Or write more examples into the README. Is it possible to print whole words using this one...

``` #!/usr/bin/python # -*- coding: UTF-8 -*- import sys from subprocess import call for char in sys.argv[1]: if char.isupper(): char = 'Shift+%s' % (char,) call(['xsendkey', char]) ```

How to send those character independent of the keyboard layout? `*,-.:;?@[\]^_`{|}~'`

http://linux.die.net/man/3/xstringtokeysym tells "Standard KeySym names are obtained from by removing the XK_ prefix from each name.". The header file is located at: /usr/include/X11/keysymdef.h xsendkey Shift+asterisk prints a \* therefore. I...

Hi :) So far I created a forked version which I call 'xsendword' which is able to evaluate multiple arguments. Maybe I will find a solution to the problem otherwise...

I would also like to have this feature: Read the photo from the LDAP attribute `jpegPhoto`.

> It’d be really nice if ruff can understand the inline pylint ignores to make migration very easy. this is covered in https://github.com/charliermarsh/ruff/issues/1203

A fixer which transforms the pylint-comments into ruff noqa-comments would be helpful. ```diff -# pylint: disable-msg=R0133 +# noqa: PLR0133 ```

similar (but I think another issue exists for it already): `F811` is not ignored. ``` def overload(f): pass from typing import ( # noqa: F401,F811 overload, ) ```