Skip to content

Instantly share code, notes, and snippets.

View markpronov's full-sized avatar

markpronov

  • Joined May 9, 2026
View GitHub Profile
sidestore.io
ani.sidetore.io
#!/bin/sh
N=$1
if [ -z "$N" ]; then
echo "Usage: setup-tunnel.sh <client_number>"
exit 1
fi
SSH_PORT=$((2200 + N))
#!/usr/bin/env bash
set -euo pipefail
# Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m'