This file contains 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
local environments = [ 'prod', 'test', 'dev' ]; | |
local services = [ 'service1', 'service2', 'service3', 'service4' ]; | |
{ | |
environments: [ | |
{ | |
name: env, | |
services: [ | |
'https://%s.%s.example.com' % [service, env] | |
for service in services |
This file contains 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
local environments = [ 'prod', 'test', 'dev' ]; | |
local services = [ 'service1', 'service2', 'service3', 'service4' ]; | |
{ | |
environments: [ | |
{ | |
name: env, | |
services: [ | |
'https://%s.%s.example.com' % [service, env] | |
for service in services |
This file contains 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
alias ,edit-alias='nano .bashrc' | |
alias ,processes='ps -u gigglesbw4' | |
alias ,webcam2="scp [email protected]:~/misc/image.jpg /home/members/gigglesbw4/www" | |
alias ,webcam="scp [email protected]:/tmp/cclub/webcam.jpg /home/members/gigglesbw4/www" | |
alias shrek='ssh shrek.dhcp.io -l cclub' | |
alias millenniumfalcon='ssh shrek.dhcp.io -p 9000 -l cclub' | |
alias uglyduck='ssh shrek.dhcp.io -p 9010 -l administrator' | |
alias ralph='ssh shrek.dhcp.io -p 9030 -l cclub' |
This file contains 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/bash | |
/usr/bin/scp $1 [email protected]:/home/shared/www/ |
This file contains 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 ruby | |
# | |
# CLI tool for locating and removing a Homebrew installation | |
# It replaces the official uninstaller, which is insufficient and often breaks | |
# If files were removed, the script returns 0; otherwise it returns 1 | |
# | |
# http://brew.sh/ | |
# | |
# Copyright (C) 2025 Stephen C. Benner | |
# |