Skip to content

Instantly share code, notes, and snippets.

View Fooftilly's full-sized avatar
🤺

Nikola Perović Fooftilly

🤺
View GitHub Profile
@Fooftilly
Fooftilly / Letterboxd_to_RYM_Film_Search.user.js
Last active June 13, 2024 09:50
A handy ChatGPT userscript that adds a button below the film poster on Letterboxd, allowing you to search for the same film on RateYourMusic.
// ==UserScript==
// @name Letterboxd to RYM Search
// @version 0.5
// @description A handy ChatGPT userscript that adds a button below the film poster on Letterboxd, allowing you to search for the same film on RateYourMusic
// @author ChatGPT
// @namespace https://gist.github.com/Fooftilly
// @downloadURL https://gist.github.com/Fooftilly/509ddfbbc0395c0ff209f3fdea112187/raw/Letterboxd_to_RYM_Film_Search.user.js
// @updateURL https://gist.github.com/Fooftilly/509ddfbbc0395c0ff209f3fdea112187/raw/Letterboxd_to_RYM_Film_Search.user.js
// @match https://letterboxd.com/film/*
// @grant none
@Fooftilly
Fooftilly / TRatioStatsGraph.py
Last active April 20, 2025 11:23
Tracking qBittorrent Usage With Graphs
#!/usr/bin/python
import sqlite3
import os
import argparse
from datetime import datetime, timedelta
from functools import lru_cache
import plotly.graph_objects as go
from jinja2 import Template
from collections import defaultdict