The name given to the process of encoding data such that it uses lesser number of bits as compared to the original representation.
111
votes
9answers
46k views
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: Opensocial quotas). I do not have control over the server.
I need to reduce the ...
47
votes
5answers
51k views
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 can do some processing on it. Also, how could I handle various types of compression.
How would I go about doing that ...
69
votes
4answers
22k views
Deflate compression browser compatibility and advantages over GZIP
UPDATE Feb 10 2012:
zOompf has completed some very thorough research on this very topic here. It trumps any findings below.
UPDATE Sept 11 2010:
A testing platform has been created for this ...
93
votes
15answers
43k views
Best JavaScript compressor [closed]
What is the the best JavaScript compressor available? I'm looking for a tool that:
is easy to use
has a high compression rate
Produce reliable end results (doesn't mess up the code)
52
votes
5answers
23k views
How do I create 7-Zip archives with .NET?
How can I create 7-Zip archives from my C# console application? I need to be able to extract the archives using the regular, widely available 7-Zip program.
Here are my results with the examples ...
24
votes
9answers
37k views
iPhone Unzip code
Really stuck on trying to write code to unzip a file or directory on the iPhone.
Below is some sample code that Im using to try and unzip a simple text file.
It unzips the file but its corrupt. ...
37
votes
7answers
25k views
Best compression algorithm for short text strings [closed]
I'm searching for an algorithm to compress small text strings: 50-1000 bytes (i.e. URLs). Which algorithm works best for this?
99
votes
8answers
47k views
Enable IIS7 gzip
How can I enable IIS7 to gzip static files like js and css and how can I test if IIS7 is really gziping them before sending to the client?
Thanks!
13
votes
5answers
12k views
How can I Zip and Unzip a string using GZIPOutputStream that is compatible with .Net?
I need an example for compressing a string using GZip in android. I want to send a string like "hello" to the method and get the following zipped string:
...
88
votes
9answers
36k views
Why use deflate instead of gzip for text files served by Apache?
What advantages do either method offer for html, css and javascript files served by a LAMP server. Are there better alternatives?
The server provides information to a map application using Json, so a ...
15
votes
7answers
24k views
Compression API on the iPhone
Is there a compression API available for use on the iPhone? We're building some RESTful web services for our iPhone app to talk to, but we want to compress at least some of the conversations for ...
40
votes
17answers
8k views
What do you use to minimize and compress JavaScript libraries?
What do you use to minimize and compress JavaScript libraries?
59
votes
5answers
46k views
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#) ZIP a file (in Windows) without using any third party libraries? I need a native windows call ...
22
votes
8answers
29k views
Zip folder in C#
What is an example (simple code) of how to zip a folder in C#?
Update:
I do not see namespace ICSharpCode. I downloaded ICSharpCode.SharpZipLib.dll but I do not know where to copy that DLL file. ...
43
votes
8answers
27k views
How can I get gzip compression in IIS7 working?
I have installed Static and dynamic compression for IIS7, as well as setting the two web.config values at my application ( Virtual Folder ) level. As I understand it, I don't need to enable ...
49
votes
8answers
6k views
With Mercurial, how can I “compress” a series of changesets into one before pushing?
Let's say I have a local and a remote Mercurial repository. Now, I start working on a feature. I work on it, and when I think it's done, I commit the changeset. Testing it a bit more, I find that I ...
38
votes
7answers
34k views
How to implement GZip compression in ASP.NET?
I am trying to implement GZip compression for my asp.net page (including my CSS and JS files). I tried the following code, but it only compresses my .aspx page (found it from YSlow)
HttpContext ...
59
votes
12answers
9k views
Gzip versus minify
I had a somewhat lively discussion the other day about minifying Javascript and CSS versus someone who prefers using Gzip.
I'll call this person X.
X said that Gzip allready minifies the code, since ...
15
votes
8answers
24k views
how to compress a String?
I use GZIPOutputStream or ZIPOutputStream to compress a String( my string.length() is less than 20), but the compress result is longer than original string.
on some site, I found some friends said ...
18
votes
5answers
8k views
How to reduce the size of my iPhone application?
Alternative Titles (to aid searches)
Compressing PNGs
Reduce the size of an iPhone Archive (.ipa)
Adding a build rule to compress images in Xcode
iOS Apps can only be downloaded via 3G if they ...
16
votes
2answers
14k views
Python: Inflate and Deflate implementations
I am interfacing with a server that requires that data sent to it is compressed with Deflate algorithm (Huffman encoding + LZ77) and also sends data that I need to Inflate.
I know that Python ...
16
votes
8answers
22k views
Really simple short string compression
Does anyone know of a really simple compression technique for strings up to about 255 characters in length (yes I'm compressing urls)?
Not concerned with strength of compression - I am looking for ...
8
votes
2answers
8k views
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 am converting in string and after that I am doing compression and decompression.There is no compilation ...
7
votes
3answers
8k views
Ways to compress/minify javascript files [duplicate]
Duplicate:
Best javascript compressor
Which javascript minification library produces better results?
What is the best method to reduce the size of my Javascript and CSS files?
So far ...
11
votes
6answers
18k views
Free compression library for C# which supports 7zip (LZMA) [closed]
I have a program (written in C#) that reads/writes its data directly (direct file access without server) to firebird database files. For a better exchange I want to (un)compress them on import/export ...
16
votes
10answers
19k views
fastest c++ file compression library available? [closed]
I have a need to find the best library to compress in memory data.
I am currently using zlib but I am wondering if there is a better compression library; better in terms of performance and memory ...
6
votes
1answer
3k views
Minifying final HTML output using regular expressions with CodeIgniter
Google pages suggest you to minify HTML, that is, remove all the unnecessary spaces.
CodeIgniter does have the feature of giziping output or it can be done via .htaccess.
But still I also would like ...
9
votes
1answer
5k views
How can I skip compressing one PNG?
(Note: I have solved this problem, but it took long enough that I'm posting question/answer here.)
The Xcode build process "optimizes" my PNGs when building. This isn't usually a problem, but ...
13
votes
2answers
2k views
Is the git binary diff algorithm (delta storage) standardized?
Git uses a delta compression to store objects that are similar to each-other.
Is this algorithm standardized and used in other tools as well? Is there documentation describing the format? Is it ...
2
votes
3answers
6k views
compress/archive folder using php script
Is there a way to compress/archive a folder in the server using php script to .zip or .rar or to any other compressed format, so that on request we could archive the folder and then give the ...
4
votes
2answers
4k views
How can I easily compress and decompress files using zlib?
How can I easily compress and decompress files using zlib?
20
votes
9answers
6k views
Compression formats with good support for random access within archives?
This is similar to a previous question, but the answers there don't satisfy my needs and my question is slightly different:
I currently use gzip compression for some very large files which contain ...
22
votes
7answers
13k views
How do I concatenate JavaScript files into one file?
I want to create a compiled JavaScript file for my website. For development I would prefer to keep the JavaScript in separate files and just as part of my automated scripts concatenate the files ...
6
votes
2answers
2k views
Can gzip compression be selectively disabled in ASP.NET/IIS 7?
I am using a long-lived asynchronous HTTP connection to send progress updates to a client via AJAX. When compression is enabled, the updates are not received in discrete chunks (for obvious reasons). ...
5
votes
9answers
5k views
Free JavaScript obfuscators? [closed]
I'm looking for a free JavaScript obfuscator. Would compression be enough? What tools would you recommend? Of course, I don't need military-style obfuscation, I need a simple way to prevent kiddies ...
17
votes
4answers
23k views
Using SharpZipLib to unzip specific files?
I'm trying to use SharpZipLib to pull specified files from a zip archive. All of the examples I've seen always expect that you want to unzip the entire zip, and do something along the lines of:
...
10
votes
5answers
36k views
How to use System.IO.Compression to read/write ZIP files?
I know there are libraries out there for working with ZIP files. And, you can alternatively use the functionality built into Windows for working ZIP files.
But, I'm wondering if anyone has worked out ...
6
votes
5answers
8k views
How do I zip a directory of files using C++?
I'm working on a project using C++, Boost, and Qt. I understand how to compress single files and bytestreams using, for example, the qCompress() function in Qt.
How do I zip a directory of multiple ...
15
votes
7answers
3k views
Exclude debug javascript code during minification
I'm looking into different ways to minify my javascript code including the regular JSMin, Packer, and YUI solutions. I'm really interested in the new Google Closure Compiler, as it looks exceptionally ...
5
votes
2answers
3k views
Unzipping zip archives with JavaScript in Firefox 3.6
I am toying with an application that will demo some Firefox 3.6 specific functionality, most of which are listed here: http://demos.hacks.mozilla.org/openweb/
I want to drag a zip file in the ...
7
votes
1answer
2k views
Makefile to combine js files and make a compressed version
I am trying to write a basic makefile that combines multiple js files into a single one and then does the same but compresses them.
So far I have this one that can make the compressed version fine.
...
7
votes
5answers
2k views
how to config grunt.js to minify files separately
there are some js files in static/js/
1. a.js
2. b.js
3. c.js
how to config grunt.js to get below files:
1. a.min.js
2. b.min.js
3. c.min.js
as far, I have to type ...
6
votes
7answers
3k views
Possible to compress SQL Server network traffic?
I have a .NET client that needs to connect to a remote SQL Server over the WAN, is it possible to compress SQL traffic between the client and the server?
I am using .NET 3.5 and SQL Server 2005 and ...
2
votes
2answers
223 views
LZW Compression In Lua
Here is the Pseudocode for Lempel-Ziv-Welch Compression.
pattern = get input character
while ( not end-of-file ) {
K = get input character
if ( <<pattern, K>> is NOT in
...
30
votes
4answers
8k views
Python script for minifying CSS?
I'm looking for a simple Python script that can minify CSS as part of a web-site deployment process. (Python is the only scripting language supported on the server and full-blown parsers like CSS ...
34
votes
3answers
8k views
How do I enable gzip compression when using MVC3 on IIS7?
Does anybody know how to enable gzip compression in MVC 3? I'm using IIS7.
Google Chrome Audit's result:
Enable gzip compression (4)
Compressing the following resources with gzip could ...
16
votes
3answers
13k views
Fast compression in Java?
Is there a very fast compression library for Java? The standard gzip library is slower than I would like. I'm looking for something similar to http://www.oberhumer.com/opensource/lzo/ that's native ...
21
votes
6answers
17k views
What is the easiest way to add compression to WCF in Silverlight?
I have a silverlight 2 beta 2 application that accesses a WCF web service. Because of this, it currently can only use basicHttp binding. The webservice will return fairly large amounts of XML data. ...
19
votes
9answers
7k views
Removing extra whitespace from generated HTML in MVC
I have an MVC application view that is generating quite a large HTML table of values (>20MB).
I am compressing the view in the controller using a compression filter
internal class CompressFilter : ...
13
votes
13answers
15k views
How can I determine the length of a .wav file in C#?
In the uncompressed situation I know I need to read the wav header, pull out the number of channels, bits, and sample rate and work it out from there:
(channels) * (bits) * (samples/s) * (seconds) = ...