Kyrylo Shpytsya

Results 26 issues of Kyrylo Shpytsya

I may be missing something but it seems that the value of `self._has_text` set in this section of code: https://github.com/ocrmypdf/OCRmyPDF/blob/5c6030960945fe299291fa134cff35c86a644b9f/src/ocrmypdf/pdfinfo/info.py#L779-L788 is always overwritten here: https://github.com/ocrmypdf/OCRmyPDF/blob/5c6030960945fe299291fa134cff35c86a644b9f/src/ocrmypdf/pdfinfo/info.py#L804-L822

robustness

The access control aspect does not seem to be mentioned anywhere. My two cents on this would be the following (probably somewhat inspired by consul/vault): Access control mechanism should be...

UPD: I see there is a related pull request https://github.com/oklog/oklog/pull/123 Consider implementing of text indexing for faster queries, as described here: https://blog.nelhage.com/2015/02/regular-expression-search-with-suffix-arrays/ Optional because there is an obvious trade-off between...

``` $ pipx install --python python3.8 tinyshar installed package tinyshar 0.10.2, Python 3.8.3 These apps are now globally available - tinyshar done! ✨ 🌟 ✨ $ pipx install --force --python...

I am trying to get kubler run in a remote docker. Is it supposed to work? Note that I have repeated those steps several times within a day interval, and...

question

Docker provides a way for referring to images by their SHA hash instead of tags, like this: ```sh $ docker pull pierrezemb/gostatic@sha256:e28d48e17840c5104b5133c30851ac45903b1d2f268d108c4cd0884802c9c87e $ docker images|grep gostatic pierrezemb/gostatic 4569615e9ed0 2 weeks...

bug

[Here](https://github.com/localstack/localstack/issues/4271) is the counterpart issue in localstack repo. Rusoto fails parsing the cloudformation describe-stacks response when executed against localstack. ``` thread 'tests::describe_stacks' panicked at 'called `Result::unwrap()` on an `Err` value:...

On Python 3.2+ Popen should be used as context manager, otherwise very obscure errors happen on Windows with multiple invocations of Popen. From https://docs.python.org/3/library/subprocess.html: ``` with Popen(["ifconfig"], stdout=PIPE) as proc:...

Currently, on Linux, pressing `Ctrl-C` while `terraform` subprocess is running, causes my python app to stop, a shell prompt to appear, and spurious output from `terraform` (which sometimes takes a...

* Python DynamoDB Lock version: 0.9.1 It would be great if the library would (optionally) automatically create the locks table if it does not yet exist, or at least document...