Artur Dryomov

Results 9 issues of Artur Dryomov

I have [such setup](https://github.com/ming13/dotfiles/tree/891974a5c3fdda17c8db99a55f2a14680b88aac0/zsh). Basically on my Mac Zsh initialization does the following. * Iterate through Darwin scripts, one of which sources `antigen.zsh`. * Iterate through Unix scripts, first of...

Bug

* [Skylark → Starlark](https://blog.bazel.build/2018/08/17/starlark.html) * Skydoc → [Stardoc](https://github.com/bazelbuild/stardoc) * Skylib → Starlib?

P4
type: process

Since Mainframer will be shipped as a system-wide command... * It is possible to find out the version using the `--version` command. Bash script could have this too though, but...

enhancement

After using Mainframer for a while with different projects we’ve been pointed to a specific pain point — shipping the tool with _a_ project forces you to ship it with...

enhancement

[v0.2.0](https://github.com/tensorflow/tflite-support/releases/tag/v0.2.0) introduced support for YUV `android.media.Image` as part of the `tensorflow-lite-task-vision` artifact. Seems like it uses [`libyuv`](https://chromium.googlesource.com/libyuv/libyuv/) under the hood. As far as I understand `TensorImage` delegates to `MediaImageContainer` in...

[PEP 498](https://www.python.org/dev/peps/pep-0498/) introduced formatted string literals which make this possible: ```pycon >>> name = "Star-Lord" >>> f"Starlark, say hi to {name}" 'Starlark, say hi to Star-Lord' ``` It would be...