Skip to content

Instantly share code, notes, and snippets.

View bulletinmybeard's full-sized avatar
🤘

Robin Schulz bulletinmybeard

🤘
View GitHub Profile
@bulletinmybeard
bulletinmybeard / browser_link_checker.js
Last active December 20, 2025 15:08
Userscript - Link Checker
@bulletinmybeard
bulletinmybeard / url_rewriter.js
Created December 20, 2025 09:49
Userscript - URL Rewriter
// ==UserScript==
// @name URL Rewriter
// @namespace https://rschu.me/
// @version 1.0.0
// @description Rewrites URLs from one domain to another on the fly
// @author Bulletinmybeard
// @match *://app.external.example.com/*
// @run-at document-end
// @grant none
// ==/UserScript==
@bulletinmybeard
bulletinmybeard / download_gists.sh
Created December 6, 2025 19:07
GitHub Gists Downloader - Sync all gists for a user to a local directory (cross-platform)
#!/bin/bash
#
# download_gists.sh - GitHub Gists Downloader
# ============================================
#
# Fetches and syncs all gists for a GitHub user to a local directory.
# Only downloads files that are new or have been updated remotely.
#
# Features:
# - Cross-platform (macOS & Linux)