Live data from Hacker News

Viewing profile — hexxagone

hexxagone

HN member
Joined
Wed, Aug 18, 2021, 1:37 AM UTC
HN karma
83
Public activity
25 items

About hexxagone

No profile information was provided.

Recent public activity

  1. comment
    Comment #47386944

    Then you should take a look at https://github.com/flanglet/kanzi-cpp : it is optimized for fast roundtrips, multi-threaded by design and produces a seekable bitstream.

  2. comment
    Comment #47379323

    In the LZ high compression regime where LZ can compete in terms of ratio, BWT compressors are faster to compress and slower to decompress than LZ codecs. BWT compressors are also m…

  3. comment
    Comment #47379307

    Notice that bzip3 has close to nothing to do with bzip2. It is a different BWT implementation with a different entropy codec, from a different author (as noted in the GitHub descri…

  4. comment
    Comment #41342420

    There are experts working at the commission.

  5. story
    Show HN: Kanzi, fast lossless data compression

    Give it a try. Let me know what you think.

  6. comment
    Comment #39782115

    Is BFMTV also biased when reporting words directly from the mouth of Piotr Tolstoi or are you just trolling ?

  7. comment
    Comment #39782069

    You mean like Piotr Tolstoi talking about nuking Paris on BFMTV just today ? ( https://fr.yahoo.com/news/calcule-proche-vladimir-poutine-%C... ).

  8. comment
    Comment #32534978

    It is not. Just look at the frequencies in the data (histogram) and compute the order 0 entropy. Then you know if your data is compressible.

  9. comment
    Comment #31701015

    Go does not have threads but something like "tasks". The fact that no thread handle is exposed allows for transparently moving these tasks across threads if the scheduler decides s…

  10. comment
    Comment #31188200

    the "god particle" was actually the "goddamn particle" https://www.businessinsider.com/why-the-higgs-is-called-the-...

  11. comment
    Comment #30450829

    "Ukraine did not behave reasonably" UH ?

  12. comment
    Comment #29541480

    "Turns out a good arith coder is much faster". Citation needed.

  13. comment
    Comment #29446299

    In data compression, inverting a BWT with large blocks or using Context Mixing to compress large blocks (which requires huge context maps). These 2 cases require a lot of random me…

  14. comment
    Comment #29309473

    I am sure the Scotts and Irish are thrilled by the change.

  15. comment
    Comment #29309443

    Arguably the EU is enforcing the rights of their citizens more than in many other places (eg. GDPR). Ultimately the EU citizens should vote when there are parliament elections inst…

  16. comment
    Comment #29254518

    If you knew anything about the EU institutions, you would know that the Commission's role is only to enforce rules that member states have agreed upon but it has _no_ power. Of cou…

  17. comment
    Comment #29112002

    No mention of Louis Pasteur ? Odd.

  18. comment
    Comment #28859012

    Isn't it how free markets work ?

  19. comment
    Comment #28228945

    The Huffman encoding loop is 2 lines and decoding loop is 4 lines of branchless code. Do you have an example of branchless arithmetic encoder or decoder ?

  20. comment
    Comment #28223110

    pigz is no match for zstd...

  21. comment
    Comment #28223079

    "Arithmetic coding is much, much simpler." Let us agree to disagree. "And decompression speed is not a limiting factor in most applications of data compression like this". It depen…

  22. comment
    Comment #28222972

    "FSE achieves markedly higher compression ratio". I do not thin it is true, FSE/ANS achieves slightly better ratios in general. Zstd uses both Huffman (for large alphabets) and FSE…

  23. comment
    Comment #28217574

    PAQ and PPM are not fast, certainly not in the same category as LZ codecs.

  24. comment
    Comment #28216873

    Huffmann is rather simple and hard to beat in decompression speed.

  25. comment
    Comment #28216841

    You mean like zstd and brotli ? Is there any new LZ codec not using Huffman ?