Most voted "compressing" questions
14 questions
Sort by count of
-
8
votes2
answers228
viewsData compression. Issue for Criminal Period 2012, CESPE/Unb
Hello, I have searched in several places answer to this question, but to date I did not find. The question is to be judged on Right or Wrong. Question Consider a file composed of a large number of…
-
6
votes1
answer2702
viewsHow to extract and compress files with System.IO.Compression.Ziparchive in c#?
I’m starting in C#. I saw that there’s class System.IO.Compression.ZipArchive to work with zip files. I have some doubts: How do I unzip an existing zip via Ziparchive? How do I compress to an…
-
4
votes1
answer576
viewsGzip Javascript implementation
Javascript and Localstorage get along very well, but one of them is always saying that there is no space. The idea would be to get a solution, like Gzip in Javascript so we can compress the…
-
4
votes1
answer694
viewsDouble-hand encryption with fixed LENGTH
Does anyone know any way to encrypt any data, two-Handle, so I can decrypt it? I loved the MD5 and the way it fixes the length of the hash, the problem is that there is no way to decrypt…
-
2
votes1
answer99
viewsWhat is the best method of compressing a 2500 ppi image?
Preferred without loss of quality. Something like the WSQ (however, this is only for images up to 500 ppi).
-
2
votes2
answers393
viewsCompressing a string to upload into a field of the JSON object
Hello, I am developing a java API, which returns a json object. One of the final json fields is long text, of unknown dimension. Text may or may not contain special characters. I am sending the raw…
-
1
votes1
answer45
viewsHow to compress my Resources files
I’m developing a Battleship game (I’m still a beginner in programming) and I’m adding some songs and images. My problem is that this is adding too much to the project/game size and hinders. Is there…
-
1
votes1
answer340
viewsMinifcar. JS and CSS files in bulk
Guys, I wonder if you know any tool capable of minifying files on js and css in bulk, are several files in a main folder spread in hundreds of subfolders, I am using Node.js where I have several…
-
1
votes0
answers102
viewsPays to compress (minify) HTML?
I’m minifying my javascript and css codes and came across the option to minify the HTML codes too, then came the doubt: really makes up for it? Worth saving in size and performance?
-
1
votes1
answer44
viewsWhy does this compressed css code stop working?
Why do some codes fail to work when being compressed? As is the example below. I used this website. Normal Code and working: .radio-1:checked ~ .star-item-1:before, .radio-1:focus ~…
-
1
votes0
answers42
viewsHow to access the stream before compression runs via Global.asax?
On the server side apply compression when possible: public MvcApplication() { this.BeginRequest += OnRequestBegin; this.PreSendRequestContent += OnPreSendRequestContent; } private void…
-
0
votes2
answers453
viewsHow to compact directory except a specific folder via SSH with zip command?
I have to compress all the files and directories of the directory public_html except for var which has more than 60GB. How can I perform this operation via SSH commanding zip? I saw some shapes with…
-
0
votes0
answers131
viewsSave a frequency table to a file. (Huffman compactor)
Hello, I’m developing a work of Huffman’s algorithm, and I’m having some difficulty working with the frequency table. In short, I need to turn the characters of a text into a frequency table to…
-
0
votes0
answers537
viewsData compression in C
I need to implement a C program that makes the creation of compressed files from text files (for example, C program sources, among others). This compression will be performed using the Run Length…