travisshears / pass_backup
0 curtidas
0 bifurcações
1 arquivos
Última atividade
How to backup a pass repo and share it in a way that you need three of five friends to decrypt it.
Pass Password Store — Backup Recovery Guide
How to Restore
Prerequisites
brew install age ssss pass
travisshears / Claude Cooking Notes helper script
0 curtidas
0 bifurcações
2 arquivos
Última atividade
| 1 | /** |
| 2 | * Cooking Notes Helper Script |
| 3 | * Allows Claude to create, edit, and view cooking notes from PocketBase |
| 4 | * |
| 5 | * Usage: |
| 6 | * npx ts-node scripts/cooking-helper.ts list |
| 7 | * npx ts-node scripts/cooking-helper.ts view <slug> |
| 8 | * npx ts-node scripts/cooking-helper.ts fetch-recipe <url> |
| 9 | * npx ts-node scripts/cooking-helper.ts create <json> |
| 10 | * npx ts-node scripts/cooking-helper.ts update <id> <json> |
travisshears / Gemini Ink Demo Server (Javascript)
0 curtidas
0 bifurcações
4 arquivos
Última atividade
Code from https://mosfetarium.com/blog/gemini-ink-server/
GEMINI INK DEMO SERVER
This little node js server is a demonstration of playing text-only narrative games created with Ink (https://github.com/inkle/ink) over the gemini protocol (https://gemini.circumlunar.space/). It uses basically a bunch of standard nodejs functionality and inkjs (https://github.com/y-lohse/inkjs). The demo game is The Intercept, also made by Inkle, not me! So don't give me credit for the game (https://github.com/inkle/the-intercept).
To run this. You will need to install node and npm. You will also need a gemini server cert!
travisshears / jjcommit.sh
0 curtidas
0 bifurcações
1 arquivos
Última atividade
Little script to describe jj changes including the diff so it is easier to write message
| 1 | #!/bin/sh |
| 2 | |
| 3 | set -e |
| 4 | |
| 5 | # Run jj diff and prefix each line with "JJ: " |
| 6 | diff_output="$(jj diff | sed 's/^/JJ: /')" |
| 7 | |
| 8 | # Add two newlines at the top (without the prefix) |
| 9 | final_output="\n\n$diff_output" |
Próximo
Anterior