<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chad Miller &#187; Technology</title>
	<atom:link href="http://chad-miller.com/2007/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://chad-miller.com/2007</link>
	<description>Just another Chad Miller weblog</description>
	<lastBuildDate>Thu, 04 Mar 2010 19:54:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The Right Way To Style</title>
		<link>http://chad-miller.com/2007/the-right-way-to-style/</link>
		<comments>http://chad-miller.com/2007/the-right-way-to-style/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 19:51:02 +0000</pubDate>
		<dc:creator>Chad Miller</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.chad-miller.com/the-right-way-to-style/</guid>
		<description><![CDATA[Webpages, for those of you who are uninitiated in the world of web development, are built from a type of code called HTML, which stands for Hypertext Markup Language. Essentially, the idea behind it all is to take a standard text document (something you&#8217;d create in Notepad), and mark it up (using HTML) to indicate [...]]]></description>
			<content:encoded><![CDATA[<p>Webpages, for those of you who are uninitiated in the world of web development, are built from a type of code called <em>HTML</em>, which stands for Hypertext Markup Language.  Essentially, the idea behind it all is to take a standard text document (something you&#8217;d create in Notepad), and mark it up (using HTML) to indicate additional information about the contents of your document.</p>
<p><img src="http://chad-miller.com/2007/files/2008/01/ruler.jpeg" alt="A Ruler" title="A Ruler" width="250" height="188" class="right frame" /></p>
<p>Hypertext is actually a fancy technical name for a link.  Regular text becomes hypertext when it is hyperlinked to another webpage.  That&#8217;s the basic definition of HTML.</p>
<p>HTML also contains several other ways to tag your text to indicate various things about it.  Among the most common are a tag to indicate a group of sentences as a paragraph (the <code>P</code> tag), a tag to indicate a text segment as a document heading (the <code>H1</code> through <code>H6</code> tags), and the list tags (<code>UL</code>, <code>OL</code>, and <code>LI</code>,) which indicate ordered or unordered lists of items.</p>
<h3>How <em>Not</em> to Style HTML</h3>
<p>Changing text into hypertext is helpful, but it&#8217;s not very pretty.  Essentially, your document will read as a single column, top-to-bottom, in a single font of a single style.  <span id="more-74"></span> To get around this, people in the early days of the web began inventing new &#8216;tags&#8217; to indicate style, such as the <code>FONT</code> tag to indicate what font to display the text in, the <code>B</code> tag to indicate bold text, and the <code>I</code> tag to indicate italic text.  To get more flexibility in page layouts, people began to use the <code>TABLE</code> tag to make different sections of text display in different areas, rather that all in one column.</p>
<p>However, all of this new styling markup causes a big problem: it interferes with the purpose of HTML, which is to describe the text on the page.  For instance, the <code>TABLE</code> tag, which is being used for page layout, is actually supposed to be used to present tabular data in columns and rows.  The new styling tags like <code>B</code>, <code>I</code>, and <code>FONT</code> don&#8217;t describe the text in the document at all.</p>
<p>That means this method of styling a webpage is little more than a hack, a way to make the system do something for which is was not originally intended.  It also obfuscates any <em>real</em> meaning that might be contained in the markup by essentially reducing it to a needle in a haystack.</p>
<p><img class="left frame" src="/wp-content/uploads/2008/01/handicap.jpg" alt="Handicap Sign" /></p>
<p>It should also be mentioned that while this method of styling your webpage might work just fine for your web browser, it can do some really bad things for other kinds of browsers.  For instance, if a blind person were to reach your website, their screen reader would have a lot of trouble interpreting meaning from the style markup you&#8217;ve provided.  Also, search engines such as Google and Yahoo can gather a lot about your website based on the way it&#8217;s marked up; using markup to style your document will confuse the robots that try to index your page, which will negatively affect your rankings in search results (meaning that you&#8217;ll more likely to end up on the twenty-eighth page of results from a search for your name, rather than showing up on the first page).</p>
<h3>The Right Way to Do It</h3>
<p>If you use HTML only to describe the content (and not the style) of your document, how are you to make it look good on the web?  I&#8217;m glad you asked; the solution to this problem is to <em>use the right tools for the job</em>.</p>
<p>There&#8217;s a second, complimentary language that you can use to style your well-formatted HTML.  It&#8217;s called CSS, which stands for &#8216;Cascading Stylesheets&#8217;.  The word &#8216;stylesheet&#8217; should be pretty self-explanatory; it basically means a document that describes the styling for another document.</p>
<p><img class="right" src="/wp-content/uploads/2008/01/style.jpg" alt="Style" /></p>
<p>&#8216;Cascading&#8217; basically means that you can use just one CSS document to style every single page on your website; any change you decide to make will &#8216;cascade&#8217; down to every page on your website.  This makes styling changes a snap; instead of having to change every single page when you decide your site needs a makeover, all you have to do is make the change in one place and every page on your site will reflect that change.</p>
<p>It is possible to have a well-formed HTML document that very well describes your document&#8217;s text, while letting it look pretty on the web as well.  All you need is a little CSS!</p>
<p>Here are a few resources to help you get started:</p>
<ul>
<li><a href="http://www.w3.org/TR/xhtml1/">The W3C XHTML Specification</a>; XHTML is a version of HTML that permits no styling markup, which is what we want</li>
<li>The <a href="http://www.w3.org/TR/CSS1">Level 1 CSS Specification</a></li>
<li>W3C&#8217;s <a href="http://validator.w3.org/">Webpage Validator</a> can help you find markup problems</li>
<li>W3C&#8217;s <a href="http://jigsaw.w3.org/css-validator/">CSS Validator</a>, which can help find problems in your stylesheet</li>
<li>The <a href="http://www.w3.org/TR/WAI-WEBCONTENT/">Web Content Accessibility Guidelines</a> from W3C indicate and prioritize the various checkpoints that must be completed in order to ensure your content is accessible for people with disabilities</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://chad-miller.com/2007/the-right-way-to-style/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My Favorite Website Platform</title>
		<link>http://chad-miller.com/2007/my-favorite-website-platform/</link>
		<comments>http://chad-miller.com/2007/my-favorite-website-platform/#comments</comments>
		<pubDate>Fri, 05 Oct 2007 01:40:46 +0000</pubDate>
		<dc:creator>Chad Miller</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.chad-miller.com/my-favorite-website-platform/</guid>
		<description><![CDATA[There are more websites than ever out there in the vast realm of the internet. Everyone seems to have a website, from the largest companies in the world to the smallest and most eccentric communities built around the weirdest interests you can imagine. Most websites are built for one purpose: to communicate information. Every other [...]]]></description>
			<content:encoded><![CDATA[<p>There are more websites than ever out there in the vast realm of the internet.  Everyone seems to have a website, from the largest companies in the world to the smallest and most eccentric communities built around the weirdest interests you can imagine. <img src="http://chad-miller.com/2007/files/2009/12/www-magnified.jpeg" alt="The World Wide Web" title="The World Wide Web" width="200" height="151" class="alignright frame size-full wp-image-179" /></p>
<p>Most websites are built for one purpose: to communicate information.  Every other function of a website is generally going to be a subset of this singular purpose.  This can of course be refined to target a particular audience, communicate an intended message, and use selected medium/media, but in the big picture, this is all communication.</p>
<p>And communicating information over the internet using a website has never been easier, as more and more tools are developed which help people to build websites (many of which require very little technical knowledge).  Now some of these will produce better sites than others, depending on what you want out of your site, but today I&#8217;m going to tell you exactly what platform I recommend for building small- to medium-scale websites.</p>
<p><span id="more-63"></span></p>
<h3>Content Management System</h3>
<p>A Content Management System, or <acronym title="Content Management System">CMS</acronym>, is almost certainly the way to go with a website if you think any of the information on the website is ever going to change.  Even for websites that I build and maintain myself, that no one else will ever have to change, I will <em>always</em> use a <acronym title="Content Management System">CMS</acronym>.</p>
<p>That&#8217;s because a <acronym title="Content Management System">CMS</acronym> does <em>one key thing</em> that is absolutely <em>vital</em> for any website whose information is ever going to be changed, updated, or amended by a human being:</p>
<p>It separates the <em>content</em> from the <em>presentation</em> of the content.</p>
<p>This is such a vital factor because otherwise the human being is going to have to dig through piles and piles of <acronym title='HyperText Markup Language'>HTML</acronym> computer code (the code that dictates how a webpage is laid out) to find the little section where the information needs to be changed or added.  Even for a computer geek like myself, who <em>thinks</em> in <acronym title='HyperText Markup Language'>HTML</acronym>, that is quite a large and time-consuming task.</p>
<p>There are plenty of other perfectly reasonable, technically sound reasons for keeping your content and your presentation separate, but for me these reasons are all second to <em>the time I save</em> by being able to just go in and change or add whatever I need to without worrying about the code or technical details.</p>
<h3>The <acronym title="Content Management System">CMS</acronym> I Use</h3>
<p><img src="http://chad-miller.com/2007/files/2009/12/wordpress-logo.jpeg" alt="The WordPress Logo" title="The WordPress Logo" width="106" height="135" class="alignleft size-full wp-image-178" /></p>
<p>My favorite Content Management system is <a href="http://www.wordpress.org">WordPress</a>, and it has been for quite some time.  WordPress started life as a fork (geek-speak for &#8216;Divergent Copy&#8217;) of a blogging system called <em>B2</em>.</p>
<p>WordPress was itself considered a blogging system (and nothing more) for quite a while, until it evolved into the robust <acronym title="Content Management System">CMS</acronym> platform it is today.  In fact, I have built more than one website managed by WordPress that don&#8217;t have any blog elements at all.</p>
<p>Here are some of the many reasons I use WordPress over just about everything else:</p>
<ul>
<li><strong>Open Source License.</strong>  Yes, this means it is free of charge.</li>
<li><strong>Broad User Community.</strong>  Anything I want to do with it has probably already been done, and someone can tell me how.  If not, I can figure it out and tell other people.</li>
<li><strong>Easy Setup.</strong>  WordPress is available as an easy 1-click install from every web host I&#8217;ve ever used, so there&#8217;s no getting down into the gritty details of <acronym title='File Transfer Protocol'>FTP</acronym>ing packages or setting up your database; this can all be done for you with the click of a mouse.</li>
<li><strong>Abundant Themes.</strong>  Since the WordPress user community is so broad, there are already hundreds (if not thousands) of already-built site themes, so if you don&#8217;t want to get into the computer code, you still have ample options for visually styling your site.</li>
<li><strong>Custom Paths.</strong>  You&#8217;ll notice that as you browse around my site, the web address (the stuff after http://) concisely indicates exactly what you&#8217;re looking at; there&#8217;s no numbers or &#8216;index.aspx&#8217; pages or anything like that.  WordPress can do this automagically.</li>
<li><strong>User-Friendly.</strong>  No one for whom I&#8217;ve ever built a site based on WordPress has yet had much trouble at all in changing, adding or removing information or content on their website.</li>
</ul>
<p>I could go on, but you probably get the idea.  If you are considering starting a website for yourself or your company, you&#8217;ll not find any platform that is better to start with than WordPress.  I highly recommend it.</p>
]]></content:encoded>
			<wfw:commentRss>http://chad-miller.com/2007/my-favorite-website-platform/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Portable Webdev Platform</title>
		<link>http://chad-miller.com/2007/portable-webdev-platform/</link>
		<comments>http://chad-miller.com/2007/portable-webdev-platform/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 02:22:16 +0000</pubDate>
		<dc:creator>Chad Miller</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.chad-miller.com/portable-webdev-platform/</guid>
		<description><![CDATA[I know there&#8217;s a great number of my readers out there who are also keen and avid web developers, always looking for the coolest, newest web development technology. OK, there may not be many of you, but nonetheless, I&#8217;m going to show you today one thing that&#8217;s made my web development life much easier. The [...]]]></description>
			<content:encoded><![CDATA[<p>I know there&#8217;s a great number of my readers out there who are also keen and avid web developers, always looking for the coolest, newest web development technology.  OK, there may not be many of you, but nonetheless, I&#8217;m going to show you today one thing that&#8217;s made my web development life much easier. <img src="http://chad-miller.com/2007/files/2009/12/code.jpeg" alt="The Code for This Website" title="The Code for This Website" width="182" height="202" class="alignright size-full wp-image-162" /></p>
<h3>The Web Development Process</h3>
<p>Generally, when I&#8217;m designing a website for someone, I&#8217;ll follow several steps in the process.  The first several steps are outside the scope of this article, and involve interaction theory and information architecture and data structures and all that.  But then I get down to designing the actual page, and that process follows these steps:</p>
<p><span id="more-40"></span></p>
<ol>
<li>Code a static instance of the site.</li>
<li>Create from that model a theme for the <acronym title="Content Management System">CMS</acronym> Du Jour.</li>
<li>Test the theme and <acronym title="Content Management System">CMS</acronym> on a test server.</li>
<li>Deploy the theme to a live instance of the <acronym title="Content Management System">CMS</acronym>.</li>
</ol>
<p>Of course, you immediately see a problem with using this model for your own web development.  &#8220;Chad, all I have is a PC running Windows.  I don&#8217;t have a test server that can run all those fancy <acronym title="Content Management System">CMS</acronym>s.&#8221;</p>
<p>Wanna bet?</p>
<h3>The One-click Server Installer</h3>
<p>It&#8217;s actually a lot easier than you think to set up a test <acronym title="Content Management System">CMS</acronym> environment <em>on your development PC</em>.  Content Management Systems normally run on a server technology &#8220;stack&#8221; that consists of the following:</p>
<ul>
<li>An Operating System (Like Windows)</li>
<li>Server Software (This is the program that gives your browser a webpage to display when it asks politely)</li>
<li>A Webpage Generation Engine (Which basically makes it so you don&#8217;t have to hand-craft each individual webpage)</li>
<li>A Database (Which is where all the content, like the text of your pages and the pictures are stored)</li>
</ul>
<p>Fortunately, you don&#8217;t even have to know <em>any</em> of that in order to get it all working.</p>
<p>There&#8217;s a little program called <a href="http://www.wampserver.com/en/index.php">WAMP</a> (each letter stands for one of the items above) that will do it all for you!  All you have to do is install the thing.</p>
<p>And that really is all there is to setting up the server platform.</p>
<h3>The Content Management System</h3>
<p>Now all you have to do is get the <acronym title="Content Management System">CMS</acronym> running on the platform you just set up.  Piece of cake, right?  Actually, it is.  Three steps:</p>
<p>First, put your CMS on the server.  Let&#8217;s say you&#8217;re using an easy CMS like <a href="http://www.wordpress.org">WordPress</a> (which this site runs on).  First thing you&#8217;ll do is download the WordPress files and unzip them.  You&#8217;ll want to move the unzipped files to your new Server&#8217;s root folder (if you installed WAMPserver, it&#8217;s probably C:\wamp\www\).</p>
<p><img src="http://chad-miller.com/2007/files/2009/12/mysql-add-db.jpeg" alt="Adding a MySQL Database" title="Adding a MySQL Database" width="138" height="200" class="alignright size-full border wp-image-172" />Second, you&#8217;ll add a database for WordPress to use.  If you installed WAMPserver and now have it running, it should have put a little icon in your taskbar next to your clock.  When you click it, you&#8217;ll get a menu, and among the options will be &#8220;phpMyAdmin&#8221;.  Go there.</p>
<p>This is a pretty complicated interface, but I&#8217;ll give you a shortcut.  Go to the &#8220;Priveleges&#8221; option about 2/3 of the way down the midddle column.  Just add a user.  After entering your new user&#8217;s information, check the option to &#8220;Create database with same name and grant all privileges,&#8221; and save.  (Note that you can make the password easy because no one else can access this server.)  That&#8217;s all you have to do to make a database.</p>
<p>Third, just go through the installer.  Enter &#8216;http://localhost/&#8217; in your browser&#8217;s address bar and click the directory where you installed your WordPress files.  It should be a very quick (less than 30 seconds) matter to configure the CMS to access the database you set up.</p>
<p>Voila!  You&#8217;re done.  Really.  That&#8217;s all there is to it.</p>
<p>Now you can take your CMS with you wherever you go.</p>
]]></content:encoded>
			<wfw:commentRss>http://chad-miller.com/2007/portable-webdev-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should I Start a Business?</title>
		<link>http://chad-miller.com/2007/should-i-start-a-business/</link>
		<comments>http://chad-miller.com/2007/should-i-start-a-business/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 03:47:18 +0000</pubDate>
		<dc:creator>Chad Miller</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.chad-miller.com/should-i-start-a-business/</guid>
		<description><![CDATA[The performing arts company I manage locally is in the market for a new website. As I will be managing the company, I&#8217;m trying to delegate as much responsibility as I can, including construction and maintnance of the website for our company. We have been shopping around for a good local, Christian web developer who [...]]]></description>
			<content:encoded><![CDATA[<p>The performing arts company I manage locally is in the market for a new website.  As I will be managing the company, I&#8217;m trying to delegate as much responsibility as I can, including construction and maintnance of the website for our company.</p>
<p>We have been shopping around for a good local, Christian web developer who can get our website put together and operational.  It&#8217;s not going to be the simplest site in the world, in that we&#8217;re not just going to throw some content up on a server and let that be that.  We&#8217;ll be constantly updating curricula and calendar information, so it has to be pretty dynamic.</p>
<p><span id="more-27"></span></p>
<p>It will probably need to be developed on some sort of Content Management platform to allow authorized users access to certain <em>subscribed</em> areas of the site, while leaving the majority of the site open for prospective client organizations, and to allow site admins to update the site content regularly.  An advanced system that would allow us to define our own data/page structures as we need them would also be preferable.</p>
<h3>Would the Real Web Developers Please Stand Up?</h3>
<p>Unfortunately, from what I&#8217;ve seen so far it seems all the web developers in the Metro Jackson area are stuck in 1999, putting together a bit of photo tweening in Flash and embedding it in a table-based layout in a static HTML page that doesn&#8217;t <a href="http://validator.w3.org/check?uri=referer">validate</a> against <em>anything</em>. Not even HTML 4.01 Transitional. Hello?</p>
<p>Web standards?  What web standards?</p>
<p>To top it off, most of them have a definition of SEO (Search Engine Optimizaiton) that doesn&#8217;t go beyond putting a batch of keywords in a META tag inside the document header.  (Again: Web standards? What web standards?)  Has <em>anybody</em> out there made it into the 21st Century yet?</p>
<p>To be fair, I have certainly not discovered or interacted with <em>all</em> the Jackson-area web developers.  But I&#8217;m still looking&#8230;</p>
<h3>I Sense Opportunity&#8230;</h3>
<p>If this 1999-caliber work has such a high success rate, why couldn&#8217;t I take my up-to-date web dev skills and start my own business?</p>
<p>Doing some quick calculations, I could undercut the lowest price I&#8217;ve heard by just a little, work about 15 hours a week, pay Lawyers and Accountants to do what they do, and still make 150% what I&#8217;m pulling in working 40 hours a week as a C# developer.  That&#8217;s rather appealing.</p>
<p>Chad Miller Design.  It&#8217;s got a nice ring to it, don&#8217;t you think?  OK, OK, I&#8217;d probably name my company something else.</p>
<p>And as busy as I am right now, I don&#8217;t really see this happening in 2007.  But I&#8217;ll certainly let it stew for a while.  Who knows?  Maybe I&#8217;m looking at it the wrong way and I can&#8217;t afford <em>not</em> to do this.  What do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://chad-miller.com/2007/should-i-start-a-business/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Easy Intro to RSS</title>
		<link>http://chad-miller.com/2007/easy-intro-to-rss/</link>
		<comments>http://chad-miller.com/2007/easy-intro-to-rss/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 18:52:28 +0000</pubDate>
		<dc:creator>Chad Miller</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.chad-miller.com/easy-intro-to-rss/</guid>
		<description><![CDATA[I&#8217;m sure that by now, we have all seen this little icon around the internet on many different websites. In fact, if you look up at or near the right-hand side of the address bar, you probably see that icon there right now. Ever wondered what it means, or what on earth it&#8217;s good for? [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure that by now, we have all seen this <img src='/wp-content/themes/Chad Miller 1.1/images/rss-icon.gif' alt='RSS Icon' /> little icon around the internet on many different websites.  In fact, if you look up at or near the right-hand side of the address bar, you probably see that icon there right now.  Ever wondered what it means, or what on earth it&#8217;s good for?</p>
<p>In a word, that icon means this site has an RSS feed.  What does <em>that</em> mean?  Well, I&#8217;ll get to that in a moment.</p>
<h3>The Problem</h3>
<p>OK, let&#8217;s say you like this website, chad-miller.com, quite a lot.  That&#8217;s very understandable.  But let&#8217;s say you always want to stay up to date with the intriguing content that is consistently published here, and you don&#8217;t want to miss anything.</p>
<p>Not a problem, right?  You&#8217;ll just come take a look at chad-miller.com every time you get on the computer, just to see if there&#8217;s anything new. So far so good?</p>
<p>OK, but let&#8217;s say you also really like several other sites, like <a href="http://www.jonathanlowery.com">Jonathan Lowery</a>&#8216;s and <a href="http://www.guinnterrydavis.com">Guinn Terry Davis</a>&#8216; websites, along with several other blogs.  How on earth are you going to keep up with them all?  Are you going to visit each and every one of them every time you get on the internet?</p>
<p><span id="more-11"></span></p>
<h3>The Solution</h3>
<p>That&#8217;s pretty well impossible to do.  Considering the sheer volume of content on the internet, even if you only looked at the sites that REALLY interested you a lot (like this site, of course) you&#8217;d still be on the internet for hours trying to keep up with it all.  What we <em>really</em> need is a way to make all the updates of websites we like to come to <em>us</em>.</p>
<p><img src="http://chad-miller.com/2007/files/2009/12/news.jpeg" alt="Newspapers" title="Newspapers" width="150" height="106" class="alignleft size-full wp-image-173" /></p>
<p>Enter RSS.</p>
<p>RSS is an acronym that means &#8220;Really Simple Syndication&#8221;.  And essentially, it&#8217;s just that.  RSS is a platform that allows you, the individual, to retrieve <em>syndicated content</em> from all the websites you like.</p>
<p>Syndication is essentially providing content (such as articles, news copy, illustrations, and photos) to be published by multiple sources.  The Newspaper industry, for example syndicates much of its content to be pulished in multiple newspapers across the country and around the world.  And today, many websites (such as mine) syndicate their content so you, the reader, can retrieve and read it at your leisure.</p>
<p>Fortunately, we don&#8217;t really have to worry about most of the ins and outs of syndication.  Our syndication is &#8216;Really Simple&#8217;.</p>
<h3>How to Use It</h3>
<p>To use RSS, you&#8217;re going to need a program called an RSS Reader.  Fortunately, these exist in abundance, and most of them are completely free.  You can find them easily by searching for the term &#8216;RSS Reader&#8217; on <a href="http://www.google.com/search?q=rss+reader">Google</a> or Yahoo.</p>
<p><img src="http://chad-miller.com/2007/files/2009/04/google-reader.jpg" alt="Google Reader" width="240" height="220" class="right size-full wp-image-113" /></p>
<p>The RSS Reader I use is <a href="http://www.google.com/reader">Google Reader</a>, and I recommend it highly (assuming you use Firefox) for these reasons:</p>
<ul>
<li>It&#8217;s all online, so you don&#8217;t have to download or install anything.</li>
<li>It&#8217;s really easy to navigate and use with the mouse or keyboard.</li>
<li>Adding a website to the pile only takes a few clicks.</li>
<li>Since it&#8217;s online, you can read your RSS Feeds from any computer you happen to find yourself at.</li>
</ul>
<p>If you use Internet Explorer, I&#8217;d recommend first that you switch to <a href="http://www.mozilla.com/firefox" title="Firefox">Firefox</a>.  If you are for some reason unable to do that, I&#8217;d recommed looking at a desktop RSS Client such as <a href="http://www.rssowl.org/">RSSOwl</a>.</p>
<p>In a future post, I&#8217;ll give a tour of Google Reader and show you why I like it so much.</p>
]]></content:encoded>
			<wfw:commentRss>http://chad-miller.com/2007/easy-intro-to-rss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Digital Music Jump</title>
		<link>http://chad-miller.com/2007/the-digital-music-jump/</link>
		<comments>http://chad-miller.com/2007/the-digital-music-jump/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 11:00:52 +0000</pubDate>
		<dc:creator>Chad Miller</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.chad-miller.com/the-digital-music-jump/</guid>
		<description><![CDATA[Music has been around as long as there have been people. Nearly as long as that, people have been storing music. Initially, all people could do is repeat catchy tunes until they could remember them. This is probably the time period when they invented those annoying commercial jingles. Later, they invented a way to actually [...]]]></description>
			<content:encoded><![CDATA[<p>Music has been around as long as there have been people.  Nearly as long as that, people have been <em>storing</em> music.</p>
<p><img src="http://chad-miller.com/2007/files/2009/12/elvis-8-track.jpeg" alt="An 8-Track Tape" title="An 8-Track Tape" width="150" height="199" class="alignright size-full wp-image-164" /></p>
<p>Initially, all people could do is repeat catchy tunes until they could remember them.  This is probably the time period when they invented those annoying commercial jingles.</p>
<p>Later, they invented a way to actually <em>write down</em> music, in the form of a musical score.  That is of course great if you can read music, or if you have a symphony at your command, but if not the musical score will likely leave you scratching your head.</p>
<p>Of course, in recent centuries, we&#8217;ve invented recording devices that can actually record and reproduce sound waves on demand.  This started, of course, with the phonograph, and progressed to the 8-track, the cassette tape, and ultimately (in my lifetime, in fact) to the Compact Disc.</p>
<h4>The First Jump</h4>
<p><span id="more-16"></span></p>
<p>Of course, since music is essentially nothing more than information, storage of music is progressing (like everything else) to digital storage.  When I was in college, a lot of the cool geeks started to put their music <em>on their computers</em> by a process called <em>ripping</em>, where they&#8217;d convert all their audio CDs into files on their computer, so they could listen to the music directly from the file with no CD involved.</p>
<p><img src="http://chad-miller.com/2007/files/2009/12/ipod.jpeg" alt="An Old-Style iPod" title="An Old-Style iPod" width="150" height="248" class="alignleft size-full wp-image-167" /></p>
<p>Then, of course, in early 2004, I got my first iPod.  It&#8217;s a fourth-generation model, meaning it&#8217;s old enough  that it has a tiny black-and-white screen rather than a nice large full-color video screen, but it blew me away.  This little gadget no bigger than a pack of cards can hold and play back every song from every CD that I own, and then some.</p>
<p>I was the toast of the geek town for nearly a week (that&#8217;s how quickly new technology becomes old news)!</p>
<h4>The Final Jump</h4>
<p>Since I got my iPod, I&#8217;ve been eagerly anticipating the day when I can ditch those clumsy, quaint plastic discs known as CDs.  It didn&#8217;t come as soon as I liked, because my car has no audio hookup for my iPod.  I tried one of those crappy FM transmitters, but I just couldn&#8217;t get it to sound good through the static and interference.</p>
<p>So then I discovered that the iPod plays quite nicely through a standard cassette adapter, so I dropped $10 for one at Wal-Mart.  I thought that surely this would be the one thing that got me off CDs, and onto the Digital Music train, bringing my whole music collection with me wherever I go.</p>
<p>However, this didn&#8217;t do it, because picking music by scrolling through a list just doesn&#8217;t have the same tangibility as actually being able to pick up and shuffle through the physical albums.  I found myself bringing along both the iPod <em>and</em> my CD wallets, along with about a dozen of my newest CDs in jewel cases with me in the car.  Talk about defeating the purpose.</p>
<p>But a week and a half ago, I finally got the solid kick in the rump that put me all the way on the bandwagon.  I am now all-digital, eschewing those old-fashioned silver plastic discs.</p>
<p>A guy broke into my car and stole all my CDs.</p>
<p>I wasn&#8217;t as heartbroken as I could have been, since <em>all my CDs were in my iPod</em>. In fact, I found that I was actually far more upset about the broken window than I was about the missing CDs.  And I am actually discovering that I really can do this all-digital thing.</p>
<p><strong>A Word of Advice:</strong>  Learn from my loss!  Don&#8217;t get on the Digital Music bandwagon the hard way.  Leave your CDs at home and bring your MP3 player, for both convenience <em>and</em> security.</p>
]]></content:encoded>
			<wfw:commentRss>http://chad-miller.com/2007/the-digital-music-jump/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

