Vladimir Rutsky

Results 43 comments of Vladimir Rutsky

With PR #73 I solved the issue in the following way. I have added custom build step to project setup.py, that compiles all `*.cu` files into `fatbin`'s for real and...

FTR, NodeJS supports [CommonJS modules](https://nodejs.org/api/modules.html) (`const circle = require('./circle.js');`) and [ECMAScript modules](https://nodejs.org/api/esm.html) (`import { circle } from './circle.mjs';`). ECMAScript modules are natively [supported](https://v8.dev/features/modules) by v8, but to use them in...

@vxgmichel thanks for the information! Attaching loop to the child watcher helps. So this is already fixed and will be included in the next Python 3.5 release?

@mllamazing please submit your questions to `websockets` library users/developers, e.g. on https://github.com/aaugustin/websockets Your questions are not related to (low level) `asyncio` library, but rather to (high level) `websockets` library. Also...

> It seems like the documentation has already answered your question, so your example isn't supported. > > Instead of resolving the promise from another goroutine, send the result over...

Thanks for the info @bandi13! So generally it can be implemented as ``` nbd = open(dev_file, O_RDWR); ... ioctl(nbd, NBD_DISCONNECT); ``` in SIGINT signal handler: https://github.com/bandi13/BUSE-CPP/blob/master/buse.cpp#L208 @bandi13, I checked your...

I think CSS solution would be enough for this feature. Such solution is hackish, because requires to attach external CSS to React component (and use implementation details: `json-inspector__leaf_root`), but this...

I see following pull requests implementing output of messages timestamps: #114, #118. Any progress on reviewing/mering them? @tzutalin , do you plan to submit pull request with your changes?

There is another feature request on displaying timestamps: #9

I can not reproduce this issue with pidcat 2.1.0 on Ubuntu Linux. This works for me: ```shell $ adb logcat > log # store log $ pidcat org.example.app < log...