flowchart LR
%% Bottom row: B-side pins (front view, pin side)
subgraph Brow["B-side (Bottom Row)"]
direction RL
B12["B12<br />GND"]:::gnd ---
B11["B11<br />TX2+"]:::ss ---
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
| # Default OMZ theme for Archcraft | |
| NUM_DIR=2 | |
| DIR_PATH="%F{8}%K{8} %F{7} %F{7}%$NUM_DIR~ %{%k%}%F{8}" | |
| background_jobs="%(1j.%F{8}%K{8} %F{3} %{%k%}%F{8}%f.)" | |
| non_zero_return_value="%(0?..%F{8}%K{8} %F{1} %{%k%}%F{8}%f)" | |
| ZSH_THEME_GIT_PROMPT_PREFIX="%F{8}%K{8} %F{7} %K{8} " | |
| ZSH_THEME_GIT_PROMPT_SUFFIX=" %{%k%}%F{8} %{$reset_color%} " | |
| ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%} " |
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
| export ZSH=$HOME/.oh-my-zsh | |
| ZSH_THEME="osx2" | |
| for p in "${plugins[@]}"; do | |
| target="${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/$p" | |
| if [[ ! -d "$target" ]]; then | |
| echo "[oh-my-zsh] Installing missing plugin: $p" | |
| git clone "https://github.com/${p}/${p}.git" "$target" 2>/dev/null \ | |
| || echo "[oh-my-zsh] Failed to auto-install $p" | |
| fi |
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 bash | |
| set -euo pipefail | |
| # This script downloads the official Cursor Agent installer, programmatically | |
| # modifies it for Android/Termux compatibility, and then executes it. | |
| # It uses `sed` and temporary files to inject logic, making it resilient to | |
| # version changes in the official installer. | |
| # --- Helper Functions --- | |
| step() { echo -e "\033[0;34m▸\033[0m $1"; } |
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 bash | |
| set -euo pipefail | |
| usage() { | |
| cat <<EOF | |
| Usage: | |
| dumberpipe listen PORT | |
| dumberpipe send [-s SRC_IP] REMOTE_HOST:PORT FILE | |
| Options: |
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 | |
| set -e | |
| add_to_steam() { | |
| encodedUrl="steam://addnonsteamgame/$(python3 -c "import urllib.parse;print(urllib.parse.quote(\"$1\", safe=''))")" | |
| touch /tmp/addnonsteamgamefile | |
| steam "$encodedUrl" | |
| } |
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 bash | |
| set -euo pipefail | |
| usage() { | |
| cat <<EOF | |
| Usage: $(basename "$0") INPUT_IMAGE OUTPUT_IMAGE [MULTIPLY_FACTOR] [POW_FACTOR] | |
| INPUT_IMAGE source file (e.g. emoji.png) | |
| OUTPUT_IMAGE destination (e.g. emoji-hyper.png) | |
| MULTIPLY_FACTOR brightness multiplier (default: 1.5) |
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 bash | |
| set -e | |
| ## Description: | |
| ## This script is an orchestrator that scans for btrfs volumes under PLOTS_BASE only once | |
| ## and then spawns one worker process per btrfs volume. | |
| ## | |
| ## Each worker is responsible for draining its assigned btrfs volume—one plot at a time— | |
| ## by transferring a *.plot file (from anywhere within that volume) to a suitable target drive. | |
| ## The worker computes the relative path of each plot using realpath so that the directory |
How many r's are in the word strawberry? 👤
Before jumping into counting, it's essential to comprehend what's being asked. The question is straightforward: determine the number of times the letter 'r' appears in the word "strawberry." To do this accurately, I need to:
- Identify the word in question: "strawberry."
- Focus on the letter 'r': I'm only interested in counting this specific letter, not any others.
- Ensure accuracy: I must examine each letter in the word to avoid missing any 'r's or counting them incorrectly.
Note
Highlights information that users should take into account, even when skimming.
Tip
Optional information to help a user be more successful.
Important
Crucial information necessary for users to succeed.
[!WARNING]
NewerOlder