Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 ipywidgets as iw | |
import traitlets | |
class SelectionSliderBtns(iw.Box): | |
description = traitlets.Unicode() | |
value = traitlets.Any() | |
options = traitlets.Union([traitlets.List(), traitlets.Dict()]) | |
def __init__(self, **kwargs): |
This file contains hidden or 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
insert!(LOAD_PATH, 2, mktempdir()) | |
if isinteractive() | |
import BasicAutoloads | |
BasicAutoloads.register_autoloads([ | |
# dev tools: | |
["@btime", "@benchmark"] => :(using BenchmarkTools), | |
["@b", "@be"] => :(using Chairmarks), | |
["@descend", "@descend_code_typed", "@descend_code_warntype"] => :(using Cthulhu), |