../subscriptions-2023

Subscriptions 2023

I thought to start the year right and make a budget.

Subscriptions are sneaky...

DescriptionCategoryAmount
iCloudTechnology$1
NextDNSTechnology$2
1PasswordTechnology$3
Simple LoginTechnology$3
Firefox RelayTechnology$5
Mullvad VPNTechnology$5
Google DomainsTechnology$10
KagiTechnology$10
HBO MaxEntertainment$15
YouTube PremiumEntertainment$15
NetflixEntertainment$20
Pet InsuranceInsurance$40
InternetUtilities$50
Google FiUtilities$55
Car InsuranceInsurance$140
Total-$374

Source:

# R
tibble::tribble(
  ~Description, ~Category, ~Amount,
  "NextDNS", "Technology", 2,
  "1Password", "Technology", 3,
  "Car Insurance", "Insurance", 140,
  "Firefox Relay", "Technology", 5,
  "Google Domains", "Technology", 10,
  "Google Fi", "Utilities", 55,
  "HBO Max", "Entertainment", 15,
  "iCloud", "Technology", 1,
  "Internet", "Utilities", 50,
  "Kagi", "Technology", 10,
  "Mullvad VPN", "Technology", 5,
  "Netflix", "Entertainment", 20,
  "Pet Insurance", "Insurance", 40,
  "Simple Login", "Technology", 3,
  "YouTube Premium", "Entertainment", 15
) |>
  dplyr::arrange(Amount) |>
  janitor::adorn_totals("row") |>
  dplyr::mutate(Amount = paste0("$", Amount)) |>
  knitr::kable(align = c("l", "l", "r"))