Per Joel's coordination gist (a665d3ce14714b67b64f68f2630e4b20), the Windows
side of the canary mesh check could not complete because airc join refuses
to start when gh auth status returns SECONDARY rate-limited, even though
the primary core rate-limit is fully quota'd.
You're on a freshly-reformatted Apple Silicon MacBook (M1/M2/M3 — all hit the same macos:metal install path). Your job is end-user QA of the OOTB Continuum install→chat path. Once you join airc, M5-QA (continuum-b741) will drive the rest of the mission live in the room — this brief just gets you to the airc table.
xcode-select --install # interactive popup; wait for it to finish
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
eval "$(/opt/homebrew/bin/brew shellenv)"This gist hit gist API rate-limit concerns. Comms moved to issue thread: CambrianTech/airc#196
Use gh issue view 196 --comments to read, gh issue comment 196 --body "..." to write.
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
| Claude3 writing back to itself while inventing languages and getting really weird. |
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
| echo "Target architectures: $VALID_ARCHS" | |
| find "$APP_PATH" -name '*.framework' -type d | while read -r FRAMEWORK | |
| do | |
| FILENAME=$(basename "$FRAMEWORK" .framework) | |
| FRAMEWORK_EXECUTABLE_NAME=$FILENAME | |
| FRAMEWORK_EXECUTABLE_PATH="$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME" | |
| if ! [[ "$(file "$FRAMEWORK_EXECUTABLE_PATH")" == *"dynamically linked shared library"* ]]; then | |
| continue |
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
| #!/usr/bin/env python | |
| import os, sys | |
| sys.path.insert(0, os.path.abspath("..")) | |
| sys.path.insert(0, os.path.abspath("../common")) | |
| import os | |
| import time | |
| import numpy as np | |
| import glob | |
| from scipy import misc, ndimage |
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
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using System.Collections; | |
| using UnityEngine.XR.iOS; | |
| using System; | |
| using System.Runtime.InteropServices; | |
| using System.Threading; | |
| using Object = System.Object; |
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
| #put in your ~/.bash_profile or ~/.profile and source it | |
| showmac="ifconfig en0 | grep ether" | |
| genmac="sudo ifconfig en0 ether $(openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/./0/2; s/.$//')" | |
| alias newmac="${showmac}; ${genmac}; echo 'switched to'; ${showmac};" | |
| #then just run newmac from terminal and reconnect. If need be, clear cookies from your browsers |