This file contains hidden or 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
| <!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> |
This file contains hidden or 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
| <!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"> |
This file contains hidden or 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
| <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"> |
This file contains hidden or 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
| // 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 === |
This file contains hidden or 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
| /* 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 = { |
This file contains hidden or 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
| /* 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!") |
This file contains hidden or 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
| /* 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 |
This file contains hidden or 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
| /* 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"; |
This file contains hidden or 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
| /* 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 = {}; |
This file contains hidden or 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
| (() => { | |
| // 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; |