3
votes
7answers
93 views
Python string pattern recognition/compression
I can do basic regex alright, but this is slightly different, namely I don't know what the pattern is going to be.
For example, I have a list of similar strings:
lst = ['asometxt0moretxt', …
3
votes
10answers
210 views
What is a good way to test a file to see if its a zip file?
I am looking as a new file format specification and the specification says the file can be either xml based or a zip file containing an xml file and other files.
The file extension is the same in …
3
votes
1answer
60 views
How to apply Google Closure to my entire web page?
Google has the very nice JavaScript compressor called "Closure"
http://closure-compiler.appspot.com/home
But it's a pain to use for inline JavaScript within an HTML file.
Question: Does an online …
0
votes
3answers
50 views
Unzipping unfinished gzip…possible?
So I just spent a week running a simulation, but the computer had to be turned off to move it (terrible, I know). The data that was being produced was being zipped due to it's size by piping it into …
1
vote
5answers
111 views
Concept check: any lossless data compression can be “defeated’, right?
http://en.wikipedia.org/wiki/Data%5Fcompression#Lossless%5Fdata%5Fcompression
For any given compression scheme, one can provide sample input that would result in no savings in space, right?
330
votes
20answers
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 …
1
vote
5answers
87 views
will encrypting a comma seperated list of ID’s make it smaller to fit into a cookie?
say I want to store ID's in a cookie:
123,1232,3443,2343,2344422,2342
seeing that a cookie has a 4kb limit (or whatever), would encrypting the value allow for more storage somehow?
if so, which …
3
votes
3answers
40 views
Javascript compressor problem
Hi to everyone,
I have a problem I would like to compress all my javascript, but inside of my javascript code I use php stuff... like php if, php variables.
How can I manage that?
Thank you so much
0
votes
1answer
18 views
Compress Object/String through webservice and consume in .net compact framework
We need to compress (or rather uncompress) some data we send to a pda client using a webservice.
Below I have a simple concept that will work if consumed by a regular .net app.
Unfortuantly, as the …
2
votes
4answers
79 views
Given disk is slow and multiple cores does on the fly decompression make sense for performance?
It used to be that disk compression was used to increase storage space at the expense of efficiency but we were all on single processor systems back then.
These days there are extra cores around to …
1
vote
4answers
63 views
Data compression algorithms books?
I'm looking for a good book on data compression algorithms (huffman, LZW etc), preferably with example code (on CD or website) in C, C++ or python.
Found these on Amazon: they both look pretty good …
1
vote
3answers
38 views
Compress file before upload via http
What I would like to know is if it is possible to compress data being sent from the clients browser (a file upload) to the server.
Flash, silverlight and other technology is ok!
1
vote
0answers
26 views
Does the ExternalInterface, in Flex 3, have a data size limitation?
I am using the ExternalInterface on Flex 3. We are actually using flex to compress a large amount of DOM data, so this is specifically being used with LARGE data.
To further investigate, if there is …
1
vote
3answers
50 views
How to compress an FLV movie in java?
How can we compress the flv movie? Is there any free library which i can use?
for compressing the video i can go for reducing the resoultion as well, even framerate reducing is acceptable to me.
1
vote
4answers
33 views
.Net Compression and SQL Server 2005 NVARCHAR(MAX)
Can I safely store a .Net compressed memory stream (System.IO.Compression) in an SQLServer 2005 NVARCHAR(MAX) field? SQLServer 2008 is not an alternative.
