<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Blusix's Weblog</title>
	<atom:link href="http://blusix.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blusix.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 02 Dec 2010 13:51:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blusix.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Blusix's Weblog</title>
		<link>http://blusix.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blusix.wordpress.com/osd.xml" title="Blusix&#039;s Weblog" />
	<atom:link rel='hub' href='http://blusix.wordpress.com/?pushpress=hub'/>
		<item>
		<title>T-SQL: Schemabinding</title>
		<link>http://blusix.wordpress.com/2010/12/02/t-sql-schemabinding/</link>
		<comments>http://blusix.wordpress.com/2010/12/02/t-sql-schemabinding/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 13:51:59 +0000</pubDate>
		<dc:creator>blusix</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://blusix.wordpress.com/?p=30</guid>
		<description><![CDATA[A view is simply a virtual table or a stored select statement. One option with creating views that I recently came across is the SCHEMABINDING option. Basically, the SCHEMABINDING option &#8220;locks&#8221; the table design of a view&#8217;s underlying table(s) so that they cannot be changed. Without SCHEMABINDING, you could have the following scenario: CREATE VIEW [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=30&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A view is simply a virtual table or a stored select statement.</p>
<p>One option with creating views that I recently came across is the SCHEMABINDING option.<br />
Basically, the SCHEMABINDING option &#8220;locks&#8221; the table design of a view&#8217;s underlying table(s) so that they cannot be changed. Without SCHEMABINDING, you could have the following scenario:</p>
<p>CREATE VIEW MyView<br />
AS<br />
SELECT ColumnA<br />
, ColumnB<br />
, ColumnC<br />
FROM MyTable</p>
<p>Suppose you then alter the table MyTable to remove ColumnC. This would break the view MyView because it refers to the now non-existent ColumnC from MyTable.</p>
<p>If, on the other hand, we created MyView in the following way:</p>
<p>CREATE VIEW MyView WITH SCHEMABINDING<br />
AS<br />
SELECT ColumnA<br />
, ColumnB<br />
, ColumnC<br />
FROM MyTable</p>
<p>and attempted to then delete column ColumnC from MyTable, we would get a warning message that this is not possible since the table is bound to view MyView. Note that this warning occurs whether you are removing or adding a column to the underlying table.</p>
<p>If you really did want to make a change to the table, you would first have to alter the view to remove the WITH SCHEMABINDING option, then make the table change.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blusix.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blusix.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blusix.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blusix.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blusix.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blusix.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blusix.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blusix.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blusix.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blusix.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blusix.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blusix.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blusix.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blusix.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=30&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blusix.wordpress.com/2010/12/02/t-sql-schemabinding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/75aa4ee02efe7fc20eda192639d0c4a4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blusix</media:title>
		</media:content>
	</item>
		<item>
		<title>T-SQL Escape Character</title>
		<link>http://blusix.wordpress.com/2010/11/22/t-sql-escape-character/</link>
		<comments>http://blusix.wordpress.com/2010/11/22/t-sql-escape-character/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 20:34:42 +0000</pubDate>
		<dc:creator>blusix</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[T-SQL]]></category>

		<guid isPermaLink="false">http://blusix.wordpress.com/?p=28</guid>
		<description><![CDATA[In T-SQL, I frequently use the LIKE clause when searching for a string in a VARCHAR or NVARCHAR column. For example, suppose I wanted to search a table that contains user comments for all strings that contain the word &#8216;cheque&#8217; somewhere within the comment. I would simply use the following SELECT statement: SELECT * FROM [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=28&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In T-SQL, I frequently use the LIKE clause when searching for a string in a VARCHAR or NVARCHAR column. For example, suppose I wanted to search a table that contains user comments for all strings that contain the word &#8216;cheque&#8217; somewhere within the comment. I would simply use the following SELECT statement:</p>
<p>SELECT *<br />
FROM dtComment C<br />
WHERE C.Comment LIKE &#8216;%cheque%&#8217;</p>
<p>This would return all rows that contain the word &#8216;cheque&#8217; anywhere within the comment.</p>
<p>Suppose I wanted to return all rows that contain the word &#8216;cheque&#8217; followed by something in square brackets (i.e. &#8216;[' and ']&#8216;). It turns out that the square brackets are reserved in T-SQL LIKE clauses to allow searching for a single character within a range of characters (See the <a title="LIKE" href="http://msdn.microsoft.com/en-us/library/ms179859.aspx" target="_blank">LIKE</a> description in MSDN) . The square brackets are used , so you <strong>cannot</strong> simply write :</p>
<p>SELECT *<br />
FROM dtComment C<br />
WHERE C.Comment LIKE &#8216;%cheque [%&#8217;</p>
<p>You need to <strong>escape</strong> the square bracket so that the LIKE clause actually searches for the character &#8216;[&#8216;. The syntax for escaping the square bracket is the following:</p>
<p>SELECT *<br />
FROM dtComment C<br />
WHERE C.Comment LIKE &#8216;%cheque ![%&#8217; ESCAPE &#8216;!&#8217;</p>
<p>Here, the ! is the escape character, and we use the ESCAPE keyword to tell T-SQL to interpret literally the character immediately following the escape character. So the above SELECT statement is essentially saying &#8220;Literally interpret the character directly following the exclamation point.&#8221;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blusix.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blusix.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blusix.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blusix.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blusix.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blusix.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blusix.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blusix.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blusix.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blusix.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blusix.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blusix.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blusix.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blusix.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=28&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blusix.wordpress.com/2010/11/22/t-sql-escape-character/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/75aa4ee02efe7fc20eda192639d0c4a4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blusix</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting Married Today!</title>
		<link>http://blusix.wordpress.com/2008/10/18/getting-married-today/</link>
		<comments>http://blusix.wordpress.com/2008/10/18/getting-married-today/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 14:45:40 +0000</pubDate>
		<dc:creator>blusix</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Marriage]]></category>

		<guid isPermaLink="false">http://blusix.wordpress.com/?p=18</guid>
		<description><![CDATA[Well, I&#8217;m doing it. I&#8217;m tying the knot today. In less than 2 hours I will be a married man. We&#8217;re getting married at city hall. Surprisingly I&#8217;m not nervous. But I bet I will be in about an hour! It will be strange to think of myself as a married man.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=18&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;m doing it. I&#8217;m tying the knot today. In less than 2 hours I will be a married man. We&#8217;re getting married at city hall. Surprisingly I&#8217;m not nervous. But I bet I will be in about an hour! It will be strange to think of myself as a married man.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blusix.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blusix.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blusix.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blusix.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blusix.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blusix.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blusix.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blusix.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blusix.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blusix.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blusix.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blusix.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blusix.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blusix.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=18&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blusix.wordpress.com/2008/10/18/getting-married-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/75aa4ee02efe7fc20eda192639d0c4a4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blusix</media:title>
		</media:content>
	</item>
		<item>
		<title>Programming Topics I&#8217;d Like to Learn</title>
		<link>http://blusix.wordpress.com/2008/10/17/programming-topics-id-like-to-learn/</link>
		<comments>http://blusix.wordpress.com/2008/10/17/programming-topics-id-like-to-learn/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 02:09:02 +0000</pubDate>
		<dc:creator>blusix</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Programming Topics]]></category>

		<guid isPermaLink="false">http://blusix.wordpress.com/?p=16</guid>
		<description><![CDATA[The more I learn about programming, the more I&#8217;m aware of how much I still don&#8217;t know. I guess that&#8217;s the price of learning. In my head, I have this growing list of topics that I&#8217;m aware that I don&#8217;t yet fully understand. So I figured it&#8217;s high time I compile this list and post [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=16&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The more I learn about programming, the more I&#8217;m aware of how much I still don&#8217;t know. I guess that&#8217;s the price of learning. In my head, I have this growing list of topics that I&#8217;m aware that I don&#8217;t yet fully understand. So I figured it&#8217;s high time I compile this list and post it here, once and for all. Of course, by the very nature of what this list is about, it is bound to grow at an accelerating rate as I become even more knowledgeable in programming. So I&#8217;m going to keep updating it as necessary.</p>
<p>As I begin to understand each topic on this list, I will mark the item as complete by changing the font to <span style="text-decoration:line-through;">strikethrough </span>. If a topic is particularly big or interesting to me, I might break it down in sub-topics and indicate that with a bulleted sub-list on this page.</p>
<p>Some of the topics here are pretty general (for example &#8220;ASP.NET&#8221;). If a topic is general, my intention for putting it on this list is that I get a decent, working-knowledge understanding of it. So, in the case of ASP.NET, I&#8217;d like to get good enough at it that I can build a small web application on my own in a relatively short period of time.</p>
<p>So here is the list, as of today, October 16, 2008.</p>
<p> </p>
<p> </p>
<ul>
<li>ASP.NET</li>
<li>C#
<ul>
<li>Var</li>
<li>IEnumerable</li>
</ul>
</li>
<li>SQL Server
<ul>
<li>New features of SQL Server 2008</li>
<li>Reporting Services</li>
<li>Analysis Services</li>
<li>Integration Services</li>
</ul>
</li>
<li>C++</li>
<li>Java</li>
<li>J2EE</li>
<li>Oracle</li>
<li>DB2</li>
<li>Sybase</li>
<li>PostgreSQL</li>
<li>MySQL</li>
<li>Sharepoint</li>
<li>PHP</li>
<li>Javascript</li>
<li>XML</li>
<li>UML</li>
<li>Perl</li>
<li>SOAP</li>
<li>Unit Testing</li>
<li>Web Services</li>
<li>VB Script</li>
<li>MVC Framework</li>
<li>jQuery</li>
<li>VB</li>
<li>LINQ</li>
<li>Eclipse</li>
<li>Subversion</li>
<li>IIS
<ul>
<li>5.1</li>
<li>6.0</li>
<li>7.0</li>
</ul>
</li>
<li>Apache</li>
<li>django</li>
<li>Python</li>
<li>Shell scripting</li>
<li>WPF</li>
<li>WCF</li>
<li>SVN</li>
<li>Visual Studio
<ul>
<li>Advanced topics</li>
</ul>
</li>
<li>Flash</li>
<li>Silverlight</li>
<li>Expression Blend</li>
<li>XAML</li>
<li>Swing</li>
<li>NetBeans</li>
<li>Linux</li>
<li>Unix</li>
<li>Mobile Application Development</li>
<li>Ruby
<ul>
<li>On Rails</li>
</ul>
</li>
<li>CSS</li>
<li>Win Forms</li>
<li>Web Forms</li>
<li>Regex</li>
<li>Ajax</li>
<li>Dreamweaver</li>
<li>Design Patterns</li>
<li>Delphi</li>
<li>Multithreading</li>
<li>Object Oriented Analysis and Design</li>
<li>ActionScript</li>
<li>SmallTalk</li>
<li>Namespaces</li>
<li>Anonymous Types</li>
<li>String Split</li>
<li>Override</li>
<li>Format Provider</li>
<li>CultureInfo</li>
<li>ToShortDateString</li>
<li>Enumerable Range</li>
<li>String.Join</li>
<li>Dictionary</li>
<li>Yield (IEnumerable)</li>
<li>Interface</li>
<li>Base Class</li>
<li>Delegates/Events</li>
<li>Middleware</li>
<li>SMS/MMS</li>
<li>WAP</li>
<li>Framework</li>
<li>What is a load balancer</li>
<li>What is a wrapper class</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blusix.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blusix.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blusix.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blusix.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blusix.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blusix.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blusix.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blusix.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blusix.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blusix.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blusix.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blusix.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blusix.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blusix.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=16&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blusix.wordpress.com/2008/10/17/programming-topics-id-like-to-learn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/75aa4ee02efe7fc20eda192639d0c4a4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blusix</media:title>
		</media:content>
	</item>
		<item>
		<title>Learning HTML, XHTML, HTML-DOM, Javascript and jQuery</title>
		<link>http://blusix.wordpress.com/2008/10/13/learning-html-xhtml-html-dom-javascript-and-jquery/</link>
		<comments>http://blusix.wordpress.com/2008/10/13/learning-html-xhtml-html-dom-javascript-and-jquery/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 16:46:51 +0000</pubDate>
		<dc:creator>blusix</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML-DOM]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://blusix.wordpress.com/?p=11</guid>
		<description><![CDATA[Today, I&#8217;m going to learn all of the above. I already spent some time on Saturday reviewing HTML. It&#8217;s funny &#8211; it&#8217;s such a basic thing now, HTML, and yet I&#8217;ve never really taken the time to sit down and learn it. No wonder I get a bit confused when I come across certain things. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=11&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today, I&#8217;m going to learn all of the above. I already spent some time on Saturday reviewing HTML. It&#8217;s funny &#8211; it&#8217;s such a basic thing now, HTML, and yet I&#8217;ve never really taken the time to sit down and learn it. No wonder I get a bit confused when I come across certain things. I didn&#8217;t even know what <a href="http://en.wikipedia.org/wiki/Xhtml" target="_blank">XHTML</a> is. Now I know. It is basically the &#8220;new and improved&#8221; HTML. It conforms to the XML syntax. It&#8217;s the default when creating new web applications in newer application development environments, like Visual Studio 2008.</p>
<p>As of right now, I&#8217;m going to review the HTML-DOM, or Document Object Model. I reviewed it a bit on Friday, but I really want to grasp it now. So, what is the HTML DOM?</p>
<p>In short, it is:</p>
<ul>
<li>A standard object model for HTML</li>
<li>A standard programming interface for HTML</li>
<li>Platform- and language- independent</li>
<li>A W3C standard</li>
</ul>
<div>The HTML DOM defines the <strong>objects and properties</strong> of all HTML elements, and the <strong>methods</strong> (interface) to access them.</div>
<div>The DOM models HTML as a set of node objects. The nodes can be accessed with Javascript or other programming languages.</div>
<div>
<h2>JavaScript Objects</h2>
<p>Follow the links to learn more about the objects and their collections, properties, methods and events. <strong>Contain lots of examples!</strong></p>
<table id="table1" class="ex" border="1" cellspacing="0" width="100%">
<tbody>
<tr>
<th width="25%" align="left">Object</th>
<th width="75%" align="left">Description</th>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_window.asp">Window</a></td>
<td valign="top">The top level object in the JavaScript hierarchy. The Window object represents a browser window. A Window object is created automatically with every instance of a &lt;body&gt; or &lt;frameset&gt; tag</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_navigator.asp">Navigator</a></td>
<td valign="top">Contains information about the client&#8217;s browser</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_screen.asp">Screen</a></td>
<td valign="top">Contains information about the client&#8217;s display screen</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_history.asp">History</a></td>
<td valign="top">Contains the visited URLs in the browser window</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_location.asp">Location</a></td>
<td valign="top">Contains information about the current URL</td>
</tr>
</tbody>
</table>
<h2>HTML DOM Objects</h2>
<p>Follow the links to learn more about the objects and their collections, properties, methods and events. <strong>Contain lots of examples!</strong></p>
<table class="ex" border="1" cellspacing="0" width="100%">
<tbody>
<tr>
<th width="25%" align="left">Object</th>
<th width="75%" align="left">Description</th>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_document.asp">Document</a></td>
<td valign="top">Represents the entire HTML document and can be used to access all elements in a page</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_anchor.asp">Anchor</a></td>
<td valign="top">Represents an &lt;a&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_area.asp">Area</a></td>
<td valign="top">Represents an &lt;area&gt; element inside an image-map</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_base.asp">Base</a></td>
<td valign="top">Represents a &lt;base&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_body.asp">Body</a></td>
<td valign="top">Represents the &lt;body&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_pushbutton.asp">Button</a></td>
<td valign="top">Represents a &lt;button&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_event.asp">Event</a></td>
<td valign="top">Represents the state of an event</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_form.asp">Form</a></td>
<td valign="top">Represents a &lt;form&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_frame.asp">Frame</a></td>
<td valign="top">Represents a &lt;frame&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_frameset.asp">Frameset</a></td>
<td valign="top">Represents a &lt;frameset&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_iframe.asp">Iframe</a></td>
<td valign="top">Represents an &lt;iframe&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_image.asp">Image</a></td>
<td valign="top">Represents an &lt;img&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_button.asp">Input button</a></td>
<td valign="top">Represents a button in an HTML form</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_checkbox.asp">Input checkbox</a></td>
<td valign="top">Represents a checkbox in an HTML form</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_fileupload.asp">Input file</a></td>
<td valign="top">Represents a fileupload in an HTML form</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_hidden.asp">Input hidden</a></td>
<td valign="top">Represents a hidden field in an HTML form</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_password.asp">Input password</a></td>
<td valign="top">Represents a password field in an HTML form</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_radio.asp">Input radio</a></td>
<td valign="top">Represents a radio button in an HTML form</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_reset.asp">Input reset</a></td>
<td valign="top">Represents a reset button in an HTML form</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_submit.asp">Input submit</a></td>
<td valign="top">Represents a submit button in an HTML form</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_text.asp">Input text</a></td>
<td valign="top">Represents a text-input field in an HTML form</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_link.asp">Link</a></td>
<td valign="top">Represents a &lt;link&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_meta.asp">Meta</a></td>
<td valign="top">Represents a &lt;meta&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_option.asp">Option</a></td>
<td valign="top">Represents an &lt;option&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_select.asp">Select</a></td>
<td valign="top">Represents a selection list in an HTML form</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_style.asp">Style</a></td>
<td valign="top">Represents an individual style statement</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_table.asp">Table</a></td>
<td valign="top">Represents a &lt;table&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_tabledata.asp">TableData</a></td>
<td valign="top">Represents a &lt;td&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_tablerow.asp">TableRow</a></td>
<td valign="top">Represents a &lt;tr&gt; element</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/dom_obj_textarea.asp">Textarea</a></td>
<td valign="top">Represents a &lt;textarea&gt; element</td>
</tr>
</tbody>
</table>
</div>
<div>
<h2>Event Handlers</h2>
<p>New to HTML 4.0 was the ability to let HTML events trigger actions in the browser, like starting a JavaScript when a user clicks on an HTML element. Below is a list of the attributes that can be inserted into HTML tags to define event actions.</p>
<table id="table4" class="ex" border="1" cellspacing="0" width="100%">
<tbody>
<tr>
<th width="30%" align="left" valign="top">Attribute</th>
<th width="50%" align="left" valign="top">The event occurs when&#8230;</th>
<th width="5%" align="left" valign="top">IE</th>
<th width="4%" align="left" valign="top">F</th>
<th width="4%" align="left" valign="top">O</th>
<th width="7%" align="left" valign="top">W3C</th>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onabort.asp" target="_top">onabort</a></td>
<td valign="top">Loading of an image is interrupted</td>
<td valign="top">4</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onblur.asp" target="_top">onblur</a></td>
<td valign="top">An element loses focus</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onchange.asp" target="_top">onchange</a></td>
<td valign="top">The content of a field changes</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onclick.asp" target="_top">onclick</a></td>
<td valign="top">Mouse clicks an object</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_ondblclick.asp" target="_top">ondblclick</a></td>
<td valign="top">Mouse double-clicks an object</td>
<td valign="top">4</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onerror.asp" target="_top">onerror</a></td>
<td valign="top">An error occurs when loading a document or an image</td>
<td valign="top">4</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onfocus.asp" target="_top">onfocus</a></td>
<td valign="top">An element gets focus</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onkeydown.asp" target="_top">onkeydown</a></td>
<td valign="top">A keyboard key is pressed</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">No</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onkeypress.asp" target="_top">onkeypress</a></td>
<td valign="top">A keyboard key is pressed or held down</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onkeyup.asp" target="_top">onkeyup</a></td>
<td valign="top">A keyboard key is released</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onload.asp" target="_top">onload</a></td>
<td valign="top">A page or an image is finished loading</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onmousedown.asp" target="_top">onmousedown</a></td>
<td valign="top">A mouse button is pressed</td>
<td valign="top">4</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onmousemove.asp">onmousemove</a></td>
<td valign="top">The mouse is moved</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onmouseout.asp" target="_top">onmouseout</a></td>
<td valign="top">The mouse is moved off an element</td>
<td valign="top">4</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onmouseover.asp" target="_top">onmouseover</a></td>
<td valign="top">The mouse is moved over an element</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onmouseup.asp" target="_top">onmouseup</a></td>
<td valign="top">A mouse button is released</td>
<td valign="top">4</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onreset.asp" target="_top">onreset</a></td>
<td valign="top">The reset button is clicked</td>
<td valign="top">4</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onresize.asp" target="_top">onresize</a></td>
<td valign="top">A window or frame is resized</td>
<td valign="top">4</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onselect.asp" target="_top">onselect</a></td>
<td valign="top">Text is selected</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onsubmit.asp" target="_top">onsubmit</a></td>
<td valign="top">The submit button is clicked</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/htmldom/event_onunload.asp" target="_top">onunload</a></td>
<td valign="top">The user exits the page</td>
<td valign="top">3</td>
<td valign="top">1</td>
<td valign="top">9</td>
<td valign="top">Yes</td>
</tr>
</tbody>
</table>
</div>
<div>That&#8217;s all I&#8217;m going to say about HTML DOM. Now, onto Javascript.</div>
<div>
<h2>What is JavaScript?</h2>
<ul>
<li>JavaScript was designed to add interactivity to HTML pages</li>
<li>JavaScript is a scripting language</li>
<li>A scripting language is a lightweight programming language</li>
<li>JavaScript is usually embedded directly into HTML pages</li>
<li>JavaScript is an interpreted language (means that scripts execute without preliminary compilation)</li>
<li>Everyone can use JavaScript without purchasing a license</li>
</ul>
<div>
<p class="intro">JavaScripts in the body section will be executed WHILE the page loads.</p>
<p class="intro">JavaScripts in the head section will be executed when CALLED.</p>
<p class="intro"><em>Update: 4:31 pm</em></p>
<p class="intro">So it turns out that Javascript is actually quite simple. There&#8217;s not much to it. That is the point of it I guess. It is supposed to be lightweight and fast. A few new things I learned about Javascript:</p>
<p class="intro"> </p>
<ul>
<li>There are two special statements that can be used inside loops: break and continue. The break command will break the loop and continue executing the code that follows after the loop (if any). The continue command will break the current loop and continue with the next value. </li>
<li>The javascript equivalent to C#&#8217;s <em>foreach</em> statement is <em>for (variable in object)</em></li>
<li>The complete Javascript Event Reference:<br />
<strong>FF</strong>: Firefox, <strong>N</strong>: Netscape, <strong>IE</strong>: Internet Explorer </p>
<table id="table10" class="ex" border="1" cellspacing="0" width="100%">
<tbody>
<tr>
<th width="20%" align="left" valign="top">Attribute</th>
<th width="68%" align="left" valign="top">The event occurs when&#8230;</th>
<th width="4%" align="left" valign="top">FF</th>
<th width="4%" align="left" valign="top">N</th>
<th width="4%" align="left" valign="top">IE</th>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onabort.asp" target="_top">onabort</a></td>
<td valign="top">Loading of an image is interrupted</td>
<td valign="top">1</td>
<td valign="top">3</td>
<td valign="top">4</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onblur.asp" target="_top">onblur</a></td>
<td valign="top">An element loses focus</td>
<td valign="top">1</td>
<td valign="top">2</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onchange.asp" target="_top">onchange</a></td>
<td valign="top">The user changes the content of a field</td>
<td valign="top">1</td>
<td valign="top">2</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onclick.asp" target="_top">onclick</a></td>
<td valign="top">Mouse clicks an object</td>
<td valign="top">1</td>
<td valign="top">2</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_ondblclick.asp" target="_top">ondblclick</a></td>
<td valign="top">Mouse double-clicks an object</td>
<td valign="top">1</td>
<td valign="top">4</td>
<td valign="top">4</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onerror.asp" target="_top">onerror</a></td>
<td valign="top">An error occurs when loading a document or an image</td>
<td valign="top">1</td>
<td valign="top">3</td>
<td valign="top">4</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onfocus.asp" target="_top">onfocus</a></td>
<td valign="top">An element gets focus</td>
<td valign="top">1</td>
<td valign="top">2</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onkeydown.asp" target="_top">onkeydown</a></td>
<td valign="top">A keyboard key is pressed</td>
<td valign="top">1</td>
<td valign="top">4</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onkeypress.asp" target="_top">onkeypress</a></td>
<td valign="top">A keyboard key is pressed or held down</td>
<td valign="top">1</td>
<td valign="top">4</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onkeyup.asp" target="_top">onkeyup</a></td>
<td valign="top">A keyboard key is released</td>
<td valign="top">1</td>
<td valign="top">4</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onload.asp" target="_top">onload</a></td>
<td valign="top">A page or an image is finished loading</td>
<td valign="top">1</td>
<td valign="top">2</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onmousedown.asp" target="_top">onmousedown</a></td>
<td valign="top">A mouse button is pressed</td>
<td valign="top">1</td>
<td valign="top">4</td>
<td valign="top">4</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onmousemove.asp">onmousemove</a></td>
<td valign="top">The mouse is moved</td>
<td valign="top">1</td>
<td valign="top">6</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onmouseout.asp" target="_top">onmouseout</a></td>
<td valign="top">The mouse is moved off an element</td>
<td valign="top">1</td>
<td valign="top">4</td>
<td valign="top">4</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onmouseover.asp" target="_top">onmouseover</a></td>
<td valign="top">The mouse is moved over an element</td>
<td valign="top">1</td>
<td valign="top">2</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onmouseup.asp" target="_top">onmouseup</a></td>
<td valign="top">A mouse button is released</td>
<td valign="top">1</td>
<td valign="top">4</td>
<td valign="top">4</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onreset.asp" target="_top">onreset</a></td>
<td valign="top">The reset button is clicked</td>
<td valign="top">1</td>
<td valign="top">3</td>
<td valign="top">4</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onresize.asp" target="_top">onresize</a></td>
<td valign="top">A window or frame is resized</td>
<td valign="top">1</td>
<td valign="top">4</td>
<td valign="top">4</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onselect.asp" target="_top">onselect</a></td>
<td valign="top">Text is selected</td>
<td valign="top">1</td>
<td valign="top">2</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onsubmit.asp" target="_top">onsubmit</a></td>
<td valign="top">The submit button is clicked</td>
<td valign="top">1</td>
<td valign="top">2</td>
<td valign="top">3</td>
</tr>
<tr>
<td valign="top"><a href="http://www.w3schools.com/jsref/jsref_onunload.asp" target="_top">onunload</a></td>
<td valign="top">The user exits the page</td>
<td valign="top">1</td>
<td valign="top">2</td>
<td valign="top">3</td>
</tr>
</tbody>
</table>
</li>
</ul>
<p> </p></div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blusix.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blusix.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blusix.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blusix.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blusix.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blusix.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blusix.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blusix.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blusix.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blusix.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blusix.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blusix.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blusix.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blusix.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=11&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blusix.wordpress.com/2008/10/13/learning-html-xhtml-html-dom-javascript-and-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/75aa4ee02efe7fc20eda192639d0c4a4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blusix</media:title>
		</media:content>
	</item>
		<item>
		<title>New M (or D) Programming Language</title>
		<link>http://blusix.wordpress.com/2008/10/13/new-m-or-d-programming-language/</link>
		<comments>http://blusix.wordpress.com/2008/10/13/new-m-or-d-programming-language/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 14:59:54 +0000</pubDate>
		<dc:creator>blusix</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[M]]></category>
		<category><![CDATA[Programming Language]]></category>

		<guid isPermaLink="false">http://blusix.wordpress.com/?p=9</guid>
		<description><![CDATA[I just read something on Stackoverflow that there is a new programming language coming out from Microsoft called M. Or perhaps it&#8217;s called D. In either case, it&#8217;s a new modeling language currently in the works by Microsoft.  I have no idea what it&#8217;s about. But for once, I&#8217;d like to be get to know [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=9&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just read something on Stackoverflow that there is a new programming language coming out from Microsoft called M. Or perhaps it&#8217;s called D. In either case, it&#8217;s a new modeling language currently in the works by Microsoft. </p>
<p>I have no idea what it&#8217;s about. But for once, I&#8217;d like to be get to know something as soon as it comes out. I don&#8217;t want to be left behind on this one. All the other technologies currently in use have millions of experts worldwide. So the fact that I&#8217;m just getting started learning something that is already widely in use makes it a bit intimidating. </p>
<p>Here is an opportunity to follow something as it gets more well-known and popular. I want to be in the know right from the start. So I&#8217;m going to follow this one closely. Who knows &#8211; it might become the next Java or C#. You never know. I&#8217;d like to know everything there is to know about it.</p>
<p>Here is a blog post about it:<a href="http://blogs.zdnet.com/microsoft/?p=1430">http://blogs.zdnet.com/microsoft/?p=1430</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blusix.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blusix.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blusix.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blusix.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blusix.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blusix.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blusix.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blusix.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blusix.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blusix.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blusix.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blusix.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blusix.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blusix.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=9&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blusix.wordpress.com/2008/10/13/new-m-or-d-programming-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/75aa4ee02efe7fc20eda192639d0c4a4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blusix</media:title>
		</media:content>
	</item>
		<item>
		<title>Who I want to be as a programmer</title>
		<link>http://blusix.wordpress.com/2008/10/13/who-i-want-to-be-as-a-programmer/</link>
		<comments>http://blusix.wordpress.com/2008/10/13/who-i-want-to-be-as-a-programmer/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 02:43:02 +0000</pubDate>
		<dc:creator>blusix</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blusix.wordpress.com/?p=7</guid>
		<description><![CDATA[I want to be at level of mastery in programming such that I am extremely confident in my skills and abilities. This means that I have several hundred pieces of evidence that I have previously done an impressively good job in a programming assignment. I know from history that I have done things right and properly [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=7&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I want to be at level of mastery in programming such that I am extremely <strong>confident</strong> in my skills and abilities. This means that I have several hundred pieces of evidence that I have previously done an impressively good job in a programming assignment. I know from history that I have done things right and properly in a timely manner, and value was provided from my work. </p>
<p>I am increasingly sought out for my knowledge in programming from my peers at work. People come to me for not only application-specific questions, but also for general &#8220;how do you&#8221; type questions for something I&#8217;m not even involved in. The words &#8220;ask Francois, he knows how to do that&#8221; or &#8220;he&#8217;s the go-to guy for that&#8221; are often heard at the office. I frequently spend time explaining concepts to coworkers and the conversation usually ends with &#8220;OK, I get it now. Thanks, Francois you&#8217;re a lifesaver&#8221;. I am never annoyed by these questions because not only am I happy to be considered so <strong>valuable </strong>at work, but I&#8217;m also <strong>happy</strong> to talk about something I am so interested in and passionate about. Programming is not only my job. It is also my hobby and my passion. I think about programming when I&#8217;m not at work &#8211; not because I&#8217;m stressed about it, but rather because I&#8217;m fascinated by it. It&#8217;s fun. I enjoy it. I love thinking about it. I&#8217;d do it even if I never had to work another day in my life. <strong>This is what I do in my free time because I love it.</strong> </p>
<p>When I code I do it beautifully. I take <strong>pride</strong> in my work, and it shows. The programs I write are not just thrown together quickly so I can put the assignment behind me and relax and check out. Rather, they are each and every one of them exciting to me &#8211; new challenges, puzzles I can&#8217;t wait to attack because I know how much <strong>fun</strong> I get from taking a problem apart, thinking about a solution, trying it, testing it, correcting it, testing it again, and continuing the process until I get it right. To me, each new problem is not something to worry about &#8211; no, it is like reaching a new screen in a computer game I haven&#8217;t finished yet. I don&#8217;t yet know how I&#8217;m going to complete this. I just know that I eventually will, and it&#8217;s going to be really fun to try and figure out how to do it. I know it probably won&#8217;t happen on the first try and if it did then it really wasn&#8217;t all that fun to begin with (would I enjoy a video game that I could easily get through on the first try every new level?). Problems are just new, never-before-played levels. When you first start a video game and you&#8217;re not quite sure you like it yet, having too difficult a level early on is frustrating and makes you think &#8220;This game sucks&#8221;. So don&#8217;t take on something too difficult too soon. Take on small problems (like a simple form or method with parameters, etc.) and solve them fully and correctly until you can do it without thinking about it anymore. Then move on to something slightly more complex, like multiple forms that interact with each other. You&#8217;ll have to think about it for a few minutes, but after some thought you&#8217;ll get it and be confident in the solution. When you can do those problems easily without thinking about it, take on something even more complicated, like writing a small windows forms application. It might take you a little while, a couple of hours perhaps. But you&#8217;ll figure it out eventually, and you&#8217;ll know it works. Do it again, and try it a little differently. At this level of problem, there should be a few correct ways of solving the problem. Get through different methods of doing it. Even if you can&#8217;t wait to try something new. Be <strong>patient</strong>. Do this <strong>completely</strong> and do it well. Your career depends on it. </p>
<p>Here&#8217;s how I do things now: I&#8217;m assigned a problem. I immediately make up that my performance and skillset is currently being <strong>questioned</strong>, and that so far I haven&#8217;t done anything impressive at work. I&#8217;m getting the job done, but I&#8217;m nobody special, and wouldn&#8217;t be missed if i left (from a productivity/skill value point of view anyway). So I&#8217;m being <strong>scared and paranoid. </strong>Then I think about how little I actually know. How, compared to everyone else at work, I know the least. Everyone is at least somewhat more skilled than me. I&#8217;m <strong>embarrassed and ashamed</strong>. This doesn&#8217;t leave me at all feeling confident. After a few minutes of wasting time surfing the web for nothing in particular, I say to myself &#8220;OK, you have to do this. You can figure this out&#8221;. But who I&#8217;m actually being about it at that moment is <strong>dreadful and unconfident</strong>. One of two things happens next.</p>
<p>1) Either I don&#8217;t solve the problem, and after a few <strong>nervous</strong> hours of just trying anything and everything to no avail, I <strong>give up</strong> and ask for help. At this point, I am again <strong>embarrassed and ashamed</strong>, and I really become <strong>self-loathing</strong> for a while. I tell myself I should have been able to get this. If I had been smart or a good worker, I would have figured it out. But no, I&#8217;m <strong>stupid and a bad worker</strong>. I am <strong>lazy and a fraud.</strong> I <strong>don&#8217;t deserve</strong> any of the rewards of being a good programmer or employee. I <strong>will never amount to anything</strong> because of what <strong>a loser</strong> I am. Maybe if I didn&#8217;t spend so much time smoking pot or masturbating, I would actually have a chance at being somebody in this life. But no, I am just a <strong>failure</strong> and will always be that way;</p>
<p>OR</p>
<p>2) I DO solve the problem, and am temporarily <strong>relieved</strong> that I &#8220;got through this one&#8221;. I&#8217;ve staved off discovery of my being a <strong>fraud</strong> for one more day. I&#8217;m <strong>safe</strong> again, temporarily. It&#8217;s never enough though. I never feel truly safe. I feel like I&#8217;ve just outrun the school bully and made it home safely. I&#8217;m safe for the night. I feel temporarily ok because I know nothing will happen tonight. But what I do feel is the underlying <strong>dread</strong> that tomorrow, I&#8217;m going to have to deal with this again and I don&#8217;t want that to happen. I feel <strong>scared</strong>, because i think I&#8217;m the only one at work who <strong>sucks</strong> so bad at his job. I feel utterly <strong>alone</strong>. Any temporary victories I have are out of <strong>luck</strong>, or because I did things right but just this time because I was <strong>just having a good day</strong>. </p>
<p> </p>
<p>All of this has to change. It starts with deciding who you want to be. Who I want to be is</p>
<p><strong>confident<br />
valuable<br />
happy<br />
proud<br />
fun<br />
patient<br />
integrous</strong></p>
<p><strong><span style="font-weight:normal;">Now, decide what those things mean to you. How does it look to be these things at work in real life?</span></strong></p>
<p><strong>Confident<span style="font-weight:normal;"> - I know what I&#8217;m doing, and I know that I know what I&#8217;m doing. I believe in myself. I have a history of success and I know it. I believe that I can achieve anything, and that the time I take to achieve it was exactly how long it should have taken me. I believe that whatever I needed to do to achieve what I set out to achieve was exactly what I should have done. There was never any other &#8220;right way&#8221;. There is just the way I do it, and for me and my life, that&#8217;s the right way. </span></strong></p>
<p><strong>Valuable<span style="font-weight:normal;"> - I make a difference. I make other peoples&#8217; lives better. Without me, someone&#8217;s life would be of less quality. At work, I make a difference. I help people. I solve problems. I make something look and work nicer. I make things work faster. I make things work. My work is admired. It is useful to everyone who comes across it. </span></strong></p>
<p><strong>Happy<span style="font-weight:normal;"> - I enjoy my life. I like being here. There is nothing else I&#8217;d rather be doing at this very moment. It&#8217;s so cool that I get paid to do this. </span></strong></p>
<p><strong>Proud<span style="font-weight:normal;"> - My work is important to me. It&#8217;s an extension of who I am. It&#8217;s very important to me that my work be functional, easy to understand, maintainable and sustainable. It&#8217;s my craft. It&#8217;s my art. It&#8217;s my legacy. I have room for making mistakes. I don&#8217;t take mistakes lightly, but I don&#8217;t make myself wrong for them either. I learn from them. I know not to make the same mistakes again. I feel like I&#8217;m getting better and better every day. I love to show off the work I&#8217;ve done. I like talking about how I did it. I like talking about my ideas with other smart people, and potentially even seeing a better way to do it. </span></strong></p>
<p><strong>Fun<span style="font-weight:normal;"> - I love programming. It&#8217;s like a game to me. A game I&#8217;m really, really REALLY good at. I don&#8217;t just play it to check out and relax though. It&#8217;s almost like a multiplayer online game with millions of players, and many of them are just beginners. A few have been playing a few weeks and are starting to get the hang of it. A few have played for several months now and are really becoming known for being good at one or two things in particular about the game. Even fewer are those have been playing for over a year &#8211; they are at among the highest levels in the game. They know what they&#8217;re doing. Then, there&#8217;s me. I&#8217;m at the highest levels. There are only a few others like me. I love being at the top. Everyone in the game wishes they were me. Some of them will be eventually, but right now, I&#8217;m at the top. It&#8217;s awesome. It feels </span>powerful</strong> even. But mostly, it&#8217;s just so much fun being at this level. It&#8217;s like something really fun and ultimately meaningless that I nevertheless spent a good portion of my life on, and so it&#8217;s important to me. But still fun.</p>
<p><strong>Patient</strong> - I know things take time to learn. I accept that. I know that I don&#8217;t know everything. I accept that. I have faith that I will eventually know what there is to know. However long it takes to get there is ok with me.</p>
<p><strong>Integrous</strong> - I say what I&#8217;ll do and I do what I say. I make a plan for everything. I know what needs to be done before I start. Then I do it.</p>
<p> </p>
<p>Now <strong>GO AND BE THOSE</strong>. Every one of them. Every day. You won&#8217;t get it right the first day. Or the second. You won&#8217;t feel like being them all the time. Be them anyway &#8211; just for practice for when you DO want to be them, you&#8217;ll be that much better at it by then. Give up any feelings of silliness or loserness or anger or impatient or anything else that might get in the way. Just be who you want to be. Every day. Without fail. All of them. You will suck at it at first. That&#8217;s ok. Do it anyway. You&#8217;ll be better at it in a week, but you&#8217;ll still suck. That&#8217;s ok. Do it anyway. You&#8217;ll be better in a month. And again in 3 months. At some point, it will actually start to feel natural to you. It might take a few weeks or months, but it will happen. And it will be so wonderful when it does, because now you can really take off with it. Now that it actually feels natural to be this way, you can start to perfect. You can start to experiment. Constantly step out of your comfort zone. Grow. Get better. Become more. You can do this. You are awesome. Your life depends on this. Your happiness depends on this. This is who you really are. Don&#8217;t waste another day. Today is the best day to do this. </p>
<p><strong> </strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blusix.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blusix.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blusix.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blusix.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blusix.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blusix.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blusix.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blusix.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blusix.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blusix.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blusix.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blusix.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blusix.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blusix.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=7&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blusix.wordpress.com/2008/10/13/who-i-want-to-be-as-a-programmer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/75aa4ee02efe7fc20eda192639d0c4a4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blusix</media:title>
		</media:content>
	</item>
		<item>
		<title>First Post</title>
		<link>http://blusix.wordpress.com/2008/10/11/first-post/</link>
		<comments>http://blusix.wordpress.com/2008/10/11/first-post/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 22:10:10 +0000</pubDate>
		<dc:creator>blusix</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blusix.wordpress.com/?p=3</guid>
		<description><![CDATA[This is my first post on this new blog. What this blog will be about: Basically everything. All I want is a convenient medium to keep track of the daily goings-on of my life, as well as my thoughts, opinions, things I&#8217;ve learned and experienced, etc. What will be the subjects? Who knows? Programming, computers, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=3&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my first post on this new blog. What this blog will be about: Basically everything. All I want is a convenient medium to keep track of the daily goings-on of my life, as well as my thoughts, opinions, things I&#8217;ve learned and experienced, etc. What will be the subjects? Who knows? Programming, computers, politics, relationships, sex, dogs, drugs, the weather, books, exercise, nature, travel&#8230;whatever. All things that interest me. I have no desire for this blog to be something that everyone reads; I don&#8217;t care if anyone ever sees it or not. It&#8217;s for me entirely. I want to keep track of the things I find interesting.</p>
<p>That&#8217;s all. More later, fuckers!</p>
<p>Oh yeah &#8211; since I don&#8217;t care if anyone ever sees this, there will be lots of swearing and inappropriate shit on here&#8230;fuckers.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blusix.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blusix.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blusix.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blusix.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/blusix.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/blusix.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/blusix.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/blusix.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blusix.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blusix.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blusix.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blusix.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blusix.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blusix.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blusix.wordpress.com&amp;blog=5143579&amp;post=3&amp;subd=blusix&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blusix.wordpress.com/2008/10/11/first-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/75aa4ee02efe7fc20eda192639d0c4a4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">blusix</media:title>
		</media:content>
	</item>
	</channel>
</rss>
