Skip to content

Instantly share code, notes, and snippets.

View GoldenMaximo's full-sized avatar

Gustavo Máximo Filho GoldenMaximo

  • São Paulo, Brazil
View GitHub Profile
@GoldenMaximo
GoldenMaximo / about.md
Last active September 4, 2026 17:28
admissible — verification target for the reference chain

admissible — verification target

This gist is the publish target for the admissible harness's reference implementation, and it exists so that verification has somewhere real to point.

The harness's rule is that a recorded URL is a claim, not evidence: the only proof a publish happened is the remote serving back the exact bytes the run rendered. verify.py --check-gist fetches this gist and byte-compares.

Repo: https://github.com/GoldenMaximo/admissible

@GoldenMaximo
GoldenMaximo / poem.md
Last active September 2, 2026 20:55
Claude-Skill-Orchestration-Pipeline-Poem

青いS13、アクセルを抜く

冷えた海辺の夜を覆う青い塗装、 RB25が喉を鳴らして目を覚ます。 ブーストは硝子を昇る水のように針を押し上げ、 静かに、そして不意に満ちる。 アクセルを抜く。スロットルの板が音を立てて閉じ、 その圧力すべてに行き場はない—— インテークパイプを逆に辿ってつまずき戻る、 壁の前で向きを変えた鳥の群れのように。

@GoldenMaximo
GoldenMaximo / PowerShellAutoReadNvmrc.md
Last active September 2, 2026 18:19
Auto read `.nvmrc` in PowerShell 7 when using `nvm use`

Open your profile (code $PROFILE) and add:

function nvm {
    if ($args[0] -eq 'use' -and $args.Count -eq 1) {
        $nvmrcPath = Join-Path (Get-Location) '.nvmrc'
        if (-not (Test-Path $nvmrcPath)) {
            Write-Host "No .nvmrc found in current directory." -ForegroundColor Red
            return
        }
@GoldenMaximo
GoldenMaximo / coverage.json
Last active January 16, 2026 22:05
test-coverage
{"label":"Coverage","message":"96.78%","schemaVersion":1,"color":"hsl(116, 100%, 40%)","namedLogo":"jest","style":"flat"}