<?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>Andrew Jaswa &#187; websites</title>
	<atom:link href="http://andrewjaswa.com/category/websites/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewjaswa.com</link>
	<description>I build crappy websites every day!</description>
	<lastBuildDate>Thu, 14 May 2009 03:36:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Markup Conditionals</title>
		<link>http://andrewjaswa.com/2009/05/markup-conditionals/</link>
		<comments>http://andrewjaswa.com/2009/05/markup-conditionals/#comments</comments>
		<pubDate>Wed, 13 May 2009 22:30:03 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=352</guid>
		<description><![CDATA[I loathe conditional comments and browser targeted code. But there comes a time when you have to support an old and out dated browser (I&#8217;m looking in the direction of IE6 at the moment). So what do you do? You have to make it look the same and function the same as other browsers. You [...]]]></description>
			<content:encoded><![CDATA[<p>I loathe conditional comments and browser targeted code. But there comes a time when you have to support an old and out dated browser (I&#8217;m looking in the direction of IE6 at the moment). So what do you do? You have to make it look the same and function the same as other browsers. You also shouldn&#8217;t use browser hacks to target them. I&#8217;ve touched on this subject before and figured <a href="http://andrewjaswa.com/2008/06/un-conditionalun-conditional/">conditional comments were the best route to go</a>. Even if I don&#8217;t like them. </p>
<p>I&#8217;ve recently started working with a new company and have picked up on some of the bright things they do. I&#8217;m not sure why I never thought of this before since it seems so simple (and I can&#8217;t take credit for it).  </p>
<p>Let say you have your standard body element and a few other things on a page:</p>
<pre><code>&lt;body&gt;
    &lt;div&gt;
        &lt;p&gt;Some text&lt;/p&gt;
    &lt;/div&gt;
&lt;/body&gt;</code></pre>
<p>Typically to target the paragraph element for, say IE6, you might use a simple hack like the underscore hack. So you might write some CSS like so:</p>
<pre><code>p {
    width:150px;
    _width:200px;
}</code></pre>
<p>I mean you might do that, some other hack or you might use conditional comments to provide a style sheet just for IE6. I&#8217;m sure you&#8217;ve seen code like this before:</p>
<pre><code>&lt;!--[if IE 6]&gt;
    &lt;link rel="stylesheet" type="text/css"
       href="ie6.css" /&gt;
&lt;![endif]--&gt;</code></pre>
<p>That&#8217;s all fine and dandy, but do you see what you did there? I did and I don&#8217;t like it. You&#8217;ve just created another HTTP request. Shame on you. And to think about how many CSS rules are typically in a file like that? 10? 50? It also creates a maintenance headache. You&#8217;ve now split up rules for one element into two files. Yes yes I know that is what the cascade is for&#8230; But you could make it easier on yourself and people that come behind you. </p>
<p>What I&#8217;ve found is to use conditional comments to specify a class on the body element when the browser is IE6 or 7 or even 8. </p>
<p>So taking our markup example from above I&#8217;ve modified it to have conditional comments in it:</p>
<pre><code>&lt;!--[if IE 6]&gt;&lt;body class="IE6"&gt;&lt;![endif]--&gt;
&lt;!--[if !IE ]&gt;&lt;!--&gt;&lt;body&gt;&lt;!--&lt;![endif]--&gt;
    &lt;div&gt;
        &lt;p&gt;Some text&lt;/p&gt;
    &lt;/div&gt;
&lt;/body&gt;</code></pre>
<p>You&#8217;ll need all those extra comments to make the page valid. It is also pretty easy to add as many combinations as you like as long as they can be read by the browsers&#8230;<br />
And our CSS from above:</p>
<pre><code>p {
    width:150px;
}
.IE6 p {
    width:200px;
}</code></pre>
<p>Of course this only works with IE but really you shouldn&#8217;t need this at all since you build awesome websites that are already cross-browser compatible, right? And there is no chance ever that a client will want a site to be usable in IE5.5, right?</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/2009/05/markup-conditionals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>February&#8217;s Article on 13things</title>
		<link>http://andrewjaswa.com/2009/02/februarys-article-on-13things/</link>
		<comments>http://andrewjaswa.com/2009/02/februarys-article-on-13things/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 17:46:11 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[13things]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=324</guid>
		<description><![CDATA[
The second 13things article is now published. Zach Young gives a great explanation as to the uses and mis-uses of an often neglected html element.  You should go check it out. 
You can also follow @13things on twitter to get updates about new articles and new developments on the site.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://andrewjaswa.com/uploads/2009/02/13things-br.png" alt="13things br" title="13things br" width="548" height="150" class="alignnone size-full wp-image-325" /><br />
The second <a href="http://13things.net">13things</a> article is now published. Zach Young gives a <a href="http://13things.net/articles/br">great explanation</a> as to the uses and mis-uses of an often neglected html element.  You should go check it out. </p>
<p>You can also follow <a href="http://twitter.com/13things">@13things</a> on twitter to get updates about new articles and new developments on the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/2009/02/februarys-article-on-13things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordle</title>
		<link>http://andrewjaswa.com/2009/02/wordle/</link>
		<comments>http://andrewjaswa.com/2009/02/wordle/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 05:57:31 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[data]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=314</guid>
		<description><![CDATA[We&#8217;ve all seen tag clouds. I even considered putting one on my site, but I realized that tag clouds don&#8217;t really look nice. The other day I discovered Wordle. 

Wordle is a toy for generating “word clouds” from text that you provide. The clouds give greater prominence to words that appear more frequently in the [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all seen tag clouds. I even considered putting one on my site, but I realized that tag clouds don&#8217;t really look nice. The other day I discovered <a href="http://www.wordle.net/">Wordle</a>. </p>
<blockquote><p>
Wordle is a toy for generating “word clouds” from text that you provide. The clouds give greater prominence to words that appear more frequently in the source text. You can tweak your clouds with different fonts, layouts, and color schemes.
</p></blockquote>
<p>I started playing about with it and was quite impressed. I put in the RSS feed for this site and my delicious bookmarks. </p>
<h3>andrewjaswa.com</h3>
<p><a href="http://www.wordle.net/gallery/wrdl/519443/andrewjaswa.com"><img src="http://andrewjaswa.com/uploads/2009/02/andrewjaswacom-sm.png" alt="andrewjaswacom-sm" title="andrewjaswacom-sm" width="550" height="374" class="alignnone size-full wp-image-316" /></a></p>
<h3>ajaswa&#8217;s delicious</h3>
<p><a href="http://www.wordle.net/gallery/wrdl/519452/delicious"><img src="http://andrewjaswa.com/uploads/2009/02/delicious-sm.png" alt="delicious-sm" title="delicious-sm" width="550" height="378" class="alignnone size-full wp-image-317" /></a></p>
<p>They way Wordle displays the collected words is rather interesting. More so then just a straight tag cloud. Now to create something like this on the fly and embed it on a site&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/2009/02/wordle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>13things</title>
		<link>http://andrewjaswa.com/2009/01/13things/</link>
		<comments>http://andrewjaswa.com/2009/01/13things/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 18:23:53 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[13things]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=295</guid>
		<description><![CDATA[
Well where do I start? 
I guess it started back in March of 2008 when I attended An Event Apart New Orleans. Jason Santa Maria gave an excellent talk about web design or rather a talk about how current web design all looks the same in the form of blogs and content management systems. The [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://andrewjaswa.com/uploads/2009/01/13things-banner.png" alt="13things-banner" title="13things-banner" width="548" height="150" class="alignnone size-full wp-image-306" /><br />
Well where do I start? </p>
<p>I guess it started back in March of 2008 when I attended An Event Apart New Orleans. <a href="http://jasonsantamaria.com">Jason Santa Maria</a> gave an excellent talk about web design or rather a talk about how current web design all looks the same in the form of blogs and content management systems. The example he used that stuck in my head was that of <a href="http://wired.com">Wired Magazine</a>. In their print publication they have very captivating designs but when the article is taken online it loses its design and just becomes another article. This actually inspired me in two ways. The first was to learn more about design (as my background is in development) and the other was to create a website that was essentially what Wired was to print. With my lack of design skills and time, I filed it away almost to the point of being forgotten. Seeing as how 2008 was a very busy year for me it should come as no surprise. </p>
<p>In late October of 2008, after I had gotten settled here in Denver, I wanted to build a website. I played around with a few ideas and then remembered that <a href="http://24ways.org/">24ways</a> would be starting up soon. 24ways is an awesome website run by <a href="http://allinthehead.com">Drew McLellan</a> and <a href="http://suda.co.uk/">Brian Suda</a> that only publishes articles during <a href="http://en.wikipedia.org/wiki/Advent">advent</a>. This gave me the idea to create a website that had a restricted publishing schedule. </p>
<p>In the end I settled on building a site that published articles in a very set fashion, highlighting various parts of website development each with a unique design reflecting the content. 13 articles a year once a month with a yearly review. </p>
<p>Well&#8230; after much work, it happened. The first article of <a href="http://13things.net">13things</a> is now published.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/2009/01/13things/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dream, Dream, Dream&#8230;</title>
		<link>http://andrewjaswa.com/2008/12/dream-dream-dream/</link>
		<comments>http://andrewjaswa.com/2008/12/dream-dream-dream/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 16:20:25 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[experiences]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[dreamhost]]></category>
		<category><![CDATA[happy]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=222</guid>
		<description><![CDATA[
It&#8217;s been a while since I switched over to Dreamhost for my hosting needs. I must say it&#8217;s been a very good experience so far. Though my experience with Media Temple was also good until I actually needed help from them. Alas, I don&#8217;t want to get on a tangent about my past problems with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/ajaswa/3105549567/"><img class="size-full wp-image-223" title="Clouds" src="http://andrewjaswa.com/uploads/2008/12/clouds.png" alt="Clouds" width="548" height="220" /></a><br />
It&#8217;s been a while since I switched over to <a href="http://dreamhost.com">Dreamhost</a> for my hosting needs. I must say it&#8217;s been a very good experience so far. Though my experience with Media Temple was also good until I actually needed help from them. Alas, I don&#8217;t want to get on a tangent about my past problems with Media Temple but rather talk about how well Dreamhost has worked for me so far.</p>
<p>For starters all my cron jobs are running nicely and have been running without any problems since I set them up. Pretty sweet.</p>
<p>Next is communication. Dreamhost has a <a href="http://twitter.com/dhstatus">twitter account</a> that updates when something is broken or upgraded or just a status update. It&#8217;s not overly useful to me but it says something about Dreamhost: they want their clients to know what&#8217;s going on. We all know stuff breaks and rather then making me call/email them to figure out why my site is broken they make it known what&#8217;s going on. Each tweet I&#8217;ve seen links over to the <a href="http://www.dreamhoststatus.com/">Dreamhost Status</a> website that gives a more detailed explanation as to the current issue.</p>
<p>Support. Ahh yes. I&#8217;ve only put in one support ticket. Granted it was more of a question about how something worked rather then something being broken. But the support rep got back to me within <strong>one hour</strong>, gave me the answer <strong>and</strong> pointed me to the documentation I missed.  I&#8217;m not sure I can express how awesome that is.  Speedy and helpful!</p>
<p>The admin console is pretty easy to understand. Some of the things don&#8217;t make sense to me. For example: the mysql screens are under a section called &#8220;goodies&#8221;. Not a major issue but a little confusing if you aren&#8217;t expecting mysql to be a goodie.</p>
<p>The one issue I have with Dreamhost is the One-Click installer for Wordpress. You have two options: the first being they manage the install, do upgrades and what have you, the other you manage it yourself, they&#8217;ll install it but after that you maintain it. I haven&#8217;t done the first option as of yet, but the second one is kinda annoying. Dreamhost seems to know what you will want when they install it for you.&lt;/scrcasm&gt; They&#8217;ve seem to think installing 50+ themes and 5+ plugins with your Wordpress install is a good idea. Well it&#8217;s not. So now when creating a new blog I have to go in and delete the themes just so I can make sense of things. It makes sense for the &#8220;they manage&#8221; option but if I&#8217;m going to be doing it, <strong>I&#8217;ll decide what I want</strong>, thanks. </p>
<p>Overall Dreamhost has done a good job of making me a happy customer. That on top of the discount I got from a friend is just awesome. </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/2008/12/dream-dream-dream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Game Plan</title>
		<link>http://andrewjaswa.com/2008/12/the-game-plan/</link>
		<comments>http://andrewjaswa.com/2008/12/the-game-plan/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 23:17:08 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[websites]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[microformats]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[user testing]]></category>
		<category><![CDATA[websties]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=208</guid>
		<description><![CDATA[The other day a friend of mine was asking me about XOXO and Microformats. He is relatively new to the industry and was trying to get some advice about how to implement XOXO. After talking to him a little bit we got on the to subject of (re)building a website and the steps to fixing/building [...]]]></description>
			<content:encoded><![CDATA[<p>The other day a friend of mine was asking me about <acronym title="Extensible Open XHTML Outlines"><a href="http://microformats.org/wiki/xoxo">XOXO</a></acronym> and <a href="http://microformats.org/">Microformats</a>. He is relatively new to the industry and was trying to get some advice about how to implement XOXO. After talking to him a little bit we got on the to subject of (re)building a website and the steps to fixing/building sites.</p>
<p>A while ago I had started a project to go through the process of building a website. It&#8217;s still on the back burner right now but I thought I would present a list of things that, when developing a website&#8217;s interface, need to be focused on. I&#8217;ve collected my thoughts on a short list that hopefully will help you. </p>
<ol>
<li>
<h3>Structure</h3>
<p>All websites need to have some sort structure when writing the (x)html. I would suggest taking the semantic approach and organize things, that is to say use meaningful IDs and class names.
</li>
<li>
<h3>Accessibility</h3>
<p>I know people don&#8217;t get all excited when they see accessibility. But if you take a minute and think about it most of the <acronym title="Search Engine Optimization">SEO</acronym> concerns are addressed with <a href="http://www.section508.gov/">Section 508</a> and <acronym title="Web Content Accessibility Guidelines"><a href="http://www.w3.org/TR/WCAG20/">WCAG</a></acronym>. Consider this: alt attributes on images help both accessibility and SEO concerns. I say make your site usable by all (humans) and you won&#8217;t have to worry about the robots. Google did say to <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&#038;answer=35769#3">build websites for humans</a> for a reason.
</li>
<li>
<h3>Users</h3>
<p>Make sure that users can use your site. This sounds like a no brain-er but you would be surprised how how many developers launch their sites without even putting it through a simple user test. Its not overly hard to do, grab your boyfriend, girlfriend, brother, sister, parent, random person in a coffee shop&#8230; well you get the idea, sit them down and watch them use your site. Take note of where they go and what they do. Ask questions like: what are you looking for? and what did you expect to see?
</li>
<li>
<h3>Extras</h3>
<p>While Microformats are nice and handy, not everyone can use them. For example my parents don&#8217;t even know what they are. Some web developers I know don&#8217;t really know what they are. So use them but don&#8217;t expect people to use them right now. When it comes down to it and time is a factor don&#8217;t worry about Microformats. I&#8217;d rather see beautiful accessible websites then being able to scrape information off sites with a toolbar.</p>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/2008/12/the-game-plan/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s SEO Guide</title>
		<link>http://andrewjaswa.com/2008/11/googles-seo-guide/</link>
		<comments>http://andrewjaswa.com/2008/11/googles-seo-guide/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 17:12:14 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[industry]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[CAPTCHA]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[robots.txt]]></category>
		<category><![CDATA[search engines]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=124</guid>
		<description><![CDATA[On the 12th of November Google came out with a SEO starter guide. I thought since this will be my very first post about SEO that I would review what they had to say. They have 12 points that they make, most of which are common knowledge. This comes on the heels of Google&#8217;s Tricks [...]]]></description>
			<content:encoded><![CDATA[<p>On the 12th of November Google came out with a <a href="http://googlewebmastercentral.blogspot.com/2008/11/googles-seo-starter-guide.html">SEO starter guide</a>. I thought since this will be my very first post about SEO that I would review what they had to say. They have 12 points that they make, most of which are common knowledge. This comes on the heels of Google&#8217;s <a href="http://googlewebmastercentral.blogspot.com/2008/10/reflections-on-tricks-and-treats.html">Tricks and Treats webmaster event</a> where they dispelled a few common myths about SEO and gave an idea about Google&#8217;s stance on SEO practices.</p>
<p>I&#8217;m going to take a look at this from the stance of building and designing websites for people (rather then robots), since that is what Google has always said.</p>
<p>So before I ramble on&#8230;</p>
<ol>
<li>
<h3>Create unique, accurate page titles</h3>
<p>No problem here. It only makes sense to have unique, accurate page titles. Would you want a page title to say &#8220;Fish Market&#8221; when the page was really about coffee? I didn&#8217;t think so. As for the uniqueness of a title make sure you don&#8217;t have two pages with the same title. With the page title you are telling your users where they are with a quick glance.</p>
</li>
<li>
<h3>Make use of the &#8220;description&#8221; meta tag</h3>
<p>Well fancy that. Google telling us to use one of the meta tags.  I know some people that are going to be a little upset about this one. Google makes it pretty clear how this helps users. They (sometimes) take the description meta tag and use it in the search results. Helpful? Maybe&#8230; Though it is another place to give a little bit more information about the page/site.</p>
</li>
<li>
<h3>Improve the structure of your URLs</h3>
<p>Google says to make your URLs make sense. That is to make your URLs have human readable words in them so that people can understand where they are. Not much to say here&#8230;</p>
</li>
<li>
<h3>Make your site easier to navigate</h3>
<p>Hrmm they suggest adding <a href="http://en.wikipedia.org/wiki/Site_map">sitemaps</a> and <a href="http://www.sitemaps.org/">Sitemaps</a> to your site to make it easy. That is one way of doing it, though having a good navigation on all your pages would seem like a better choice for your users. They do start to talk about that a little bit seem to rely on Sitemaps a little too much I think.</p>
</li>
<li>
<h3>Offer quality content and services</h3>
<p>Well Duh&#8230; &#8220;Users know good content when they see it&#8230;&#8221; I beg to differ. There are <a href="http://digg.com">some</a> <a href="http://www.stumbleupon.com">places</a> that users would not know good content if it walked up and slapped them in the face. But they did hit this one right on the head. Good content/services will bring users back. </p>
</li>
<li>
<h3>Write better anchor text</h3>
<p>Yup. No more &#8220;<a href="http://www.google.com/search?q=click+here">click here</a>&#8220;.  But alas people still do it.</p>
</li>
<li>
<h3>Use heading tags appropriately</h3>
<p>I think this section should really be about writing good markup. It would go far if Google started saying that good clean HTML meant something to them. Using markup how it was meant to be used should always be done. </p>
</li>
<li>
<h3>Optimize your use of images</h3>
<p>Ahh Google I love you. You used &#8220;alt&#8221; attribute and not &#8220;alt&#8221; tag. Good for you. Remember kids use your attributes wisely. Not only will they help people who can&#8217;t see images figure out what is they but they will also save lives!</p>
</li>
<li>
<h3>Make effective use of robots.txt</h3>
<p><a href="http://www.robotstxt.org/">Robots.txt</a> is for robots and not users. There&#8217;s no other way to put it. Though in a round about way users use Google to to find your site and if you have a directory hidden then the users won&#8217;t see it in the search results. Err umm&#8230; yea I say we start a standard called humans.txt for use by humans&#8230; yea&#8230; that&#8217;s it.  </p>
</li>
<li>
<h3>Be aware of rel=&#8221;nofollow&#8221; for links</h3>
<p>Again rel=&#8221;nofollow&#8221; is for robots. Unless you want to look at the source code of a site most people won&#8217;t even know its there. Also in this section they mention using CAPTCHAs for spam&#8230; NO! Damnit Google I thought you were better then that. W3C has been saying since 2005 (or longer) that <a href="http://www.w3.org/TR/turingtest/">CAPTCHAs are in-accessible</a>. Bad Google bad bad bad&#8230;</p>
</li>
<li>
<h3>Promote your website in the right ways</h3>
<p>Not much to say here other then: Google can you give us examples of the wrong ways to promote our sites? I mean are there any?</p>
</li>
<li>
<h3>Make use of free webmaster tools, Take advantage of web analytics services, Helpful resources for webmasters</h3>
<p>&#8220;Oh hey there, I&#8217;m Google, I hope you enjoyed this guide of mine. I&#8217;m going to sell my products to you under the guise of an SEO guide. I make a lot of products that you should use. So I&#8217;m going to put ALL my links at the end of this SEO Guide so that you&#8217;ll click on them. YAY!&#8221; said Google over enthusiastically.</p>
</li>
</ol>
<p>Well kids that&#8217;s pretty much it. I hoped you enjoyed my &#8220;review&#8221; of Google&#8217;s SEO Guide.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/2008/11/googles-seo-guide/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>One pagers</title>
		<link>http://andrewjaswa.com/2008/11/one-pagers/</link>
		<comments>http://andrewjaswa.com/2008/11/one-pagers/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 04:14:24 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=112</guid>
		<description><![CDATA[I&#8217;ve gotten on a kick lately of finding one pagers. That is: sites that only have one page and sometimes provide useful information. Some say that I love them, though I find the concept of them more interesting. I&#8217;ve been looking for these for a bit now and haven&#8217;t been able to find all of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve gotten on a kick lately of finding one pagers. That is: sites that only have one page and sometimes provide useful information. <a href="http://www.wildwebweaving.com/">Some say</a> that I love them, though I find the concept of them more interesting. I&#8217;ve been looking for these for a bit now and haven&#8217;t been able to find all of them.  </p>
<p>Some that relate to web and design:</p>
<ul>
<li><a href="http://istwitterdown.com/">istwitterdown.com</a></li>
<li><a href="http://isgraphicdesignart.com/">isgraphicdesignart.com</a></li>
<li><a href="http://dowebsitesneedtolookexactlythesameineverybrowser.com/">dowebsitesneedtolookexactlythesameineverybrowser.com</a></li>
<li><a href="http://ismakingwebsiteseasy.com/">ismakingwebsiteseasy.com</a></li>
<li><a href="http://makemylogobiggercream.com/">makemylogobiggercream.com</a></li>
<li><a href="http://totaleclipseofthecroft.info/">totaleclipseofthecroft.info</a></li>
<li><a href="http://isgmaildown.com/">isgmaildown.com</a></li>
</ul>
<p>Special Characters? Yup. They are so damn special they get their own websites.</p>
<ul>
<li><a href="http://www.raquo.net/">www.raquo.net</a></li>
<li><a href="http://www.laquo.net/">www.laquo.net</a></li>
<li><a href="http://www.rsaquo.net/">www.rsaquo.net</a></li>
<li><a href="http://www.lsaquo.net/">www.lsaquo.net</a></li>
</ul>
<p>Then we have our political ones:</p>
<ul>
<li><a href="http://isbarackobamamuslim.com/">isbarackobamamuslim.com</a></li>
<li><a href="http://isbarackobamamuslin.com/">isbarackobamamuslin.com</a></li>
<li><a href="http://ismccainpresident.com/">ismccainpresident.com</a></li>
<li><a href="http://ispalinpresident.com/">ispalinpresident.com</a></li>
<li><a href="http://isobamapresident.com/">isobamapresident.com</a></li>
</ul>
<p>And strange ones:</p>
<ul>
<li><a href="http://www.thingsididlastnight.com/">www.thingsididlastnight.com</a></li>
</ul>
<p>Helpful ones?</p>
<ul>
<li><a href="http://yesnomaybe.info/">yesnomaybe.info</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/2008/11/one-pagers/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Dear Media Temple&#8230;</title>
		<link>http://andrewjaswa.com/2008/10/dear-media-temple/</link>
		<comments>http://andrewjaswa.com/2008/10/dear-media-temple/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 01:15:55 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[industry]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[(mt)]]></category>
		<category><![CDATA[customer support]]></category>
		<category><![CDATA[dreamhost]]></category>
		<category><![CDATA[media temple]]></category>
		<category><![CDATA[usaa]]></category>
		<category><![CDATA[usaa.com]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[zappos]]></category>
		<category><![CDATA[zappos.com]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=92</guid>
		<description><![CDATA[
Dear Media Temple,
You&#8217;re trendy. You&#8217;re sleak and sometimes even sexy. And on the rare occasion your support is actually helpful. However for the past 2 weeks your support has sucked ass. Now I don&#8217;t mean just a little here and there. I mean big time. I even posted on Get Satisfaction because I wasn&#8217;t getting [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://andrewjaswa.com/uploads/2008/10/mt.png" alt="Media Temple. Still waiting..." title="(mt) Still waiting..."  class="size-full wp-image-95" /></p>
<h3>Dear Media Temple,</h3>
<p>You&#8217;re trendy. You&#8217;re sleak and sometimes even sexy. And on the rare occasion your support is actually helpful. However for the past 2 weeks your support has sucked ass. Now I don&#8217;t mean just a little here and there. I mean big time. I even posted on <a href="http://getsatisfaction.com/mediatemple/topics/why_cant_media_temple_keep_their_promises_to_their_paying_customers">Get Satisfaction</a> because I wasn&#8217;t getting satisfaction with the service I was PAYING for, service that you claim is &#8220;Unrivaled&#8221;. You want &#8220;Unrivaled&#8221; support? Go check out <a href="http://usaa.com">USAA</a> or <a href="http://zappos.com">Zappos.com</a>. USAA has gotten some <a href="https://www.usaa.com/inet/ent_utils/McStaticPages?key=usaa_awards">great awards</a> under it&#8217;s belt. While Zappos has a rabid fan base of loyal customers. And when I say rabid I really mean it. </p>
<p>Sadly keeping your customers informed or even replying to support requests doesn&#8217;t seem to be on the top of your list. You claim that &#8220;In many ways you could say our main product is customer support. It&#8217;s what we work on the hardest. 90% of our staff is in some way dedicated to this process.&#8221; (<a href="http://mediatemple.net/support/">source</a>)  I find this rather hard to believe as I have had a support ticket open since the Oct 15. It is now the 19th. And mind you this isn&#8217;t the first incident. I had another ticket open on Oct. 8th and wasn&#8217;t closed until the 13th. Quick turn around time there guys. </p>
<p>I&#8217;ve hosted with you for over a year now. I always thought you guys were pretty cool. Hosting the An Event Apart after parties. Being pretty cool to hang out with. But really taking 5 days to button up a ticket? That&#8217;s just shit. Before I even got a decent reply I had to post on Get Satisfaction.  Way to take a pro-active approach to fixing client issues before I had no where else but to the public. I know how PR works. It seems you guys do also, because you were quick to give me 3 months credit on my account. But you pushed me a bit too far and gave me no recourse. </p>
<p>After that was settled, TWO DAYS later I once again had an issue. I hoped that I would get a quick reply seeing as how I was told my experience <a href="http://getsatisfaction.com/mediatemple/topics/why_cant_media_temple_keep_their_promises_to_their_paying_customers#reply_628320">&#8220;is not the norm&#8221;</a>. But alas&#8230; It appears that shitty service is the norm at Media Temple.</p>
<p>It really makes me wonder what other problems Media Temple has, since their &#8220;main product is customer support&#8221;. </p>
<p>I&#8217;m done with you. I&#8217;ve already moved my websites over to a server at <a href="http://dreamhost.com">Dreamhost.com</a>. It was a pain in my ass to do that. I feel like billing you guys the 20 hours it took to complete. But I&#8217;d be happy just to get my money back. </p>
<p>I will never suggest, to anyone who asks about web hosting, that you guys are the way to go. I would though suggest if you want to feel like crap and get crappy customer support, that you guys are the best!</p>
<p>I feel dirty dealing with you,</p>
<h3>Andrew Jaswa</h3>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/2008/10/dear-media-temple/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Font Survey</title>
		<link>http://andrewjaswa.com/2008/07/font-survey/</link>
		<comments>http://andrewjaswa.com/2008/07/font-survey/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 19:21:32 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[industry]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[emotion]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[san-serif]]></category>
		<category><![CDATA[serif]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=22</guid>
		<description><![CDATA[
The reason
A while ago I got the idea to do some research on font and their usage across the internet. I was trying to figure out what font or typefaces people use and why. To me this is rather interesting because if you have any background in design or typography you&#8217;ll know that type conveys [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-23" title="font survey title" src="http://andrewjaswa.com/uploads/2008/07/fontsurvey.png" alt="" width="548" height="128" /></p>
<h3>The reason</h3>
<p>A while ago I got the idea to do some research on font and their usage across the internet. I was trying to figure out what font or typefaces people use and why. To me this is rather interesting because if you have any background in design or typography you&#8217;ll know that type conveys meaning and emotion. Would this not be true about the web? Could the typeface of a site convey something about the author or the message they are trying to get across? Maybe something they were feeling when they had it designed? Or maybe there is a corporate style guide that the designer had to follow when building the site? Or maybe that style guide was made with the idea of conveying emotion?</p>
<p>Whew&#8230; that&#8217;s a lot of questions I have. I&#8217;m not got to even try to answer them because, frankly, I can&#8217;t. I don&#8217;t know what was going through the designers heads. What I can do is survey websites and present the results.</p>
<h3>The start</h3>
<p>My initial survey was completed in early 2008 with about 100 sites. The sites I first selected were gleaned from the Alexa top 100 sites for the month of January 2008. Since I am from the US, speak English and am interested in western typefaces, I was only interested in English sites. It would be rather hard for me try to figure out different character sets other then Western/Latin. The rest of the sites I pulled were from sites I visit often.</p>
<p>This gave me a wide range of websites from categories of news and social network to retail and design. I figure that 100 sites or so of the whole internet would a fair sample to kick things off. Also I need some very highly and low trafficked sites to get a better idea of how people use type on the web.</p>
<h3>The process</h3>
<p>I began by going into the CSS and pulling out the *, html and body selectors and seeing what those were set to. In a lot of cases one of those three selectors set the font for the entire site. Great! Job done! Well&#8230; sort of. Some sites didn&#8217;t have one of those selectors setting the font. So I had to dig some more.  Some sites had it set on the p selector, some just had IDs and classes. I ended up going through lots of CSS, some of it nicely organized and some of it downright disgusting.</p>
<p>As anyone who has been working with CSS and browsers for a bit, you would know that for the best results you want to set more then one font in your CSS declarations. So seeing something like this was far from uncommon:<br />
<code>font-family:Arial, Helvetica, Verdana, sans-serif;</code><br />
I collected all the font information I could because who knows it could be useful at some point. Most of the font stats in this post and in the survey are based on the first font.</p>
<h3>The odd bits</h3>
<p>While going through the sites I noticed was that some sites would use one type for headings and another type for body text and yet another for their footer. In the case of <a href="http://www.coudal.com">Coudal Partners</a> out of Chicago, they use Gill Sans for their H1, Times for the rest of their headings and Verdana for most of everything else. Now this puts me in a tight spot. All three faces are in the site, but I can&#8217;t then lump a site into a category or group. It got me thinking about what people &#8220;would/should/could&#8221; be reading the most.</p>
<p>I settled on going with what a majority of the text was set to. In the case of Coudal I settled on Verdana. Why? Because my thought was thus: If I (the user) is going to read, I&#8217;m going to read the majority of the text, so I&#8217;m going to see that face the most. In turn Verdana was used for a majority of the text in this case. I followed this same thinking for all the other sites I collected data on.</p>
<p>So why did Coudal use three typefaces on their site? I&#8217;m not sure but I bet it has something to do with a question I asked before: Could the typeface of a site convey something about the author or the message the are trying to get across?</p>
<h3>The interesting bits</h3>
<p>Some of the more interesting bits I found were the unbalanced serif to sans-serif ratio. In a sample of 112 sites 8.93% or 10 sites used serif fonts. Of the sites that used sans-serif fonts Arial came out on top with 46 sites. 35 sites had 1 primary font and 2 secondary fonts. 27 had 4 total fonts set. This one amazed me: 1 site (reference.com) had 8 total fonts set. <code>"Lucida Sans Unicode", "Arial Unicode MS", "Lucida Sans", "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;</code><br />
This blew me away. Why would anyone want to set 8 fonts?</p>
<h4><a href="http://andrewjaswa.com/research/fonts/">Check out the survey</a></h4>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/2008/07/font-survey/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
