When using Calibre-Web from Docker, the most popular container doesn't offer an obvious way to set up a reverse proxy under a different base URL. It's simple to do by writing a request header in your reverse proxy config, as demonstrated below.
This file contains 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
#!/usr/bin/env python3 | |
import time | |
import ctypes | |
from ctypes import wintypes | |
import struct | |
import threading | |
# --- Windows API Setup --- |

This file contains 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 | |
old="0" | |
while true; do | |
if [[ -e /sys/devices/platform/thinkpad_acpi/hotkey_tablet_mode ]]; then | |
new=`cat /sys/devices/platform/thinkpad_acpi/hotkey_tablet_mode` | |
if [[ $new != $old ]]; then | |
if [[ $new == "1" ]]; then | |
echo "Rotate to landscape" | |
xsetwacom set "Wacom Serial Penabled Pen stylus" rotate half |
This file contains 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
(function(){ | |
let doc = document; | |
if (doc.querySelector('iframe#mybbCanvas')) { | |
doc = doc.querySelector('iframe#mybbCanvas') | |
.contentDocument.querySelector('iframe#right_stream_mygrades') | |
.contentDocument; | |
} | |
let download = function(title, text) { |
This file contains 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
#NoEnv | |
SetBatchLines, -1 | |
Gui, Add, Button, gDoConversion, Convert from Markdown to BBCode | |
Gui, Add, Edit, w640 h480 vPost | |
Gui, Show | |
return | |
GuiClose: | |
ExitApp |
This file contains 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
#!/usr/bin/env python2 | |
import time | |
# HTTP | |
import BaseHTTPServer | |
import SimpleHTTPServer | |
import SocketServer | |
import threading |
This file contains 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 Blackboard Dismiss All Updates | |
// @namespace https://github.com/G33kDude | |
// @version 0.1 | |
// @description Adds a "Dismiss All" button to the Blackboard Learn updates page | |
// @author GeekDude | |
// @match *://*.blackboard.com/webapps/streamViewer/streamViewer* | |
// @grant none | |
// @update https://gist.github.com/G33kDude/4ef48d78fde6cb07490a1c1de3ba79d0/raw/BlackboardDismissAll.user.js | |
// ==/UserScript== |
This file contains 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 Hide quick logout | |
// @namespace https://github.com/G33kDude | |
// @version 0.1 | |
// @description Hides the quick access logout button in the toolbar next to the notifications | |
// @author GeekDude | |
// @match *://autohotkey.com/boards/* | |
// @grant none | |
// @updateURL https://gist.github.com/G33kDude/9f9ec5281a8d574847ca28540425343b/raw/HideQuickLogout.user.js | |
// ==/UserScript== |