Top "Compression" questions

The name given to the process of encoding data such that it uses lesser number of bits as compared to the original representation.

Tool to Unminify / Decompress JavaScript

Are there any command line scripts and/or online tools that can reverse the effects of minification similar to how …

javascript code-formatting minify compression unminify
How are zlib, gzip and zip related? What do they have in common and how are they different?

The compression algorithm used in zlib is essentially the same as that in gzip and zip. What are gzip and …

compression zip gzip zlib
Split files using tar, gz, zip, or bzip2

I need to compress a large file of about 17-20 GB. I need to split it into several files of …

linux bash file-io compression
Compression/Decompression string with C#

I am newbie in .net. I am doing compression and decompression string in C#. There is a XML and I …

c# string .net-2.0 compression
Excluding directory when creating a .tar.gz file

I have a /public_html/ folder, in that folder there's a /tmp/ folder that has like 70gb of files I …

linux gzip tar compression
What is a good Java library to zip/unzip files?

I looked at the default Zip library that comes with the JDK and the Apache compression libs and I am …

compression zip unzip java
How do you Programmatically Download a Webpage in Java

I would like to be able to fetch a web page's html and save it to a String, so I …

java http compression
Creating a ZIP Archive in Memory Using System.IO.Compression

I'm trying to create a ZIP archive with a simple demo text file using a MemoryStream as follows: using (var …

c# .net zip compression ziparchive
How do I ZIP a file in C#, using no 3rd-party APIs?

I'm pretty sure this is not a duplicate so bear with me for just a minute. How can I programatically (…

c# compression zip download
JavaScript implementation of Gzip

I'm writing a Web application that needs to store JSON data in a small, fixed-size server-side cache via AJAX (think: …

javascript ajax compression gzip