<?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>rowast[DOT]com &#187; coding</title>
	<atom:link href="http://rowast.com/tag/coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://rowast.com</link>
	<description>personally impersonable</description>
	<lastBuildDate>Sat, 11 Feb 2012 12:53:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>standards compliant video player</title>
		<link>http://rowast.com/2008/01/31/standards-compliant-video-player/</link>
		<comments>http://rowast.com/2008/01/31/standards-compliant-video-player/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 19:08:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.newfoundnoise82.com/?p=278</guid>
		<description><![CDATA[In the last few years I have gone from bein an extreme amateur when it comes to html and css, building a site built on table based layouts to someone who fancies himself an xhtml and css standards geek who &#8230; <a href="http://rowast.com/2008/01/31/standards-compliant-video-player/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In the last few years I have gone from bein an extreme amateur when it comes to html and css, building a site built on table based layouts to someone who fancies himself an xhtml and css standards geek who is sometimes recruited by friends to write code or fix code they have problems with.  When I say standards geek, I mean extreme geek, in fact my new site I am coding as XHTML strict which can be extremely hard to conform to but I will make it so.</p>
<p>With that said, nothing annoys me more on the net than going to youtube, revver, vimeo, jumpcut, etc, etc, and not getting standards based code.  Now I understand why they give me this code, its for legacy purposes but that is no good to me, in the world of firefox, opera, and safari we can finally abandon poorly done broken code for fully compliant standards based clean markup, heck it is even possible in internet explorer 7.  The only drawback being that due to the quirks of the past this fully compliant code will in fact break in legacy browsers.</p>
<p>With all that said converting old broken legacy code into clean markup is extraordinarily simple, heck I was able to handle it after maybe 15 minutes and if theres two things I don&#8217;t know as well as I would like in XHTML its this and forms.  That however is purely do to lack of experience, and nothing to do with knowledge or skill and the same can be said for anyone into standards who might be a little intimidated/inexperienced with certain markup.</p>
<p>First let&#8217;s take a look at the code below which is provided by the fine folks over at comedy central.</p>
<p class="codecite"> &lt;embed FlashVars=&#8217;videoId=148027&#8242; src=&#8217;http://www.thedailyshow.com/sitewide/video_player/view/default/swf.jhtml&#8217; quality=&#8217;high&#8217; bgcolor=&#8217;#cccccc&#8217; width=&#8217;332&#8242; height=&#8217;316&#8242; name=&#8217;comedy_central_player&#8217; align=&#8217;middle&#8217; allowScriptAccess=&#8217;always&#8217; allownetworking=&#8217;external&#8217; type=&#8217;application/x-shockwave-flash&#8217; pluginspage=&#8217;http://www.macromedia.com/go/getflashplayer&#8217;&gt;&lt;/embed&gt;</p>
<p> All of the code above is broken, well it will work, but its broken as far as standards.  The embed tag has been deprecated and if you want to strive for standards it must be abandoned, thats not to say the code can not be utilized, reworked, and turned into standards compliant code all while still appearing and working the same as the original.  So working left to right through the above code we can methodically build the new code, the first step is using the object tag, where the embed tag is a relic of the past the object tag is a tag of today and tomorrow (it even replaces the img tag in xhtml 2).</p>
<p>First of all wrap your code inside of an opening and closing object tag, the way I start my code to maintain its integrity is to always begin with the opening and closing tags.  The next piece of our code is the FlashVars element, which is used to identify the particular video that comedy central is serving up, it can not be placed as an element of the object tag but it can be used inside of the object tag in the form of a param tag.  An empty param tag has 3 elements, the tag title, in this case param, the name element, and the value element.  So at this point your code that does nothing would look like this.</p>
<p class="codecite"> &lt;object&gt;<br />
&lt;param name=&#8221;" value=&#8221;"/&gt;<br />
&lt;/object&gt;</p>
<p>Now back to the FlashVars element, and this can be used for any element that needs to go into a param tag, everything to the left of the equal sign goes into the name tag and everything inside of the quotes goes into the value tag.</p>
<p>The next element is the src tag and it has a distinction of needing to be both a param and an element of the object tag, it doesn&#8217;t have to be but I have noticed the tag is more portable (at least in my experiences) when this is redundant (it seems to help ie7).  The src tag and the address inside of it remains the same in every way when used inside of the object tag with only one change, it is now data and not src.  Now for the param portion, the name portion of the tag is movie and the value is simply the address used inside of the embed tag.  So now your code should look like this:</p>
<p class="codecite"> &lt;object data=&#8221;http://www.thedailyshow.com/sitewide/video_player/view/default/swf.jhtml&#8221; &gt;<br />
&lt;param name=&#8221;movie&#8221; value=&#8221;http://www.thedailyshow.com/sitewide/video_player/view/default/swf.jhtml&#8221;/&gt;<br />
&lt;/pbject&gt;</p>
<p>The remaining tags can all be thrown inside of param tags except for type and name which can be simply thrown into the object tag with data, I usually leave out the pluginspage element just because, and I usually change the bgcolor width and height elements out for a css rule which means I then have to add in a css hook which in this case I would name something like comedycentralplayer, or whatever you would like.  For the purposes of this post however I will add both the selector name and inline css style and as such the finished compliant code will look like the following.</p>
<p class="codecite"> &lt;object type=&#8221;application/x-shockwave-flash&#8221; class=&#8221;comedycentralplayer&#8221; style=&#8221;background-color: #cccccc; width: 332px; height: 316px;&#8221; data=&#8221;http://www.thedailyshow.com/sitewide/video_player/view/default/swf.jhtml&#8221;  name=&#8221;comedy_central_player&#8221;&gt;<br />
&lt;param name=&#8221;movie&#8221; value=&#8221;http://www.thedailyshow.com/sitewide/video_player/view/default/swf.jhtml&#8221;/&gt;<br />
&lt;param name=&#8221;FlashVars&#8221; value=&#8221;videoId=148027&#8243;/&gt;<br />
&lt;param name=&#8221;quality&#8221; value=&#8221;high&#8221;/&gt;<br />
&lt;param name=&#8221;allowScriptAccess&#8221; value=&#8221;always&#8221;/&gt;<br />
&lt;param name=&#8221;allownetworking&#8221; value=&#8221;external&#8221;/&gt;<br />
&lt;/object&gt;</p>
<p>Like I said before though this code will break in old browsers so I would think you should add something known to any good xhtml coder, and that is alt text.  But if you look at the code above you will say there is no space for alt tags, and you would be right of course in that there is no explicitly stated alt element, but there is a place for it.  If you had just empty object tags everything that was placed inside of them that was not wrapped in a param tag would be non printing text when the object worked, but when it did not it would work the same as alt text or noscript text, alerting the user that what is supposed to be there, is not there after all.  So with that in mind your code would look something like this, <strong>except you might want to make it appear all on one line, otherwise the code could behave strangely in some environments</strong>:</p>
<p class="codecite"> &lt;object type=&#8221;application/x-shockwave-flash&#8221; class=&#8221;comedycentralplayer&#8221; style=&#8221;background-color: #cccccc; width: 332px; height: 316px;&#8221; data=&#8221;http://www.thedailyshow.com/sitewide/video_player/view/default/swf.jhtml&#8221;  name=&#8221;comedy_central_player&#8221;&gt;<br />
&lt;param name=&#8221;movie&#8221; value=&#8221;http://www.thedailyshow.com/sitewide/video_player/view/default/swf.jhtml&#8221;/&gt;<br />
&lt;param name=&#8221;FlashVars&#8221; value=&#8221;videoId=148027&#8243;/&gt;<br />
&lt;param name=&#8221;quality&#8221; value=&#8221;high&#8221;/&gt;<br />
&lt;param name=&#8221;allowScriptAccess&#8221; value=&#8221;always&#8221;/&gt;<br />
&lt;param name=&#8221;allownetworking&#8221; value=&#8221;external&#8221;/&gt;<br />
If you&#8217;re seeing this something obviously broke, it could be your browser or you may lack the appropriate plug in, I can&#8217;t say but if you were running &lt;a href=&#8221;http://www.getfirefox.com&#8221;&gt;firefox&lt;/a&gt;, with an up to date &lt;a href=&#8221;www.adobe.com/products/flashplayer/&#8221;&gt;flash player&lt;/a&gt; I know you wouldn&#8217;t have this problem, if you are seeing this still though I bet it&#8217;s a problem with the video&#8217;s host and not myself, thanks.<br />
&lt;/object&gt;</p>
<p>Your finished code would in turn allow for a fully standards compliant version of the original broken code playable in any standards compliant browser as you can see below (provided comedy central doesn&#8217;t move their player).</p>
<p><object name="comedy_central_player" data="http://www.thedailyshow.com/sitewide/video_player/view/default/swf.jhtml" class="comedycentralplayer" type="application/x-shockwave-flash"><param value="http://www.thedailyshow.com/sitewide/video_player/view/default/swf.jhtml" name="movie"></param><param value="videoId=148027" name="FlashVars"></param><param value="high" name="quality"></param><param value="always" name="allowScriptAccess"></param><param value="external" name="allownetworking"></param>If you&#8217;re seeing this something obviously broke, it could be your browser or you may lack the appropriate plug in, I can&#8217;t say but if you were running <a href="http://www.getfirefox.com/"></a>, with an up to date <a href="http://www.newfoundnoise82.com/wp-admin/www.adobe.com/products/flashplayer/">flash player</a> I know you wouldn&#8217;t have this problem, if you are seeing this still though I bet it&#8217;s a problem with the video&#8217;s host and not myself, thanks.</object></p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2008/01/31/standards-compliant-video-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>stupid scripts</title>
		<link>http://rowast.com/2007/10/01/stupid-scripts/</link>
		<comments>http://rowast.com/2007/10/01/stupid-scripts/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 20:10:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[stupid]]></category>

		<guid isPermaLink="false">http://www.newfoundnoise82.com/?p=219</guid>
		<description><![CDATA[When uninstalling and reinstalling my copy of portable firefox (great browser btw), I came across an old web page I had done to create a couple of stupid scripts, the inspiration being this post by Leah Culver, and Leah if &#8230; <a href="http://rowast.com/2007/10/01/stupid-scripts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When uninstalling and reinstalling my copy of <a href="http://portableapps.com/apps/internet/firefox_portable">portable firefox</a> (great browser btw), I came across an old web page I had done to create a couple of stupid scripts, the inspiration being <a href="http://www.leahculver.com/2007/05/03/javascript-blinking-page-title/">this post by Leah Culver</a>, and Leah if you read this and you won&#8217;t, <a href="http://www.pownce.com">pownce</a> isn&#8217;t perfect but you&#8217;re edging it towards perfection.</p>
<p>Anyways I wrote three bad pieces of javascript, one to make it appear that the page is typing to you, one that makes it appear that the title of the page is being typed out and one that simply blinks the title as a means to annoy you.  None of these serve any purpose but I didn&#8217;t want to forget my contribution to the world of stupid scripts so I figured I would post it here.</p>
<p>First of all i wanted to explain the global variables:  string is simply the text to be echoed in some way,  stringPortion is used to hold the portion of the text to be typed out (it&#8217;s not used in the the function echoTitle), count should probably be named something else but it is used to keep track of where you are at in the string when typing it out, and titleCount is used in the blinking title function as a means of remembering if the title is blank or not, I could have done that without a variable but when I wrote this I didn&#8217;t know as much as I know now as I was taking my first javascript course so I didn&#8217;t know the DOM at all, compared to the little I know now.</p>
<p>var string = &#8220;hello world&#8221;;<br />
var stringPortion = &#8220;&#8221;;<br />
var count = 0;<br />
var titleCount = 0;</p>
<p>Now that you know the variables I will just post the functions, like I said they&#8217;re stupid scripts so they aren&#8217;t at all complex, heck none of them even take in any parameters they&#8217;re so quick and basic.</p>
<p>function echoString()<br />
{<br />
stringPortion = stringPortion + string.charAt(count);<br />
document.getElementById(&#8216;stringTest&#8217;).innerHTML = &#8220;&lt;h1&gt;&#8221;+stringPortion+&#8221;_&lt;/h1&gt;&#8221;;<br />
count++;<br />
setTimeout(&#8220;echoString()&#8221;,250)<br />
} // end function</p>
<p>function animateTitle()<br />
{<br />
stringPortion = stringPortion + string.charAt(count);<br />
document.title = stringPortion+&#8221;_&#8221;;<br />
count++;<br />
setTimeout(&#8220;animateTitle()&#8221;,250)<br />
} // end function echoString</p>
<p>function echoTitle()<br />
{</p>
<p>if(titleCount == 0)<br />
{<br />
document.title = string;<br />
titleCount++;<br />
setTimeout(&#8220;echoTitle()&#8221;,800)<br />
}<br />
else<br />
{<br />
document.title = &#8220;&#8221;;<br />
titleCount&#8211;;<br />
setTimeout(&#8220;echoTitle()&#8221;,800)<br />
}<br />
} // end function</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2007/10/01/stupid-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fother mucker</title>
		<link>http://rowast.com/2007/09/29/fother-mucker/</link>
		<comments>http://rowast.com/2007/09/29/fother-mucker/#comments</comments>
		<pubDate>Sat, 29 Sep 2007 22:35:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[whining]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.newfoundnoise82.com/?p=217</guid>
		<description><![CDATA[As a matter of principle I refrain from identifying in any way those above me who have screwed up when posting on here. It&#8217;s not to protect them but rather to protect me since I still work there. This will &#8230; <a href="http://rowast.com/2007/09/29/fother-mucker/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As a matter of principle I refrain from identifying in any way those above me who have screwed up when posting on here.  It&#8217;s not to protect them but rather to protect me since I still work there.  This will be a very tough one to act principally on.</p>
<p>Here&#8217;s the deal, I am taking one course right now while working at my school and looking for a new job, speaking of which I need to post a resume on the appropriate sites in the next few days, so all in all it is simple for me to keep my school work straight and get assignments done in a timely manner.</p>
<p>Or it would be if it were possible this time around.  The way things go in this course the teacher posts an unfinished bit of code and your assignment is to finish it, which I have done.  I have yet to turn anything in because I will show them to him at the time of the first test which is entirely acceptable to do.  Only problem is, the current assignment requires him to show last weeks assignment to the class and since not everyone may have completed it he is not posting it rather he is sending it out upon receiving the prior weeks work.</p>
<p>If he had posted this last week so I could have sent in my work in a timely manner this would be fine, but he did not do this and as such here I am.  He posts the new assignment on a Saturday which for one is entirely inconvenient for anyone, and since we must message him, most likely no one will get the needed files until Monday.  That is not even mentioning the fact that we have a test to study for.</p>
<p>Now this is an advanced class and I am sure I can handle the work and get it done, and in all honesty I don&#8217;t have a bitch about how he decided to assign the work, what I am complaining about is that he gave no warning that he was deviating from the routine.  If he had then we could have prepared for this and as such we could have the maximum time available to complete the new work.</p>
<p>Now if you have made it this far I thank you for following my scattershot ramblings&#8230; <span id="more-46"></span></p>
<p>This teacher is not only teaching me asp.net (a web programming language) but also he is also teaching a course about web design, and when you can&#8217;t design a page that is cross browser compatible (all it is is paragraph tags most likely) and you teach this subject something is really wrong.</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2007/09/29/fother-mucker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>everytime you think you know everything</title>
		<link>http://rowast.com/2007/09/29/everytime-you-think-you-know-everything/</link>
		<comments>http://rowast.com/2007/09/29/everytime-you-think-you-know-everything/#comments</comments>
		<pubDate>Sat, 29 Sep 2007 09:09:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.newfoundnoise82.com/?p=216</guid>
		<description><![CDATA[Life can be a jerk sometimes, case in point my just now discovering what the clear property does in css. Without getting bogged down in semantics, my old theme that I abandoned because I couldn&#8217;t make the sidebar and content &#8230; <a href="http://rowast.com/2007/09/29/everytime-you-think-you-know-everything/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Life can be a jerk sometimes, case in point my just now discovering what the clear property does in css.</p>
<p>Without getting bogged down in semantics, <a href="http://www.flickr.com/photos/newfoundnoise82/1124278430/in/set-72157600828288833/">my old theme</a> that I abandoned because I couldn&#8217;t make the sidebar and content pane work together&#8230;.  it could have been saved, and <a href="http://www.flickr.com/photos/newfoundnoise82/1419578376/in/set-72157600828288833/">my current theme</a> could have been altered somewhat as well.   While I prefer my current theme right now, it does bug me that something so tiny, would have fixed what I ended up throwing away.</p>
<p>Using the handy dandy, guide on <a href="http://www.w3schools.com/css/pr_class_clear.asp">the clear property from the w3schools</a> the clear property can be summed up thusly:</p>
<blockquote><p>Image and text elements that appear in another element are called floating elements.</p>
<p>The clear property sets the sides of an element where other floating elements are not allowed.</p></blockquote>
<p>Or to put it another way, you basically create a page break at the bottom of an element, right, left, or both.  This is one of the reasons I want to go into this line of work, it really excites me to have learned this, and everyday I find something like this that I did not know.</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2007/09/29/everytime-you-think-you-know-everything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ok I&#8217;ll&#8230; with Visual Studio.NET</title>
		<link>http://rowast.com/2007/09/20/ok-ill-with-visual-studionet/</link>
		<comments>http://rowast.com/2007/09/20/ok-ill-with-visual-studionet/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 23:34:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.newfoundnoise82.com/?p=192</guid>
		<description><![CDATA[So here we are a few weeks into the semester when my course (CIS 285A &#8211; ASP.net) finally started, it&#8217;s fifteen weeks not eighteen. This course requires my Visual Studio 2005 software, which I have and my product license key, &#8230; <a href="http://rowast.com/2007/09/20/ok-ill-with-visual-studionet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So here we are a few weeks into the semester when my course (CIS 285A &#8211; ASP.net) finally started, it&#8217;s fifteen weeks not eighteen.  This course requires my Visual Studio 2005 software, which I have and my product license key, which I appear to have lost.</p>
<p>No problem I will simply log in to the student service that got me this expensive software  for free and get the key.  Ok no I won&#8217;t I&#8217;m locked out.  Ok I will put in a support request with the service, and the school, and in the meantime attempt to do my work while at work since I work in the CIS labs.</p>
<p>Ok no I won&#8217;t do my work because I keep on getting error messages that make no sense at all.  So now i will attempt to make this software work with Visual Basic Express, Ok no I won&#8217;t Vista won&#8217;t let me install IIS, something about being elevated, thanks for the great error code Microsoft.</p>
<p>Ok a couple of days later I figure out the elevated problem, I had to run a dos command as administrator in Vista, nothing tough to do but an annoyance all the same.  Still though no dice on getting work done at home.  So I head back to work to accomplish this task.</p>
<p>Still no dice and still no response from any of my support requests until finally, over the course of two days a support request is answered, and I have access again to my account so I can get my product activation keys.  But I am at work and still unable to fix this problem with odd error messages at work.  That is until&#8230;..</p>
<p>I discover what the error messages actually mean, the teacher told us to put a text field control on the form, but did not tell us to name it anything in particular and the error message did not inform me of an issue, neither did I look for the blue squigglies that indicate a coding error.</p>
<p>Long story short:  I hate looking at other peoples code and have a hard time with it, I need to get over it big time.</p>
<p>Now if only I could get work done at home&#8230;.</p>
<p><strong>EDIT:</strong>  After much hand wringing, cursing, and emails back and forth I am able to successfully run Visual Studio.NET and ASP.net under Vista.  I doubt I will learn anything new, but hey it&#8217;s another language I can familiarize and confuse myself with.  Special thanks go out to people at my work/school.</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2007/09/20/ok-ill-with-visual-studionet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>why i hate internet explorer</title>
		<link>http://rowast.com/2007/09/17/why-i-hate-internet-explorer/</link>
		<comments>http://rowast.com/2007/09/17/why-i-hate-internet-explorer/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 08:08:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.newfoundnoise82.com/?p=188</guid>
		<description><![CDATA[This is just part 1 of what I figure will be a many many part series. Ok right now it&#8217;s late and I just managed to fix a problem with IE and it took me hours to find the simplest &#8230; <a href="http://rowast.com/2007/09/17/why-i-hate-internet-explorer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is just part 1 of what I figure will be a many many part series.</p>
<p>Ok right now it&#8217;s late and I just managed to fix a problem with IE and it took me hours to find the simplest problem so this will be a lot of bitching, moaning, and general sleep deprived randomness.</p>
<p>Here&#8217;s the deal, I recently redid my page, making it much more manageable and in some respects making it much easier on the eyes, is it perfect?  No, but is it better than some I would like to think so.</p>
<p>Previously I had turned some long unordered lists into basically a mini javascript app.  I have a bunch of info on various topics stored in some arrays and have programmed in methods to display those arrays, pretty simple.  The code was written for a drop down box but I had taken care before to write the code so that it easily could be tweaked to work with text links instead.</p>
<p>So, I tweak the code to display text links, the links display, but the arrays the links are supposed to lead you to won&#8217;t display, well correction they won&#8217;t display in IE.  Firefox has no problems, Opera has no problems, and even Safari for Windows has no problems.  Still however IE is the problem child.  I try to use it&#8217;s built in error console but to no avail as it sends me on a while goose chase.</p>
<p>Fast forward a couple hours right as I am about to head to bed, I remember I have a few for loops and many a time I have had some strange bug occur when I attempt to have 2 for loops with the same variable name, even if they are local variables and they are out of scope.  Turns out that&#8217;s not the problem.</p>
<p>So right as I am going to head to bed a few minutes ago, I decide to check one last time, and I discover the problem that IE had but no one else does.  I use an h1 tag to present a subset of the array data, and to allow manipulation of that heading tag I gave it the identifier &#8220;title&#8221;, turns out IE didn&#8217;t like that and would abort when the programmer designed their javascript this way.</p>
<p>I wouldn&#8217;t mind this if the problem was universal, since all browsers use the same javascript environment, but no IE has to always do something that no one else does.  Countless times this occurs, it even occurs in my new wordpress theme I am just finishing up, just for IE I have to use an unnecessary center tag just to center the content since apparently IE sometimes has probs with margin: auto.</p>
<p>I hate to be one of those people who is constantly hating on microsoft since I do like a lot of what they do, but their browser is ripe with these bugs.  Here&#8217;s to hoping <a href="http://www.getfirefox.com">firefox</a>, <a href="http://www.opera.com">opera</a> and <a href="http://www.apple.com/safari">safari</a> make some significant gains, we need another big browser out there to force microsoft to stop being lazy.  We also need to get the web user to &#8220;rediscover the web&#8221; and start using a newer browser, any of the ones I mentioned are simply put more fun than IE.</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2007/09/17/why-i-hate-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>myspace no mas</title>
		<link>http://rowast.com/2007/06/10/myspace-no-mas/</link>
		<comments>http://rowast.com/2007/06/10/myspace-no-mas/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 07:18:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[mockups]]></category>
		<category><![CDATA[myspace]]></category>
		<category><![CDATA[whining]]></category>

		<guid isPermaLink="false">http://www.newfoundnoise82.com/wordpress/?p=57</guid>
		<description><![CDATA[So I created a new myspace layout, as seen above, which is based off this layout made over @ 5thirtyone.com. After crafting it off and on over a couple of afternoons I decided to try to make it work. The &#8230; <a href="http://rowast.com/2007/06/10/myspace-no-mas/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/newfoundnoise82/540168430/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1165/540168430_e6c8fc03b3_m.jpg" alt="Myspace mock up wasn't used" height="240" width="190" /></a></p>
<p>So I created a new myspace layout, as seen above, which is based off <a href="http://myspace.com/d0401">this layout</a> made over @ <a href="http://5thirtyone.com/myspace-minimal-lime-overlay">5thirtyone.com</a>.  After crafting it off and on over a couple of afternoons I decided to try to make it work.  The fact that I am posting this here should tell you that it didn&#8217;t.  You shouldn&#8217;t have to hack your way into making a myspace layout that doesn&#8217;t look like hell, especially if you know any css or html.  If the folks over at myspace were to update their site from a table based layout to a css based one it would be a huge step in the right direction.  Facebook opened up their site recently, myspace could stand to learn from their example.</p>
<p><a href="http://www.flickr.com/photos/newfoundnoise82/540280819/" title="Photo Sharing"><img src="http://farm2.static.flickr.com/1292/540280819_7c5daef5dc_m.jpg" alt="California District 38 Mock Up" height="142" width="240" /></a><br />
I also created a quick and dirty mock up for possible use @ my parents little league organization, California Distrist 38.  It will probably never be used for anything for various reasons but what the heck I think it looks nice but I am partial since I created it.  If you think it looks worth a dang let me know I would love to hear feedback.  I really need to update this thing when I am more awake though so I will end this here, goodnight.</p>
]]></content:encoded>
			<wfw:commentRss>http://rowast.com/2007/06/10/myspace-no-mas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

