urda@lebowski.social

Follow @urda@urda.social


  • !achievers@lebowski.social
  • 0 Posts
  • 4 Comments
Joined 1Y ago
cake
Cake day: Jul 14, 2023

help-circle
rss

I personally use python plus AWS SES to handle outgoing mail. Sure you have to have an AWS account, setup the SES feature, and get out of the AWS sandbox but once that’s front loaded you have a great little e-mail service.


The author is a child Furry who hasn’t entered the real world yet.

Not someone you should listen to.


Real talk I’ve been using this I’ve mashed together:

update_brew() {
    bold=$(tput bold);
    normal=$(tput sgr0);
    brew --version &&
    echo "${bold} > brew update${normal}" &&
    brew update &&
    echo "${bold} > brew upgrade${normal}" &&
    brew upgrade &&
    echo "${bold} > brew autoremove${normal}" &&
    brew autoremove &&
    echo "${bold} > brew cleanup${normal}" &&
    brew cleanup &&
    echo "${bold} > brew doctor${normal}" &&
    brew doctor;
}