Antti Korpi

Results 133 comments of Antti Korpi

I submitted https://github.com/tokio-rs/loom/issues/346 and https://github.com/tokio-rs/loom/issues/347 as separate issues. If they fit better here, feel free to add them to the list and close as duplicate.

Perhaps the issue is related to Windows not supporting [GTK's `input_shape_combine_region` function](https://docs.gtk.org/gdk3/method.Window.input_shape_combine_region.html), which hudkit uses to make the window click-through ("transparent" to mouse clicks); > On the Win32 platform, this...

Thanks for reporting. Definitely a bug. I suspect what may be happening is that the overlay window itself is correctly positioned (since the intro text appears where I would expect...

Potentially fixed by https://github.com/anko/hudkit/commit/024bfb6fd25a6ac91c6d9ba67a551d6ffca633ff. Please re-test with that if you have the time.

Quick test: ``` $ time (repeat 10000 echo "hi" > /dev/null) ( repeat 10000; do; echo "hi" > /dev/null; done; ) 0.02s user 0.02s system 96% cpu 0.034 total ```...

**Good news**: Implemented in the [`backend-flag` branch](https://github.com/anko/txm/tree/backend-flag). Tests work locally. **Bad news**: [Fails on Travis](https://travis-ci.org/github/anko/txm/builds/685405877), hanging without explanation on the first associated test. Theories: - Is `waitOn` blocking forever? →...

Oh, I see! There goes my plan though. :slightly_frowning_face: To make this test work as-is, the forked node process would need to call the provided `log` and `die` functions, for...

This is still a thing. Makes it impossible to start Node in [debug mode](https://nodejs.org/en/docs/guides/debugging-getting-started/). - `--nodejs` before file name lsc --nodejs 'inspector' main.ls This does the equivalent of `node inspector...

What do you think of a fix that makes `--nodejs` take `String` instead of `Boolean` [as it does currently](https://github.com/gkz/LiveScript/blob/master/src/options.ls#L52)? Might have to `child_process.exec` node [over here in `command.ls`](https://github.com/gkz/LiveScript/blob/bc1c188f01298567bc689c979147829c6ac57213/src/command.ls#L248) instead instead...

I'm increasingly worried about "because it saves an extra loop" as a reason to add a new utility function. Should we also have `fold-obj-to-list-then-filter` because it saves an extra `filter`?...