<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: Computer Algorithms: Data Compression with Run-length Encoding</title>
	<atom:link href="/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/feed/" rel="self" type="application/rss+xml" />
	<link>/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/</link>
	<description>on web development</description>
	<lastBuildDate>Fri, 26 Oct 2018 21:40:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>By: Yoga</title>
		<link>/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/comment-page-1/#comment-474085</link>
		<dc:creator><![CDATA[Yoga]]></dc:creator>
		<pubDate>Tue, 05 Dec 2017 05:01:02 +0000</pubDate>
		<guid isPermaLink="false">/?p=2594#comment-474085</guid>
		<description><![CDATA[can you make the decode function please?]]></description>
		<content:encoded><![CDATA[<p>can you make the decode function please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: powturbo</title>
		<link>/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/comment-page-1/#comment-449485</link>
		<dc:creator><![CDATA[powturbo]]></dc:creator>
		<pubDate>Sat, 15 Apr 2017 18:14:58 +0000</pubDate>
		<guid isPermaLink="false">/?p=2594#comment-449485</guid>
		<description><![CDATA[you or other readers might be interested to have a look at 
https://github.com/powturbo/TurboRLE]]></description>
		<content:encoded><![CDATA[<p>you or other readers might be interested to have a look at<br />
<a href="https://github.com/powturbo/TurboRLE" rel="nofollow">https://github.com/powturbo/TurboRLE</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: powturbo</title>
		<link>/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/comment-page-1/#comment-440018</link>
		<dc:creator><![CDATA[powturbo]]></dc:creator>
		<pubDate>Fri, 27 Jan 2017 18:39:48 +0000</pubDate>
		<guid isPermaLink="false">/?p=2594#comment-440018</guid>
		<description><![CDATA[you or other readers might be interested to have a look at TURBRLE: Efficient and fast Run Length Encoding incl. automatic escape determination, SIMD and zero byte overhead:
https://github.com/powturbo/TurboRLE]]></description>
		<content:encoded><![CDATA[<p>you or other readers might be interested to have a look at TURBRLE: Efficient and fast Run Length Encoding incl. automatic escape determination, SIMD and zero byte overhead:<br />
<a href="https://github.com/powturbo/TurboRLE" rel="nofollow">https://github.com/powturbo/TurboRLE</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/comment-page-1/#comment-423257</link>
		<dc:creator><![CDATA[Andy]]></dc:creator>
		<pubDate>Sun, 09 Oct 2016 14:00:52 +0000</pubDate>
		<guid isPermaLink="false">/?p=2594#comment-423257</guid>
		<description><![CDATA[I like RLE.  I am using it on base 64 encoded strings which usually have large sections of repeated printable characters.  I my implementation I use non-printable characters as aliases to counts.  Non-printable characters are guaranteed to not exist in base 64 encoded strings.   This helps the bloating of text that does not lend itself well to RLE.]]></description>
		<content:encoded><![CDATA[<p>I like RLE.  I am using it on base 64 encoded strings which usually have large sections of repeated printable characters.  I my implementation I use non-printable characters as aliases to counts.  Non-printable characters are guaranteed to not exist in base 64 encoded strings.   This helps the bloating of text that does not lend itself well to RLE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alka Sawlikar</title>
		<link>/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/comment-page-1/#comment-419302</link>
		<dc:creator><![CDATA[Alka Sawlikar]]></dc:creator>
		<pubDate>Tue, 06 Sep 2016 10:10:09 +0000</pubDate>
		<guid isPermaLink="false">/?p=2594#comment-419302</guid>
		<description><![CDATA[I need pure RLE lossless compression Kindly send on my mail ID]]></description>
		<content:encoded><![CDATA[<p>I need pure RLE lossless compression Kindly send on my mail ID</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hajar</title>
		<link>/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/comment-page-1/#comment-243473</link>
		<dc:creator><![CDATA[Hajar]]></dc:creator>
		<pubDate>Mon, 05 Jan 2015 21:54:45 +0000</pubDate>
		<guid isPermaLink="false">/?p=2594#comment-243473</guid>
		<description><![CDATA[Amazing Article , Thanks alot .]]></description>
		<content:encoded><![CDATA[<p>Amazing Article , Thanks alot .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tetsuo</title>
		<link>/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/comment-page-1/#comment-194353</link>
		<dc:creator><![CDATA[tetsuo]]></dc:creator>
		<pubDate>Tue, 25 Nov 2014 13:48:03 +0000</pubDate>
		<guid isPermaLink="false">/?p=2594#comment-194353</guid>
		<description><![CDATA[Hi! I was wondering if the algorithm to encode the position instead of length has a name cause this is the first time I read about it and I can&#039;t find mentions to it anywhere.

TIA]]></description>
		<content:encoded><![CDATA[<p>Hi! I was wondering if the algorithm to encode the position instead of length has a name cause this is the first time I read about it and I can&#8217;t find mentions to it anywhere.</p>
<p>TIA</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hassan</title>
		<link>/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/comment-page-1/#comment-18521</link>
		<dc:creator><![CDATA[hassan]]></dc:creator>
		<pubDate>Mon, 25 Feb 2013 06:48:56 +0000</pubDate>
		<guid isPermaLink="false">/?p=2594#comment-18521</guid>
		<description><![CDATA[hello we are would like the program in matlab if you want that 
thank you for your lesten]]></description>
		<content:encoded><![CDATA[<p>hello we are would like the program in matlab if you want that<br />
thank you for your lesten</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dawn</title>
		<link>/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/comment-page-1/#comment-16489</link>
		<dc:creator><![CDATA[dawn]]></dc:creator>
		<pubDate>Wed, 22 Aug 2012 01:15:34 +0000</pubDate>
		<guid isPermaLink="false">/?p=2594#comment-16489</guid>
		<description><![CDATA[Thank u for give us the explaination about the RLC so completely. And would u mind give some references about this? I will appreciate u will do this!!!]]></description>
		<content:encoded><![CDATA[<p>Thank u for give us the explaination about the RLC so completely. And would u mind give some references about this? I will appreciate u will do this!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoimen</title>
		<link>/2012/01/09/computer-algorithms-data-compression-with-run-length-encoding/comment-page-1/#comment-16368</link>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
		<pubDate>Wed, 25 Jul 2012 12:09:40 +0000</pubDate>
		<guid isPermaLink="false">/?p=2594#comment-16368</guid>
		<description><![CDATA[Well you can code the program using RLE easily. However it depends on the input and the desired solution.]]></description>
		<content:encoded><![CDATA[<p>Well you can code the program using RLE easily. However it depends on the input and the desired solution.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
