Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-08 Thread Ian Kelly
On Fri, Nov 8, 2013 at 8:48 AM, wrote: > 3^2-2^2=5 How do you intend to encode 3**2 - 2**2 in such a way that it is more compact than simply encoding 5? If you actually have an algorithm, you should share it instead of dropping these cryptic one-line non-explanations and leaving us guessing abo

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-08 Thread rusi
On Friday, November 8, 2013 9:18:05 PM UTC+5:30, jonas.t...@gmail.com wrote: > Den fredagen den 8:e november 2013 kl. 03:43:17 UTC+1 skrev zipher: > > >> I am not sure if it is just stupidness or laziness that prevent you from > > >> seeing that 4^8=65536. > > > I can see that 4^8 = 65536. Now how

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-08 Thread jonas . thornvall
Den fredagen den 8:e november 2013 kl. 03:43:17 UTC+1 skrev zipher: > >> I am not sure if it is just stupidness or laziness that prevent you from > >> seeing that 4^8=65536. > > > > > > I can see that 4^8 = 65536. Now how are you going to render 65537? You > > > claimed that you could render *a

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-08 Thread Chris Angelico
On Fri, Nov 8, 2013 at 6:09 PM, Gregory Ewing wrote: > You've got me thinking now about how viable a compression > scheme this would be, efficiency issues aside. I suppose > it would depend on things like the average density of primes > and the average number of prime factors a number has. > Any n

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Gregory Ewing
Mark Janssen wrote: Technically, the universe could expand temporarily or reconfigure to allow it; Oh, no! If Jonas ever succeeds in getting his algorithm to work, the Void will expand and swallow us all! http://en.wikipedia.org/wiki/The_Dreaming_Void -- Greg -- https://mail.python.org/mailma

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Gregory Ewing
Steven D'Aprano wrote: Of course, to reverse the compression you need to keep a table of the prime numbers somewhere, That's not strictly necessary -- you could calculate them as needed. It wouldn't be *fast*, but it would work... You've got me thinking now about how viable a compression schem

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Steven D'Aprano
On Thu, 07 Nov 2013 18:25:18 -0800, jonas.thornvall wrote: > Please, you are he obnoxious, so fuck off Pot, meet kettle. > I am not sure if it is just stupidness or laziness that prevent you from > seeing that 4^8=65536. And what is it that prevents you from seeing that 4**8=65536 is irrelevan

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Steven D'Aprano
On Thu, 07 Nov 2013 18:43:17 -0800, Mark Janssen wrote: >>> I am not sure if it is just stupidness or laziness that prevent you >>> from seeing that 4^8=65536. >> >> I can see that 4^8 = 65536. Now how are you going to render 65537? You >> claimed that you could render *any* number efficiently. Wh

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Dave Angel
On Thu, 7 Nov 2013 18:43:17 -0800, Mark Janssen wrote: I think the idea would be to find the prime factorization for a given number, which has been proven to be available (and unique) for any and every number. Most numbers can compress given this technique. Prime numbers, of course, woul

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Chris Angelico
On Fri, Nov 8, 2013 at 3:05 PM, R. Michael Weylandt wrote: > > > On Nov 7, 2013, at 22:24, Chris Angelico wrote: > >> On Fri, Nov 8, 2013 at 1:43 PM, R. Michael Weylandt >> wrote: >>> Chris's point is more subtle: the typical computer will store the number >>> 65536 in a single byte, but it w

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread R. Michael Weylandt
On Nov 7, 2013, at 22:24, Chris Angelico wrote: > On Fri, Nov 8, 2013 at 1:43 PM, R. Michael Weylandt > wrote: >> Chris's point is more subtle: the typical computer will store the number >> 65536 in a single byte, but it will also store 4 and 8 in one byte. > > Well, 65536 won't fit in a s

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Chris Angelico
On Fri, Nov 8, 2013 at 1:43 PM, R. Michael Weylandt wrote: > Chris's point is more subtle: the typical computer will store the number > 65536 in a single byte, but it will also store 4 and 8 in one byte. So if > your choice is between sending "65536" and "(4,8)", you actually loose > efficienc

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Roy Smith
In article , Chris Angelico wrote: > 2) How do you factor large numbers efficiently? Trust me, if you've > solved this one, there are a *LOT* of people who want to know. People > with money, like Visa. Not to mention the NSA. -- https://mail.python.org/mailman/listinfo/python-list

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Chris Angelico
On Fri, Nov 8, 2013 at 1:43 PM, Mark Janssen wrote: >>> I am not sure if it is just stupidness or laziness that prevent you from >>> seeing that 4^8=65536. >> >> I can see that 4^8 = 65536. Now how are you going to render 65537? You >> claimed that you could render *any* number efficiently. What

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Mark Janssen
>> I am not sure if it is just stupidness or laziness that prevent you from >> seeing that 4^8=65536. > > I can see that 4^8 = 65536. Now how are you going to render 65537? You > claimed that you could render *any* number efficiently. What you've > proven is that a small subset of numbers can be r

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread R. Michael Weylandt
On Nov 7, 2013, at 21:25, jonas.thornv...@gmail.com wrote: > Den fredagen den 8:e november 2013 kl. 03:17:36 UTC+1 skrev Chris Angelico: >> On Fri, Nov 8, 2013 at 1:05 PM, wrote: >> >>> I guess what matter is how fast an algorithm can encode and decode a big >>> number, at least if you want

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread rusi
On Friday, November 8, 2013 7:55:18 AM UTC+5:30, jonas wrote: > Den fredagen den 8:e november 2013 kl. 03:17:36 UTC+1 skrev Chris Angelico: > > On Fri, Nov 8, 2013 at 1:05 PM, jonas.thornvall wrote: > > > I guess what matter is how fast an algorithm can encode and decode a big > > > number, at le

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Chris Angelico
On Fri, Nov 8, 2013 at 1:25 PM, wrote: > Please, you are he obnoxious, so fuck off or go learn about reformulation of > problems. Every number has an infinite number of arithmetical solutions. So > every number do has a shortest arithmetical encoding. And that is not the > hard part to figure

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread jonas . thornvall
Den fredagen den 8:e november 2013 kl. 03:17:36 UTC+1 skrev Chris Angelico: > On Fri, Nov 8, 2013 at 1:05 PM, wrote: > > > I guess what matter is how fast an algorithm can encode and decode a big > > number, at least if you want to use it for very big sets of random data, or > > losless video

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Chris Angelico
On Fri, Nov 8, 2013 at 1:24 PM, Mark Janssen wrote: > On Thu, Nov 7, 2013 at 6:17 PM, Chris Angelico wrote: >> On Fri, Nov 8, 2013 at 1:05 PM, wrote: >>> I guess what matter is how fast an algorithm can encode and decode a big >>> number, at least if you want to use it for very big sets of ran

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Mark Janssen
On Thu, Nov 7, 2013 at 6:17 PM, Chris Angelico wrote: > On Fri, Nov 8, 2013 at 1:05 PM, wrote: >> I guess what matter is how fast an algorithm can encode and decode a big >> number, at least if you want to use it for very big sets of random data, or >> losless video compression? > > I don't ca

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Chris Angelico
On Fri, Nov 8, 2013 at 1:05 PM, wrote: > I guess what matter is how fast an algorithm can encode and decode a big > number, at least if you want to use it for very big sets of random data, or > losless video compression? I don't care how fast. I care about the laws of physics :) You can't stuf

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread jonas . thornvall
Den torsdagen den 7:e november 2013 kl. 23:26:45 UTC+1 skrev Chris Angelico: > On Fri, Nov 8, 2013 at 5:59 AM, Mark Janssen > wrote: > > > I think the idea is that you could take any arbitrary input sequence, > > > view it as a large number, and then find what exponential equation can > > > pr

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Chris Angelico
On Fri, Nov 8, 2013 at 5:59 AM, Mark Janssen wrote: > I think the idea is that you could take any arbitrary input sequence, > view it as a large number, and then find what exponential equation can > produce that result. The equation becomes the "compression". Interesting idea, but I don't see ho

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Tim Roberts
Mark Janssen wrote: >>> Well let me try to explain why it is working and i have implemented one. >>> I only need to refresh my memory it was almost 15 years ago. >>> This is not the solution but this is why it is working. >>> 65536=256^2=16^4=***4^8***=2^16 >> >> I think the idea is that you could

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Mark Janssen
>>Well let me try to explain why it is working and i have implemented one. >>I only need to refresh my memory it was almost 15 years ago. >>This is not the solution but this is why it is working. >>65536=256^2=16^4=***4^8***=2^16 > > All of those values are indeed the same, and yet that is complete

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-07 Thread Tim Roberts
jonas.thornv...@gmail.com wrote: > >Well let me try to explain why it is working and i have implemented one. >I only need to refresh my memory it was almost 15 years ago. >This is not the solution but this is why it is working. >65536=256^2=16^4=***4^8***=2^16 All of those values are indeed the sa

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-04 Thread Steven D'Aprano
On Tue, 05 Nov 2013 04:33:46 +, Steven D'Aprano wrote: > On Mon, 04 Nov 2013 14:34:23 -0800, jonas.thornvall wrote: > >> Den måndagen den 4:e november 2013 kl. 15:27:19 UTC+1 skrev Dave Angel: >>> On Mon, 4 Nov 2013 05:53:28 -0800 (PST), jonas.thornv...@gmail.com >>> wrote: > [...] >>> > This

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-04 Thread Steven D'Aprano
On Mon, 04 Nov 2013 14:34:23 -0800, jonas.thornvall wrote: > Den måndagen den 4:e november 2013 kl. 15:27:19 UTC+1 skrev Dave Angel: >> On Mon, 4 Nov 2013 05:53:28 -0800 (PST), jonas.thornv...@gmail.com >> wrote: [...] >> > This is not the solution but this is why it is working. >> >> > 65536=256

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-04 Thread Dave Angel
On Mon, 4 Nov 2013 14:34:23 -0800 (PST), jonas.thornv...@gmail.com wrote: e is an approximation... and your idea is not general for any n. e is certainly not an approximation, and I never mentioned n. -- DaveA -- https://mail.python.org/mailman/listinfo/python-list

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-04 Thread jonas . thornvall
Den måndagen den 4:e november 2013 kl. 15:27:19 UTC+1 skrev Dave Angel: > On Mon, 4 Nov 2013 05:53:28 -0800 (PST), jonas.thornv...@gmail.com > > wrote: > > > Den lördagen den 2:e november 2013 kl. 22:31:09 UTC+1 skrev Tim > > Roberts: > > > > Here's another way to look at it. If f(x) is smal

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-04 Thread rusi
On Monday, November 4, 2013 7:57:19 PM UTC+5:30, Dave Angel wrote: > On Mon, 4 Nov 2013 05:53:28 -0800 (PST), Jonas wrote: > > Well let me try to explain why it is working and i have implemented one. > > I only need to refresh my memory it was almost 15 years ago. > > This is not the solution but t

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-04 Thread Dave Angel
On Mon, 4 Nov 2013 05:53:28 -0800 (PST), jonas.thornv...@gmail.com wrote: Den lördagen den 2:e november 2013 kl. 22:31:09 UTC+1 skrev Tim Roberts: > Here's another way to look at it. If f(x) is smaller than x for every x, > that means there MUST me multiple values of x that produce the

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-04 Thread jonas . thornvall
Den måndagen den 4:e november 2013 kl. 14:53:28 UTC+1 skrev jonas.t...@gmail.com: > Den lördagen den 2:e november 2013 kl. 22:31:09 UTC+1 skrev Tim Roberts: > > > jonas.thornv...@gmail.com wrote: > > > > > > > > > > > > > >Well then i have news for you. > > > > > > > > > > > > Well,

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-04 Thread jonas . thornvall
Den lördagen den 2:e november 2013 kl. 22:31:09 UTC+1 skrev Tim Roberts: > jonas.thornv...@gmail.com wrote: > > > > > >Well then i have news for you. > > > > Well, then, why don't you share it? > > > > Let me try to get you to understand WHY what you say is impossible. Let's > > say you d

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-04 Thread Tim Chase
On 2013-11-03 19:40, Mark Janssen wrote: > But you cheated by using a piece of information from "outside the > system": length. A generic compression algorithm doesn't have this > information beforehand. By cheating with outside information, you can perfectly compress any one data-set down to 1 b

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-03 Thread Mark Janssen
> Note that I *can* make a "compression" algorithm that takes any > length-n sequence and compresses all but one sequence by at least one > bit, and does not ever expand the data. > > "00" -> "" > "01" -> "0" > "10" -> "1" > "11" -> "00" > > This, obviously, is just 'cause the length is an extra pi

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-03 Thread Joshua Landau
On 3 November 2013 15:34, Joshua Landau wrote: >I can genuinely compress > the whole structure by N log2 Y items. By which I mean 2N items. -- https://mail.python.org/mailman/listinfo/python-list

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-03 Thread Joshua Landau
On 3 November 2013 03:17, Steven D'Aprano wrote: > On Sat, 02 Nov 2013 14:31:09 -0700, Tim Roberts wrote: > >> jonas.thornv...@gmail.com wrote: >>> >>>Well then i have news for you. >> >> Well, then, why don't you share it? >> >> Let me try to get you to understand WHY what you say is impossible.

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-03 Thread Michael Torrie
On 11/03/2013 12:09 AM, Mark Janssen wrote: >>> Congratulations Jonas. My kill file for this list used to have only one >>> name, but now has 2. >> >> You have more patience than I! Jonas just made mine seven. :) > > Gosh, don't kill the guy. It's not an obvious thing to hardly anyone > but co

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-03 Thread Gene Heskett
On Sunday 03 November 2013 04:40:45 Ethan Furman did opine: > On 10/30/2013 01:32 PM, Gene Heskett wrote: > > Congratulations Jonas. My kill file for this list used to have only > > one name, but now has 2. > > You have more patience than I! Jonas just made mine seven. :) > > -- > ~Ethan~ Ye

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-02 Thread Mark Janssen
>> Congratulations Jonas. My kill file for this list used to have only one >> name, but now has 2. > > You have more patience than I! Jonas just made mine seven. :) Gosh, don't kill the guy. It's not an obvious thing to hardly anyone but computer scientists. It's an easy mistake to make. --

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-02 Thread Ethan Furman
On 10/30/2013 12:23 PM, jonas.thornv...@gmail.com wrote: What i actually saying is that you are indeed... [insult snipped] *plonk* -- https://mail.python.org/mailman/listinfo/python-list

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-02 Thread Ethan Furman
On 10/30/2013 01:32 PM, Gene Heskett wrote: Congratulations Jonas. My kill file for this list used to have only one name, but now has 2. You have more patience than I! Jonas just made mine seven. :) -- ~Ethan~ -- https://mail.python.org/mailman/listinfo/python-list

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-02 Thread Chris Angelico
On Sun, Nov 3, 2013 at 2:17 PM, Steven D'Aprano wrote: > There is a way to apparently get around these limits: store data > externally, perhaps inside the compression application itself. Then, if > you just look at the compressed file (the "data.zip" equivalent, although > I stress that zip compre

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-02 Thread Steven D'Aprano
On Sat, 02 Nov 2013 14:31:09 -0700, Tim Roberts wrote: > jonas.thornv...@gmail.com wrote: >> >>Well then i have news for you. > > Well, then, why don't you share it? > > Let me try to get you to understand WHY what you say is impossible. [snip reasons] Expanding on Tim's post... the first scena

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-02 Thread Mark Janssen
> Let me try to get you to understand WHY what you say is impossible. Let's > say you do have a function f(x) that can produce a compressed output y for > any given x, such that y is always smaller than x. If that were true, then > I could call f() recursively: > f(f(...f(f(f(f(f(x)...))

