Konrad Gądek

Results 11 comments of Konrad Gądek

FYI, I've taken amazing work of @nholstein and merged that on top of current main. I know this is not to be merged, but I wanted an up-to-date "workaround". https://github.com/kgadek/alacritty/tree/emoji-picker...

Ok, so I found a problematic command -- it's `retcode, data = SUBLIMERL.execute_os_command('%s %s' % (SUBLIMERL.escript_path, escript_command))` in sublimerl_formatter.py in line 54. It calls `/usr/local/bin/escript sublimerl_formatter.erl '/some_path_here/tmpl5fUjO'`, the temp file...

Ok, found it quicker than I expected: http://erlang.org/pipermail/erlang-bugs/2013-March/003454.html The module (distilled here: http://pastebin.com/2Q1m3beB ) takes 120s to compile (so we thought it's hanged). On the mailing list is distilled module...

TBH I've barely touched the topic. Glimpsed over [shtab](https://github.com/iterative/shtab) & [argcomplete](https://github.com/kislyuk/argcomplete), tried to "just attach" their machinery on `cli.create_cli_parser`. More work on that needed. There's gonna be one more challenge:...

As of today, the issue is still here. Selecting text works on Safari, on Chrome: not so much.

Found the check, it is performed in [LayerBuilder.scala#L152-L158](https://github.com/zio/zio/blob/960c9718ab04c1eaeabdf6bcf9312a3ae7c8a236/core/shared/src/main/scala/zio/internal/macros/LayerBuilder.scala#L152-L158) ```scala case ProvideMethod.ProvideSome | ProvideMethod.ProvideSomeShared => if (!method.isProvideSomeShared && unusedRemainderLayers.nonEmpty) { val message = "\n" + TerminalRendering.unusedProvideSomeLayersError( unusedRemainderLayers.map(node => showType(node.outputs.head)) ) reportWarn(message)...

There seems to be some code added since 2013. As kontiki is not on hackage yet, shall I… hmm, consider this code appropriate for "non-serious systems" only?

I believe you shall also modify `stack-run.cabal` `build-depends` constraint to use something like `conduit-extra >= 1.2 && < 1.3`.

There's a PR that shall fix the thing. Meanwhile, I've used the following workaround for stack project, it allows to do e.g. `stack build stack-run`. #### preparations ```bash mkdir -p...