Skip to content

Instantly share code, notes, and snippets.

@RZetko
RZetko / Apple Sign In Java Micronaut
Last active December 30, 2022 13:19
Apple Sign In Java Micronaut implementation
Works with Micronaut 3.5.3.
Don't forget to:
- change package names according to your project
- replace path to your AuthKey.p8 file in AppleSignInUtil.java and set up your resources accordingly
- implement your own AuthExpection or use generic Exception
@RZetko
RZetko / tidal_import.py
Last active April 9, 2024 18:48
Export your CSV albums from various music streaming services to Tidal
# You need to install tidalapi using pip install tidalapi (more can be found here https://github.com/tamland/python-tidal)
# Input is UTF-8 CSV file with format Artist - Album
# Fill in your username and password on line 13 -> session.login('username', 'password')
# Fill in filename of your CSV file on line 16 -> with open('file.csv', encoding="utf8") as csvfile:
import csv
import sys
import pprint
import tidalapi