<?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 Thoughts, Codes and Games</title>
	<atom:link href="http://christiank.org/wp/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://christiank.org/wp</link>
	<description>Blog of Christian Kirkegaard</description>
	<lastBuildDate>Sun, 28 Aug 2011 17:11:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19704</generator>
	<item>
		<title>Comment on Pipe a gzipped mysql dump over ssh by Kyle Jones</title>
		<link>http://christiank.org/wp/2010/12/pipe-a-gzipped-mysql-dump-over-ssh/comment-page-1/#comment-1588</link>
		<dc:creator>Kyle Jones</dc:creator>
		<pubDate>Sun, 28 Aug 2011 17:11:18 +0000</pubDate>
		<guid isPermaLink="false">http://christiank.org/wp/?p=616#comment-1588</guid>
		<description>&lt;p&gt;I needed something similar, I wouldn&#039;t consider this good practice, but it sure is handy: mysqldump --opt --add-drop-table -Q -u localuser --password=localpassword localdatabase &#124;gzip -c &#124;ssh remoteuser@remoteserver &#039;gunzip -c &#124; mysql -u remoteuser --password=remotepassword remotedatabase&#039;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I needed something similar, I wouldn&#8217;t consider this good practice, but it sure is handy: mysqldump &#8211;opt &#8211;add-drop-table -Q -u localuser &#8211;password=localpassword localdatabase |gzip -c |ssh remoteuser@remoteserver &#8216;gunzip -c | mysql -u remoteuser &#8211;password=remotepassword remotedatabase&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Gameboy tattoo by Tattoo Tuesday- Consoles, Controllers and Buttons Oh My! &#124; Girl Gone Geek</title>
		<link>http://christiank.org/wp/2010/05/gameboy-tattoo/comment-page-1/#comment-1580</link>
		<dc:creator>Tattoo Tuesday- Consoles, Controllers and Buttons Oh My! &#124; Girl Gone Geek</dc:creator>
		<pubDate>Sun, 21 Aug 2011 17:46:54 +0000</pubDate>
		<guid isPermaLink="false">http://christiank.org/wp/?p=501#comment-1580</guid>
		<description>[...]  Christian Kirkegaard Gameboy ink Made by Amina at Brightside Tattoo [Source: christiank.org] [...]
