I hereby claim:
- I am sodle on github.
- I am sodle (https://keybase.io/sodle) on keybase.
- I have a public key ASB40snfaYyGjMzIVkzKG_YqYZGWut34R0i6kmXei0T9ggo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name Unmixer | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Hide the chat box on Mixer | |
// @author You | |
// @match https://*.mixer.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== |
export = Script; | |
declare interface IScriptProps { | |
attributes?: object | |
onCreate?: () => void, | |
onError: () => void, | |
onLoad: () => void, | |
url: string | |
} | |
declare class Script { | |
props: IScriptProps; |
def verbal_timedelta(td): | |
"""Expresses a Python timedelta verbally | |
:param td: A Python timedelta | |
:type td: timedelta | |
:return: A verbal description of the time relative to now | |
:rtype: str""" | |
if td.days != 0: | |
abs_days = abs(td.days) | |
if abs_days > 7: | |
abs_delta = '{} weeks'.format(td.days // 7) |
// ==UserScript== | |
// @name Tempe.gov Site Update | |
// @namespace http://asu.edu/ | |
// @version 0.1 | |
// @description Adds Development Projects link to Tempe.gov homepage | |
// @author Scott Odle, Chris Staggers, McGregor Crowley | |
// @match *://*.tempe.gov/* | |
// @grant none | |
// @require https://code.jquery.com/jquery-3.2.1.min.js | |
// ==/UserScript== |