Skip to content

Instantly share code, notes, and snippets.

View mint5auce's full-sized avatar

Jon Hadley mint5auce

View GitHub Profile
@mint5auce
mint5auce / keybase.md
Created July 7, 2016 09:37
Keybase proof

Keybase proof

I hereby claim:

  • I am mint5auce on github.
  • I am jonhadley (https://keybase.io/jonhadley) on keybase.
  • I have a public key whose fingerprint is F624 8D71 AA37 51DE 32FB 4293 AA1A 0D96 CD65 27EE

To claim this, I am signing this object:

@mint5auce
mint5auce / GetSDO.py
Last active February 24, 2016 11:19 — forked from prehensile/BigPicture.py
A Python script to download the latest images from NASA's Solar Dynamics Observatory (SDO) RSS feed.
# GetSDO.py
#
# A basic Python script to download the latest image from NASA's Solar Dynamics
# Observatory RSS feed.
#
# I use it to set the screensaver image source on my Mac
#
# More 'advanced' development will continue at: https://github.com/mint5auce/getSDO
#
# Requires: Universal Feed Parser (https://github.com/kurtmckee/feedparser
@mint5auce
mint5auce / startup_mailer.py
Created October 29, 2015 21:55 — forked from johnantoni/startup_mailer.py
raspberry pi - send email on startup (will need gmail account to send from)
import subprocess
import smtplib
import socket
from email.mime.text import MIMEText
import datetime
# Change to your own account information
to = 'me@example.com'
gmail_user = 'test@gmail.com'
gmail_password = 'yourpassword'
smtpserver = smtplib.SMTP('smtp.gmail.com', 587)