Skip to content

Instantly share code, notes, and snippets.

# Privacy Policy — Steps Adventure
**Effective date:** 2026-05-14
**Last updated:** 2026-05-14
This document describes how the **Steps Adventure** mobile application ("the app", "we") handles your information. The short version: **we don't collect anything, we don't send anything anywhere, and your step data stays on your device.**
---
## 1. What the app does
@hhharm
hhharm / cfn-delete.sh
Created February 22, 2023 18:10 — forked from ameir/cfn-delete.sh
Delete CloudFormation stacks based on prefix or regex
#!/usr/bin/env bash
set -euo pipefail
export AWS_PAGER=""
REGEX="^prefix-"
WAIT=true
stacks=$(aws cloudformation describe-stacks --query Stacks[].StackName --output=text)
for stack in $stacks; do
if [[ $stack =~ $REGEX ]]; then