Skip to content

Instantly share code, notes, and snippets.

@tomeko
tomeko / comskip-jellyfin-setup.md
Last active January 26, 2026 13:37
Comskip + Jellyfin setup guide (Ubuntu 22.04)

Setting up Comskip with Jellyfin (non docker install)

This just got way easier as comskip seems to be in apt packages now. The only thing you need to do is slightly modify the script in jellyfin-dvr-comskip because it assumes a docker install

1. Install comskip

sudo apt install comskip

2. Get and update jellyfin-dvr-comskip

@marianzange
marianzange / coinbaseProSignature.js
Created August 20, 2018 13:19
Coinbase Pro HMAC signature generation for Postman
// Computes the HMAC for requests sent to the Coinbase Pro API.
//
// - Add the following code as Postman pre-request script
// - Adapt the getPatch function an the variable names according to your needs
const timestamp = Date.now() / 1000;
function getPath(url) {
// URL path regex works only if your URLs look like this: {{api_url}}/resource
// If you use hardcoded URLs or any other scheme, adapt the regex pattern!