Re: Algorithm that makes maximum compression of completly diffused data.

2013-11-02 Thread Tim Roberts
jonas.thornv...@gmail.com wrote: > >Well then i have news for you. Well, then, why don't you share it? Let me try to get you to understand WHY what you say is impossible. Let's say you do have a function f(x) that can produce a compressed output y for any given x, such that y is always smaller t

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-31 Thread rusi
On Thursday, October 31, 2013 3:00:24 AM UTC+5:30, Joshua Landau wrote: > What I'm confounded about is this list's inability to recognise a > troll when it slaps it vocally in the face. > This isn't like Nikos. There's no "troll vs. incompetent" debate to be > had. Its usually called "entertain

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Dave Angel
On 30/10/2013 14:21, jonas.thornv...@gmail.com wrote: > I am searching for the program or algorithm that makes the best possible of > completly (diffused data/random noise) and wonder what the state of art > compression is. > > I understand this is not the correct forum but since i think i have

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Chris Angelico
On Thu, Oct 31, 2013 at 10:01 AM, Tim Chase wrote: > On 2013-10-30 21:30, Joshua Landau wrote: >> started talking about compressing *random data* > > If it's truly random bytes, as long as you don't need *the same* > random data, you can compress it quite easily. Lossy compression is > acceptable

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Tim Chase
On 2013-10-30 21:30, Joshua Landau wrote: > started talking about compressing *random data* If it's truly random bytes, as long as you don't need *the same* random data, you can compress it quite easily. Lossy compression is acceptable for images, so why not random files? :-) import os inn

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Mark Lawrence
On 30/10/2013 21:30, Joshua Landau wrote: On 30 October 2013 19:18, Mark Lawrence wrote: On 30/10/2013 19:01, jonas.thornv...@gmail.com wrote: And your still a stupid monkey i dare you to go test your IQ. It's you're as in you are and not your as in belongs to me. I have no intention of ge

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Joshua Landau
On 30 October 2013 19:18, Mark Lawrence wrote: > On 30/10/2013 19:01, jonas.thornv...@gmail.com wrote: >> >> And your still a stupid monkey i dare you to go test your IQ. > > It's you're as in you are and not your as in belongs to me. > > I have no intention of getting my IQ tested, but I do know

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Mark Janssen
On Wed, Oct 30, 2013 at 11:21 AM, wrote: > I am searching for the program or algorithm that makes the best possible of > completly (diffused data/random noise) and wonder what the state of art > compression is. Is this an April Fool's Joke? A key idea of "completely" random is that you *can't

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Grant Edwards
On 2013-10-30, jonas.thornv...@gmail.com wrote: > I am searching for the program or algorithm that makes the best > possible of completly (diffused data/random noise) and wonder what > the state of art compression is. [...] > It is of course lossless compression i am speaking of. For completel

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Gene Heskett
On Wednesday 30 October 2013 16:29:12 jonas.thornv...@gmail.com did opine: > Den onsdagen den 30:e oktober 2013 kl. 20:46:57 UTC+1 skrev Modulok: > > On Wed, Oct 30, 2013 at 12:21 PM, wrote: > > > > > > > > I am searching for the program or algorithm that makes the best > > possible of comple

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Antoon Pardon
Op 30-10-13 20:01, jonas.thornv...@gmail.com schreef: Den onsdagen den 30:e oktober 2013 kl. 19:53:59 UTC+1 skrev Mark Lawrence: On 30/10/2013 18:21, jonas.thornv...@gmail.com wrote: I am searching for the program or algorithm that makes the best possible of completly (diffused data/random no

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread jonas . thornvall
Den onsdagen den 30:e oktober 2013 kl. 20:46:57 UTC+1 skrev Modulok: > On Wed, Oct 30, 2013 at 12:21 PM, wrote: > > > > I am searching for the program or algorithm that makes the best possible of > completly (diffused data/random noise) and wonder what the state of art > compression is. > >

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Modulok
On Wed, Oct 30, 2013 at 12:21 PM, wrote: > I am searching for the program or algorithm that makes the best possible > of completly (diffused data/random noise) and wonder what the state of art > compression is. > > I understand this is not the correct forum but since i think i have an > algorithm

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread jonas . thornvall
Den onsdagen den 30:e oktober 2013 kl. 20:46:57 UTC+1 skrev Modulok: > On Wed, Oct 30, 2013 at 12:21 PM, wrote: > > > > I am searching for the program or algorithm that makes the best possible of > completly (diffused data/random noise) and wonder what the state of art > compression is. > >

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread jonas . thornvall
Den onsdagen den 30:e oktober 2013 kl. 20:35:59 UTC+1 skrev Tim Delaney: > On 31 October 2013 05:21, wrote: > > I am searching for the program or algorithm that makes the best possible of > completly (diffused data/random noise) and wonder what the state of art > compression is. > > > > >

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Mark Lawrence
On 30/10/2013 19:23, jonas.thornv...@gmail.com wrote: Den onsdagen den 30:e oktober 2013 kl. 20:18:30 UTC+1 skrev Mark Lawrence: On 30/10/2013 19:01, jonas.thornv...@gmail.com wrote: And your still a stupid monkey i dare you to go test your IQ. It's you're as in you are and not you

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Mark Lawrence
On 30/10/2013 19:22, jonas.thornv...@gmail.com wrote: Den onsdagen den 30:e oktober 2013 kl. 20:18:30 UTC+1 skrev Mark Lawrence: On 30/10/2013 19:01, jonas.thornv...@gmail.com wrote: And your still a stupid monkey i dare you to go test your IQ. It's you're as in you are and not you

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Tim Delaney
On 31 October 2013 05:21, wrote: > I am searching for the program or algorithm that makes the best possible > of completly (diffused data/random noise) and wonder what the state of art > compression is. > > I understand this is not the correct forum but since i think i have an > algorithm that ca

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Dan Stromberg
xz compression is pretty hard, if a little bit slow. Also, if you want really stellar compression ratios and you don't care about time to compress, you might check out one of the many paq implementations. I have a module that does xz compression in 4 different ways: http://stromberg.dnsalias.org/

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread jonas . thornvall
Den onsdagen den 30:e oktober 2013 kl. 20:18:30 UTC+1 skrev Mark Lawrence: > On 30/10/2013 19:01, jonas.thornv...@gmail.com wrote: > > > > > > And your still a stupid monkey i dare you to go test your IQ. > > > > > > > It's you're as in you are and not your as in belongs to me. > > > > I h

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread jonas . thornvall
Den onsdagen den 30:e oktober 2013 kl. 20:18:30 UTC+1 skrev Mark Lawrence: > On 30/10/2013 19:01, jonas.thornv...@gmail.com wrote: > > > > > > And your still a stupid monkey i dare you to go test your IQ. > > > > > > > It's you're as in you are and not your as in belongs to me. > > > > I h

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Mark Lawrence
On 30/10/2013 19:01, jonas.thornv...@gmail.com wrote: And your still a stupid monkey i dare you to go test your IQ. It's you're as in you are and not your as in belongs to me. I have no intention of getting my IQ tested, but I do know that it's a minimum of 120 as that was required for me t

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread jonas . thornvall
Den onsdagen den 30:e oktober 2013 kl. 19:53:59 UTC+1 skrev Mark Lawrence: > On 30/10/2013 18:21, jonas.thornv...@gmail.com wrote: > > > I am searching for the program or algorithm that makes the best possible of > > completly (diffused data/random noise) and wonder what the state of art > > com

Re: Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread Mark Lawrence
On 30/10/2013 18:21, jonas.thornv...@gmail.com wrote: I am searching for the program or algorithm that makes the best possible of completly (diffused data/random noise) and wonder what the state of art compression is. I understand this is not the correct forum but since i think i have an algo

Algorithm that makes maximum compression of completly diffused data.

2013-10-30 Thread jonas . thornvall
I am searching for the program or algorithm that makes the best possible of completly (diffused data/random noise) and wonder what the state of art compression is. I understand this is not the correct forum but since i think i have an algorithm that can do this very good, and do not know where