Skip to content

Instantly share code, notes, and snippets.

View Xornop's full-sized avatar
🎯
Focusing

Xornop Xornop

🎯
Focusing
  • Netherlands
  • 05:29 (UTC +02:00)
View GitHub Profile
@Xornop
Xornop / performance-booster.user.js
Created June 12, 2026 06:56
Web Performance Booster (Anti-Lag) userscript
// ==UserScript==
// @name Disable Backdrop Filter Blur
// @namespace https://www.github.com/Xornop
// @version 1.1
// @description Verwijdert backdrop-filter blur op alle websites om prestaties te verbeteren.
// @author Xornop
// @match *://*/*
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
@Xornop
Xornop / Dockerfile
Last active December 21, 2025 10:50
FROM ghcr.io/cleanuparr/cleanuparr:latest
USER root
RUN apt-get update && apt-get install -y jq && rm -rf /var/lib/apt/lists/*
ENTRYPOINT []
COPY run.sh /
RUN chmod a+x /run.sh