-
-
hs-quicklz
... a fast compression library. The
interface is very simple:
```haskell
compress :: ByteString -> ByteString
decompress :: ByteString -> ByteString
decompress' :: ByteString -> ByteString -- overlapping decompression
```
As the name states, QuickLZ is ...
-
ruby-xz
... :
You can create and extract whole archive files, compress or decompress
streams of data or just plain strings.
You can ... Compress a file
XZ.compress_file("myfile.txt", "myfile.txt.xz")
# Decompress it
XZ.decompress_file("myfile.txt.xz", "myfile.txt")
# ...
-
punbb
... correct XHTML-compliant pages.
## Quick install
1. [Download the latest revision of PunBB](http://punbb.informer.com/downloads.php). Decompress the PunBB archive to a directory.
2. Copy (or upload) all the files contained in this archive into the ...
-
LZW
LZW Compression/Decompression in C
To display help for the program:
$ ./lzw
To compress a file:
$ ./lzw c input.html
To decompress a file:
$ ./lzw d input.html.lzw
-
py-lpi
... *uncompressed* representation of the data. Open your container file, decompress and decode it, get the raw bytes, embed your ... as before
- pick a channel key as before
- read in, decompress (loss-less!), decode container file data
- create a decoder ...
-
node-unblocker
... (config);
var contentLength = Unblocker.contentLength(config);
config.requestMiddleware = [
host,
referer,
decompress.handleRequest,
cookies.handleRequest
// custom requestMiddleware here
];
config.responseMiddleware = [
hsts, ...
-
python-snappy
... loop
r = zlib.compress("hola mundo cruel!")
%timeit zlib.decompress(r)
1000000 loops, best of 3: 1.11 us ... usage
=================
You can invoke Python Snappy to compress or decompress files or streams from
the commandline after installation as ...
-
bzip2-nacl
... a directory structure, using bzip2 to compress
and then decompress each file it encounters, and checking that the
...
* -t (test mode) is a lot quicker
* Can decompress concatenated compressed files
* Programming interface, so programs can directly ...
-
pdfstreamdumper
... (dumb scan)
- format javascript using js beautifier (see credits at end)
- view streams as hex dumps
- zlib compress/decompress arbitrary files
- replace/update pdf streams with your own data
- basic javascript interface so you can execute parts of ...
-
lzopfs
...
Gzip is the worst format for lzopfs. Even if you know where a gzip block begins, that's enough enough to decompress it--you also need the current state of the DEFLATE decompressor.
Indexing gzip files requires actually decompressing them, and saving ...
-