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

learn more… | top users | synonyms

597
votes
15answers
46k views

Twitter image encoding challenge [closed]

If a picture's worth 1000 words, how much of a picture can you fit in 140 characters? Note: That's it folks! Bounty deadline is here, and after some tough deliberation, I have decided that Boojum's ...
63
votes
10answers
22k 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 ...
56
votes
4answers
14k views

Deflate compression browser compatibility and advantages over GZIP

UPDATE Sept 11 2010: A testing platform has been created for this here HTTP 1.1 definitions of GZIP and DEFLATE (zlib) for some background information: " 'Gzip' is the gzip format, and ...
52
votes
9answers
22k 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!
47
votes
14answers
15k views

Best JavaScript compressor

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)
41
votes
10answers
4k views

How does one make a Zip bomb?

This question about zip bombs naturally led me to the Wikipedia page on the topic. The article mentions an example of a 45.1 kb zip file that decompresses to 1.3 exabytes. What are the ...
37
votes
13answers
4k 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 ...
31
votes
1answer
2k views

why does IIS7 static/dynamic compression only work for 200 responses?

Why is IIS7.5 only performing static and dynamic compression when the response code is 200? How do I make it compress all responses where the request had an appropriate Accept-Encoding header? ...
31
votes
5answers
18k 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 ...
31
votes
17answers
3k views

What do you use to minimize and compress JavaScript libraries?

What do you use to minimize and compress JavaScript libraries?
28
votes
13answers
20k 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 ...
28
votes
5answers
13k 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 ...
27
votes
7answers
16k 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 ...
26
votes
7answers
6k views

Best Way to automatically compress and minimize JavaScript files in an ASP.NET MVC app

So I have an ASP.NET MVC app that references a number of javascript files in various places (in the site master and additional references in several views as well). I'd like to know if there is an ...
24
votes
5answers
756 views

Interesting problem: Write a program that takes text as input and produces a program that reproduces that text

Recently I came across one nice problem, which turned up as simple to understand as hard to find any way to solve. The problem is: Write a program, that reads a text from input and prints some ...
23
votes
4answers
5k 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 ...
20
votes
8answers
1k views

How can I protect myself from a zip bomb?

I just read about zip bombs, i.e. zip files that contain very large amount of highly compressible data (00000000000000000...). When opened they fill the server's disk. How can I detect a zip file is ...
20
votes
10answers
27k 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. ...
20
votes
7answers
9k 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 ...
20
votes
2answers
6k views

GZipStream And DeflateStream will not decompress all bytes

I was in need of a way to compress images in .net so i looked into using the .net GZipStream class (or DeflateStream). However i found that decompression was not always successful, sometimes the ...
18
votes
5answers
21k 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 ...
17
votes
6answers
2k views

Why do real-world servers prefer gzip over deflate encoding?

