Andrey Kislyuk
Andrey Kislyuk
Hello, I am looking at using ETE code in a production environment. In the course of running `pip3 install ete3`, I see that the setuptools code for this package performs...
See discussion in #109
``` from xml.etree import ElementTree as ET parser = ET.XMLPullParser() with open(input_filename) as fh: i = 0 while True: i += 1 parser.feed(fh.read(1024*1024)) for event, element in parser.read_events(): element.clear() del...
Is available in a branch (https://github.com/kislyuk/yq/tree/akislyuk-jmespath-support), but I'm not sure if anyone wants it. Please comment here if you have a use for it.
I maintain https://github.com/kislyuk/yq, and as seen in https://github.com/kislyuk/yq/pull/10, the lack of YAML 1.2 support in this library is a hindrance to parsing YAML in a consistent "least surprise" manner. Recognizing...
See https://packages.ubuntu.com/bionic/libpam-yubico
In #19 and #22, `keymaker-create-account-for-iam-user` was made not to terminate the PAM stack. Determine when it is unsafe to do so due to implicit assumptions made in how people typically...
In #18, we made sure the auto-vivified user has a shell. Make the shell configurable either through IAM account metadata if possible, or for all users at daemon install time.