<?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; Internet</title>
	<atom:link href="http://eroninjapan.com/category/internet/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>
	</channel>
</rss>

