<?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: When unique isn&#8217;t really unique</title>
	<atom:link href="http://blog.timakinbo.com/2009/11/24/when-unique-isnt-really-unique/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.timakinbo.com/2009/11/24/when-unique-isnt-really-unique/</link>
	<description>the web, mobile technology and location based services as I see it</description>
	<lastBuildDate>Tue, 20 Jul 2010 14:24:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Ahmad Mukoshy</title>
		<link>http://blog.timakinbo.com/2009/11/24/when-unique-isnt-really-unique/comment-page-1/#comment-183</link>
		<dc:creator>Ahmad Mukoshy</dc:creator>
		<pubDate>Mon, 08 Feb 2010 01:34:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timakinbo.com/?p=74#comment-183</guid>
		<description>I&#039;ve been using uniqid() for months now ;) #Lolz . I came across it on the php docs web site after hustling with my rand() md5 hash. 
 
Cool stuv... I like this. </description>
		<content:encoded><![CDATA[<p>I&#039;ve been using uniqid() for months now <img src='http://blog.timakinbo.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  #Lolz . I came across it on the php docs web site after hustling with my rand() md5 hash. </p>
<p>Cool stuv&#8230; I like this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://blog.timakinbo.com/2009/11/24/when-unique-isnt-really-unique/comment-page-1/#comment-139</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 18 Dec 2009 00:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timakinbo.com/?p=74#comment-139</guid>
		<description>No particular reason actually. Except you intend to store a very large data set, MD5 should do just about well. SHA-1 on the other hand reduces the probability of a collision further but will take more storage space. </description>
		<content:encoded><![CDATA[<p>No particular reason actually. Except you intend to store a very large data set, MD5 should do just about well. SHA-1 on the other hand reduces the probability of a collision further but will take more storage space.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://blog.timakinbo.com/2009/11/24/when-unique-isnt-really-unique/comment-page-1/#comment-138</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Thu, 17 Dec 2009 23:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timakinbo.com/?p=74#comment-138</guid>
		<description>As long as your unique identifier generator produces values that have a nearly zero probability of collisions, it really doesn&#039;t matter how you go about it so I&#039;m happy with whatever works. May be you could show us some code :) 
 
Looks like your first time here too. Welcome to my blog. </description>
		<content:encoded><![CDATA[<p>As long as your unique identifier generator produces values that have a nearly zero probability of collisions, it really doesn&#039;t matter how you go about it so I&#039;m happy with whatever works. May be you could show us some code <img src='http://blog.timakinbo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Looks like your first time here too. Welcome to my blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: austin_web_developer</title>
		<link>http://blog.timakinbo.com/2009/11/24/when-unique-isnt-really-unique/comment-page-1/#comment-136</link>
		<dc:creator>austin_web_developer</dc:creator>
		<pubDate>Thu, 17 Dec 2009 08:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timakinbo.com/?p=74#comment-136</guid>
		<description>Any particular reason you didn&#039;t use a sha-1 hash? </description>
		<content:encoded><![CDATA[<p>Any particular reason you didn&#039;t use a sha-1 hash?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: @digitalcraft</title>
		<link>http://blog.timakinbo.com/2009/11/24/when-unique-isnt-really-unique/comment-page-1/#comment-131</link>
		<dc:creator>@digitalcraft</dc:creator>
		<pubDate>Mon, 14 Dec 2009 19:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timakinbo.com/?p=74#comment-131</guid>
		<description> Cool, 
and Funny I&#039;m only coming across that function, uinqid, for the first time 
 
When I had to do unique in the past especially on ecommerce payment gateway&#039;s transaction reference (like interswitch) or user account activation process, I made use of the a combination of the time (UNIX TIME) and the user&#039;s IP to generate a dynamic unique number suffix which I then attached to another hard coded static unique number prefix...  
 
I figured that the unix time and the user&#039;s IP and the application static reference will always return a unique combination...crazy eh, but so far it works. 
 
I&#039;ll not claim is error proof as such I think the way to go (and lazy way at that) is uiqid, Thanks 
 </description>
		<content:encoded><![CDATA[<p>Cool,<br />
and Funny I&#039;m only coming across that function, uinqid, for the first time </p>
<p>When I had to do unique in the past especially on ecommerce payment gateway&#039;s transaction reference (like interswitch) or user account activation process, I made use of the a combination of the time (UNIX TIME) and the user&#039;s IP to generate a dynamic unique number suffix which I then attached to another hard coded static unique number prefix&#8230;  </p>
<p>I figured that the unix time and the user&#039;s IP and the application static reference will always return a unique combination&#8230;crazy eh, but so far it works. </p>
<p>I&#039;ll not claim is error proof as such I think the way to go (and lazy way at that) is uiqid, Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
