This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
I was really annoyed when facebook synced birthdays to google calendar as events which filled up the entire calendar | |
with no easy way to delete/hide them. | |
This script does exactly that. | |
""" | |
from apiclient.discovery import build | |
from httplib2 import Http | |
from oauth2client import file, client, tools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
from sklearn import datasets, cross_validation, metrics | |
import tensorflow as tf | |
from tensorflow.contrib import learn as skflow | |
random.seed(42) | |
# Load dataset and split it into train / test subsets. | |
digits = datasets.load_digits() |