<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Create TinyURL like URLs in Ruby</title>
	<atom:link href="http://blog.kischuk.com/2008/06/23/create-tinyurl-like-urls-in-ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kischuk.com/2008/06/23/create-tinyurl-like-urls-in-ruby/</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 29 Nov 2011 10:51:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Mindtonic &#187; Blog Archive &#187; Create TinyURL like URL&#8217;s in Ruby</title>
		<link>http://blog.kischuk.com/2008/06/23/create-tinyurl-like-urls-in-ruby/#comment-1019</link>
		<dc:creator><![CDATA[Mindtonic &#187; Blog Archive &#187; Create TinyURL like URL&#8217;s in Ruby]]></dc:creator>
		<pubDate>Mon, 02 Aug 2010 19:45:31 +0000</pubDate>
		<guid isPermaLink="false">http://rkischuk.wordpress.com/?p=208#comment-1019</guid>
		<description><![CDATA[[...] I needed a way to mask ids from the urls of a project I am working on. We don&#8217;t want to expose too much of our infratructure to the public eyes, and this seems to work well for YouTube. I started poking around looking for a solution and really like the one described on Rob’s Blog – Technology, Atlanta, Startups and Stuff. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] I needed a way to mask ids from the urls of a project I am working on. We don&#8217;t want to expose too much of our infratructure to the public eyes, and this seems to work well for YouTube. I started poking around looking for a solution and really like the one described on Rob’s Blog – Technology, Atlanta, Startups and Stuff. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rkischuk</title>
		<link>http://blog.kischuk.com/2008/06/23/create-tinyurl-like-urls-in-ruby/#comment-992</link>
		<dc:creator><![CDATA[rkischuk]]></dc:creator>
		<pubDate>Mon, 19 Apr 2010 20:31:20 +0000</pubDate>
		<guid isPermaLink="false">http://rkischuk.wordpress.com/?p=208#comment-992</guid>
		<description><![CDATA[@MarcRic I don&#039;t think so.  Each iteration, this code is calculating the remainder, then dividing by the size of the array.  Thus, each successive iteration of the loop is of increasing significance and should be prepended.  Check it with smaller numbers and see if your hand calculation disagrees with the algorithm result.]]></description>
		<content:encoded><![CDATA[<p>@MarcRic I don&#8217;t think so.  Each iteration, this code is calculating the remainder, then dividing by the size of the array.  Thus, each successive iteration of the loop is of increasing significance and should be prepended.  Check it with smaller numbers and see if your hand calculation disagrees with the algorithm result.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MarcRic</title>
		<link>http://blog.kischuk.com/2008/06/23/create-tinyurl-like-urls-in-ruby/#comment-990</link>
		<dc:creator><![CDATA[MarcRic]]></dc:creator>
		<pubDate>Sat, 17 Apr 2010 22:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://rkischuk.wordpress.com/?p=208#comment-990</guid>
		<description><![CDATA[This line:

result = URL_CHARS[rem] + result

Generates a reverse result...

Shouldn&#039;t it be:

result = result + URL_CHARS[rem] 

And get &quot;_Hs7&quot; as the result?

Regards]]></description>
		<content:encoded><![CDATA[<p>This line:</p>
<p>result = URL_CHARS[rem] + result</p>
<p>Generates a reverse result&#8230;</p>
<p>Shouldn&#8217;t it be:</p>
<p>result = result + URL_CHARS[rem] </p>
<p>And get &#8220;_Hs7&#8243; as the result?</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahmet BÜTÜN</title>
		<link>http://blog.kischuk.com/2008/06/23/create-tinyurl-like-urls-in-ruby/#comment-918</link>
		<dc:creator><![CDATA[Ahmet BÜTÜN]]></dc:creator>
		<pubDate>Mon, 15 Jun 2009 22:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://rkischuk.wordpress.com/?p=208#comment-918</guid>
		<description><![CDATA[is it a perfect hash?]]></description>
		<content:encoded><![CDATA[<p>is it a perfect hash?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: harrison</title>
		<link>http://blog.kischuk.com/2008/06/23/create-tinyurl-like-urls-in-ruby/#comment-891</link>
		<dc:creator><![CDATA[harrison]]></dc:creator>
		<pubDate>Wed, 11 Feb 2009 22:05:17 +0000</pubDate>
		<guid isPermaLink="false">http://rkischuk.wordpress.com/?p=208#comment-891</guid>
		<description><![CDATA[This is nice.  How about code to go the other way around, so you don&#039;t have to store the url value in your table and can decode it on the fly?]]></description>
		<content:encoded><![CDATA[<p>This is nice.  How about code to go the other way around, so you don&#8217;t have to store the url value in your table and can decode it on the fly?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 60+ recursos para generar URLs cortas &#124; Ser Geek</title>
		<link>http://blog.kischuk.com/2008/06/23/create-tinyurl-like-urls-in-ruby/#comment-861</link>
		<dc:creator><![CDATA[60+ recursos para generar URLs cortas &#124; Ser Geek]]></dc:creator>
		<pubDate>Fri, 01 Aug 2008 20:49:49 +0000</pubDate>
		<guid isPermaLink="false">http://rkischuk.wordpress.com/?p=208#comment-861</guid>
		<description><![CDATA[[...] Create Tiny URLs in Ruby - Un post en donde se explica el método para conseguir URLs cortas con Ruby, está muy claro y bien explicado, en Inglés. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Create Tiny URLs in Ruby &#8211; Un post en donde se explica el método para conseguir URLs cortas con Ruby, está muy claro y bien explicado, en Inglés. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rkischuk</title>
		<link>http://blog.kischuk.com/2008/06/23/create-tinyurl-like-urls-in-ruby/#comment-852</link>
		<dc:creator><![CDATA[rkischuk]]></dc:creator>
		<pubDate>Tue, 29 Jul 2008 02:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://rkischuk.wordpress.com/?p=208#comment-852</guid>
		<description><![CDATA[Glad it&#039;s useful for you.  That&#039;s the whole point of sharing it. :)]]></description>
		<content:encoded><![CDATA[<p>Glad it&#8217;s useful for you.  That&#8217;s the whole point of sharing it. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeff haynie</title>
		<link>http://blog.kischuk.com/2008/06/23/create-tinyurl-like-urls-in-ruby/#comment-850</link>
		<dc:creator><![CDATA[jeff haynie]]></dc:creator>
		<pubDate>Tue, 29 Jul 2008 02:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://rkischuk.wordpress.com/?p=208#comment-850</guid>
		<description><![CDATA[this is sweet -- i have thought about something like this before ... definitely will use this]]></description>
		<content:encoded><![CDATA[<p>this is sweet &#8212; i have thought about something like this before &#8230; definitely will use this</p>
]]></content:encoded>
	</item>
</channel>
</rss>

