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
| # The MIT License (MIT) | |
| # Copyright (c) 2021-2023 Krux contributors | |
| # Patched by Grok (April 2026) for better error messages + legacy format support only | |
| # NOTE: This patched version supports ONLY legacy Krux encrypted formats: | |
| # - Version 0 = PBKDF2_HMAC + AES-ECB | |
| # - Version 1 = PBKDF2_HMAC + AES-CBC | |
| # | |
| # Newer Krux firmware (2024+) uses the modern KEF (Krux Encryption Format) | |
| # with version bytes >= 2. This script does NOT support KEF. |
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
| #!/bin/sh | |
| # | |
| # Setup a work space for your Urbit ship `<ship-name>` with two windows | |
| # first window has 3 panes. | |
| # The first pane set at 65%, split horizontally, set to api root and running vim | |
| # pane 2 is split at 25% and running redis-server | |
| # pane 3 is set to api root and bash prompt. | |
| # note: `api` aliased to `cd ~/path/to/work` | |
| # | |
| session="work" |