Andrey S.

Results 8 comments of Andrey S.

Kotlin clients which rely on this API are affected by the same problem (`OVERLOAD_RESOLUTION_AMBIGUITY`, #2357), due to the bug in the Kotlin compiler: [KT-17765](https://youtrack.jetbrains.com/issue/KT-17765).

Additionally, when grabbing a screen: ``` final FFmpegBuilder builder = new FFmpegBuilder() .setVerbosity(Verbosity.ERROR) .setFormat("x11grab") // Format is not always a media format name .addInput("+1920,540") // Input is not always a...

The problem can be worked around by using a custom `ProcessFunction`: ```java final FFmpeg ffmpeg = new FFmpeg("/usr/bin/ffmpeg", new RunProcessFunction() { @Override public Process run(final List args) throws IOException {...

Hello, @ocornut. The explanation is simple. The mechanism you've used so far is only specific to a POSIX shell. The `$(shell)` function, on the other hand, may be able to...

@ocornut, @rokups, one notable example of a GNU Make port w/o the underlying POSIX shell is a [_MinGW_](https://sourceforge.net/projects/mingw-w64/) toolchain. Consider the following `Makefile`: ```make GCC_VERSION_0 = `gcc --version` GCC_VERSION_1 =...

Also, speaking of the Windows breed, _ReactOS_ has recently gotten support for UDF (see [CORE-4375](https://jira.reactos.org/browse/CORE-4375)). But I don't think its `CHKDSK` was updated accordingly (looking at the commits, there's only...

It's version 0.9.8: ``` $ pip3 freeze | grep compiledb compiledb==0.9.8 ``` Strangely, the Python 2 version is slightly newer: ``` $ pip freeze | grep compiledb compiledb==0.10.1 ```

@agnjunio Unfortunately, it's still version 0.9.8: ``` $ pip3 install compiledb --upgrade --no-cache-dir Collecting compiledb Downloading https://files.pythonhosted.org/packages/f3/93/cf32ff4c28aa3d22e35ae6f3648abf3d67ffc068d6f946191a7647372857/compiledb-0.9.8-py3-none-any.whl Collecting click (from compiledb) Downloading https://files.pythonhosted.org/packages/fa/37/45185cb5abbc30d7257104c434fe0b07e5a195a6847506c074527aa599ec/Click-7.0-py2.py3-none-any.whl (81kB) 100% |████████████████████████████████| 81kB 1.7MB/s Collecting bashlex...