This file contains 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
#!/usr/bin/env python | |
# coding: utf-8 | |
# whereas the original rtm2todoist.py[1] worked off the .ics export, this version uses the more modern .json export | |
# [1] https://gist.github.com/notconfusing/68c84868098dcaa04e44522bebb77638 | |
import json | |
import pandas as pd | |
import datetime |
This file contains 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
var socket = io.connect('stream.wikimedia.org/rc'); | |
printPlainObj({ | |
'event': 'connect', | |
'messsage': 'Connecting to stream.wikimedia.org...' | |
}); | |
socket.on('connect', function () { | |
printPlainObj({ | |
'event': 'connect', | |
'messsage': 'Connection established!' |