</description>
		<content:encoded><![CDATA[<p>[...]  Christian Kirkegaard Gameboy ink Made by Amina at Brightside Tattoo [Source: christiank.org] [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vim + Ack = WIN by mazhar iqbal kalyar</title>
		<link>http://christiank.org/wp/2011/01/vim-ack-win/comment-page-1/#comment-1578</link>
		<dc:creator>mazhar iqbal kalyar</dc:creator>
		<pubDate>Sun, 21 Aug 2011 06:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://christiank.org/wp/?p=627#comment-1578</guid>
		<description>i will play this game
</description>
		<content:encoded><![CDATA[<p>i will play this game</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The one single reason to get an ipad by La aplicación de iOS de The Hitchhiker&#8217;s Guide to the Galaxy será lanzada en los próximos meses &#8212; AppleWeblog</title>
		<link>http://christiank.org/wp/2010/04/the-one-single-reason-to-get-an-ipad/comment-page-1/#comment-1574</link>
		<dc:creator>La aplicación de iOS de The Hitchhiker&#8217;s Guide to the Galaxy será lanzada en los próximos meses &#8212; AppleWeblog</dc:creator>
		<pubDate>Fri, 12 Aug 2011 17:39:45 +0000</pubDate>
		<guid isPermaLink="false">http://christiank.org/wp/?p=465#comment-1574</guid>
		<description>[...] Imagen vía Thoughts, Codes and Games. [...]
</description>
		<content:encoded><![CDATA[<p>[...] Imagen vía Thoughts, Codes and Games. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Gameboy tattoo by Tattoo Tuesday- Consoles, Controllers and Buttons Oh My! &#171; Girl Gone Geek&#039;s Blog</title>
		<link>http://christiank.org/wp/2010/05/gameboy-tattoo/comment-page-1/#comment-1524</link>
		<dc:creator>Tattoo Tuesday- Consoles, Controllers and Buttons Oh My! &#171; Girl Gone Geek&#039;s Blog</dc:creator>
		<pubDate>Tue, 07 Jun 2011 13:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://christiank.org/wp/?p=501#comment-1524</guid>
		<description>[...]  Christian Kirkegaard Gameboy ink Made by Amina at Brightside Tattoo [Source: christiank.org] [...]
</description>
		<content:encoded><![CDATA[<p>[...]  Christian Kirkegaard Gameboy ink Made by Amina at Brightside Tattoo [Source: christiank.org] [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pipe a gzipped mysql dump over ssh by iforce2d</title>
		<link>http://christiank.org/wp/2010/12/pipe-a-gzipped-mysql-dump-over-ssh/comment-page-1/#comment-1521</link>
		<dc:creator>iforce2d</dc:creator>
		<pubDate>Fri, 27 May 2011 06:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://christiank.org/wp/?p=616#comment-1521</guid>
		<description>Nice. You can also use ssh to copy data from master to slave to prepare for replication, by running something like this on the slave:

ssh user@masterhost &quot;mysqldump yourdbname&quot; &gt; mysql
</description>
		<content:encoded><![CDATA[<p>Nice. You can also use ssh to copy data from master to slave to prepare for replication, by running something like this on the slave:</p>
<p>ssh user@masterhost &#8220;mysqldump yourdbname&#8221; &gt; mysql</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Password confirmation using Zend Form and Validators by PHP Consultant</title>
		<link>http://christiank.org/wp/2010/04/password-confirmation-using-zend-form-and-validators/comment-page-1/#comment-1494</link>
		<dc:creator>PHP Consultant</dc:creator>
		<pubDate>Thu, 14 Apr 2011 14:31:11 +0000</pubDate>
		<guid isPermaLink="false">http://christiank.org/wp/?p=448#comment-1494</guid>
		<description>Nice way, but there is an already existing validator called Zend&lt;em&gt;Validate&lt;/em&gt;Identical

Zend&lt;em&gt;Validate&lt;/em&gt;Identical supports also the comparison of form elements. This can be done by using the element&#039;s name as token. See the following example:

&lt;code&gt;$form-&gt;addElement(&#039;password&#039;, &#039;elementOne&#039;);
$form-&gt;addElement(&#039;password&#039;, &#039;elementTwo&#039;, array(
    &#039;validators&#039; =&gt; array(
        array(&#039;identical&#039;, false, array(&#039;token&#039; =&gt; &#039;elementOne&#039;))
    )
));
&lt;/code&gt;

&quot;
</description>
		<content:encoded><![CDATA[<p>Nice way, but there is an already existing validator called Zend<em>Validate</em>Identical</p>
<p>Zend<em>Validate</em>Identical supports also the comparison of form elements. This can be done by using the element&#8217;s name as token. See the following example:</p>
<p><code>$form-&gt;addElement('password', 'elementOne');<br />
$form-&gt;addElement('password', 'elementTwo', array(<br />
    'validators' =&gt; array(<br />
        array('identical', false, array('token' =&gt; 'elementOne'))<br />
    )<br />
));<br />
</code></p>
<p>&#8220;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mysql, Homebrew and launchctl by Christian Kirkegaard</title>
		<link>http://christiank.org/wp/2010/11/mysql-homebrew-and-launchctl/comment-page-1/#comment-990</link>
		<dc:creator>Christian Kirkegaard</dc:creator>
		<pubDate>Sun, 12 Dec 2010 20:22:24 +0000</pubDate>
		<guid isPermaLink="false">http://christiank.org/wp/?p=594#comment-990</guid>
		<description>&lt;p&gt;It&#039;ll take about 30 seconds to run the command as it takes some time to shutdown mysqld. Try leaving it and see if it comes back.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>It&#8217;ll take about 30 seconds to run the command as it takes some time to shutdown mysqld. Try leaving it and see if it comes back.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mysql, Homebrew and launchctl by Dale</title>
		<link>http://christiank.org/wp/2010/11/mysql-homebrew-and-launchctl/comment-page-1/#comment-989</link>
		<dc:creator>Dale</dc:creator>
		<pubDate>Sun, 12 Dec 2010 05:33:28 +0000</pubDate>
		<guid isPermaLink="false">http://christiank.org/wp/?p=594#comment-989</guid>
		<description>&lt;p&gt;when I run launchctl unload ~/Library/LaunchAgents/com.mysql.mysqld.plist I amnot returned to the shell prompt it takes a ctrl-c Thats not normal right..  I have never used this command before so I don&#039;t know...  any advice  Thanks&lt;/p&gt;

&lt;p&gt;-dale&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>when I run launchctl unload ~/Library/LaunchAgents/com.mysql.mysqld.plist I amnot returned to the shell prompt it takes a ctrl-c Thats not normal right..  I have never used this command before so I don&#8217;t know&#8230;  any advice  Thanks</p>
<p>-dale</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Snow Plugin by Japa</title>
		<link>http://christiank.org/wp/2009/12/jquery-snow-plugin/comment-page-1/#comment-985</link>
		<dc:creator>Japa</dc:creator>
		<pubDate>Thu, 09 Dec 2010 15:10:58 +0000</pubDate>
		<guid isPermaLink="false">http://christiank.org/wp/?p=271#comment-985</guid>
		<description>E como se usa esta trapizomba???
</description>
		<content:encoded><![CDATA[<p>E como se usa esta trapizomba???</p>
]]></content:encoded>
	</item>
</channel>
</rss>

