Skip to content

Instantly share code, notes, and snippets.

@digitalhenTR
digitalhenTR / setup-mobile-app.sh
Created March 10, 2026 14:53
Reuters Mobile App setup for React Native (Mac)
#!/bin/bash
# Bootstrap for mobile app setup - runs the full script from the private repo
set -e
if ! command -v gh &> /dev/null; then
echo "GitHub CLI not found. Run the dev machine setup first:"
echo " curl -fsSL https://gist.githubusercontent.com/digitalhenTR/23f0ac8c27e91c17083a44caa79b344f/raw | bash"
exit 1
fi
@digitalhenTR
digitalhenTR / configure-chrome-mcp.ps1
Last active March 10, 2026 14:47
Chrome DevTools MCP configuration for Claude Code (Windows)
# =============================================================================
# Chrome DevTools MCP Configuration Script (Windows)
# =============================================================================
#
# Configures Chrome DevTools MCP server for Claude Code.
# This enables AI coding assistants to debug web pages directly in Chrome.
#
# Run with:
# irm https://gist.githubusercontent.com/digitalhenTR/5f5874136abaf764bddc5bf16f470698/raw | iex
#
@digitalhenTR
digitalhenTR / configure-chrome-mcp.sh
Last active March 10, 2026 14:47
Chrome DevTools MCP configuration for Claude Code (Mac)
#!/bin/bash
# =============================================================================
# Chrome DevTools MCP Configuration Script (Mac)
# =============================================================================
#
# Configures Chrome DevTools MCP server for Claude Code.
# This enables AI coding assistants to debug web pages directly in Chrome.
#
# Run with:
@digitalhenTR
digitalhenTR / bootstrap-dev-machine.ps1
Last active April 2, 2026 16:37
TR Dev Machine Bootstrap (Windows) - Run: irm URL | iex
# =============================================================================
# Bootstrap Script for Dev Machine Setup (Windows)
# =============================================================================
#
# This script is hosted as a public gist and bootstraps the full setup.
# It handles GitHub authentication and TR org access before cloning the
# private setup repo.
#
# Run with:
# irm https://gist.githubusercontent.com/digitalhenTR/9a61a38b5b1a31d40083f399e7889456/raw | iex
@digitalhenTR
digitalhenTR / bootstrap-dev-machine.sh
Last active April 2, 2026 16:37
TR Dev Machine Bootstrap - Run: curl -fsSL URL | bash
#!/bin/bash
# =============================================================================
# Bootstrap Script for Dev Machine Setup (Mac)
# =============================================================================
#
# This script is hosted as a public gist and bootstraps the full setup.
# It handles GitHub authentication and TR org access before cloning the
# private setup repo.
#
# Run with: