Because life's too short for complicated pricing. No marketing buzzwords, just pure features.
#!/bin/bash
# Daily program discovery rate
MIN_DAILY=5
MAX_DAILY=10
# Calculate monthly totals
MONTHLY_MIN=$((MIN_DAILY * 30)) # ~150 programs
MONTHLY_MAX=$((MAX_DAILY * 30)) # ~300 programs
# Subscription cost
MONTHLY_COST=49
# Cost per program
echo "Cost per program found:"
printf "%.2f cents to %.2f cents\n" $(echo "scale=2; $MONTHLY_COST * 100 / $MONTHLY_MAX" | bc) $(echo "scale=2; $MONTHLY_COST * 100 / $MONTHLY_MIN" | bc)
# Every day, our scanners find 5-10 new programs
# That's 150-300 new targets each month
# At $49/month, you're paying:
16¢ to 32¢ per new program discovered
# Cheaper than your morning coffee ☕