Skip to content

Instantly share code, notes, and snippets.

@ghostedrecon
ghostedrecon / index.html
Created December 31, 2025 12:14
Untitled
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CLAA - Capitol Legacy: American Ascension</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!DOCTYPE html>
<html>
<head>
<title>For You 💖</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="screen">
<img id="img" src="https://i.postimg.cc/wj7g53Nv/IMG-0468.png">
@radfox200289
radfox200289 / index.html
Created December 31, 2025 11:15
To my girl vanes
<audio id="music" loop>
<source src="https://cdn.pixabay.com/download/audio/2022/03/15/audio_4c7c3c6b8b.mp3" type="audio/mpeg">
</audio>
<div class="start" onclick="startExperience()">
<div class="bunny">
@flfue
flfue / gist:d3670e3ce74401078e8fa6657e6fd92b
Last active January 1, 2026 09:51
Shelly 2PM cover blind script
// Shelly Blinds Controller Script
// This script automatically controls Shelly smart blinds with scheduled actions.
// It executes a morning routine and an evening routine once per day.
// Each routine executes at a randomized time within a configured window,
// and can open, close, or set the blinds to a specific position percentage.
// Routines are managed with daily state tracking to ensure single execution per day.
// Note: When the script starts, it cleans up any existing scheduled jobs related to Cover operations
// === CONFIGURATION ===
/* Story Weaver Extension - GitHub-ready version */
(async function(Scratch) {
// Check if the extension can run unsandboxed
if (!Scratch.extensions.unsandboxed) {
alert("This extension needs to be unsandboxed to run!");
return;
}
const ExtForge = {
@ThatBobo
ThatBobo / story-weaver-extension.js
Created December 29, 2025 14:02
Makes story(ThatBobo)
/* Created with ExtForge https://jwklong.github.io/extforge */
(async function(Scratch) {
const variables = {};
if (!Scratch.extensions.unsandboxed) {
alert("This extension needs to be unsandboxed to run!")
/* Story Weaver extension (for PenguinMod extra extensions)
- Adds localStorage persistence
- Safer removal behavior (removes all occurrences)
- Optional alerts (showAlerts = false by default)
- Preserves original block opcodes/IDs
*/
(async function (Scratch) {
// Configuration
const STORAGE_KEY = "story-weaver:v1";
const showAlerts = false; // set true to keep alert() behavior, false uses console.log
/* story-weaver-extension.js
Story Weaver extension (for PenguinMod extra extensions)
- Adds localStorage persistence
- Safer removal behavior (removes all occurrences)
- Optional alerts (showAlerts = false by default)
- Preserves original block opcodes/IDs
*/
(async function (Scratch) {
// Configuration
const STORAGE_KEY = "story-weaver:v1";
@ThatBobo
ThatBobo / story-weaver.js
Created December 29, 2025 10:01
Story Weaver — Scratch unsandboxed extension (ThatBobo)
/* Created with ExtForge https://jwklong.github.io/extforge */
(async function(Scratch) {
const variables = {};
if (!Scratch.extensions.unsandboxed) {
alert("This extension needs to be unsandboxed to run!")
return
}
const ExtForge = {
Broadcasts: new function() {
this.raw = {};
@the-code-rider
the-code-rider / show-keystrokes.js
Created December 28, 2025 12:04
displays keystroke in browser, good for recording product demos
(() => {
// Remove existing instance
const existing = document.getElementById('__keystroke_hud__');
if (existing) existing.remove();
// HUD container
const hud = document.createElement('div');
hud.id = '__keystroke_hud__';
hud.style.cssText = `
position: fixed;