Hacker News new | past | comments | ask | show | jobs | submit | Ch00k's comments login

A web app that extends the capabilities of Spotify. You can create artists' discographies (all albums in a single playlist), merge multiple playlists into a new one with the ability to watch those playlists for new tracks, track live events for artists you follow or artists from a playlist.

I have been working on it for about a year now. It is not yet public because I am yet to apply for Spotify API quota extension, but I'd be happy to allow access manually if anyone wanted to take a look.

https://mottle.it/


Similar, arguably simpler, Python library that provides an interface to FFmpeg command line is ffmpy [0], of which I am the author.

[0] https://github.com/Ch00k/ffmpy


Does it support regular expressions to match parts of a URL? I have two different GitHub accounts, that I need to be able open in different containers based on the organization name (https://github.com/<org>). I am currently using https://addons.mozilla.org/en-CA/firefox/addon/containerise/, but it is a bit of a pain. I would much prefer defining my rules in code.


Yeah, it's JavaScript so you can write whatever logic you want!

    if (url.hostname === "github.com") {
        if (/.*foo.*/.test(url.pathname)) {
            return "My Foo Conatiner"
        }
        if (/.*bar.*/.test(url.pathname)) {
            return "My Bar Container"
        }
    }


For me playback works in the web interface and in the app, but not through a Sonos integration. https://accounts.spotify.com/ is down, so if you are not already logged in, you would not be able to.




I use yarl as my default for this as well, it's been great to work with.


This library is very pythonic.


Yes! That’s the one I like!


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: