<?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>EronInJapan &#187; admin</title>
	<atom:link href="http://eroninjapan.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://eroninjapan.com</link>
	<description>Personal Insight On Japan And The Web</description>
	<lastBuildDate>Sat, 25 Jul 2009 06:32:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Code Snippet Resources</title>
		<link>http://eroninjapan.com/2009/07/code-snippet-resources/</link>
		<comments>http://eroninjapan.com/2009/07/code-snippet-resources/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 06:32:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://eroninjapan.com/?p=84</guid>
		<description><![CDATA[There are many sites on the internet now where you can find useful code snippets for your favorite programming languages. A very comprehensive list of these sites can be found HERE.
Utilizing these resources can be a great way to quickly get familiar with the syntax of new languages or brush up on ones you already [...]]]></description>
			<content:encoded><![CDATA[<p><a title="water droplet on the screen" href="http://www.flickr.com/photos/35034361412@N01/2425394931/" target="_blank"><img class="alignright" style="border: 0pt none;" src="http://farm4.static.flickr.com/3206/2425394931_209c5be8f6_m.jpg" border="0" alt="water droplet on the screen" width="240" height="180" /></a>There are many sites on the internet now where you can find useful code snippets for your favorite programming languages. A very comprehensive list of these sites can be found <a href="http://hisocial.blogspot.com/2009/07/great-collection-of-code-snippet.html">HERE</a>.</p>
<p>Utilizing these resources can be a great way to quickly get familiar with the syntax of new languages or brush up on ones you already know. I don&#8217;t recommend blindly copying these snippets and putting them into your critical applications without thorough testing and verification. When used responsibly, they can be very helpful building blocks to quickly get your new applications up and running. Some sites even have features to rate, store, and organize your favorite snippets for easy access from any computer connected to the internet.</p>
<p>I highly recommend new and seasoned programmers alike to make use of these wonderful resources and, if you are so inclined, help out your fellow programmers and<br />
contribute your own snippets as well!</p>
]]></content:encoded>
			<wfw:commentRss>http://eroninjapan.com/2009/07/code-snippet-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Standards-compliant Flash and YouTube Embedding</title>
		<link>http://eroninjapan.com/2009/07/standards-compliant-flash-and-youtube-embedding/</link>
		<comments>http://eroninjapan.com/2009/07/standards-compliant-flash-and-youtube-embedding/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 03:13:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Standards-compliant Markup]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://eroninjapan.com/?p=51</guid>
		<description><![CDATA[If you&#8217;ve ever wondered why the markup provided by Flash or YouTube to embed their content don&#8217;t validate in the W3C Validating Service then you aren&#8217;t alone. Luckily for us there are developers out there who have put a lot of time and energy into creating and testing standards-compliant markup for embedding this content in [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever wondered why the markup provided by Flash or YouTube to embed their content don&#8217;t validate in the <a title="W3C Validating Service" href="http://validator.w3.org/">W3C Validating Service</a> then you aren&#8217;t alone. Luckily for us there are developers out there who have put a lot of time and energy into creating and testing standards-compliant markup for embedding this content in your web pages. You can read more about how they came about their solutions here: <a title="Validating Flash XHTML" href="http://www.alistapart.com/articles/flashsatay">Validating Flash XHTML</a> and  <a title="Validating YouTube XHTML" href="http://www.garybadger.com/youtube.html">Validating YouTube XHTML</a>.</p>
<p>Without going into the wrong way to do it, I will just post the &#8220;correct&#8221; markup below.</p>
<h4><span style="text-decoration: underline;">Validated Flash XHTML</span></h4>
<blockquote><p>
&lt;object type=&#8221;application/x-shockwave-flash&#8221; data=&#8221;movie.swf&#8221; width=&#8221;575&#8243; height=&#8221;350&#8243;&gt;<br />
&lt;param name=&#8221;wmode&#8221; value=&#8221;opaque&#8221; /&gt;<br />
&lt;param name=&#8221;movie&#8221; value=&#8221;movie.swf&#8221; /&gt;<br />
&lt;/object&gt;
</p></blockquote>
<h4><span style="text-decoration: underline;">Validated YouTube XHTML</span></h4>
<blockquote><p>
&lt;object type=&#8221;application/x-shockwave-flash&#8221; width=&#8221;575&#8243; height=&#8221;350&#8243; data=&#8221;http://www.youtube.com/v/oC4FAyg64OI&amp;hl=en&amp;fs=1&amp;&#8221;&gt;<br />
&lt;param name=&#8221;movie&#8221; value=&#8221;http://www.youtube.com/v/oC4FAyg64OI&amp;hl=en&amp;fs=1&amp;&#8221; /&gt;<br />
&lt;/object&gt;
</p></blockquote>
<p><object type="application/x-shockwave-flash" width="575" height="350" data="http://www.youtube.com/v/oC4FAyg64OI&amp;hl=en&amp;fs=1&amp;"><param name="movie" value="http://www.youtube.com/v/oC4FAyg64OI&amp;hl=en&amp;fs=1&amp;" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://eroninjapan.com/2009/07/standards-compliant-flash-and-youtube-embedding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save The Developers &#8211; Retire IE6</title>
		<link>http://eroninjapan.com/2009/07/save-the-developers-kill-ie6/</link>
		<comments>http://eroninjapan.com/2009/07/save-the-developers-kill-ie6/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 19:10:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[LinkedIn]]></category>

		<guid isPermaLink="false">http://eroninjapan.com/?p=43</guid>
		<description><![CDATA[Save The Developers Campaign was created to inform web users that they should update their IE6 to newer versions of the browser in order to save developers around the world from having to support the outdated browser.]]></description>
			<content:encoded><![CDATA[<p><a title="IMG_0277" href="http://www.flickr.com/photos/75544898@N00/86589164/" target="_blank"><img class="alignright" style="border: 0pt none;" src="http://farm1.static.flickr.com/36/86589164_73dd923e82_m.jpg" border="0" alt="IMG_0277" width="240" height="180" /></a></p>
<p>I was amused to come across <a title="Save The Developers" href="http://www.idesignstudios.com/blog/web-design/save-the-developers/" target="_blank">this post</a> which talked about the Save The Developers campaign. The campaign notified users of IE6 who visited the site that by upgrading their browser to IE7 they could save web developers all over the world a lot of headaches and frustration. Any web developers out there will know how much time and effort it usually takes to ensure that your design is compatible with Internet Explorer 6. It&#8217;s usually not a fun experience and it does limit what can be done on your site if you want to ensure 100% backwards compatibility.</p>
<p>I was hoping to take a look at the Save The Developers website but the domain (http://savethedevelopers.org/) seems to have expired and is now being parked. Darn.</p>
<p>Searching the web, I was able to find some information on current browser statistics from the popular web developer site <a title="W3Schools - Browser Statistics" href="http://www.w3schools.com/browsers/browsers_stats.asp" target="_blank">W3Schools</a>. More detailed browser statistics look to be available from other websites which require a paid subscription but I&#8217;ll stick with what I can find for free for now.  Please be aware that these statistics only include visitors to the W3Schools website.</p>
<table border="1" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<th width="16%">2009</th>
<th width="12%">IE7</th>
<th width="12%">IE6</th>
<th width="12%">IE8</th>
<th width="12%">Firefox</th>
<th width="12%">Chrome</th>
<th width="12%">Safari</th>
<th width="12%">Opera</th>
</tr>
<tr>
<td>June</td>
<td>18.7%</td>
<td>14.9%</td>
<td>7.1%</td>
<td>47.3%</td>
<td>6.0%</td>
<td>3.1%</td>
<td>2.1%</td>
</tr>
</tbody>
</table>
<p>Glad to see that IE6 keeps losing market share, but it looks like it&#8217;s web developers will need to continue supporting it for some time to come.</p>
<p>Another ray of hope from Asa Dotzler at Mozilla. He wrote <a title="IE6 Passed By IE8" href="http://weblogs.mozillazine.org/asa/archives/2009/07/internet_explorer_6.html" target="_blank">here</a> that usage of IE6 has been surpassed by IE8, making IE6 the least popular IE still in widespread use. Good news. He then goes on in another post <a title="Browser Predictions" href="http://weblogs.mozillazine.org/asa/archives/2009/07/a_browser_prediction.html" target="_blank">here</a> about his browser predictions where states that he expects IE6 to be virtually non-existent by the end of 2010. I can only hope that he&#8217;s right!</p>
]]></content:encoded>
			<wfw:commentRss>http://eroninjapan.com/2009/07/save-the-developers-kill-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatic Lossless Image Shrinking</title>
		<link>http://eroninjapan.com/2009/07/automatic-lossless-image-shrinking/</link>
		<comments>http://eroninjapan.com/2009/07/automatic-lossless-image-shrinking/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 11:29:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugin]]></category>

		<guid isPermaLink="false">http://eroninjapan.com/?p=29</guid>
		<description><![CDATA[I just ran into this post which talked about a wonderful WordPress plugin to help increase the performance of your site or blog. The plugin automatically runs any images that you upload through the Smush.it service which generates a lossless image that can be considerably smaller than the original. There is no loss of image [...]]]></description>
			<content:encoded><![CDATA[<p>I just ran into <a title="Wordpress Smush-it" href="http://yoast.com/wordpress-smush-it/" target="_blank">this</a> post which talked about a wonderful WordPress plugin to help increase the performance of your site or blog. The plugin automatically runs any images that you upload through the Smush.it service which generates a lossless image that can be considerably smaller than the original. There is no loss of image quality so you have nothing to lose! I&#8217;d recommend to install this plugin as soon as possible so your visitors can quickly enjoy a more responsive website.</p>
<p>Download: <a title="Smush.it For WordPress Plugin Download" href="http://wordpress.org/extend/plugins/wp-smushit/" target="_blank">Smush.it For WordPress Plugin</a></p>
<p>More Info: <a title="Smush.it Homepage" href="http://smush.it/" target="_blank">Smush.it Homepage</a></p>
]]></content:encoded>
			<wfw:commentRss>http://eroninjapan.com/2009/07/automatic-lossless-image-shrinking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Wordpress In A Subdirectory</title>
		<link>http://eroninjapan.com/2009/07/install-wordpress-in-a-subdirectory/</link>
		<comments>http://eroninjapan.com/2009/07/install-wordpress-in-a-subdirectory/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 08:44:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Installation Guide]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://eroninjapan.com/?p=10</guid>
		<description><![CDATA[Have you ever wanted to install WordPress in the root directory of your website without having to keep the source files there? Well it&#8217;s possible and quite simple. With just a few changes you will be able to store the WordPress files in a subdirectory while keeping the blog accessible from the root directory. Here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wanted to install WordPress in the root directory of your website without having to keep the source files there? Well it&#8217;s possible and quite simple. With just a few changes you will be able to store the WordPress files in a subdirectory while keeping the blog accessible from the root directory. Here&#8217;s an easy to follow guide taken from the WordPress website:</p>
<p><a title="WordPress Codex - Giving WordPress Its Own Directory" href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory" target="_blank">http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory</a></p>
]]></content:encoded>
			<wfw:commentRss>http://eroninjapan.com/2009/07/install-wordpress-in-a-subdirectory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome To The New EronInJapan.com</title>
		<link>http://eroninjapan.com/2009/06/welcome-to-the-new-eroninjapan-com/</link>
		<comments>http://eroninjapan.com/2009/06/welcome-to-the-new-eroninjapan-com/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 00:48:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Japan]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[eroninjapan]]></category>

		<guid isPermaLink="false">http://eroninjapan.com/blog/?p=3</guid>
		<description><![CDATA[
Welcome to the newest incarnation of EronInJapan.com.
The site has gone through many changes over the years, most of which have been behind the scenes and for my personal use. I&#8217;m now taking a different direction with the site and have made it publicly available.
This site will focus on life in Japan (as you may have [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="shetland00090" href="http://www.flickr.com/photos/36516333@N08/3707476705/" target="_blank"><img class="aligncenter" style="border: 0pt none;" src="http://farm4.static.flickr.com/3507/3707476705_22bce838f9.jpg" border="0" alt="shetland00090" width="300" height="200" /></a></p>
<p style="text-align: center;">Welcome to the newest incarnation of EronInJapan.com.</p>
<p>The site has gone through many changes over the years, most of which have been behind the scenes and for my personal use. I&#8217;m now taking a different direction with the site and have made it publicly available.</p>
<p>This site will focus on life in Japan (as you may have guessed), technology tips and information, as well as serve as an introduction to who I am and what I do.</p>
<p>I hope you enjoy the site and will find it useful.</p>
<p>-Eron</p>
]]></content:encoded>
			<wfw:commentRss>http://eroninjapan.com/2009/06/welcome-to-the-new-eroninjapan-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

