../subscriptions-2024

Subscriptions 2024

Here's the updated subscription table from last year.

DescriptionCategoryAmount
Domain NameTechnology$1
Firefox RelayTechnology$1
iCloudTechnology$1
1PasswordTechnology$3
Mullvad VPNTechnology$5
Github CopilotTechnology$8
KagiTechnology$10
YouTube PremiumEntertainment$15
HBO MaxEntertainment$16
NetflixEntertainment$23
Pet InsuranceInsurance$40
InternetUtilities$50
PhoneUtilities$55
Car InsuranceInsurance$140
Total-$368

Source:

# R
tibble::tribble(
  ~Description, ~Category, ~Amount,
  "1Password", "Technology", 3,
  "Car Insurance", "Insurance", 140,
  "Domain Name", "Technology", 1,
  "Firefox Relay", "Technology", 1,
  "Github Copilot", "Technology", 8,
  "HBO Max", "Entertainment", 16,
  "iCloud", "Technology", 1,
  "Internet", "Utilities", 50,
  "Kagi", "Technology", 10,
  "Mullvad VPN", "Technology", 5,
  "Netflix", "Entertainment", 23,
  "Pet Insurance", "Insurance", 40,
  "Phone", "Utilities", 55,
  "YouTube Premium", "Entertainment", 15
) |>
  dplyr::arrange(Amount) |>
  janitor::adorn_totals("row") |>
  dplyr::mutate(Amount = paste0("$", Amount)) |>
  knitr::kable(align = c("l", "l", "r"))