I hereby claim:
- I am ricochet on github.
- I am ricochetcode (https://keybase.io/ricochetcode) on keybase.
- I have a public key whose fingerprint is 03EA 0094 2AE9 F30D CCCF BA98 3787 F9F1 1BF9 637B
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # | |
| # Script to batch rename GitHub labels to follow a categorized naming convention | |
| # similar to the Rust project's label system. | |
| # | |
| # Usage: ./rename-labels.sh [--dry-run] | |
| # | |
| # Environment: | |
| # GITHUB_REPO - Repository in owner/repo format (default: WebAssembly/WASI) | |
| # |
I hereby claim:
To claim this, I am signing this object:
| # should see that partition table is unknown | |
| parted -s /dev/nvme1n1 print | |
| # create new partition table | |
| parted -s /dev/nvme1n1 mklabel gpt | |
| # create (u)efi-boot partition | |
| parted -s -a optimal /dev/nvme1n1 mkpart primary "0%" "512MiB" | |
| parted -s /dev/sda set 1 esp on |
| #include <iostream> | |
| extern "C" | |
| { | |
| void __attribute__((used, noinline)) emscripten_bind_processArray(int * arrayPtr, int arrayLength) | |
| { | |
| for (int i = 0; i < arrayLength; ++i) | |
| { | |
| printf("value: %d\n", arrayPtr[i]); | |
| } | |
| } |