Data Compression
I think I've got a working combo that can be decoded?? Not sure... if s1 = vals(00) then m1 = "0" : mp = "10" if s1 = vals(01) then m1 = "1" : mp = "10" if s1 = vals(02) then m1 = "0" : mp = "11" if s1 = vals(03) then m1 = "1" : mp = "11" if s1 = vals(04) then m1 = "000" : mp = "0" if s1 = vals(05) then m1 = "001" : mp = "0" if s1 = vals(06) then m1 = "010" : mp = "0" if s1 = vals(07) then m1 = "011" : mp = "0" if s1 = vals(08) then m1 = "100" : mp = "0" if s1 = vals(09) then m1 = "101" : mp = "0"...
I think I've got a working combo that can be decoded?? Not sure... if s1 = vals(00) then m1 = "0" : mp = "10" if s1 = vals(01) then m1 = "1" : mp = "10" if s1 = vals(02) then m1 = "0" : mp = "11" if s1 = vals(03) then m1 = "1" : mp = "11" if s1 = vals(04) then m1 = "000" : mp = "0" if s1 = vals(05) then m1 = "001" : mp = "0" if s1 = vals(06) then m1 = "010" : mp = "0" if s1 = vals(07) then m1 = "011" : mp = "0" if s1 = vals(0 then m1 = "100" : mp = "0" if s1 = vals(09) then m1 = "101" : mp = "0"...
This combo compresses down to 300 bytes in 5 seconds.. if s1 = vals(00) then m1 = "10" : mp = "0" if s1 = vals(01) then m1 = "10" : mp = "1" if s1 = vals(02) then m1 = "11" : mp = "0" if s1 = vals(03) then m1 = "11" : mp = "1" if s1 = vals(04) then m1 = "000" : mp = "0" if s1 = vals(05) then m1 = "001" : mp = "0" if s1 = vals(06) then m1 = "010" : mp = "0" if s1 = vals(07) then m1 = "011" : mp = "0" if s1 = vals(08) then m1 = "000" : mp = "1" if s1 = vals(09) then m1 = "001" : mp = "1" if s1 = vals(10)...
Banned From Forum
You pass the output "chrs" to a zip library and then keep looping until it can't get any smaller.. Compresses any size file down to 4800 bytes.
Banned From Forum
Banned From Forum