Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: News that Matters?!?

  1. #1
    Senior Member
    Join Date
    Jul 2001
    Posts
    143

    News that Matters?!?

    Hello everyone!

    I thought I'd inform all of you science geeks out there on two pretty cool advancements that were released yesterday.

    The first, is the discovery of a compression algorithm that compresses "random" data up to a 100:1 ratio. Now, if you don't know a lot about compression algorithms (and if you call yourself a computer scientist you should!) then you probably wouldn't see the problem with this. The problem is that all current compression algorithms find patterns in the data to be compressed and use these repetitions to shrink the size of the data. The problems comes in when you consider Claude Shannon's Information Theory. In this theory (which is widely accepted), Shannon basically says that it is impossible to perform compression on "random" data. It is a fairly logical conclusion, cause if everything bit is important in the position it is in, how can you get rid of it and reduce the size of the information without lossing it forever? Well, supposidly ZeoSync has overcome information theory. There press release can be read: here

    The second advancement deals with quantum computing (my fave!). It seems that scientists have found a way to store light in a crystal, and then re-emit that light from the crystal. This is a great advancement because it is basically a quantum hard drive. Though I wonder how well the crystal keeps the information held in the light away from outside interference (in order to make sure decoherence doesn't occur and mess up the calculations).

    I thought these were two interesting advancements. Please feel free to give your opinions, or ask whatever questions you'd like, and I or another forum member would be more than happy to answer you.

    Regards,
    Wizeman
    \"It\'s only arrogrance if you can\'t back it up, otherwise it is confidence.\" - Me

  2. #2
    Noble Hamlet
    Guest
    Wowser!

  3. #3
    PHP/PostgreSQL guy
    Join Date
    Dec 2001
    Posts
    1,164
    There was a guy a while back (quite a while back) who had figured out how to use the light spectrum for memory (instead of this archaic toggling of bits, hehe). People in the US shunned the idea because the major products were still profitable so he went to Japan where they literally threw money at him for development. Wonder how it's going now...

    But yeah, compressions 100:1 and using light/crystal for storage/speed? Hell yeah...bring it on!
    We the willing, led by the unknowing, have been doing the impossible for the ungrateful. We have done so much with so little for so long that we are now qualified to do just about anything with almost nothing.

  4. #4
    AntiOnline Senior Member
    Join Date
    Oct 2001
    Posts
    514
    Kool stuff! Good post Wizeman!
    [shadow]uraloony, Founder of Loony Services[/shadow]
    Visit us at
    [gloworange]http://www.loonyservices.com/[/gloworange]

  5. #5
    Senior Member
    Join Date
    Jan 2002
    Posts
    132

    Random compression

    I know this is just a rehash ... but it seems boggling to me that you can have a random hash of data and have *any* significant compression. As far as I know, most established compression routines work somewhat like the following: every time it sees 001001001001001001001, for example, it replaces that with 'a' or something akin to that.

    It seems that most compression routines use a cipher-esque hash and in this way crush data down.

    All the same ... if this is true ... I wonder if the US will up its encryption standards?

  6. #6
    Senior Member
    Join Date
    Jan 2002
    Posts
    218
    Quantum hard drives are most definitely an interesting concept, however, I do not think it is new. Like Vorlin said, someone has tried this before. I remember hearing about this method for data storage some time back but never heard anything about it again. Perhaps it failed. Or perhaps Micorsoft bought out the technology and has been hiding it. Whatever happened, I hope this time we actually see some progress.

  7. #7
    Senior Member
    Join Date
    Jan 2002
    Posts
    132
    Or perhaps Micorsoft bought out the technology and has been hiding it.
    Actually, at least on the whole Quantum Computing thing, IBM has been the really big player. A couple months ago they were able to show, all by QC, that 5 and 3 are factors of 15 - which sounds stupid, but it's apparently the biggest QC computation to date, using 7 e- spins, if I remember correctly. Anyway - this story was /.'ed a while back (2 months? 3?)

    ~N~

  8. #8
    Senior Member
    Join Date
    Jul 2001
    Posts
    143
    Actually it was about a month ago. I posted about it on AO, but not a lot of people read it; if you are interested, go here . And actually, there has never been any sort of permanent storage for quantum computers, so this crystal is truly a first, but like I said I wonder how decoherence affects the information stored within the crystal.

    Regards,
    Wizeman
    \"It\'s only arrogrance if you can\'t back it up, otherwise it is confidence.\" - Me

  9. #9
    Junior Member
    Join Date
    Oct 2001
    Posts
    8

    Smile Re: Random compression

    [QUOTE]Originally posted by nietzsche
    I know this is just a rehash ... but it seems boggling to me that you can have a random hash of data and have *any* significant compression. As far as I know, most established compression routines work somewhat like the following: every time it sees 001001001001001001001, for example, it replaces that with 'a' or something akin to that.

    -----------------------------------------------------------------------

    Actually - 001001001001001001001 does not translate well - since binary bit representation is done it sets of 8 - but what the hell - this is how it would translate in ascii:

    First Eight:
    00100100 = 38 = &

    The next Eight:

    10010010 = 146 = ’

    The next set:

    Well - is only 5 bits - so I will assume you meant to put 3 ( or 00000011) zeros after it and it would be:

    01001000 = 72 = H

    So 00100100 10010010 01001000 would translate to " &’H " which is not really an " a " is it?

    Or we could say that it represents "some number" - and then it would translate to:

    001001001001001001001:
    0+0+262144+0+0+32768+0+0+4096+0+0+512+0+0+64+0+0+8+0+0+1 = 299593
    God - I must be bored if I just converted binary digits . . .



    ------------------------------------------------------
    Chuck \"Spence\" Fasching
    Information Security Architect
    CCSA, CCSE, GSEC

  10. #10
    Senior Member
    Join Date
    Jul 2001
    Posts
    143
    If you guys really want to know how most compression algorithms do their encoding, then take a look at this. This describes Huffman Coding, the most prevalent encoding algorithm in use today.

    Regards,
    Wizeman
    \"It\'s only arrogrance if you can\'t back it up, otherwise it is confidence.\" - Me

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •