325
votes
21answers
20k views
Twitter image encoding challenge
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 …
25
votes
11answers
1k 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 …
15
votes
2answers
634 views
Gzip vs Deflate (zlib) revisited
HTTP 1.1 definitions of GZIP and DEFLATE (zlib) for some background information:
" 'Gzip' is the gzip format, and 'deflate' is the zlib format. They
should probably have called the second one 'zlib' …
15
votes
12answers
777 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
11answers
881 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, ...)
…
12
votes
8answers
723 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 …
11
votes
10answers
2k views
Best javascript compressor
What is the the best Javascript compressor available? I'm looking for a tool that:
Easy to use
High compression rate
Reliable end results (doesn't mess up the code)
10
votes
5answers
1k 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 …
10
votes
5answers
3k 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 …
9
votes
10answers
1k 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?
…
8
votes
4answers
529 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 …
8
votes
5answers
481 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 …
8
votes
2answers
1k 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 …
7
votes
3answers
223 views
What’s the concept behind zip compression?
What's the concept behind zip compression? I can understand the concept of removing empty space etc, but presumably something has to be added to say how much/where that free space needs to be added …
7
votes
10answers
452 views
How many times a file be compressed?
I was thinking about compression, and it seems like there would have to be some sort of limit to the compression that could be applied to it, otherwise it'd be a single byte.
So my question is, how …
