I hereby claim:
- I am blakev on github.
- I am blakev (https://keybase.io/blakev) on keybase.
- I have a public key whose fingerprint is E3B1 28F0 8A95 AAE9 8848 9EDE 5F45 7ACC AE59 619A
To claim this, I am signing this object:
| # Paramiko SSH Object with batch commands and stdin | |
| # Blake VandeMerwe July 2014 | |
| # | |
| # Adapted from Joe Linoff's code at http://joelinoff.com/blog/?p=905 | |
| # his did not work for me, so I fixed it and added some features. | |
| # | |
| import re | |
| import string | |
| import logging | |
| import socket |
| import time | |
| import random | |
| DEFAULT_CACHE_TIME = 5 # seconds | |
| class A: | |
| def __init__(self): | |
| pass | |
| def cache(*args): |
| import itertools | |
| def unravel(*iterables, limit = None): | |
| yield from itertools.islice( | |
| filter(None, | |
| itertools.chain.from_iterable( | |
| itertools.zip_longest( | |
| *iterables))), limit) | |
| # a = [x for x in range(10)] |
| var _ = require('underscore'); | |
| function hash(data) { | |
| function innerHash(data) { | |
| var hashStr = ''; | |
| if(_.isArray(data)) { | |
| _.each(data, function(e) { | |
| hashStr += innerHash(e) + ',' |
| // Live video stream management for HTML5 video. Uses FFMPEG to connect to H.264 camera stream, | |
| // Camera stream is remuxed to a MP4 stream for HTML5 video compatibility and segments are recorded for later playback | |
| var liveStream = function (req, resp) { // handle each client request by instantiating a new FFMPEG instance | |
| // For live streaming, create a fragmented MP4 file with empty moov (no seeking possible). | |
| var reqUrl = url.parse(req.url, true) | |
| var cameraName = typeof reqUrl.pathname === "string" ? reqUrl.pathname.substring(1) : undefined; | |
| if (cameraName) { | |
| try { | |
| cameraName = decodeURIComponent(cameraName); |
| #!/usr/bin/env python | |
| import sys, os, re | |
| errorDict = { | |
| 0: "Default error for, %s" | |
| } | |
| warningDict = { | |
| 0: "Default warning for, %s", | |
| 100:"%s Label already found in symbol table." |
| import re | |
| import argparse | |
| import concurrent.futures | |
| import string | |
| from collections import namedtuple | |
| from urllib.request import urlopen | |
| from urllib.parse import urlencode | |
| from bs4 import BeautifulSoup |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| # ~*~ coding: utf-8 ~*~ | |
| # | |
| # >> | |
| # .. created: 5/20/16 | |
| # .. author: blake.vandemerwe | |
| # | |
| # LICENSE | |
| # << |