LZHW Windows command line lossless compression tool for tabular files
LZHW Command Line Lossless Compression Tool
is a Windows command line tool used to compress and decompress files from and to any form, csv, excel etc without any dependencies or installations.
Using an optimized algorithm (LZHW) developed from Lempel-Ziv, Huffman and LZ-Welch algorithms.
The tool can work in parallel and most of its code is written in Cython, so it is pretty fast.
It is based on python lzhw library.
Full tool documentation can be found at:...
A human-readable ISC-Licensed implementation of the LZO1X algorithm.
LZO is a compression library which is widely used around the world. The main problem with LZO is that it is absolutely not human readable.
People have done crazy stuff to get LZO to run in their language. Usually it implies inline assembly or trying to execute data which actually contains machine code. This is sick. Whoever is responsible for this sorry situation ought to be ashamed.
So I'm going to deobfuscate LZO and provide a ISC implementation of this algorithm in Python and C. In...