Overunity.com Archives is Temporarily on Read Mode Only!



Free Energy will change the World - Free Energy will stop Climate Change - Free Energy will give us hope
and we will not surrender until free energy will be enabled all over the world, to power planes, cars, ships and trains.
Free energy will help the poor to become independent of needing expensive fuels.
So all in all Free energy will bring far more peace to the world than any other invention has already brought to the world.
Those beautiful words were written by Stefan Hartmann/Owner/Admin at overunity.com
Unfortunately now, Stefan Hartmann is very ill and He needs our help
Stefan wanted that I have all these massive data to get it back online
even being as ill as Stefan is, he transferred all databases and folders
that without his help, this Forum Archives would have never been published here
so, please, as the Webmaster and Creator of this Forum, I am asking that you help him
by making a donation on the Paypal Button above
Thanks to ALL for your help!!


Let's crack Sloot algorithm - infinite "compression"

Started by nix85, July 16, 2020, 12:57:03 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

WhatIsIt



Movie or file is series of numbers merged

123456789123456789123456789

Now you look into table and write coordinates

5
55
2
78
34
26

We know that first number is begin,
second number is end,
so you read coordinates in pairs of 2.

5, 55 = 12345
2, 78 = 678912345
34, 26 = 6789123456789

and merge sequence together again

123456789123456789123456789

and write it back into memory as it was at first place, in sequence.


So, number of coordinates are telling us how much sequence is long.

When there are no coordinates we are done, and vice versa.


No delimiter.

nix85

another detail worth mentionig is encoding side could do a lot of computation to find input variables that yield most matches for a particular file, so random is not really random but customized random.

nix85

Quote from: WhatIsIt on July 17, 2020, 06:37:58 PM

Movie or file is series of numbers merged

123456789123456789123456789

Now you look into table and write coordinates

5
55
2
78
34
26

We know that first number is begin,
second number is end,
so you read coordinates in pairs of 2.

5, 55 = 12345
2, 78 = 678912345
34, 26 = 6789123456789

and merge sequence together again

123456789123456789123456789

and write it back into memory as it was at first place, in sequence.


So, number of coordinates are telling us how much sequence is long.

When there are no coordinates we are done, and vice versa.


No delimiter.

and how did you imagine using 1 digit coordinate, it cannot be 555, only 0555, otherwise coordinates would get mixed up.

as for spacer, again, coordinates are produced in different iterations, from different sets of random numbers, algorithm MUST know which iteration produced which coordinates, so spacer is needed

WhatIsIt

The problem is because we think in decimal which is not suited for binary and numbers dont match.

We can write byte 255, but can not 999, because byte can not hold it.

Lets say that coordinates are max 2 numbers, 00 - 99 and you write it that way.

You have table 100 * 100,

6 coordinates are 12 numbers.

If we can write with 12 numbers 25 numbers, then the thing will work,

otherwise, hmm?


WhatIsIt

Yes, it must be 05, 55 and not 5, 55.

And we spend more memory, but delimiter is not needed.

Delimiter will be very hard to implement, if we dont know exact length of sequence.