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
/* | |
* Updated ONLY for 6.3 (not tested on other Splunk versions) | |
* Known issue: Color ranges for Marker Gauge is all black because I can't distinguish between the different <rect> in the SVG | |
* - hobbes3 | |
*/ | |
/* BACKGROUND */ | |
body, | |
.dashboard-body, | |
.footer, |
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 | |
huffmanSegment = '\xFF\xC4\x01\xA2\x00\x00\x01\x05\x01\x01\x01\x01'\ | |
'\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x01\x02'\ | |
'\x03\x04\x05\x06\x07\x08\x09\x0A\x0B\x01\x00\x03'\ | |
'\x01\x01\x01\x01\x01\x01\x01\x01\x01\x00\x00\x00'\ | |
'\x00\x00\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09'\ | |
'\x0A\x0B\x10\x00\x02\x01\x03\x03\x02\x04\x03\x05'\ | |
'\x05\x04\x04\x00\x00\x01\x7D\x01\x02\x03\x00\x04'\ |
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 | |
# | |
# pyget2.py | |
# A python download accelerator | |
# | |
# This file uses multiprocessing along with | |
# chunked/parallel downloading to speed up | |
# the download of files (if possible). | |
# | |
# @author Benjamin Hutchins |