This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Dict, Set | |
from gi.repository import Gtk, Gdk | |
from quodlibet.library.playlist import Playlist, PlaylistLibrary | |
from quodlibet.plugins.songsmenu import SongsMenuPlugin | |
from quodlibet import app,library | |
from quodlibet.qltk.window import Dialog | |
from quodlibet.qltk.msg import ErrorMessage, Icons | |
class AddToPlaylistDialog(Dialog): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Generate io-ts codecs and types for JSON data from a set of samples using jq, quicktype and io-ts-codegen | |
Usage: | |
# collect samples | |
for i in $(seq 1 10); do | |
wget -P samples/ https://api.github.com/events && sleep 2 | |
done |