Peter Schorn

Results 36 comments of Peter Schorn

From what I can tell, the following lines are unnecessary: ``` if [ $(osascript -e 'application "Spotify" is running') = "false" ]; then osascript -e 'tell application "Spotify" to activate'...

I just created a python script that allows you to play Spotify songs directly from spotlight search on macOS! Check it out [here](https://github.com/Peter-Schorn/macOS-Play-Spotify-Songs-from-Spotlight-Search)

On Google Chrome, when I use "Paste and Match Style" the code that I copy from Xcode is properly formatted. I reccomend trying that.

What's the status on this pull request? I need `MergeMany` for a library I'm creating. Is there any other way to merge the output of multiple publishers in the current...

I got the exact same error. Any idea why this is occuring or what to do to fix it?

@amadeuo01 Ok I think the error was because I tried to generate the project in a folder that contained other files. Make sure you create the project in an empty...

A similar issue occurs when you try to add a SPM package product that imports XCTest to a command line project. In order for the project to build you must...

Add the `sceneDidBecomeActive(_:)` method to your `SceneDelegate` and call `connect` on your `SPTAppRemote` in this method, as shown in the example project: https://github.com/spotify/ios-sdk/blob/master/DemoProjects/NowPlayingView/NowPlayingView/SceneDelegate.swift

The solution to persistent storage of the session is incredibly simple: just encode and decode the `SPTSession`. I've been able to successfully encode `SPTSession` using `NSKeyedArchiver` and decode it using...

@matteobart I considered using `SpotifyKit` myself, but, like you, found that it was really lacking in functionality. So, I decided to create my own library instead: https://github.com/Peter-Schorn/SpotifyAPI. I would really...