Eugene Crosser
Eugene Crosser
@potiuk I agree that sudo changes the perspective. My answer is not to use (only) the C/R module for sudo.
Simon, thanks for taking a look at the matter! Re. the choice of the encryption algo: I've been pondering three approaches: (1) use of some "industry standard" library like openssl/gnutls,...
Thanks for that, @klali. Somewhat off-topic, I think that we have another, much bigger, issue ahead, _if_ I get around to make PC/SC backend for libykcore. I hope that I...
A possible (simpler?) alternative is to add a static shortcut that opens the "active" certificate.
You might make contact entries _not_ react to touch for half-second or a second after taking a new position.
Well, get_attr() does not improve readability very much, does it? I was thinking along the lines of defining `__getattr__()` or `__getattribute__()` method in the nla class. Some "convenient" semantics could...
I've just converted my existing enumerating script to the new scheme and it looks much nicer! (And works just as well as before :laughing:) I am attaching two versions of...
Looks less succinct, but would do, fair enough. But: ``` >>> from pyroute2 import IPRoute >>> for l in IPRoute().get_links(): print(l.IFLA_LINKINFO) ... Traceback (most recent call last): File "/home/crosser/src/pyroute2/pyroute2/netlink/__init__.py", line...
Actually `rnm` does contain the key 'IFLA_LINKINFO' debug printout shows that the `if rnm and key in rnm:` is entered, but after `chain = self.nla(key)` chain=={}, so it does not...
Ummm... now dot-chaining does not seem to work? Or something else got broken. ``` >>> from pyroute2 import IPRoute >>> for l in IPRoute().get_links(): print(l.IFLA_LINKINFO.IFLA_INFO_KIND) ... Traceback (most recent call...