<?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 for Re:morse.nl</title>
	<atom:link href="http://remorse.nl/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://remorse.nl</link>
	<description>All things digital</description>
	<lastBuildDate>Thu, 19 Aug 2010 22:08:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Kohana auth module a better one? download here! by hung nguyen</title>
		<link>http://remorse.nl/2009/02/kohana_auth_module_a_better_one/comment-page-1/#comment-20280</link>
		<dc:creator>hung nguyen</dc:creator>
		<pubDate>Thu, 19 Aug 2010 22:08:31 +0000</pubDate>
		<guid isPermaLink="false">http://remorse.nl/weblog/kohana_auth_module_a_better_one/#comment-20280</guid>
		<description>Can you show the code example with your modules?
Thanks</description>
		<content:encoded><![CDATA[<p>Can you show the code example with your modules?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kohana auth module a better one? download here! by Anand</title>
		<link>http://remorse.nl/2009/02/kohana_auth_module_a_better_one/comment-page-1/#comment-20102</link>
		<dc:creator>Anand</dc:creator>
		<pubDate>Thu, 12 Aug 2010 06:09:59 +0000</pubDate>
		<guid isPermaLink="false">http://remorse.nl/weblog/kohana_auth_module_a_better_one/#comment-20102</guid>
		<description>Hi , 

Thanks you very much for this tutorial .

I followed the instruction given in this page .

But when i try to run http://localhost/kohana/index.php/index

its giving me error like :- 

Kohana_PHP_Exception [ Runtime Message ]:  Uninitialized string offset: 2

DOCROOT/system\libraries\Database_Builder.php[ 656 ] 


please let me know , how to resolve this .

you can drop a mail to me on my Gmail account :- anandshahil11@gmail.com

thanks,
Anand</description>
		<content:encoded><![CDATA[<p>Hi , </p>
<p>Thanks you very much for this tutorial .</p>
<p>I followed the instruction given in this page .</p>
<p>But when i try to run <a href="http://localhost/kohana/index.php/index" rel="nofollow">http://localhost/kohana/index.php/index</a></p>
<p>its giving me error like :- </p>
<p>Kohana_PHP_Exception [ Runtime Message ]:  Uninitialized string offset: 2</p>
<p>DOCROOT/system\libraries\Database_Builder.php[ 656 ] </p>
<p>please let me know , how to resolve this .</p>
<p>you can drop a mail to me on my Gmail account :- <a href="mailto:anandshahil11@gmail.com">anandshahil11@gmail.com</a></p>
<p>thanks,<br />
Anand</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kohana auth module a better one? download here! by Martijn van de Sande</title>
		<link>http://remorse.nl/2009/02/kohana_auth_module_a_better_one/comment-page-1/#comment-13427</link>
		<dc:creator>Martijn van de Sande</dc:creator>
		<pubDate>Thu, 05 Nov 2009 23:19:38 +0000</pubDate>
		<guid isPermaLink="false">http://remorse.nl/weblog/kohana_auth_module_a_better_one/#comment-13427</guid>
		<description>Thank you very much. I will change it in the example asap!

And i will come with a new version very soon.</description>
		<content:encoded><![CDATA[<p>Thank you very much. I will change it in the example asap!</p>
<p>And i will come with a new version very soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kohana php framework auth module working example by Martijn van de Sande</title>
		<link>http://remorse.nl/2008/10/kohana_auth_module_working_example/comment-page-1/#comment-13426</link>
		<dc:creator>Martijn van de Sande</dc:creator>
		<pubDate>Thu, 05 Nov 2009 23:17:20 +0000</pubDate>
		<guid isPermaLink="false">http://remorse.nl/weblog/kohana_auth_module_working_example/#comment-13426</guid>
		<description>Yeah the admin is changing the layout..
Please search the website for it...</description>
		<content:encoded><![CDATA[<p>Yeah the admin is changing the layout..<br />
Please search the website for it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kohana auth module a better one? download here! by Ron</title>
		<link>http://remorse.nl/2009/02/kohana_auth_module_a_better_one/comment-page-1/#comment-12764</link>
		<dc:creator>Ron</dc:creator>
		<pubDate>Fri, 09 Oct 2009 15:48:56 +0000</pubDate>
		<guid isPermaLink="false">http://remorse.nl/weblog/kohana_auth_module_a_better_one/#comment-12764</guid>
		<description>Seems like I found a bug on line 214 from the library Auth.php in the has_role function:  $db-&gt;where(array(&#039;auth_roles_users.user_id =&#039; =&gt; $db-&gt;escape($_SESSION[&#039;auth_user&#039;])));  It is missing the parameter for $givenrole.  I changed the above line by doing this:
 $db-&gt;where(array(&#039;auth_roles_users.user_id =&#039; =&gt; $db-&gt;escape($_S
ESSION[&#039;auth_user&#039;]), &#039;auth_roles.name&#039; =&gt; $givenrole));</description>
		<content:encoded><![CDATA[<p>Seems like I found a bug on line 214 from the library Auth.php in the has_role function:  $db-&gt;where(array(&#8216;auth_roles_users.user_id =&#8217; =&gt; $db-&gt;escape($_SESSION['auth_user'])));  It is missing the parameter for $givenrole.  I changed the above line by doing this:<br />
 $db-&gt;where(array(&#8216;auth_roles_users.user_id =&#8217; =&gt; $db-&gt;escape($_S<br />
ESSION['auth_user']), &#8216;auth_roles.name&#8217; =&gt; $givenrole));</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with the Zend Framework by xor</title>
		<link>http://remorse.nl/2007/09/getting_started_with_the_zend_framework/comment-page-1/#comment-12747</link>
		<dc:creator>xor</dc:creator>
		<pubDate>Thu, 08 Oct 2009 15:43:56 +0000</pubDate>
		<guid isPermaLink="false">http://remorse.nl/weblog/getting_started_with_the_zend_framework/#comment-12747</guid>
		<description>A closing ?&gt; really isn&#039;t necessary</description>
		<content:encoded><![CDATA[<p>A closing ?&gt; really isn&#8217;t necessary</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Download youtube video&#8217;s: build your own video grabber/downloader in php with curl by xor</title>
		<link>http://remorse.nl/2008/11/download_youtube_videos_build_youre_own_video_grabberdownloader_in_php_with_curl/comment-page-1/#comment-12746</link>
		<dc:creator>xor</dc:creator>
		<pubDate>Thu, 08 Oct 2009 15:42:20 +0000</pubDate>
		<guid isPermaLink="false">http://remorse.nl/weblog/download_youtube_videos_build_youre_own_video_grabberdownloader_in_php_with_curl/#comment-12746</guid>
		<description>An easy way to save youtube vids is to prepend &#039;pwn&#039; to &#039;youtube.com&#039; e.g. http://www.pwnyoutube.com/watch?v=22bS3WLWPpE

From there you can save the flv and an mp4.</description>
		<content:encoded><![CDATA[<p>An easy way to save youtube vids is to prepend &#8216;pwn&#8217; to &#8216;youtube.com&#8217; e.g. <a href="http://www.pwnyoutube.com/watch?v=22bS3WLWPpE" rel="nofollow">http://www.pwnyoutube.com/watch?v=22bS3WLWPpE</a></p>
<p>From there you can save the flv and an mp4.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kohana php framework auth module working example by Matt</title>
		<link>http://remorse.nl/2008/10/kohana_auth_module_working_example/comment-page-1/#comment-12576</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Fri, 25 Sep 2009 13:40:52 +0000</pubDate>
		<guid isPermaLink="false">http://remorse.nl/weblog/kohana_auth_module_working_example/#comment-12576</guid>
		<description>The link of your second version is dead ?</description>
		<content:encoded><![CDATA[<p>The link of your second version is dead ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Force a restore of an iPod Touch by Nickk</title>
		<link>http://remorse.nl/2007/10/force_a_restore_of_an_ipod_touch/comment-page-1/#comment-12491</link>
		<dc:creator>Nickk</dc:creator>
		<pubDate>Tue, 01 Sep 2009 09:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://remorse.nl/weblog/force_restore_of_an_ipod_touch/#comment-12491</guid>
		<description>This didnt worrk at all, when the progress bar works it way up to the end, it stops and doesnt restoree,,,     wth is going onnn Hellp Pleease. 
 
  Answer on = Em0wnage@hotmail.com</description>
		<content:encoded><![CDATA[<p>This didnt worrk at all, when the progress bar works it way up to the end, it stops and doesnt restoree,,,     wth is going onnn Hellp Pleease. </p>
<p>  Answer on = <a href="mailto:Em0wnage@hotmail.com">Em0wnage@hotmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mouse coordinates (absolute position) with prototype by Marcus</title>
		<link>http://remorse.nl/2008/06/mouse_coordinates_with_prototype/comment-page-1/#comment-12412</link>
		<dc:creator>Marcus</dc:creator>
		<pubDate>Thu, 27 Aug 2009 17:49:17 +0000</pubDate>
		<guid isPermaLink="false">http://remorse.nl/weblog/mouse_coordinates_with_prototype/#comment-12412</guid>
		<description>Is it possible to get the mouse coords just inside of a specific area?</description>
		<content:encoded><![CDATA[<p>Is it possible to get the mouse coords just inside of a specific area?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
