defaults write com.apple.dock autohide-delay -float 0
cmd+c -> cmd+alt+v
cmd+tab select the app and press Q to quite
| media_page = f"https://www.imdb.com/title/{imdb_id}/mediaindex?ref_=tt_ov_mi_sm" | |
| bs = bs4.BeautifulSoup(requests.get(self.media_page).content.decode(), features='lxml') | |
| image_tags = bs.find_all("img", height='100', width='100') | |
| img_srcs = [re.sub(r"(@|_V1)[A-Z\._\d,]+\.jpg", "@._V1_.jpg", t['src']) for t in image_tags] |
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: Cognito Stack | |
| Parameters: | |
| AuthName: | |
| Type: String | |
| Description: Unique Auth Name for Cognito Resources | |
| Resources: | |
| # Creates a role that allows Cognito to send SNS messages | |
| SNSRole: |