Response from GPT 4.1 on 2025-04-16
Absolutely! Here’s a comprehensive demonstration of my understanding of Super Factory Manager (SFM), based on your documentation, examples, and test code.
| // https://github.com/instructkr/claude-code/blob/936e6c8e8d7258dd1b2bc127d704f02cc23076d5/src/constants/spinnerVerbs.ts#L16 | |
| // https://news.ycombinator.com/item?id=47584540 | |
| export const SPINNER_VERBS = [ | |
| 'Accomplishing', | |
| 'Actioning', | |
| 'Actualizing', | |
| 'Architecting', | |
| 'Baking', | |
| 'Beaming', | |
| "Beboppin'", |
| // just paste in console and hit f9 to extract JSON to clipboard | |
| (() => { | |
| const STATE_KEY = "__crowdin_extractor_state__"; | |
| // Cleanup previous run | |
| if (window[STATE_KEY]) { | |
| console.log("Crowdin Extractor: Removing previous state"); | |
| window.removeEventListener("keydown", window[STATE_KEY].handler); | |
| window[STATE_KEY].toast?.remove(); | |
| window[STATE_KEY].popover?.remove(); |
| "lsp": { | |
| "rust-analyzer": { | |
| "initialization_options": { | |
| "cargo": { | |
| "features": "all", | |
| }, | |
| }, | |
| }, | |
| }, |
| gh api --paginate 'user/starred' | ConvertFrom-Json -Depth 100 | ConvertTo-Json -Depth 100 > my_github_stars.json | |
| use std::time::{Duration, Instant}; | |
| use ratatui::{ | |
| crossterm::event::{self, Event, KeyEventKind}, | |
| symbols, | |
| text::Line, | |
| widgets::{Block, Padding, Paragraph, Widget}, | |
| }; | |
| fn main() { |
| git ls-tree HEAD 'test/gemma2:latest.Modelfile' | |
| git ls-tree HEAD 'test/llama3.1:latest.Modelfile' | |
| git ls-tree HEAD 'test/llama3.1:latest.model.json' | |
| git ls-tree HEAD 'test/llama3.2:latest.Modelfile' | |
| git ls-tree HEAD 'test/mistral-nemo:latest.Modelfile' | |
| git ls-tree HEAD 'test/mistral-nemo:latest.model.json' | |
| git ls-tree HEAD 'test/mxbai-embed-large:latest.Modelfile' | |
| git ls-tree HEAD 'test/mxbai-embed-large:latest.model.json' | |
| git ls-tree HEAD 'test/qwen2.5:latest.Modelfile' | |
| git ls-tree HEAD 'test/starcoder2:latest.Modelfile' |
| # https://gist.github.com/TeamDman/f05ec9944b956e21fd1ec120af6adbad | |
| uv sync | |
| $index_url = "https://download.pytorch.org/whl/cu128" | |
| $packages = @( | |
| "torch", | |
| "torchvision", | |
| "torchaudio" | |
| ) | |
| $to_add = @( | |
| "markupsafe<3.0.2" # fuck python package management, windows fails without this |
CVE details: https://www.cve.org/CVERecord?id=CVE-2025-30258
Download the latest GnuPG installer exe from here: https://gnupg.org/ftp/gcrypt/binary/ gnupg-w32-2.5.5_20250307.exe
Running the installer will delete the contents of C:\Program Files (x86)\GnuPG and will create C:\Program Files\GnuPG
This causes Kleopatra to complain with an error like
Kleopatra could not determine gnupghome
| function ask { | |
| [CmdletBinding()] | |
| param( | |
| # We expect pipeline input to be strings (lines) | |
| [Parameter(ValueFromPipeline)] | |
| [string] | |
| $StdinContent, | |
| [Parameter(Mandatory, Position=0)] | |
| [string] |