Skip to content

Instantly share code, notes, and snippets.

View Supermathie's full-sized avatar
🏠
Working from home, before it was cool

Michael Brown Supermathie

🏠
Working from home, before it was cool
View GitHub Profile
@EricZimmerman
EricZimmerman / Caddy_AuthCrunch.md
Last active February 1, 2026 13:26
Caddy and Authcrunch working example

After pulling everything together, I thought it would be a good idea to document what ended up working for me with the following setup:

  1. *darr apps
  2. Some 3d printers
  3. MobilRaker
  4. NZB360

This stack requires the following

  • Protecting the sites from unauthorized access
@warewolf
warewolf / menu.ipxe
Last active August 29, 2015 14:08
authenticated iscsi login retry
#!ipxe
# boot-url and sanboot-url is set in bootstrap.ipxe
# Setup some basic convenience variables
set menu-timeout 5000
set submenu-timeout ${menu-timeout}
set base-iqn iqn.2012-12.com.xabean.sandbox
set base-iscsi iscsi:${iscsi-server}:::1:${base-iqn}
@thwarted
thwarted / resize-java-iKVM-viewer
Last active June 3, 2025 06:58
resize-java-iKVM-viewer: find all supermicro Java iKVM Viewer windows and resize them to display all the content
#!/bin/bash
# find all supermicro Java iKVM Viewer windows and resize
# them to display all the content
#
# for reasons that are beyond sanity, this shitty closed source program
# sets the min and max window sizes to the same values, making it unresizable
# through dragging.
# this wouldn't be so bad if it actually resized the window to display all
# the content. it constantly resizes based on the resolution of the
anonymous
anonymous / cloudtobutt.user.js
Created June 11, 2013 03:49
Cloud-to-Butt
// ==UserScript==
// @name s/the cloud/my butt/g
// @description Replaces the word "the cloud" with "my butt".
// @match *://*/*
// ==/UserScript==
function buttize(str) {
return str.replace(/the cloud/g,"my butt")
.replace(/the Cloud/g,"my Butt")
.replace(/The Cloud/g,"My Butt")
@robinsmidsrod
robinsmidsrod / _INSTALL.md
Last active January 14, 2026 12:56
Bootstrapping full iPXE native menu with customizable default option with timeout (also includes working Ubuntu 12.04 preseed install)

Add the following chunk to your existing ISC dhcpd.conf file.

if exists user-class and ( option user-class = "iPXE" ) {
    filename "http://boot.smidsrod.lan/boot.ipxe";
}
else {
    filename "undionly.kpxe";
}

(or see https://gist.github.com/4008017 for a more elaborate setup