<?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 the Fictional Realm</title>
	<atom:link href="http://fictionalrealm.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://fictionalrealm.com</link>
	<description>Some wicked thoughts and ideas</description>
	<lastBuildDate>Wed, 01 Sep 2010 05:30:36 +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 Error: Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause by Yervand Aghababyan</title>
		<link>http://fictionalrealm.com/2010/08/error-incorrect-table-definition-there-can-be-only-one-timestamp-column-with-current_timestamp-in-default-or-on-update-clause/comment-page-1/#comment-714</link>
		<dc:creator>Yervand Aghababyan</dc:creator>
		<pubDate>Wed, 01 Sep 2010 05:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=306#comment-714</guid>
		<description>yeah, I know that to use a &quot;modify date&quot; in a table you have to write a trigger or update the date from the client application :)</description>
		<content:encoded><![CDATA[<p>yeah, I know that to use a &#8220;modify date&#8221; in a table you have to write a trigger or update the date from the client application :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error: Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause by Thibs</title>
		<link>http://fictionalrealm.com/2010/08/error-incorrect-table-definition-there-can-be-only-one-timestamp-column-with-current_timestamp-in-default-or-on-update-clause/comment-page-1/#comment-713</link>
		<dc:creator>Thibs</dc:creator>
		<pubDate>Wed, 01 Sep 2010 04:42:29 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=306#comment-713</guid>
		<description>I got a solution for your

Try with this sample table + associated trigger :

CREATE TABLE sample_table (
  id TINYINT(4) NOT NULL AUTO_INCREMENT,
  xxx VARCHAR(255) NOT NULL DEFAULT &#039;value&#039;,
  date_insert TIMESTAMP NULL DEFAULT NULL,
  date_lastupdate TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (id)
); 

CREATE TRIGGER sample_table_on_insert BEFORE INSERT
    ON sample_table
    FOR EACH ROW 
	SET NEW.date_insert = CURRENT_TIMESTAMP

You can test it with :

INSERT INTO sample_table (xxx) VALUES (&#039;test&#039;);

wait a few seconds and try 

UPDATE sample_table SET xxx=&#039;test2&#039; WHERE xxx=&#039;test&#039;

The compare the dates</description>
		<content:encoded><![CDATA[<p>I got a solution for your</p>
<p>Try with this sample table + associated trigger :</p>
<p>CREATE TABLE sample_table (<br />
  id TINYINT(4) NOT NULL AUTO_INCREMENT,<br />
  xxx VARCHAR(255) NOT NULL DEFAULT &#8216;value&#8217;,<br />
  date_insert TIMESTAMP NULL DEFAULT NULL,<br />
  date_lastupdate TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,<br />
  PRIMARY KEY (id)<br />
); </p>
<p>CREATE TRIGGER sample_table_on_insert BEFORE INSERT<br />
    ON sample_table<br />
    FOR EACH ROW<br />
	SET NEW.date_insert = CURRENT_TIMESTAMP</p>
<p>You can test it with :</p>
<p>INSERT INTO sample_table (xxx) VALUES (&#8216;test&#8217;);</p>
<p>wait a few seconds and try </p>
<p>UPDATE sample_table SET xxx=&#8217;test2&#8242; WHERE xxx=&#8217;test&#8217;</p>
<p>The compare the dates</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript UI framework comparison or Why I choose ExtJS &amp; JQuery by Gevik Babakhani</title>
		<link>http://fictionalrealm.com/2009/04/javascript-ui-framework-comparison-or-why-i-choose-extjs-jquery/comment-page-1/#comment-683</link>
		<dc:creator>Gevik Babakhani</dc:creator>
		<pubDate>Tue, 27 Jul 2010 09:26:55 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=72#comment-683</guid>
		<description>This was a very helpful article. 

As you  stated, ExtJS is perfect for back-end apps and jQuery perfect for all that is lightweight and front-end.  We use ExtJS with PHP Yii in a framework called Ext4Yii.</description>
		<content:encoded><![CDATA[<p>This was a very helpful article. </p>
<p>As you  stated, ExtJS is perfect for back-end apps and jQuery perfect for all that is lightweight and front-end.  We use ExtJS with PHP Yii in a framework called Ext4Yii.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript UI framework comparison or Why I choose ExtJS &amp; JQuery by Alex</title>
		<link>http://fictionalrealm.com/2009/04/javascript-ui-framework-comparison-or-why-i-choose-extjs-jquery/comment-page-1/#comment-671</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Thu, 08 Jul 2010 08:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=72#comment-671</guid>
		<description>Very good comparison, thanks! You might also check dhtmlx ( http://dhtmlx.com ) , it&#039;s quite a complete widgets library with good features and full docs. It&#039;s GPL licensed like ExtJS.</description>
		<content:encoded><![CDATA[<p>Very good comparison, thanks! You might also check dhtmlx ( <a href="http://dhtmlx.com" rel="nofollow">http://dhtmlx.com</a> ) , it&#8217;s quite a complete widgets library with good features and full docs. It&#8217;s GPL licensed like ExtJS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using PHP ssh2 lib to create simple SSH client with ANSI support by Yudesh</title>
		<link>http://fictionalrealm.com/2009/12/using-php-ssh2-lib-to-create-simple-ssh-client-with-ansi-support/comment-page-1/#comment-623</link>
		<dc:creator>Yudesh</dc:creator>
		<pubDate>Fri, 21 May 2010 00:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=239#comment-623</guid>
		<description>Hi CyberJoe, simply a good article. Could you write a same article using phpseclib if you have tried? 

And for the above article could you write an example script on how did you use stream_get_contents to get the server&#039;s output as what David was referring. Thank you.</description>
		<content:encoded><![CDATA[<p>Hi CyberJoe, simply a good article. Could you write a same article using phpseclib if you have tried? </p>
<p>And for the above article could you write an example script on how did you use stream_get_contents to get the server&#8217;s output as what David was referring. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using PHP ssh2 lib to create simple SSH client with ANSI support by CyberJoe</title>
		<link>http://fictionalrealm.com/2009/12/using-php-ssh2-lib-to-create-simple-ssh-client-with-ansi-support/comment-page-1/#comment-424</link>
		<dc:creator>CyberJoe</dc:creator>
		<pubDate>Fri, 26 Feb 2010 01:53:29 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=239#comment-424</guid>
		<description>Hi David,  by saying loop I meant to put your  stream_get_contents part in while loop, with sleep 1 second. (that&#039;s how I did that) and that&#039;s probably the only way, you can&#039;t put handler on this, and clearly php is not the best language to do this kind of operation, but if you stuck with php it&#039;s the only way. Surely that loop can be done in some thread or something, so you can do other operations while you wait for output to come.</description>
		<content:encoded><![CDATA[<p>Hi David,  by saying loop I meant to put your  stream_get_contents part in while loop, with sleep 1 second. (that&#8217;s how I did that) and that&#8217;s probably the only way, you can&#8217;t put handler on this, and clearly php is not the best language to do this kind of operation, but if you stuck with php it&#8217;s the only way. Surely that loop can be done in some thread or something, so you can do other operations while you wait for output to come.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using PHP ssh2 lib to create simple SSH client with ANSI support by David Pascal</title>
		<link>http://fictionalrealm.com/2009/12/using-php-ssh2-lib-to-create-simple-ssh-client-with-ansi-support/comment-page-1/#comment-422</link>
		<dc:creator>David Pascal</dc:creator>
		<pubDate>Thu, 25 Feb 2010 11:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=239#comment-422</guid>
		<description>Nifty little article, I wonder if you could expand a bit on the thing you mention about &quot;server output will not appear immediately,  you need to wait for it (do a loop)&quot;.

I&#039;m struggling with how exactly to loop. In fact I can only get things working by doing a sleep(3) or what-have-you, clearly not somehting I want to keep.

:-/</description>
		<content:encoded><![CDATA[<p>Nifty little article, I wonder if you could expand a bit on the thing you mention about &#8220;server output will not appear immediately,  you need to wait for it (do a loop)&#8221;.</p>
<p>I&#8217;m struggling with how exactly to loop. In fact I can only get things working by doing a sleep(3) or what-have-you, clearly not somehting I want to keep.</p>
<p>:-/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery inline form validation, custom positioning patch by klierik</title>
		<link>http://fictionalrealm.com/2009/12/a-jquery-inline-form-validation-custom-positioning-patch/comment-page-1/#comment-417</link>
		<dc:creator>klierik</dc:creator>
		<pubDate>Tue, 23 Feb 2010 09:29:49 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=190#comment-417</guid>
		<description>thanks a lot.
good luck ;)</description>
		<content:encoded><![CDATA[<p>thanks a lot.<br />
good luck ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery inline form validation, custom positioning patch by Yervand Aghababyan</title>
		<link>http://fictionalrealm.com/2009/12/a-jquery-inline-form-validation-custom-positioning-patch/comment-page-1/#comment-416</link>
		<dc:creator>Yervand Aghababyan</dc:creator>
		<pubDate>Tue, 23 Feb 2010 09:25:33 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=190#comment-416</guid>
		<description>&lt;a href=&quot;#comment-415&quot; rel=&quot;nofollow&quot;&gt;@klierik &lt;/a&gt; 
try using this http://recaptcha.net/ it&#039;s one of the most popular captcha generators for php.</description>
		<content:encoded><![CDATA[<p><a href="#comment-415" rel="nofollow">@klierik </a><br />
try using this <a href="http://recaptcha.net/" rel="nofollow">http://recaptcha.net/</a> it&#8217;s one of the most popular captcha generators for php.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery inline form validation, custom positioning patch by klierik</title>
		<link>http://fictionalrealm.com/2009/12/a-jquery-inline-form-validation-custom-positioning-patch/comment-page-1/#comment-415</link>
		<dc:creator>klierik</dc:creator>
		<pubDate>Tue, 23 Feb 2010 09:23:11 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=190#comment-415</guid>
		<description>oh, all se now...
sorry, my english not so well (((

Yervand, can u tell me how a can add captcha to form, witch used ValidationEngine for validation? Maybe solution or example or something else...</description>
		<content:encoded><![CDATA[<p>oh, all se now&#8230;<br />
sorry, my english not so well (((</p>
<p>Yervand, can u tell me how a can add captcha to form, witch used ValidationEngine for validation? Maybe solution or example or something else&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery inline form validation, custom positioning patch by Yervand Aghababyan</title>
		<link>http://fictionalrealm.com/2009/12/a-jquery-inline-form-validation-custom-positioning-patch/comment-page-1/#comment-414</link>
		<dc:creator>Yervand Aghababyan</dc:creator>
		<pubDate>Tue, 23 Feb 2010 09:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=190#comment-414</guid>
		<description>&lt;a href=&quot;#comment-413&quot; rel=&quot;nofollow&quot;&gt;@klierik &lt;/a&gt; 
have you read the article at least? :) it&#039;s not for generating captcha images . . . . it&#039;s for custom positioning error boxes</description>
		<content:encoded><![CDATA[<p><a href="#comment-413" rel="nofollow">@klierik </a><br />
have you read the article at least? :) it&#8217;s not for generating captcha images . . . . it&#8217;s for custom positioning error boxes</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery inline form validation, custom positioning patch by klierik</title>
		<link>http://fictionalrealm.com/2009/12/a-jquery-inline-form-validation-custom-positioning-patch/comment-page-1/#comment-413</link>
		<dc:creator>klierik</dc:creator>
		<pubDate>Tue, 23 Feb 2010 09:16:50 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=190#comment-413</guid>
		<description>a&#039;ll download it, add  with ID to form... and what next? what i need to do - to see the captcha-image?</description>
		<content:encoded><![CDATA[<p>a&#8217;ll download it, add  with ID to form&#8230; and what next? what i need to do &#8211; to see the captcha-image?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery inline form validation, custom positioning patch by Yervand Aghababyan</title>
		<link>http://fictionalrealm.com/2009/12/a-jquery-inline-form-validation-custom-positioning-patch/comment-page-1/#comment-412</link>
		<dc:creator>Yervand Aghababyan</dc:creator>
		<pubDate>Tue, 23 Feb 2010 09:14:47 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=190#comment-412</guid>
		<description>please read my comment above :) you just need to replace jquery.validationEngine.js(the one in your distribution) with jquery.validationEngine.modified.js(download it from here)

that&#039;s if you&#039;re using jqueryValidationEngine version 1.6.2</description>
		<content:encoded><![CDATA[<p>please read my comment above :) you just need to replace jquery.validationEngine.js(the one in your distribution) with jquery.validationEngine.modified.js(download it from here)</p>
<p>that&#8217;s if you&#8217;re using jqueryValidationEngine version 1.6.2</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery inline form validation, custom positioning patch by klierik</title>
		<link>http://fictionalrealm.com/2009/12/a-jquery-inline-form-validation-custom-positioning-patch/comment-page-1/#comment-410</link>
		<dc:creator>klierik</dc:creator>
		<pubDate>Tue, 23 Feb 2010 09:11:07 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=190#comment-410</guid>
		<description>hi there.
can u tell me please, how use this patch?</description>
		<content:encoded><![CDATA[<p>hi there.<br />
can u tell me please, how use this patch?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript UI framework comparison or Why I choose ExtJS &amp; JQuery by Yervand Aghababyan</title>
		<link>http://fictionalrealm.com/2009/04/javascript-ui-framework-comparison-or-why-i-choose-extjs-jquery/comment-page-1/#comment-375</link>
		<dc:creator>Yervand Aghababyan</dc:creator>
		<pubDate>Mon, 15 Feb 2010 09:36:11 +0000</pubDate>
		<guid isPermaLink="false">http://fictionalrealm.com/?p=72#comment-375</guid>
		<description>Thanks a lot :) Your comments are also really appreciated :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot :) Your comments are also really appreciated :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
