Gavin Kistner

Results 56 issues of Gavin Kistner

### Preflight Checklist * [x] I agree to follow the [Code of Conduct](https://github.com/jgraph/drawio/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. * [x] I have searched the issue tracker for a feature request...

- VS Code Version: 1.83.1 - OS Version: Windows 10 - Code Runner Version: 0.12.1 **Describe the bug** Run code with a Python file open attempts to run `/usr/bin/python3` which...

I have a web app using my [Flooph](https://github.com/Phrogz/Flooph) gem, which is a class inheriting from `Parslet::Parser`. When I get certain web app errors, it tries to `inspect` my class, resulting...

Implements command lists in a manner that (a) allows various results to be interleaved and still return the correct types, and (b) allows playlist objects to be used directly in...

Command List support. In short: ``` ruby # Do not parse response (for speed) @mpd.command_list do add song volume 50 shuffle end # Array of values from each response line...

On my live music server: ``` ruby @mpd.add( song ) # takes about 40ms `mpc add "#{song.file}"` # takes about 5ms ``` This may seem trivial, but when dynamically generating...

I have a DB that's currently at 17k songs (and growing). Some search terms can produce a lot of results, like: ``` ruby @mpd.where file:'.' @mpd.where any:'e' ``` Calls like...

A silly edge case, but: ``` ruby begin; @mpd.song_with_id(1); rescue MPD::Error=>e; puts e; end #=> [playlistid] No such song begin; @mpd.song_with_id(-1); rescue MPD::Error=>e; puts e; end #=> [playlistid] Number too...

The `information.rb` plugin has an `idle` command, but it is currently [commented out](https://github.com/archSeer/ruby-mpd/blob/8eabf682367331bdde2dc6354072c80645eb6c5b/lib/ruby-mpd/plugins/information.rb#L60). I'd like to be able to watch for changes. As it is I'll have to use background...

My UI uses the name of a playlist as the unique identifier. When I want to fetch a playlist with this name I must currently use one of the following:...