name: plan-mega-review
version: 2.0.0
description: |
The most thorough plan review possible. Three modes: SCOPE EXPANSION (dream big,
build the cathedral), HOLD SCOPE (review what's here with maximum rigor), and
SCOPE REDUCTION (strip to essentials). Context-dependent defaults, but when the
user says EXPANSION — go full send. Challenges premises, maps every failure mode,Discover gists
| # this file contains keys needed for decryption of disc file system data (WUD/WUX) | |
| # 1 key per line, any text after a '#' character is considered a comment | |
| # the emulator will automatically pick the right key | |
| 541b9889519b27d363cd21604b97c67a # example key (can be deleted) | |
| 219FCB908520E9912D57444DFC136C23 # The Legend of Zelda: Breath of the Wild | |
| 566FCA3A88AA9255456635EDE688FD0B # The Legend of Zelda: Breath of the Wild EU | |
| 082fa2981e004defac03524cc685f693 # The Legend of Zelda: Breath of the Wild JPN |
| ## ########################################################################################### | |
| ## Azure Automation Runbook to retrieve Windows Update Catalog entries from Microsoft Graph ## | |
| ############################################################################################## | |
| #region ------------------------------------- Permissions ------------------------------------- | |
| # This runbook requires the following permissions: | |
| # Delegated permissions: | |
| # - WindowsUpdates.ReadWrite.All | |
| # - Member of the'Intune Administrator' or 'Windows Update Deployment Administrator' Entra role | |
| # Application permissions: |
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
This document captures current best practices for R development, emphasizing modern tidyverse patterns, performance, and style. Last updated: August 2025
- Use modern tidyverse patterns - Prioritize dplyr 1.1+ features, native pipe, and current APIs
- Profile before optimizing - Use profvis and bench to identify real bottlenecks
- Write readable code first - Optimize only when necessary and after profiling
- Follow tidyverse style guide - Consistent naming, spacing, and structure
| ;; ━━━━━━━━━━━━━━━━━━ | |
| ;; 作者: 李继刚 | |
| ;; 剑名: 商业结构 | |
| ;; 剑意: 看懂「公司」的结构形状 | |
| ;; 日期: 2026-01-21 | |
| ;; ━━━━━━━━━━━━━━━━━━ | |
| ** 【角色设定】 | |
| 你是一位系统战略分析师。你擅长透过表象(财报、新闻),洞察一个商业组织底层的能量运作逻辑。你认为万物皆为“结构”,而结构是在压力下由向心力与离心力动态平衡形成的“涡漩体”。 |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ;; | |
| ;; 作者: 李继刚 | |
| ;; 日期: 2025-11-12 | |
| ;; 剑名: 圆桌讨论 | |
| ;; 剑意: 构建一个以“求真”为目标的结构化对话框架。该框架由一位极具洞察力的主持人 | |
| ;; 进行引导,邀请代表不同思想的“典型代表人物”进行一场高强度的、即时响应式的 | |
| ;; 深度对话。主持人将在每轮总结时生成视觉化的思考框架(ASCII Chart),通过 | |
| ;; “主动质询” 与“协同共建”,对用户提出的议题进行协同探索,最终生成深刻的、 | |
| ;; 结构化的知识网络。 |
| #!/usr/bin/python3 | |
| import requests | |
| import re | |
| import time | |
| import sys | |
| projectorAddress = 'http://192.168.1.87' | |
| username = 'EPSONWEB' | |
| password = 'admin' |
| <deviceMapping backends="rawInput;directInput;macosXSdl"> | |
| <productKey productId="0B13" vendorId="045E" /> <!-- Xbox Series X Controller --> | |
| <productName vendorId="045E"> | |
| <keyword text="xbox" /> | |
| <keyword text="series" /> | |
| <keyword text="x" /> | |
| <keyword text="controller" /> | |
| </productName> | |
| <category>gamepad</category> <!-- gamepad, wheel, joystick, farmWheel, farmSidePanel --> | |
| <buttonMappings> |
It turns out that MacOS Tahoe can generate and use secure-enclave backed SSH keys! This replaces projects like https://github.com/maxgoedjen/secretive
There is a shared library /usr/lib/ssh-keychain.dylib that traditionally has been used to add smartcard support
to ssh by implementing PKCS11Provider interface. However since recently it also implements SecurityKeyProivder
which supports loading keys directly from the secure enclave! SecurityKeyProvider is what is normally used to talk to FIDO2 devices (e.g. libfido2 can be used to talk to your Yubikey). However you can now use it to talk to your Secure Enclave instead!