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 python3 | |
# vim: ts=4 sw=4 et | |
# -*- coding: utf-8 -*- | |
# SPDX-License-Identifier: MIT | |
# This was written by A. Karl Kornel <[email protected]> | |
# It is © The Board of Trustees of the Leleand Stanford Junior University | |
# It is made available under the MIT License | |
# https://opensource.org/licenses/MIT |
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
# draw the figure so the animations will work | |
import matplotlib.pyplot as plt | |
fig = plt.gcf() | |
fig.show() | |
fig.canvas.draw() | |
while True: | |
# compute something | |
plt.plot([1, 2, 3, 4, 5], [2, 1, 2, 1, 2]) # plot something | |
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
import struct | |
def pack_varint(val): | |
total = b'' | |
if val < 0: | |
val = (1<<32)+val | |
while val>=0x80: | |
bits = val&0x7F | |
val >>= 7 | |
total += struct.pack('B', (0x80|bits)) |
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
from requests_oauthlib import OAuth2Session | |
from flask import Flask, request, redirect, session, url_for | |
from flask.json import jsonify | |
import os | |
app = Flask(__name__) | |
# This information is obtained upon registration of a new GitHub | |
client_id = "<your client key>" |