Discover gists
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
| #!/usr/bin/env python3 | |
| """Generate an animated GIF of all companion sprite animations.""" | |
| from PIL import Image, ImageDraw, ImageFont | |
| # --- Sprite data --- | |
| SPECIES = [ | |
| 'duck', 'goose', 'blob', 'cat', 'dragon', 'octopus', 'owl', 'penguin', | |
| 'turtle', 'snail', 'ghost', 'axolotl', 'capybara', 'cactus', 'robot', |
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
| {#--------------------------------------------------------------------- | |
| custom_pub_chat_template_gemma4.jinja | |
| ===================================== | |
| A public, harness-friendly fork of Google's Gemma 4 chat template, | |
| tuned for open-source agentic coding harnesses like: | |
| - anomalyco/opencode (https://github.com/anomalyco/opencode) | |
| - earendil-works/pi (https://github.com/earendil-works/pi) | |
| - openclaw, OpenHarness, similar Claude-Code-style harnesses | |
| WHY THIS FORK EXISTS |
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
| Southern | Aáli | 746 | |
|---|---|---|---|
| Southern | Aáli | 748 | |
| Southern | Al Door | 965 | |
| Southern | Algainah | 961 | |
| Southern | Al Hajyat | 929 | |
| Southern | Al Hajyat | 931 | |
| Southern | Al Hajyat | 935 | |
| Southern | Al Hajyat | 939 | |
| Southern | Al Hunaniya | 901 | |
| Southern | Al Hunaniya | 903 |
fifteen-puzzle.mp4
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
| Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue | |
| function Update-LastLogonTimestamp | |
| { | |
| [CmdletBinding()] | |
| param | |
| ( | |
| [parameter(Position=0, Mandatory=$true)][string]$UserName | |
| ) |
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
| # | |
| # .SYNOPSIS | |
| # This script blocks multiple programs by adding them to the Windows Firewall both as inbound and outbound rules. | |
| # It also checks if a rule is already made. If it exists it will remove it and replace it with the new. | |
| # .NOTES | |
| # 1. List of the programs you want to block in Windows Firewall in $programs. | |
| # 2. Remember quotation marks and a comma at the last program in the list. | |
| # 3. You can change the rule names by changing ruleNameInbound and ruleNameOutbound. |
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
| // Stagehand + Browserbase: an AI agent that researches SEC filings on its own. | |
| // | |
| // We give Stagehand a plain-English task, point it at SEC EDGAR, and let its | |
| // `agent` autonomously navigate, read 10-Q filings, and build a comparison | |
| // table — no selectors, no scraping code, no per-site logic. | |
| import "dotenv/config"; | |
| import { exec } from "node:child_process"; | |
| import { Stagehand } from "@browserbasehq/stagehand"; |