Posts

Showing posts from May, 2014

LZ compression

Image
The LZ compression family include a large variety of lossless data compression algorithms, all derived from a very simple algorithm  created by  Abraham Lempel  and   Jacob Ziv  in the late '70s, known as LZ77 . The algorithm is elegant and very dynamic and works excellent on very large input streams, producing the encoded output right away, ready to be decoded at the other end. Many websites are compressed with this algorithm, which reduces their size considerably with almost no cost regarding the decompression time. In this post, we are going to take a look at a new algorithm, very similar with  LZSS , called LZT. Compression The compress() function takes two arguments: the input stream, which can have any length, and the output stream which is ready to  receive  the encoded data chucks. Input :   TOBEORNOTTOBEORTOBEORNOT# Output:   TOBEORNOT [0,6][0,9] # Steps of the algorithm: Read 256 bytes from the input stream. Create a new dictionary containing the p

fbrowse-tray

Image
fbrowse-tray: browse the filesystem through a Gtk2 status icon (related to obbrowser ). The filesystem is browsed recursively, but lazily, which means that a directory's content will be read only after hovering the mouse over a submenu entry. Github :  https://github.com/trizen/fbrowse-tray AUR :  https://aur.archlinux.org/packages/fbrowse-tray/