Skip to content

Instantly share code, notes, and snippets.

@partypeopleland
partypeopleland / pre-shutdown.sh
Last active June 18, 2026 18:28
OpenAB Pre-Shutdown Hook Script
#!/bin/sh
set -e
# Env vars expected: STATE_BUCKET, OPENAB_AGENT_NAME
# Fallback HOME if not defined
HOME="${HOME:-/home/agent}"
export PATH="$HOME/bin:$PATH"
export AWS_PAGER=""
@partypeopleland
partypeopleland / pre-boot.sh
Last active June 18, 2026 18:28
OpenAB pre-boot hook script
#!/bin/sh
set -e
# Env vars expected: OPENAB_BACKEND_AGENT, OPENAB_AGENT_NAME, STATE_BUCKET
HOME="${HOME:-/home/agent}"
export HOME
export AWS_PAGER=""
AWSCLI_VERSION="2.35.7"
UV_VERSION="0.11.21"

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@partypeopleland
partypeopleland / sonarqube-docker-compose.yml
Created January 13, 2020 04:11 — forked from Warchant/sonarqube-docker-compose.yml
docker-compose file to setup production-ready sonarqube
version: "3"
services:
sonarqube:
image: sonarqube
expose:
- 9000
ports:
- "127.0.0.1:9000:9000"
networks: