Skip to content

Instantly share code, notes, and snippets.

View hexxone's full-sized avatar

hexxone

View GitHub Profile
@hexxone
hexxone / jellyfin-custom.css
Last active March 14, 2024 17:47
JellyFin Custom CSS
/* Made by https://github.com/hexxone */
/* gradient default */
/* :root {
--accent1-light: #a95bc2;
--accent1-dark: #3f2348;
--accent1-light-opacity1: rgba(169, 91, 194, .4);
--accent2-light: #00a4db;
--accent2-dark: #003d52
} */
@hexxone
hexxone / autotoggle.js
Created November 20, 2023 14:10
Gitlab Pipeline Auto-Toggle "Show Dependencies"
// ==UserScript==
// @name Auto-Toggle GitLab Pipeline Dependencies
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Automatically toggle the "Show dependencies" button on Gitlab Pipeline pages
// @author hexx.one
// @match https://gitlab.yourserver.com/*/pipelines/*
// @grant none
// ==/UserScript==
<?php
define('BOT_TOKEN', 'XXXXXXXX:XXXXXXXXXXXXXXXXXXXXXXXX'); // place bot token of your bot here
function checkTelegramAuthorization($auth_data) {
$check_hash = $auth_data['hash'];
unset($auth_data['hash']);
$data_check_arr = [];
foreach ($auth_data as $key => $value) {
$data_check_arr[] = $key . '=' . $value;