Pavel Dmytrenko
Pavel Dmytrenko
I'm having multiple logs entries with `ipPort` field with values like this: `192.168.0.1:8080`. Trying to use anonymizer with the following config does not produce desired result: ``` @type dummy tag...
I was not able to mask IPv4 or IPv6 address using `ipv4_mask_subnet` and `ipv6_mask_subnet` parameters from sample config. Here is the output: ``` $ docker run -ti --rm -v $PWD:/fluentd/etc...
Often I'm looking into `git diff` view to check the changes. When in my main terminal (iTerm) I'm able to scroll text up or down by holding **k** or **j**...
In continuation to discussion on windows support for `yaspin` started in #32 Minimum plan towards Windows support: - apply the [patch](https://github.com/pypa/pipenv/blob/master/tasks/vendoring/patches/vendor/yaspin-signal-handling.patch) for handling signals - use [vistir/cursor](https://github.com/sarugaku/vistir/blob/master/src/vistir/cursor.py) module for cursor...
Writes to _stdout_ when spinner is in hidden state (using `Yaspin.hide`) should explicitly contain a newline character `\n` in order to flush the stdout. Consider this example: ```python import sys...
Fixes #1808 by composing proper `errors.NotFound` object and raising it.
Hi, Recently I have finished [jtasks](https://github.com/pavdmyt/jtasks), it's a tool to simplify and automate a lot of dev routines in Jekyll projects. Currently it supports following tasks: ``` build Build the...
Zipped version of the Chicago crime data is not available.
Fetching package version info from _PyPI_ can be much more faster by utilizing `multiprocessing.dummy`. Basically it's a wrapper around `threading` module which replicates `multiprocessing` API. It provides a convenient means...
Use a dependency injection to pass spinner instance explicitly to decorated function. Function receives spinner as first argument. This allows to modify spinner properties while using yaspin as a function...