Skip to content

Instantly share code, notes, and snippets.

@nktknshn
nktknshn / add_to_playlists.py
Last active October 9, 2024 07:47
quodlibet player alternaitve playlists picker with autcomplete
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):
@nktknshn
nktknshn / schema_to_types.ts
Last active August 6, 2022 15:26
Generate io-ts codecs and types for JSON data from a set of samples using jq, quicktype and io-ts-codegen
/*
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