Results 665 comments of milahu

> what is missing ? details on the implementation .. why, how, where, etc useful info for anyone who wants to hack on this code ``` #!/bin/bash cd jest-specific-snapshot #...

example: sleep should be translated to asyncio.sleep ```js function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } async function main() { await sleep(100); } main(); ``` ```py import asyncio...

solved by tracking previous positions on a stack maybe this workaround is worth documenting? i guess some parsers use this pattern "in the wild", but its hard to discover long...

> Or, perhaps for Mac this package could be installed via Homebrew. rumor is, homebrew pulls a million dependencies, so its rather unfriendly for "regular users" kind of like cygwin...

> only Qt as dependency heh, qt is rather large > With GHA it could be a .tar.gz artifact * https://www.google.com/search?q=github+action+qmake+build * https://github.com/jurplel/install-qt-action/issues * https://www.qt.io/blog/building-qt-creator-plugins-with-github-actions * https://github.com/cristianadam/qtcreator-doxygen/blob/master/.github/workflows/build_qmake.yml * https://stackoverflow.com/questions/61737910/linking-qt-with-github-actions-using-mingw *...

the problem is, only "output components" get updated ```js // controlkit/lib/component/Output.js Output.prototype.update = function () { if(!this._update){ return; } this._setValue(); }; // controlkit/lib/component/StringOutput.js StringOutput.prototype._setValue = function () { // .......

> > What's so complicated about this? Why doesn't qBittorrent ask by default, if it finds a file with the exact same name whether to (1) recheck it, (2) leave...

> use something like pipe viewer? http://www.ivarch.com/programs/pv.shtml for the record: ```console $ pv docker-image.tar.gz | sudo docker load [sudo] password for user: 235MiB 0:00:15 [15.5MiB/s] [================================>] 100% Loaded image: x:y...