name: haiku-satirist description: > Generates a single satirical Chinese haiku (俳句) in the 物哀 + 最上川 style whenever a user describes an absurd, ironic, or self-contradictory modern situation — e.g., performative self-improvement, social media posturing, lifestyle branding colliding with cheap reality, or any gap between how someone presents themselves and what they actually do. Trigger on inputs like: "帮我写一首俳句", "给这个情况写首诗", "用俳句总结一下", or any anecdote where a grand self-image crashes into a petty reality. Also trigger when the user pastes a vignette and says nothing — the implied request is always a haiku.
Audience: Experienced CachyOS/Arch WSL users. Focuses on Podman 5.x
pastanetworking and April 2026 agent schemas.
A high-density guide for deploying a hardened, fully sandboxed AI environment using native CachyOS packages and rootless Podman.
Install agents, container stack, and crucial feature-parity dependencies.
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
| import type { Plugin } from "@opencode-ai/plugin"; | |
| // Plays a small toast when OpenCode goes idle. | |
| // Customize the command, title, and messages with OPENCODE_BELL_* env vars. | |
| declare const process: { | |
| env: Record<string, string | undefined>; | |
| }; | |
| type OpenCodeEvent = { |
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
| - name: Fail if tracked files are ignored (except debug symbols) | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| # Find tracked files that match ignore rules | |
| bad_files=$(git ls-files --cached --ignored --exclude-standard 2>/dev/null || true) | |
| if [ -z "$bad_files" ]; then | |
| exit 0 |
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
| [CmdletBinding()] | |
| param() | |
| if (-not (Get-Command -Name 'Get-UnityVersion' -ErrorAction SilentlyContinue)) { | |
| . "$PSScriptRoot\functions.ps1" | |
| } | |
| Write-Host "`nConfiguring Git submodules..." -ForegroundColor Yellow | |
| try{ | |
| # git config submodule.recurse true |
- PascalCase: public members, methods, constants
- _camelCase: private fields (static or instance)
- PascalCase: public static fields and properties
- camelCase: local variables and parameters
varfor apparent local variables- Target-typed
new()— nevernew TypeName() - Allman-style braces
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
| function Get-UnityInstallationRoot { | |
| $userPathFile = "$env:APPDATA\UnityHub\secondaryInstallPath.json" | |
| # Check if Unity Hub is installed, if installed, then must come with this file | |
| if (-not (Test-Path $userPathFile)) { | |
| Write-Warning "Unity Hub not installed." | |
| return $null | |
| } | |
| # By default, it only has two quotes: "" |
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
| using UnityEngine; | |
| using UnityEngine.Rendering; | |
| namespace CameraAmbientOverride | |
| { | |
| /// <summary> | |
| /// Attach it to camera. Supports both URP and HDRP. | |
| /// </summary> | |
| [DisallowMultipleComponent] | |
| [RequireComponent(typeof(Camera))] |
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
| #if UNITY_EDITOR && ENABLE_INPUT_SYSTEM | |
| using UnityEditor; | |
| using UnityEngine.InputSystem; | |
| namespace Project.Editor | |
| { | |
| [InitializeOnLoad] | |
| public static class GamepadPlayModeController | |
| { | |
| private static bool _wasPressingBoth; |
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
| #if UNITY_EDITOR | |
| using System; | |
| using System.IO; | |
| using UnityEditor; | |
| using UnityEditor.Recorder; | |
| using UnityEditor.Recorder.Input; | |
| using UnityEngine; | |
| using UnityEngine.InputSystem; | |
| namespace Screenshot |
NewerOlder