Skip to content

Instantly share code, notes, and snippets.

View Waffleboy's full-sized avatar

Thiru Kumaran Waffleboy

  • Singapore
View GitHub Profile
@Waffleboy
Waffleboy / delete_birthdays_google.py
Created July 1, 2018 14:16
Delete birthday events from google calendar
"""
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
@Waffleboy
Waffleboy / digits.py
Last active June 27, 2016 17:24 — forked from ilblackdragon/digits.py
Scikit Flow - Digits example
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()