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
# This script provides a rudimentary data encoding algorithm for | |
# type08 records in MIF files. | |
# | |
# It's not exactly Huffman-coding or adaptative Huffman coding, but it | |
# behaves very similar. The developers call it "Delta Mode" | |
# | |
# @author alxbl ([email protected]) | |
# | |
# https://en.wikipedia.org/wiki/File:Huffman_coding_visualisation.svg | |
from sys import exit |
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
# Description: Boxstarter Script | |
# Author: Jess Frazelle <[email protected]> | |
# Last Updated: 2017-09-11 | |
# | |
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# | |
# Run this boxstarter by calling the following from an **elevated** command-prompt: |