Skip to content

Instantly share code, notes, and snippets.

View matt-blodgett's full-sized avatar
💯

Matthew matt-blodgett

💯
  • Canada
View GitHub Profile
<!DOCTYPE html>
<head>
<title>Canvas Animation Test</title>
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto" /> -->
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans" /> -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato" />
</head>
<body>
<div id="div-container">
<h1>Canvas Animation Test</h1>
@matt-blodgett
matt-blodgett / .bashrc_default
Created October 27, 2019 11:25
Default .bashrc for Ubuntu 18.04.3 LTS
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@matt-blodgett
matt-blodgett / .bashrc
Last active October 27, 2019 12:41
My .bashrc for Ubuntu 18.04
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
shopt -s checkwinsize
shopt -s histappend
HISTCONTROL=ignoreboth
from typing import Union
import logging
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.base import MIMEBase
from email.mime.text import MIMEText
from email import encoders