<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Masao Kitamura Blog</title>
	<atom:link href="http://www.masaokitamura.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.masaokitamura.com</link>
	<description>Masao Kitamura Wordpress Blog Test</description>
	<pubDate>Fri, 21 Nov 2008 04:28:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>How to fix sshfs &#8220;Connection reset by peer&#8221;</title>
		<link>http://www.masaokitamura.com/2008/11/16/linux/how-to-fix-sshfs-connection-reset-by-peer/</link>
		<comments>http://www.masaokitamura.com/2008/11/16/linux/how-to-fix-sshfs-connection-reset-by-peer/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 11:09:46 +0000</pubDate>
		<dc:creator>masao</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[SSHFS]]></category>

		<guid isPermaLink="false">http://www.masaokitamura.com/?p=62</guid>
		<description><![CDATA[Clear out the /etc/hosts.deny file on the destination server
Also, make sure these lines are uncommented in your sshd_config file on the destination server:
/etc/ssh/sshd_config:
Subsystem       sftp    /usr/libexec/openssh/sftp-server
DenyGroups nossh
]]></description>
			<content:encoded><![CDATA[<p>Clear out the /etc/hosts.deny file on the destination server</p>
<p>Also, make sure these lines are uncommented in your sshd_config file on the destination server:</p>
<blockquote><p>/etc/ssh/sshd_config:<br />
Subsystem       sftp    /usr/libexec/openssh/sftp-server<br />
DenyGroups nossh</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.masaokitamura.com/2008/11/16/linux/how-to-fix-sshfs-connection-reset-by-peer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Unlock Samsung 225BW Auto Adjustment</title>
		<link>http://www.masaokitamura.com/2008/10/27/hardware/how-to-unlock-samsung-225bw-auto-adjustment/</link>
		<comments>http://www.masaokitamura.com/2008/10/27/hardware/how-to-unlock-samsung-225bw-auto-adjustment/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 22:36:22 +0000</pubDate>
		<dc:creator>masao</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.masaokitamura.com/?p=58</guid>
		<description><![CDATA[If you get &#8220;auto adjustment locked&#8221; on your Samsung 225BW monitor, hold down your &#8220;MENU&#8221; button for 5 seconds and it will unlock.
]]></description>
			<content:encoded><![CDATA[<p>If you get &#8220;auto adjustment locked&#8221; on your Samsung 225BW monitor, hold down your &#8220;MENU&#8221; button for 5 seconds and it will unlock.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.masaokitamura.com/2008/10/27/hardware/how-to-unlock-samsung-225bw-auto-adjustment/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Write to STDERR in PHP</title>
		<link>http://www.masaokitamura.com/2008/10/26/php/how-to-write-to-stderr-in-php/</link>
		<comments>http://www.masaokitamura.com/2008/10/26/php/how-to-write-to-stderr-in-php/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 09:24:59 +0000</pubDate>
		<dc:creator>masao</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.masaokitamura.com/?p=55</guid>
		<description><![CDATA[Writing to standard error in PHP:
   fwrite(STDERR, &#8220;hello error string\n&#8221;); 
Useful for standalone PHP scripts.
]]></description>
			<content:encoded><![CDATA[<p>Writing to standard error in PHP:</p>
<blockquote><p>   fwrite(STDERR, &#8220;hello error string\n&#8221;); </p></blockquote>
<p>Useful for standalone PHP scripts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.masaokitamura.com/2008/10/26/php/how-to-write-to-stderr-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Remove All Blank Lines in VIM</title>
		<link>http://www.masaokitamura.com/2008/10/23/regular-expressions/how-to-remove-all-blank-lines-in-vim/</link>
		<comments>http://www.masaokitamura.com/2008/10/23/regular-expressions/how-to-remove-all-blank-lines-in-vim/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 14:10:44 +0000</pubDate>
		<dc:creator>masao</dc:creator>
		
		<category><![CDATA[Regular Expressions]]></category>

		<category><![CDATA[VIM]]></category>

		<guid isPermaLink="false">http://www.masaokitamura.com/?p=49</guid>
		<description><![CDATA[Regular expression to remove empty lines:
:%g/^$/d
]]></description>
			<content:encoded><![CDATA[<p>Regular expression to remove empty lines:</p>
<blockquote><p>:%g/^$/d</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.masaokitamura.com/2008/10/23/regular-expressions/how-to-remove-all-blank-lines-in-vim/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Test Disk IO Speed with a Large Temp File</title>
		<link>http://www.masaokitamura.com/2008/10/21/uncategorized/how-to-test-disk-io-speed-with-a-large-temp-file/</link>
		<comments>http://www.masaokitamura.com/2008/10/21/uncategorized/how-to-test-disk-io-speed-with-a-large-temp-file/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 21:07:53 +0000</pubDate>
		<dc:creator>masao</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.masaokitamura.com/?p=40</guid>
		<description><![CDATA[Create a 1GB temp file fast:
time dd if=/dev/zero of=FileOfZeros.txt bs=1024k count=1024
Useful for testing disk IO speed.
]]></description>
			<content:encoded><![CDATA[<p>Create a 1GB temp file fast:</p>
<blockquote><p>time dd if=/dev/zero of=FileOfZeros.txt bs=1024k count=1024</p></blockquote>
<p>Useful for testing disk IO speed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.masaokitamura.com/2008/10/21/uncategorized/how-to-test-disk-io-speed-with-a-large-temp-file/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Faster File Copy Using Tar and SSH</title>
		<link>http://www.masaokitamura.com/2008/10/02/bash/faster-file-copy-using-tar-and-ssh/</link>
		<comments>http://www.masaokitamura.com/2008/10/02/bash/faster-file-copy-using-tar-and-ssh/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 19:45:14 +0000</pubDate>
		<dc:creator>masao</dc:creator>
		
		<category><![CDATA[Bash]]></category>

		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.masaokitamura.com/?p=25</guid>
		<description><![CDATA[How to quickly copy a file or directory over SSH using tar:
tar -cf - myfile &#124; ssh target_host tar -xf -
If you want to change the target directory, use this:
tar -cf - myfile &#124; ssh target_host &#8220;cd /target_dir; tar -xf -&#8221;
]]></description>
			<content:encoded><![CDATA[<p>How to quickly copy a file or directory over SSH using tar:</p>
<blockquote><p>tar -cf - myfile | ssh target_host tar -xf -</p></blockquote>
<p>If you want to change the target directory, use this:</p>
<blockquote><p>tar -cf - myfile | ssh target_host &#8220;cd /target_dir; tar -xf -&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.masaokitamura.com/2008/10/02/bash/faster-file-copy-using-tar-and-ssh/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to SVN merge directories recursively</title>
		<link>http://www.masaokitamura.com/2008/09/25/linux/how-to-svn-merge-directories-recursively/</link>
		<comments>http://www.masaokitamura.com/2008/09/25/linux/how-to-svn-merge-directories-recursively/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 00:32:36 +0000</pubDate>
		<dc:creator>masao</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://www.masaokitamura.com/?p=20</guid>
		<description><![CDATA[The correct way to recursively merge two branches using Subversion:
svn merge target_dir@revision source_dir@revision working_dir
Notice:

working_dir is most likely the target_dir
target_dir comes before source_dir

Use this example when you&#8217;re in the working directory you&#8217;re trying to merge into:

svn merge .@head source_dir@head .

After merging, you&#8217;ll want to check that the merge succeeded:

diff -u &#8211;recursive source_dir target_dir

]]></description>
			<content:encoded><![CDATA[<p>The correct way to recursively merge two branches using Subversion:</p>
<blockquote><p>svn merge target_dir@revision source_dir@revision working_dir</p></blockquote>
<p>Notice:</p>
<ul>
<li>working_dir is most likely the target_dir</li>
<li>target_dir comes <strong>before</strong> source_dir</li>
</ul>
<div>Use this example when you&#8217;re in the working directory you&#8217;re trying to merge into:</div>
<blockquote><p>
svn merge .@head source_dir@head .
</p></blockquote>
<p>After merging, you&#8217;ll want to check that the merge succeeded:</p>
<blockquote>
<div>diff -u &#8211;recursive source_dir target_dir</div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.masaokitamura.com/2008/09/25/linux/how-to-svn-merge-directories-recursively/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Change file permissions in Subversion</title>
		<link>http://www.masaokitamura.com/2008/09/24/linux/change-file-permissions-in-subversion/</link>
		<comments>http://www.masaokitamura.com/2008/09/24/linux/change-file-permissions-in-subversion/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 17:44:32 +0000</pubDate>
		<dc:creator>masao</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://www.masaokitamura.com/?p=18</guid>
		<description><![CDATA[propset svn:executable &#8220;*&#8221; myfile.txt
]]></description>
			<content:encoded><![CDATA[<blockquote><p><span>propset svn:executable &#8220;*&#8221; myfile.txt</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.masaokitamura.com/2008/09/24/linux/change-file-permissions-in-subversion/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Use SVN merge</title>
		<link>http://www.masaokitamura.com/2008/09/10/subversion/how-to-use-svn-merge/</link>
		<comments>http://www.masaokitamura.com/2008/09/10/subversion/how-to-use-svn-merge/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 19:59:37 +0000</pubDate>
		<dc:creator>masao</dc:creator>
		
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://www.masaokitamura.com/?p=17</guid>
		<description><![CDATA[If you created a branch and want to merge your branch changes into trunk, here&#8217;s what to do:
svn merge trunk_path@head branch_path@head .
]]></description>
			<content:encoded><![CDATA[<p>If you created a branch and want to merge your branch changes into trunk, here&#8217;s what to do:</p>
<blockquote><p>svn merge trunk_path@head branch_path@head .</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.masaokitamura.com/2008/09/10/subversion/how-to-use-svn-merge/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Copying directory trees with tar pipe tar</title>
		<link>http://www.masaokitamura.com/2008/09/05/bash/copying-directory-trees-with-tar-pipe-tar/</link>
		<comments>http://www.masaokitamura.com/2008/09/05/bash/copying-directory-trees-with-tar-pipe-tar/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 23:55:16 +0000</pubDate>
		<dc:creator>masao</dc:creator>
		
		<category><![CDATA[Bash]]></category>

		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.masaokitamura.com/?p=16</guid>
		<description><![CDATA[# tar cf - source_dir &#124; ( cd target_dir &#38;&#38; tar xBf - )
]]></description>
			<content:encoded><![CDATA[<blockquote><p># tar cf - source_dir | ( cd target_dir &amp;&amp; tar xBf - )</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.masaokitamura.com/2008/09/05/bash/copying-directory-trees-with-tar-pipe-tar/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
