Eugene Sharygin
Eugene Sharygin
I have just integrated Direnv with Tramp in my own [configuration](https://github.com/eush77/dotfiles/blob/ace2b1dc0f229b4897d60728a320a8f88722e0c4/emacs/.emacs.d/config/config-direnv.el#L28-L52) by prefixing commands executed in Tramp with `direnv exec `. I advised `tramp-sh-handle-start-file-process` instead of dealing with `tramp-remote-process-environment`, which...
I think this can be achieved by overloading `_swap` to capture swaps (in order to update positions to pass to `_siftUp`, `_siftDown`) and changing heap comparator so that it looks...
``` js parser.render(parser.parse(':nth-child(even)')) //=> ':nth-child("even")' parser.registerSelectorPseudos('nth-child'); parser.render(parser.parse(':nth-child(even)')) //=> ':nth-child(even)' ``` I guess this is not an issue with the parser per se, but rather with necessity of calling `registerSelectorPseudos` for...
Please merge. The current default behavior is totally unexpected.
Node does not have `prompt`, browsers do. If you would like to run the solution yourself, you should follow the instructions from the first exercise: > We piped the output...
Same error for me under Dash (which is what /bin/sh is sym-linked to on my system). Runs ok under Bash though.
Yeah, the workaround is to change the interpreter to Bash. Although it was changed the other way in 61d059d so it is probably in the author's intentions to make it...
I ran [shellcheck](http://www.shellcheck.net/) on this script with the first line changed to `#!/bin/sh` and it found several Bash-specific features used by the code: - arrays; - here-strings; - `read -e`...
I tried, but unfortunately we can't use `always` to wrap an object of type `a` into a no-argument function `() -> a`, since it waits for the second argument: ```js...