

4·
8 months agoI’m in this photo and I don’t like it
I’m in this photo and I don’t like it
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.
That’s a lot of spaghetti
Wait! US-EAST-1 is dead (Shia surprise)
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;
}
deleted by creator