-
Sorry, I'm kinda busy with studying lately (got exams) so I won't be around here much.
Well on the internet you cannot connect to someone without his/her ip, so you need a server somewhere even to check if password / username is correct
No with a fixed length of compressing one can recover the data cause when you have decoded it you just count the number of bits and if that's not enough then add with 0's.
But I think there isn't I good algoritm with can decompress a random string of let's say 8 bytes to 7 (what I'm trying). So now I'm working with opcodes and a multiple of compression methods, like pattern matching longest bit string, math functions etc, I think working with opcodes is the best way for a good compression algo.
-
Oh...2 bad :(
Wut's this opcode?
Isn't it CPU operation codes?
-
Yeah, It's kinda the CPU operational code.
SO If we have for example only 4 bits. Then you can save for example the 4 2 bits to store wich action is to be performed and the last to bits for the data. So you can do 4 different actions (2^2 ) with 2 bits (4 data capacities).
-
Yea I've this very same idea a year back but got stucked
coz' later I found out not all data can be encoded this way,
only a certain entropy data...So I thought perhaps I need
additional bits to indicate different encoding method so each
encoding method will suit different random datas perfectly.
For example, if I found out that currently processed input bit stream
is best/suitable compressed with certain method then I'll use that
method and also tell the decoder that for these bit streams I'm
deploying what kind of compression method.
-
Yep that's the only right idea. Now I'm trying to find a way to compress each random 8 byte data string into a 7 byte. If that would work......
But the problem is how to find a couple of compression methods witch can make a 8 byte string into a 7 byte string.
-
Like I've said, not all data can be compressed into 7/8
Otherwise maybe 4gigs of data may be compressed till 1 bit
haha, nevertheless, combining multiple methods we'll get it to
7/8 :) Heard of Zip Zipper? That's wut we're gonna do :D
So I'm thinking, does the algorithms that winzip had deployed
had already reach the compression limits?
-
No never heard of Zip Zipper, what is it? Just a zip program voor zip files or something.
-
Of'coz u never heard of it. I made it up :D
Wut I mean is, we're gonna develop this kind of program, which
is gonna compress further of wut winzip had already produced/
compressed. :D
-
Well then we must first find out how WinZip is compressing :)
-
not necessary.
instead of analyzing winzip's output. See what kind of pattern
occurs in it or whatever we can do about it.