I've updated the Netflix queue listing here at the site to show what I'm currently watching. The handy Wordpress Netflix Plugin made the change very easy, and I again recommend it.
I've also fixed a validation problem here at the site. My last post included the first YouTube video ever embedded at Year of the Code Monkey. It turns out that XHTML strict, which happens to be the doctype I use, doesn't like the embed
element. YouTube gave me this:
<object width="425" height="344">
<param name="movie"
value="http://www.youtube.com/v/Y_P6yBJEW38&hl=en&fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/Y_P6yBJEW38&hl=en&fs=1"
type="application/x-shockwave-flash" allowfullscreen="true"
width="425" height="344"></embed>
</object>
And I had to change it to this:
<object width="425" height="344"
data="http://www.youtube.com/v/Y_P6yBJEW38&hl=en&fs=1">
<param name="movie" value="http://www.youtube.com/v/Y_P6yBJEW38&hl=en&fs=1" />
<param name="allowFullScreen" value="true" />
</object>
Not only is it now compliant, it looks better too. I'll just have to remember to make this kind of change each time I post a video.