<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>tomiryu.com</title>
	<atom:link href="http://www-en.tomiryu.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www-en.tomiryu.com</link>
	<description>If you always do what you have always done.</description>
	<lastBuildDate>Thu, 05 Jun 2014 12:45:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>how to set environment variables in linux</title>
		<link>https://www-en.tomiryu.com/others/how-to-set-environment-variables-in-linux/</link>
		<comments>https://www-en.tomiryu.com/others/how-to-set-environment-variables-in-linux/#comments</comments>
		<pubDate>Thu, 05 Jun 2014 12:45:55 +0000</pubDate>
		<dc:creator>tomiryu</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">https://www-en.tomiryu.com/?p=98</guid>
		<description><![CDATA[Let me write down how to set environment variables in linux shell. Bash - set  them in .bashrc file - SYNTAX: export VARIABLE=value - ex)  export LANG=ja_JP.UTF-8 Csh - set them in .cshrc file - SYNTAX: setenv VARIABLE value - &#8230; <a href="https://www-en.tomiryu.com/others/how-to-set-environment-variables-in-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Let me write down how to set environment variables in linux shell.</p>
<p><span id="more-98"></span></p>
<p>Bash<br />
- set  them in .bashrc file<br />
- SYNTAX: export VARIABLE=value<br />
- ex)  export LANG=ja_JP.UTF-8</p>
<p>Csh<br />
- set them in .cshrc file<br />
- SYNTAX: setenv VARIABLE value<br />
- ex) setenv LANG ja_JP.UTF-8</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www-en.tomiryu.com/others/how-to-set-environment-variables-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sample SQL &#8211; Columns Information</title>
		<link>https://www-en.tomiryu.com/database/sample-sql-columns-information/</link>
		<comments>https://www-en.tomiryu.com/database/sample-sql-columns-information/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 07:45:39 +0000</pubDate>
		<dc:creator>tomiryu</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">https://www-en.tomiryu.com/?p=87</guid>
		<description><![CDATA[Here is a sample of SQL that queries table column&#8217;s information. Please change the part of &#60;table_name&#62; into the actual table name. In the case of MY_SQL select c.table_name,c.column_name , c.is_nullable, column_type from information_schema.columns c where table_name='&#60;table_name&#62;' order by ordinal_position &#8230; <a href="https://www-en.tomiryu.com/database/sample-sql-columns-information/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is a sample of SQL that queries table column&#8217;s information.<br />
Please change the part of &lt;table_name&gt; into the actual table name.<span id="more-87"></span></p>
<p><strong>In the case of MY_SQL</strong></p>
<pre>select c.table_name,c.column_name , c.is_nullable, column_type
from information_schema.columns c
where table_name='&lt;table_name&gt;' order by ordinal_position
</pre>
<p><strong>In the case of Postgresql</strong></p>
<pre>SELECT  relname,attname,typname,case typname
                when 'timestamp' then 14
                when 'numeric' then (atttypmod - 4) / 65536
                else atttypmod-4
                end as len
                ,case attnotnull
                when 't' then 'not null'
                else '' end as attnotnull
          FROM    pg_class,pg_attribute,pg_type
          WHERE   relkind     ='r'
          AND relname     ='&lt;table_name&gt;'
          AND pg_class.oid = pg_attribute.attrelid
          AND attnum      &gt; 0
          AND pg_type.oid = atttypid
          order by attnum
</pre>
]]></content:encoded>
			<wfw:commentRss>https://www-en.tomiryu.com/database/sample-sql-columns-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to copy and paste on Facebook with an iPhone</title>
		<link>https://www-en.tomiryu.com/web/how-to-copy-and-paste-on-facebook-with-an-iphone/</link>
		<comments>https://www-en.tomiryu.com/web/how-to-copy-and-paste-on-facebook-with-an-iphone/#comments</comments>
		<pubDate>Wed, 04 May 2011 07:48:06 +0000</pubDate>
		<dc:creator>tomiryu</dc:creator>
				<category><![CDATA[WEB]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[smartphone]]></category>

		<guid isPermaLink="false">https://www-en.tomiryu.com/?p=77</guid>
		<description><![CDATA[&#8220;How do I copy &#38; paste on Facebook with an iPhone?&#8221; Many users are asking, and someone answered it by commenting Don't use the iPhone app. You'll have to use Facebook in Safari. Sucks I know, but it's just one &#8230; <a href="https://www-en.tomiryu.com/web/how-to-copy-and-paste-on-facebook-with-an-iphone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&#8220;How do I copy &amp; paste on Facebook with an iPhone?&#8221;<br />
Many users are asking, and someone answered it by commenting</p>
<pre>Don't use the iPhone app. You'll have to use Facebook in Safari.
Sucks I know, but it's just one of the flaws of the app.</pre>
<p>Yes, this is.<br />
However can you resolve the problem?<br />
Maybe, maybe not!</p>
<p><span id="more-77"></span>In my case, when I typed &#8220;https://www.facebook.com/&#8221; as URL, it redirected to &#8220;https://m.facebook.com/&#8221;, which means the site automatically redirects to the Mobile View.</p>
<p>On Facebook, copy&amp;paste is not available in Mobile View in Safari but it is in PC View(Full Browser).</p>
<p>So, my solution to copy and paste on Facebook with an iPhone is as below.</p>
<div style="background-color: #eeeeee; padding: 1em;">- Don&#8217;t use the iPhone app. Use Facebook in Safari.  ( As many people suggested.)</div>
<div style="background-color: #eeeeee; padding: 1em;">- When your access Facebook and it redirects to the Mobile View, type<br />
&#8220;https://www.facebook.com/home.php&#8221; as URL.<br />
It keeps PC View without redirecting to Mobile View. ( Bookmark this URL. )</div>
<div style="background-color: #eeeeee; padding: 1em;">- So now you can copy&amp;paste in Facebook in Safari.</div>
<p>* Please note that when you use the PC View, it allows more traffic than the Mobile View, therefore I recommend that you use this solution only when you need to copy and paste.</p>
]]></content:encoded>
			<wfw:commentRss>https://www-en.tomiryu.com/web/how-to-copy-and-paste-on-facebook-with-an-iphone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to paste iframe tags onto your posts</title>
		<link>https://www-en.tomiryu.com/wordpress/how-to-paste-iframe-tags-onto-your-posts/</link>
		<comments>https://www-en.tomiryu.com/wordpress/how-to-paste-iframe-tags-onto-your-posts/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 05:18:22 +0000</pubDate>
		<dc:creator>tomiryu</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">https://www-en.tomiryu.com/?p=61</guid>
		<description><![CDATA[Do you have experience of embedded tags in Google maps or calendar that disappear when you paste in WordPress? It&#8217;s caused by WordPress&#8217;s initial setting that removes iframe tags from your posts automatically. Here&#8217;s an explanation of how to paste &#8230; <a href="https://www-en.tomiryu.com/wordpress/how-to-paste-iframe-tags-onto-your-posts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Do you have experience of embedded tags in Google maps or calendar that disappear when you paste in WordPress?</p>
<p>It&#8217;s caused by WordPress&#8217;s initial setting that removes iframe tags from your posts automatically.</p>
<p><span id="more-61"></span></p>
<p>Here&#8217;s an explanation of how to paste iframe tags onto your posts.<br />
I tried this method in WordPress3.1.1.<br />
(CAUTION: This method is your own responsibility)</p>
<p>METHOD:<br />
Open the file<br />
<strong> wp-content/themes/&lt;your theme directory&gt;/functions.php</strong><br />
and add the below code at the end of the file.</p>
<pre>function extended_enable_elements($init) {
$init['extended_valid_elements']="iframe[src|width|height|name|align|style|scrolling|marginwidth|marginheight|frameborder]";
return $init;
}
add_filter('tiny_mce_before_init', 'extended_enable_elements');</pre>
<p>Actually it may not completely show the frame in the view of &#8220;Visual-Editor&#8221;, but enough is shown in the &#8220;Preview&#8221; window.</p>
<p>If anyone who can find a way to show IFRAME in the &#8220;Visual-Editor&#8221; of WordPress then comments would be helpful.<br />
<iframe src="https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=japan&amp;aq=&amp;sll=37.0625,-95.677068&amp;sspn=41.818029,69.785156&amp;ie=UTF8&amp;hq=&amp;hnear=Japan&amp;ll=36.173357,138.251953&amp;spn=21.226665,26.367188&amp;z=4&amp;output=embed" width="300" height="300" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><br />
<small><a style="color: #0000ff; text-align: left;" href="https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=japan&amp;aq=&amp;sll=37.0625,-95.677068&amp;sspn=41.818029,69.785156&amp;ie=UTF8&amp;hq=&amp;hnear=Japan&amp;ll=36.173357,138.251953&amp;spn=21.226665,26.367188&amp;z=4">View Larger Map</a></small></p>
]]></content:encoded>
			<wfw:commentRss>https://www-en.tomiryu.com/wordpress/how-to-paste-iframe-tags-onto-your-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SonicShooter</title>
		<link>https://www-en.tomiryu.com/android/sonicshooter/</link>
		<comments>https://www-en.tomiryu.com/android/sonicshooter/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 02:10:05 +0000</pubDate>
		<dc:creator>tomiryu</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">https://www-en.tomiryu.com/?p=33</guid>
		<description><![CDATA[SonicShooter is a toy laser shooter. &#160; &#160; &#160; Shake the phone horizontally &#8211; cosmic shooting sounds are heard. Shake the phone vertically to change the sound. Download : go to SonicShooter on Android Market &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-28" title="sonicshooter200x150" src="https://www-en.tomiryu.com/wp-content/uploads/2011/04/sonicshooter200x150.jpg" alt="" width="200" height="150" /><br />
SonicShooter is a toy laser shooter.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Shake the phone horizontally &#8211; cosmic shooting sounds are heard.<br />
Shake the phone vertically to change the sound.</p>
<p>Download : <a title="SonicShooter" href="https://market.android.com/details?id=com.tomiryu.android.sonicshooter">go to SonicShooter on Android Market</a></p>
<p><span id="more-33"></span><img class="aligncenter" style="border: 1px #ccc solid;" title="FotoFun" src="https://www.tomiryu.com/wp-content/uploads/2011/04/sonicshooter_img1.jpg" alt="" /></p>
<p>&nbsp;</p>
<p><img class="aligncenter" style="border: 1px #ccc solid;" title="FotoFun" src="https://www.tomiryu.com/wp-content/uploads/2011/04/sonicshooter_img2.jpg" alt="" /></p>
<p>&nbsp;</p>
<p><img class="aligncenter" style="border: 1px #ccc solid;" title="FotoFun" src="https://www.tomiryu.com/wp-content/uploads/2011/04/sonicshooter_img3.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>https://www-en.tomiryu.com/android/sonicshooter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FotoFun</title>
		<link>https://www-en.tomiryu.com/android/fotofun/</link>
		<comments>https://www-en.tomiryu.com/android/fotofun/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 02:08:49 +0000</pubDate>
		<dc:creator>tomiryu</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">https://www-en.tomiryu.com/?p=31</guid>
		<description><![CDATA[FotoFun is a Toy Camera Application. It can detect up to 3 faces in the photograph preview and allows icon overlay. Pleas enjoy it. &#160; FotoFun works in HT03A(1.6), Galaxy S ,IS03, Xperia, HTC Evo and X06HT Desire, etc. Download &#8230; <a href="https://www-en.tomiryu.com/android/fotofun/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="FotoFun" href="https://www-en.tomiryu.com/android/fotofun/"><img class="alignleft size-full wp-image-24" title="fotofun200x150" src="https://www-en.tomiryu.com/wp-content/uploads/2011/04/fotofun200x150.jpg" alt="" width="200" height="150" /></a><br />
FotoFun is a Toy Camera Application.<br />
It can detect up to 3 faces in the photograph preview and allows icon overlay.<br />
Pleas enjoy it.</p>
<p>&nbsp;</p>
<p>FotoFun works in HT03A(1.6), Galaxy S ,IS03, Xperia, HTC Evo and X06HT Desire, etc.</p>
<p>Download : <a title="FotoFun" href="https://market.android.com/details?id=com.tomiryu.android.fotofun">go to FotoFun on Android Market</a></p>
<p><span id="more-31"></span>Please keep the camera landscape when you preview&amp;take picture.</p>
<p><img class="aligncenter" title="FotoFun" src="https://www.tomiryu.com/wp-content/uploads/2011/04/fotofun_img1.jpg" alt="FotoFun" width="400" height="240" /><img class="aligncenter" title="Fotofun" src="https://www.tomiryu.com/wp-content/uploads/2011/04/fotofun_img2.jpg" alt="FotoFun" width="400" height="240" /></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www-en.tomiryu.com/android/fotofun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
