Jonathan Wilsson

Results 44 comments of Jonathan Wilsson

I never thought about sharable configs for `lesshint`, but I like the idea. Perhaps that's something that's worth exploring more cause that sounds like something that might solve this problem...

I'm gonna try to come up with something to add in the docs on how configs can be easily shared.

Hi! It looks like you've run into [this issue over at postcss-selector-parser](https://github.com/postcss/postcss-selector-parser/issues/99). Please consider contributing a fix there, I don't think there's much we can do on our end.

Hi! Thanks for the thorough report and for using the template! I think the issue lies in `postcss-values-parser`. It seems to work if the prefixed value is first in the...

Sounds good to me! I'd be happy to review a PR for it.

Hey! That's strange. It does sound like passing `positions` was removed from the Spotify docs at some point. But this code (copied from the tests added 6 years ago works...

I saw you're active in [the thread](https://community.spotify.com/t5/Spotify-for-Developers/Can-t-remove-specific-tracks-from-playlist/td-p/5753116) on Spotify's forums. That was going to be my suggestion, to reach out there. But like you're saying there, it's really worrisome that...

Okay, this is really strange. I just tried deleting both by URI and position and both worked 🤔 ```php $api->deletePlaylistTracks('3CuRKFFC2wwSMBwhPl74OT', [ 'tracks' => [ [ 'uri' => 'spotify:track:2tzs8aV8k9xnbAiaHDn4YP', ], ],...

Hey! It is possible (albeit poorly documented) to pass your own `Request` instance to the library, e.g. ```php class MyRequest extends SpotifyWebAPI\Request { public function send() { // Do your...

Added some additional docs with some helper methods that could some in useful, [Passing a Custom Request Instance](https://github.com/jwilsson/spotify-web-api-php/blob/482508df74e2b851be44d3c6ac7cbacae500ce7a/docs/examples/passing-a-custom-request-instance.md). Hope this helps! And just to provide some additional background. Given the...