<?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:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Ian Swenson .com &#187; This Site</title>
	<atom:link href="http://ianswenson.com/category/this-site/feed" rel="self" type="application/rss+xml" />
	<link>http://ianswenson.com</link>
	<description>Professionally Amateurish</description>
	<lastBuildDate>Wed, 21 Oct 2009 21:14:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>On Making a Web Site &#8211; HTML / CSS Layout</title>
		<link>http://ianswenson.com/this-site/on-making-a-web-site-html-css-layout</link>
		<comments>http://ianswenson.com/this-site/on-making-a-web-site-html-css-layout#comments</comments>
		<pubDate>Thu, 31 Jul 2008 03:32:12 +0000</pubDate>
		<dc:creator>ianswens</dc:creator>
				<category><![CDATA[This Site]]></category>

		<guid isPermaLink="false">http://ianswenson.com/?p=90</guid>
		<description><![CDATA[I know, I know. The always intimidating coding part of making a web site. The biggest reason people use the WYSIWYG web editors is because they gloss over the coding. Why code if you can just slap some images in Front Page or DreamWeaver and it looks fine?
The reason is because you don&#8217;t have much [...]]]></description>
			<content:encoded><![CDATA[<p>I know, I know. The always intimidating coding part of making a web site. The biggest reason people use the WYSIWYG web editors is because they gloss over the coding. Why code if you can just slap some images in Front Page or DreamWeaver and it looks fine?</p>
<p>The reason is because you don&#8217;t have much control over your web site if you use a WYSIWYG editor. It makes it difficult to duplicate pages, fine-tune details, and provide consistency all the way around. Plus, if you&#8217;re skilled enough in the editor to actually overcome all of those deficiencies, you spent as much time learning to do that as you would learning HTML and CSS.</p>
<p>So that brings us here. It&#8217;s time for us to design the layout of our new web page using HTML and CSS.  I&#8217;m going to have three parts for this tutorial. First, we&#8217;ll talk about a little HTML, its basic structure and what you&#8217;ll need to know. Second, we&#8217;ll look at styling that with a bit of CSS and I&#8217;ll explain its basic precepts. Last, we&#8217;ll put all of that to use and create a basic template page.</p>
<p><span id="more-90"></span></p>
<h4>HTML Elements</h4>
<p>Chances are you&#8217;re already at least a little familiar with HTML. I&#8217;m not going to get too much into the nitty-gritty details here (really, do you need to know it stands for <em>HyperText Markup Language</em>?), but you do need to know a few basic rules.</p>
<p>First of all, for the most part HTML works on opening and closing tags which surround content. There are a few exceptions to this, but we&#8217;ll get to that if we need to.  Here is an example of a paragraph in HTML:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;p&gt;Lorem ipsum dolor sit amet, consectetuer adipiscing elit.&lt;/p&gt;</pre></td></tr></table></div>

<p>Now, nevermind the phony Latin, that&#8217;s just so you focus on what matters: the tags. That&#8217;s right, <em>&lt;p&gt;</em> and <em>&lt;/p&gt;</em> are called tags. More specifically, together they comprise a <strong>paragraph element</strong> composed of the opening <em>&lt;p&gt;</em> and the closing <em>&lt;/p&gt;</em>. The <em>p</em> stands for <em>paragraph</em> and the forward-slash means <em>close this paragraph</em>. Everything in between &mdash; the <em>lorem ipsum&#0133;</em> &mdash; is affected by the paragraph element.</p>
<p>Here is a clearer example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;p&gt;&lt;strong&gt;Lorem ipsum&lt;/strong&gt; dolor sit amet, consectetuer adipiscing elit.&lt;/p&gt;</pre></td></tr></table></div>

<p>The <em>&lt;strong&gt;</em> element is for bolding text. Anything inside the strong element will be bolded on a web page, like this:</p>
<p><strong>Lorem ipsum</strong> dolor sit amet, consectetuer adipiscing elit.</p>
<p>Now the important thing to realize is that until you close a element, it is still open and affecting everything within it.  So if were to do this (semantically-incorrect) code here, it would bold everything inside it:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;strong&gt;
&lt;p&gt;Lorem ipsum dolor sit amet, consectetuer adipiscing elit.&lt;/p&gt;
&lt;p&gt;Pellentesque ipsum urna, dictum vel, porttitor at, luctus a, arcu.&lt;/p&gt;
&lt;p&gt;Donec turpis. Duis molestie felis at magna. Etiam vitae lorem.&lt;/p&gt;
&lt;/strong&gt;</pre></td></tr></table></div>

<p>That means all three paragraphs would be bolded. If I forgot to include the closing strong tag, the browser (IE/Firefox/whatever) will assume you meant to close it <em>at the end of the page</em>. I have occasionally seen news stories using italicized text and then forgot to include the closing tag, so the rest of the article was italicized, making it difficult to read.</p>
<p>Remember to close your elements.</p>
<h4>HTML Structure</h4>
<p>Here is a sample, extremely basic HTML page:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
	&lt;head&gt;
		&lt;title&gt;Basic HTML Page&lt;/title&gt;
	&lt;/head&gt;
&nbsp;
	&lt;body&gt;
		&lt;p&gt;Lorem ipsum dolor sit amet, consectetuer adipiscing elit.&lt;/p&gt;
		&lt;!--This is a comment about this paragraph.--&gt;
		&lt;p&gt;Pellentesque ipsum urna, dictum vel, porttitor at, luctus a, arcu.&lt;/p&gt;
		&lt;p&gt;Donec turpis. Duis molestie felis at magna. Etiam vitae lorem.&lt;/p&gt;
	&lt;/body&gt;
&lt;/html&gt;</pre></td></tr></table></div>

<p>First of all, notice that all of the tags are lower-case and all close. This is referred to as semantic markup. That means it is written in a way that all browsers are sure to understand and not display incorrectly.  </p>
<p>Second, the code is organized by tabs. This is not strictly necessary and is purely on a personal basis. You could even go with no spaces or tabs between elements (and places like Google do). However, good practice is to consistently organize your code so that it&#8217;s easy to find and change things after days or months of not looking at it. Plus, if you work on web sites with other people, it&#8217;s a good idea to come up with some standards for organization.</p>
<p>I personally use tabs because even though it looks like five spaces &mdash; good separation for the eye &mdash; it only takes one character for a tab, and thus makes a smaller file than if I used two spaces. And file size is something you need to care about for the internet.</p>
<p>Now, for specifics on the example. </p>
<p>The <em>html</em> element tells the browser what language it&#8217;s dealing with. There are more specifics you should include with it, but for now this will suffice. </p>
<p>The <em>head</em> element is where you include all of the things that affect the web page, but don&#8217;t actually show up in it. This would include links to external files for styling or scripts or for the <em>title</em>, as in this example.</p>
<p>The <em>body</em> element is where all of the display content goes. This is the actual web page, if you will. Inside the body are three paragraph elements which contain the text for the web page.</p>
<p>I also included a comment. Comments are for you to make notes on your coding, help organize, or to communicate between you and anyone else looking at the code. Comments don&#8217;t show up on the web page, so use them to your heart&#8217;s content. Start one with <em>&lt;!&ndash;&ndash;</em> and end it with <em>&ndash;&ndash;&gt;</em></p>
<div class="hide"><em>If you’re reading this via a feed, there are more pages on the web site. If you’re already on the web site, <strong>IGNORE THIS!</strong></em></div>
]]></content:encoded>
			<wfw:commentRss>http://ianswenson.com/this-site/on-making-a-web-site-html-css-layout/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On Making a Web Site &#8211; Initial Photoshop Design</title>
		<link>http://ianswenson.com/this-site/on-making-a-web-site-initial-photoshop-design</link>
		<comments>http://ianswenson.com/this-site/on-making-a-web-site-initial-photoshop-design#comments</comments>
		<pubDate>Mon, 21 Jul 2008 20:29:45 +0000</pubDate>
		<dc:creator>ianswens</dc:creator>
				<category><![CDATA[This Site]]></category>

		<guid isPermaLink="false">http://ianswenson.com/?p=47</guid>
		<description><![CDATA[So now you&#8217;ve got all your tools set up &#8212; you have a test platform for Wordpress, a graphics editor, and everything else you need to get going with web design. You&#8217;ve also come up with a basic layout and have decided what you want to present.
Next to actually deciding what you want to accomplish, [...]]]></description>
			<content:encoded><![CDATA[<p>So now you&#8217;ve got all your tools set up &mdash; you have a test platform for Wordpress, a graphics editor, and everything else you need to get going with web design. You&#8217;ve also come up with a basic layout and have decided what you want to present.</p>
<p>Next to actually deciding what you want to accomplish, this is the toughest step. You need to figure out what your web site should actually look like. Yes, this takes creativity, but more than that it takes perseverance. It&#8217;s hard to be struck by inspiration when you need to be. It&#8217;s much better to just suss it out and let inspiration strike organically in the process. I&#8217;ll illustrate this as we progress.</p>
<p><span id="more-47"></span></p>
<p>I am not a very creative person. My strength lies in taking something that someone has created and enhancing it. I can play another&#8217;s music. I can strengthen another&#8217;s writing. And I can assemble another&#8217;s artwork. You could say that I&#8217;m a good editor. I&#8217;m not good at coming up with that first step, but I excel at taking it to a polished end. I mention this to show you how you too don&#8217;t have to be an artist to make excellent web sites.</p>
<p>Okay, preamble over, let&#8217;s get going on the tutorial. I&#8217;m going to show you how I began work for this web site in Photoshop (this will be Windows Photoshop specific, sorry GIMP users).</p>
<p>I usually start working on a web site in Photoshop first instead of making a mock-up in html/css. I&#8217;m comfortable in Photoshop and usually inspiration will visit me and while I&#8217;m working graphically and change my html layout in the end anyway.</p>
<p>For this site I tried a couple things before I ended up with this design. This is normal. I usually try a couple ideas, see if they work or fail and then overhaul, then tweak. It was no different here.</p>
<p class="hide"><em>If you’re reading this via a feed, there are more pages on the web site. If you’re already on the web site, <strong>IGNORE THIS!</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://ianswenson.com/this-site/on-making-a-web-site-initial-photoshop-design/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[On Making a Web Site]]></series:name>
	</item>
		<item>
		<title>On Making a Web Site &#8211; Tools</title>
		<link>http://ianswenson.com/this-site/on-making-a-web-site-tools</link>
		<comments>http://ianswenson.com/this-site/on-making-a-web-site-tools#comments</comments>
		<pubDate>Wed, 09 Jul 2008 05:25:35 +0000</pubDate>
		<dc:creator>ianswens</dc:creator>
				<category><![CDATA[This Site]]></category>

		<guid isPermaLink="false">http://ianswenson.com/?p=46</guid>
		<description><![CDATA[In the last article of this series I talked about coming up with concepts about (1.) what you want your web site to accomplish and (2.) what you basically want it to look like.
Just as important as those two points are the tools you use to construct your site.  Most people go with some [...]]]></description>
			<content:encoded><![CDATA[<p>In the last article of this series I talked about coming up with concepts about (1.) what you want your web site to accomplish and (2.) what you basically want it to look like.</p>
<p>Just as important as those two points are the tools you use to construct your site.  Most people go with some sort of WYSIWYG (What You See is What You Get) editor like FrontPage or Dreamweaver.</p>
<p>Poppycock, I say!</p>
<p><span id="more-46"></span></p>
<p>You have much more control and can exact much more robust designs if you (*gasp*) hand-code.  Yes, that means you have to learn a bit of HTML/CSS/PHP, but that&#8217;s where I come in.  Future entries in this series will help you with those languages.</p>
<h4>HTML, CSS, PHP, Javascript</h4>
<p>The only program you need for the following is a text editor.  Unlike the rest of the web publishing world, I work off a PC, which means my tutorial will be exclusively geared toward Windows.  In Windows you have two basic text editors: Notepad and Wordpad.  Notepad should never be used.  It&#8217;s horrible.  Wordpad is always your better option because it has less text formatting issues and has better search/replace features.</p>
<p>However, I recently discovered <a href="http://notepad-plus.sourceforge.net/uk/download.php">Notepad++</a>.  It performs GeSHi-style color formatting and is superior in tons of other ways while still being lightweight and free.  Get the installer <a href="http://sourceforge.net/project/showfiles.php?group_id=95717&#038;package_id=102072">here</a> (at time of this article the file is <em>npp5.0.Installer.exe</em>).</p>
<p class="hide"><em>If you&#8217;re reading this via a feed, there are more pages on the web site.  If you&#8217;re already on the web site, <strong>IGNORE THIS!</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://ianswenson.com/this-site/on-making-a-web-site-tools/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[On Making a Web Site]]></series:name>
	</item>
		<item>
		<title>On Making a Web Site &#8211; Getting Started</title>
		<link>http://ianswenson.com/this-site/on-making-a-web-site-pt-1</link>
		<comments>http://ianswenson.com/this-site/on-making-a-web-site-pt-1#comments</comments>
		<pubDate>Mon, 07 Jul 2008 21:39:24 +0000</pubDate>
		<dc:creator>ianswens</dc:creator>
				<category><![CDATA[This Site]]></category>

		<guid isPermaLink="false">http://ianswenson.com/?p=44</guid>
		<description><![CDATA[This is the first part of an extended series I have planned to show you step-by-step how I made this site.  That means we&#8217;re going to talk HTML, CSS, Wordpress, PHP, Photoshop and more.  Of course this tutorial is going to be highly individualized since I&#8217;m very particular and it is, well, about my site.
Now, [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first part of an extended series I have planned to show you step-by-step how I made this site.  That means we&#8217;re going to talk HTML, CSS, Wordpress, PHP, Photoshop and more.  Of course this tutorial is going to be highly individualized since I&#8217;m very particular and it is, well, about <em>my</em> site.</p>
<p>Now, this doesn&#8217;t mean that I want you to wholesale rip off my design and use it on your own site.  But I hope that you could use this tutorial as a springboard for your own ideas and methods.</p>
<p>So, let&#8217;s get underway!</p>
<p><span id="more-44"></span></p>
<p>Does your web site look like this?</p>
<p><a href="http://www.ianswenson.com/i/making/pt1_crappywebsite.jpg" title="Larger Image" class="screenie_link"><img src="http://www.ianswenson.com/i/making/pt1_crappywebsite_thumb.jpg" alt="Crappy Web Site" width="400" height="223" class="screenie_img" /></a></p>
<p>There are many reasons why this is a bad web site (which I found via <a href="http://www.webpagesthatsuck.com/the-worst-web-page-in-the-world/">Web Pages That Suck</a>) including being out-dated, being hard to navigate, and having poor readability.  But the biggest reason this web site sucks is that <em>it&#8217;s ugly</em>!</p>
<p>Chances are, your crappy web site is no where near as bad as the above.  If it is&#8230;Yikes!  Now there are many excuses why to stick with your crappy web site.  Many people feel attached to it because &#8220;I made it. It&#8217;s mine.&#8221;  But think how much happier you&#8217;d be if the web site you made looked great!</p>
<p class="hide"><em>If you’re reading this via a feed, there are more pages on the web site. If you’re already on the web site, <strong>IGNORE THIS!</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://ianswenson.com/this-site/on-making-a-web-site-pt-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[On Making a Web Site]]></series:name>
	</item>
		<item>
		<title>Preliminary Redesign</title>
		<link>http://ianswenson.com/this-site/preliminary-redesign</link>
		<comments>http://ianswenson.com/this-site/preliminary-redesign#comments</comments>
		<pubDate>Sun, 29 Jun 2008 05:08:45 +0000</pubDate>
		<dc:creator>ianswens</dc:creator>
				<category><![CDATA[This Site]]></category>

		<guid isPermaLink="false">http://ianswenson.com/?p=40</guid>
		<description><![CDATA[Aha! I told you so.
It may have taken me a couple months, but it&#8217;s been done. I&#8217;ve redesigned the website to bring it more in line with what represents me as a designer.
It is not, however, done yet. I still have several design elements I want to add, and I certainly have some I want [...]]]></description>
			<content:encoded><![CDATA[<p>Aha! I told you so.</p>
<p>It may have taken me a couple months, but it&#8217;s been done. I&#8217;ve redesigned the website to bring it more in line with what represents me as a designer.</p>
<p>It is not, however, done yet. I still have several design elements I want to add, and I certainly have some I want to change. Not only that &mdash; as I&#8217;m sure you&#8217;ll notice if you care to &mdash; none of the side links really go anywhere. I&#8217;ll get to that.</p>
<p>As <a href="http://www.thenewstribune.com/893/story/391335.html" target="_self">Clayton Bennett said</a>, &#8220;I am a man possessed!&#8221;</p>
<p><em>On a side note, if you&#8217;re an RSS subscriber, you&#8217;ll need to resubscribe because of some behind-the-scenes changes I&#8217;ve made. I realize this doesn&#8217;t help you much if you only read the feed, but still.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://ianswenson.com/this-site/preliminary-redesign/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grrrr &#8230;</title>
		<link>http://ianswenson.com/this-site/grrrr</link>
		<comments>http://ianswenson.com/this-site/grrrr#comments</comments>
		<pubDate>Sun, 01 Apr 2007 22:09:03 +0000</pubDate>
		<dc:creator>ianswens</dc:creator>
				<category><![CDATA[This Site]]></category>

		<guid isPermaLink="false">http://ianswenson.com/?p=25</guid>
		<description><![CDATA[Blast that JavaScript.
I made this whole nifty post (well, half really) about graceful degradation and my new script doesn&#8217;t degrade. Dagumit.
At least the new gallery looks nice. I&#8217;ll try to find more pictures to add shortly. Maybe a couple which actually contains me. Not that anyone likes to look at me or anything, but I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>Blast that JavaScript.</p>
<p>I made this whole nifty post (well, half really) about graceful degradation and my new script doesn&#8217;t degrade. Dagumit.</p>
<p>At least the new gallery looks nice. I&#8217;ll try to find more pictures to add shortly. Maybe a couple which actually contains me. Not that anyone likes to look at me or anything, but I&#8217;m a fan of terrorizing the public.</p>
<p>Now I&#8217;m going to have to find a div hiding script that gracefully degrades. Let the search begin.</p>
]]></content:encoded>
			<wfw:commentRss>http://ianswenson.com/this-site/grrrr/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updates Abound! (And Graceful Degradation)</title>
		<link>http://ianswenson.com/this-site/updates-abound-and-a-brief-diversion-on-graceful-degradation</link>
		<comments>http://ianswenson.com/this-site/updates-abound-and-a-brief-diversion-on-graceful-degradation#comments</comments>
		<pubDate>Sat, 31 Mar 2007 00:48:12 +0000</pubDate>
		<dc:creator>ianswens</dc:creator>
				<category><![CDATA[This Site]]></category>

		<guid isPermaLink="false">http://ianswenson.com/?p=24</guid>
		<description><![CDATA[Wow!  Never in the history of the world &#8230;
Okay, I&#8217;ll skip the theatrics.  I&#8217;ve updated two sections so far, and two more to come.  I&#8217;ve added five &#8220;new&#8221; songs on the music page.  They&#8217;re not new to me, but they might be new to you.  I&#8217;m very critical about stuff [...]]]></description>
			<content:encoded><![CDATA[<p>Wow!  Never in the history of the world &#8230;</p>
<p>Okay, I&#8217;ll skip the theatrics.  I&#8217;ve updated two sections so far, and two more to come.  I&#8217;ve added five &#8220;new&#8221; songs on the <a href="http://ianswenson.com/music.html">music</a> page.  They&#8217;re not new to me, but they might be new to you.  I&#8217;m very critical about stuff that I create.  I&#8217;ve actually composed 14 songs for this &#8220;album&#8221;&#8211;I&#8217;m actually doing air-quotes each time I do those&#8211;but I only &#8220;like&#8221; two of them.  The posted five are ones I can &#8220;deal&#8221; with.  The remainder are crap.  Or is it, &#8220;the remainder <em>is</em> crap?&#8221;</p>
<p>I also posted a link to a website I made last January for my first and only anthropology class.  You can see it on the <a href="http://www.ianswenson.com/portfolio.php">portfolio</a> page.  I like how it turned out visually, and the content&#8217;s not too bad neither.  It&#8217;s about the internal reasons for the decline of the Aztec empire.  It&#8217;s not in depth or super-scientific or anything.  I was just trying to get a good grade in the class (which I did).</p>
<p><span id="more-24"></span></p>
<p>I also have two other planned updates, but they require a teensy bit more time than I have at the moment.  I&#8217;m going to change the gallery page to incorporate flash (from the folks at <a href="http://www.slideshowpro.net/">SlideShowPro</a>).  I&#8217;ll also add a second work of fiction and a little piece of JavaScript to be able to hide divs for ease of viewing.  Yay!</p>
<p>I normally try to stay away from JavaScript because I&#8217;ve had it engrained into me that usability is more important than flashiness.  If 5% (it&#8217;s smaller, I&#8217;m sure) of users have JavaScript disabled, then they (A) won&#8217;t be able to get full functionality from a site and (B) will leave it.  So all these articles I read on web design, SEO, and at places like <a href="http://alistapart.com/">A List Apart</a> strongly suggest that reliance on JavaScript is a bad thing.</p>
<p>But my opinion is starting to shift a bit as the philosophy of JavaScript is subtly shifting around the web.  For the past couple of years designers have been working on websites &#8220;degrading gracefully,&#8221; as they put it.  What that basically means is that if someone is browsing with say, JavaScript disabled, or images disabled, or is on a text-only or mobile browser the website should function just as well for them as for smart users like me who use Firefox.  So if I have a nifty drop-down menu system that relies on both CSS and JavaScript, every link should be accessible for any of the users mentioned above.</p>
<p>Since this is now being recognized as a good thing nearly universally, that means smarter people than me are writing scripts and such that I can use!  I know next to nothing about coding (I can modify someone&#8217;s PHP or JavaScript, but that&#8217;s it), I&#8217;m at the mercy of the web philosophy.  So while I&#8217;ve been avoiding scripts for ages, now I&#8217;m coming around to their usefulness.  So I&#8217;ll be able to use a nice JavaScript on the <a href="http://www.ianswenson.com/fiction.php">fiction</a> page that&#8217;ll hide the stories you&#8217;re not currently reading.  But if you&#8217;re, for some insane reason, reading my stories on your cell, they won&#8217;t be hidden from you.</p>
<p>That may or may not be a good thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://ianswenson.com/this-site/updates-abound-and-a-brief-diversion-on-graceful-degradation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Congratulations! It&#8217;s a Website!</title>
		<link>http://ianswenson.com/this-site/congratulations-its-a-website</link>
		<comments>http://ianswenson.com/this-site/congratulations-its-a-website#comments</comments>
		<pubDate>Mon, 28 Aug 2006 00:36:19 +0000</pubDate>
		<dc:creator>ianswens</dc:creator>
				<category><![CDATA[This Site]]></category>

		<guid isPermaLink="false">http://ianswenson.com/?p=8</guid>
		<description><![CDATA[Going along with my masterbatory announcement on the front page, I&#8217;m congratulating myself for essentially finishing the website here in my blog.  It&#8217;s been years in the wanting and a month in the making, but here it is: IanSwenson.com
I actually don&#8217;t have anything substantial to add to that besides noting that I will be [...]]]></description>
			<content:encoded><![CDATA[<p>Going along with my masterbatory announcement on the front page, I&#8217;m congratulating myself for essentially finishing the website here in my blog.  It&#8217;s been years in the wanting and a month in the making, but here it is: IanSwenson.com</p>
<p>I actually don&#8217;t have anything substantial to add to that besides noting that I will be adding and updating as time goes by.  Hopefully by next spring I&#8217;ll be able to participate in <a href="http://www.cssreboot.com/">CSS Reboot Spring 2007</a> to give the webpage a facelift that it does not need presently.</p>
<p>Well, enough said.  Hope you, my rare visitor, are enjoying yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://ianswenson.com/this-site/congratulations-its-a-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Portfoliator</title>
		<link>http://ianswenson.com/this-site/portfoliator</link>
		<comments>http://ianswenson.com/this-site/portfoliator#comments</comments>
		<pubDate>Sat, 12 Aug 2006 20:32:15 +0000</pubDate>
		<dc:creator>ianswens</dc:creator>
				<category><![CDATA[This Site]]></category>

		<guid isPermaLink="false">http://ianswenson.com/?p=6</guid>
		<description><![CDATA[I know this might get a little old, as keep writing new blogs as I finish with each individual page. I still like it though.  
My portfolio is done. It includes the three actual websites I&#8217;ve created that have been published recently. I&#8217;m not going to count the ones I did when I was [...]]]></description>
			<content:encoded><![CDATA[<p>I know this might get a little old, as keep writing new blogs as I finish with each individual page. I still like it though. <img src='http://ianswenson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>My portfolio is done. It includes the three actual websites I&#8217;ve created that have been published recently. I&#8217;m not going to count the ones I did when I was a teenager that probably aren&#8217;t still up, and were done well before a thing called CSS was popularized.</p>
<p>I also included the first index page I did for this website before I decided to go in another direction. I still want to work a photo of me like that into this webpage somewhere. We&#8217;ll see.</p>
]]></content:encoded>
			<wfw:commentRss>http://ianswenson.com/this-site/portfoliator/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gallery</title>
		<link>http://ianswenson.com/this-site/gallery</link>
		<comments>http://ianswenson.com/this-site/gallery#comments</comments>
		<pubDate>Thu, 10 Aug 2006 17:35:59 +0000</pubDate>
		<dc:creator>ianswens</dc:creator>
				<category><![CDATA[This Site]]></category>

		<guid isPermaLink="false">http://ianswenson.com/?p=5</guid>
		<description><![CDATA[The gallery has just been finished.  Well, finished with the photos I wanted to post.
I really haven&#8217;t taken that many photos on my own.  Primarily, that&#8217;s because I don&#8217;t own a camera.  Most of the ones I took that are posted here were taken on Roxy&#8217;s and my roadtrip down to San [...]]]></description>
			<content:encoded><![CDATA[<p>The gallery has just been finished.  Well, finished with the photos I wanted to post.</p>
<p>I really haven&#8217;t taken that many photos on my own.  Primarily, that&#8217;s because I don&#8217;t own a camera.  Most of the ones I took that are posted here were taken on Roxy&#8217;s and my roadtrip down to San Francisco over Spring Break.  I was allowed to use her amazing digital camera and I nearly filled an entire memory card just during the first leg of driving.</p>
<p>She has since been able to purchase her first digital SLR and she is having a blast with it.  Hopefully I&#8217;ll be able to pony up enough dough to purchase her other one for my own enjoyment, and eventually be able to put up more photos in the gallery.</p>
]]></content:encoded>
			<wfw:commentRss>http://ianswenson.com/this-site/gallery/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
