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
| [ | |
| { | |
| "category": "Authentication", | |
| "description": "This plugin allows users to sign in through an SSO provider (such as Google, Facebook, or your own provider). This enables one-click signin.\nReview documentation at https://github.com/9p4/jellyfin-plugin-sso\n", | |
| "guid": "505ce9d1-d916-42fa-86ca-673ef241d7df", | |
| "name": "SSO Authentication", | |
| "overview": "Authenticate users against an SSO provider.", | |
| "owner": "9p4", | |
| "versions": [ | |
| { |
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
| #!/bin/bash | |
| set -o errexit | |
| clear | |
| printf "\n*** This script will download a cloud image and create a Proxmox VM template from it. ***\n\n" | |
| ### HOW TO USE | |
| ### Pre-req: | |
| ### - run on a Proxmox 6 server | |
| ### - a dhcp server should be active on vmbr1 |
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
| // ==UserScript== | |
| // @name URLReplacer | |
| // @namespace Example | |
| // @description Replaces URL from psbdmp to go to pastebin. | |
| // @include https://psbdmp.ws/dump/* | |
| // ==/UserScript== | |
| var links = document.getElementsByTagName("a"); //array | |
| var regex = /^(http:\/\/)([^\.]+)(\.example\.to\/images\/thumb/\)(.+)$/i; | |
| for (var i=0,imax=links.length; i<imax; i++) { |