Spencer Bliven

Results 138 comments of Spencer Bliven

@anki-code Is that related? I'm on MacOS, where #4224 doesn't seem to be an issue.

I ran into this issue when updating xonsh via homebrew. It's particularly annoying that environment variables don't work (which I use extensively in my .xonshrc). Some examples to reproduce: ```python...

Even if it's not used for parsing, defining the grammar for tasks queries would be good documentation. I suspect that creating a clean grammar will require changing the behavior of...

This wouldn't work if you actually used a regex. What should happen if you switch `find: "hltr-([^"]*)"` with `replace: "shadow-$1"`? Maybe this feature would have some use with plain find/replace,...

IMO this issue can be closed. @Goblin80's solution works well. Here's a working example using `neato` for it's ability to specify node positions. ```` ```dot graph G { layout="neato"; n00...

@ncoish Thanks for this PR! I'm just coming back from vacation but I'll try to review and merge this soon.

The easiest way is to use string splitting. ``` {% set sensorlist = sensors.name.split(',') -%} {% for name in sensorlist -%} Sensor name is {{ name }} {% endfor %}...

I'm also seeing (null) BSSID on 10.15 Catalina. - [X] Built from source - [X] Enabled location services in System Preferences (and no longer get the prompt) - [X] Tried...

IMO this whole section should be rewritten to avoid the regular expression. From the comment we see that ExecAlias is intended to be used for sub-commands and IO redirects, but...

The row sums can be merged by setting last column at once. This works because omitting the row from the destination applies the formula to all rows after the header....