Skip to content

Instantly share code, notes, and snippets.

@otacoo
otacoo / steam-hover-info.user.js
Created July 21, 2026 19:05
Steam Hover Info Userscript
// ==UserScript==
// @name Steam Hover Info
// @namespace steam-hover-info
// @author otacoo
// @version 1.0
// @description Hover over any Steam Store link to see game name, description, header image, screenshots, and rating
// @match *://boards.4chan.org/*
// @match *://8chan.moe/*
// @match *://8chan.st/*
// @grant GM_xmlhttpRequest
@otacoo
otacoo / 4chan-collage-creator.user.js
Last active July 22, 2026 21:06
4chan Collage Creator Userscript
// ==UserScript==
// @name 4chan Collage Creator
// @namespace 4chan-collage-creator
// @author otacoo
// @version 1.7.1
// @description Create collages from images in a 4chan thread
// @match https://boards.4channel.org/*/thread/*
// @match https://boards.4chan.org/*/thread/*
// @grant GM_xmlhttpRequest
// @connect i.4cdn.org
@otacoo
otacoo / lora_style_explorer.py
Created January 30, 2026 05:41
SD WebUI LoRA Style Explorer script
"""
LoRA Style Explorer - SD WebUI Script
Generates one image per LoRA from a list, switching LoRAs automatically.
Most of this code is from the X/Y/Z plot from AUTOMATIC1111/stable-diffusion-webui.
Works with auto complete like the sd-webui-tagcomplete extension.
Every LoRA entry and its trigger word needs to be separated by a comma, e.g. <lora:Example01:1.0> trigger_word traditional_media, <lora:OtherLora:0.75> trigger_word,
Put this script into the /scripts folder of SD WebUI.
"""
import os