We already know deflate encoding is a winner over gzip with respect to speed of encoding, decoding and compression size. So why do no large sites (that I can find) send it (when I use a browser that ...
17
votes
7answers
3k views

Is there a built-in zip library in .NET 3.5?

Is there a built-in zip library in .NET 3.5? If not, what are the popular open source .net zip libraries.
17
votes
6answers
15k 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. ...
16
votes
4answers
249 views

Closest group of 3 points

Is there a known, efficient algorithm for finding the closest group of three points in a cloud? This is similar to the closest pair of points problem but I am looking for three points instead of two. ...
16
votes
12answers
1k views

How to store documentation of programs, libraries and languages you use

As I often work without a fast or even any internet connection, I have a webserver that serves commonly used documentation, for example: Various programming languages (php, Python, Java, ...) ...
15
votes
4answers
451 views

Packet oriented lossless compression library

Does anyone know of a free (non-GPL), decently performing compression library that supports packet oriented compression in C/C++? With packet oriented, I mean the kind of feature QuickLZ (GPL) has, ...
15
votes
5answers
749 views

Machine Learning Algorithm for Predicting Order of Events?

Simple machine learning question. Probably numerous ways to solve this: There is an infinite stream of 4 possible events: 'event_1', 'event_2', 'event_4', 'event_4' The events do not come in in ...
14
votes
9answers
559 views

Why can data be compressed only once?

So the compression process takes a chunk of binary data A and outputs a smaller chunk of binary data B. What characteristics of B make it unable to go through this process again?
14
votes
5answers
789 views

In simple terms, how is compression commonly implemented?

So I've been thinking lately about how compression might be implemented, and what I've postulated so far is that it might be using a sort of HashTable of 'byte signature' keys with memory location ...
14
votes
7answers
3k 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 ...
14
votes
11answers
3k views

Are there any downsides to using UPX to compress a Windows executable?

I've used UPX before to reduce the size of my Windows executables, but I must admit that I am naive to any negative side effects this could have. What's the downside to all of this packing/unpacking? ...
13
votes
4answers
330 views

What method is most efficient at moving objects across the wire in .NET?

I've been using WebServices at moving data across the wire and that has served me pretty well. It excels at sending small pieces of data. As soon as you have to move deep object trees with lots of ...
13
votes
2answers
3k views

How do I compress a Json result from ASP.NET MVC with IIS 7.5

I'm having difficulty making IIS 7 correctly compress a Json result from ASP.NET MVC. I've enabled static and dynamic compression in IIS. I can verify with Fiddler that normal text/html and similar ...
13
votes
7answers
9k 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?
13
votes
4answers
14k 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: ...
12
votes
7answers
252 views

How to efficiently predict if data is compressible

I want to write a storage backend to store larger chunks of data. The data can be anything, but it is mainly binary files (images, pdfs, jar files) or text files (xml, jsp, js, html, java...). I found ...
12
votes
8answers
4k 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 : ...
12
votes
9answers
1k views

Can a JPEG compressed image be rotated without a loss in quality?

JPEG is a lossy compression scheme, so decompression-manipulation-recompression normally reduces the image quality further for each step. Is it possible to rotate a JPEG image without incurring ...
12
votes
7answers
9k views

Compression library using Nvidia's CUDA

Does anyone know a project which implements standard compression methods (like Zip, GZip, BZip2, LZMA,...) using NVIDIA's CUDA library? I was wondering if algorithms which can make use of a lot of ...
12
votes
7answers
6k 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 ...
12
votes
7answers
16k 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 ...
11
votes
9answers
2k views

Can a program output a copy of itself

I think this might be a classic question but I am not aware of an answer. Can a program output a copy of itself, and, if so, is there a short program that does this? I do not accept the "empty ...
11
votes
2answers
2k views

How do you unzip very large files in python?

Using python 2.4 and the built-in ZipFile library, I cannot read very large zip files (greater than 1 or 2 GB) because it wants to store the entire contents of the uncompressed file in memory. Is ...
10
votes
1answer
372 views

JEDI JCL Compression library wont open spanned archive files

Summary: I am having trouble to get the JCL compression library to open any spanned archives. It presents the error "(0000001) Incorrect Function" as defined in borlands 'windows.pas'; scenerios: A ...
10
votes
6answers
234 views

Good tips and tricks to “streamlining” your Javascript and jQuery [closed]

Obviously you have the basic Minify and Packer techniques... But I wondered if there are any little Javascript techniques for smaller code (like those alternative if statements with ? and : etc in ...
10
votes
3answers
886 views

When compressing and encrypting, should I compress first, or encrypt first?

If I were to AES-encrypt a file, and then ZLIB-compress it, would the compression be less efficient than if I first compressed and then encrypted? In other words, should I compress first or encrypt ...
10
votes
6answers
724 views

Simple/efficient text compression

What's the simplest, but efficient compression algorithm? Deflate, lzma, etc. aren't valid options. I need something that compiles really small, like: RLE, LZX, Huffman, etc.. Note: The data is 95% ...
10
votes
3answers
2k views

Very basic question about Hadoop and compressed input files

I have started to look into Hadoop. If my understanding is right i could process a very big file and it would get split over different nodes, however if the file is compressed then the file could not ...
10
votes
2answers
2k views

CSS Minimizer?

Do you know of an online CSS compressor that helps remove redudant/ineffecient CSS declarations and replaces it with more optimized CSS? Meaning, I know that a lot of "compressors" exist that simply ...

1 2 3 4 5 34