<?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</title>
	<atom:link href="http://andrewjaswa.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewjaswa.com/blog</link>
	<description></description>
	<lastBuildDate>Mon, 20 Jun 2011 03:39:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Software, Daily</title>
		<link>http://andrewjaswa.com/blog/2011/06/software-daily/</link>
		<comments>http://andrewjaswa.com/blog/2011/06/software-daily/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 20:54:16 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=404</guid>
		<description><![CDATA[I recently had a harddrive crash in my MBP and it got me thinking about the software I use on a daily basis, since I had to restore all of it. Chrome, probably one of the best browsers out there today. Firefox, still use FF from dev work and some sites. Coda, a great all [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had a harddrive crash in my MBP and it got me thinking about the software I use on a daily basis, since I had to restore all of it.</p>
<ol>
<li><a href="http://www.google.com/chrome">Chrome</a>, probably one of the best browsers out there today.</li>
<li><a href="http://www.mozilla.com/firefox/">Firefox</a>, still use FF from dev work and some sites.</li>
<li><a href="http://www.panic.com/coda/">Coda</a>, a great all around code editor.</li>
<li><a href="http://code.google.com/p/macvim/">MacVim</a>, my co-workers have gotten me hooked on MacVim, though there are still some things I like about Coda so it won&#8217;t be taking over as my full time editor, maybe 50/50.</li>
<li><a href="http://adium.im/">Adium</a>, what is there to say? All around best IM client there is?</li>
<li><a href="http://www.panic.com/transmit/">Transmit</a>, another great tool from the guys at Panic, you can mount (s)ftp servers as local drives and other magical things with this tool.</li>
<li><a href="http://latenitesoft.com/clusters/">Clusters</a>, compresses files on your harddrive seamlessly. I&#8217;ve already saved 15.6 gigs.</li>
</ol>
<p>That pretty much sums up the software I use every day. I have to admit, when I started this list I thought it would be longer. I guess I use more websites and cloud services than I thought.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/blog/2011/06/software-daily/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer and line breaks</title>
		<link>http://andrewjaswa.com/blog/2010/09/internet-explorer-and-line-breaks/</link>
		<comments>http://andrewjaswa.com/blog/2010/09/internet-explorer-and-line-breaks/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 19:59:39 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=387</guid>
		<description><![CDATA[Recently I&#8217;ve run into an interesting issue where Internet Explorer won&#8217;t break on some lines when there is a string followed by a space followed by a period followed by a string. For example: &#8220;I&#8217;ve written some text here .So that I can illustrate this issue.&#8221; I&#8217;ve made a mistake and put the period on [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve run into an interesting <a href="http://www.cs.tut.fi/~jkorpela/html/nobr.html#unicode-nobreak">issue where Internet Explorer won&#8217;t break on some lines</a> when there is a string followed by a space followed by a period followed by a string. For example: &#8220;I&#8217;ve written some text here .So that I can illustrate this issue.&#8221; I&#8217;ve made a mistake and put the period on the wrong side of the space, I&#8217;m not the best typist in the world so this happens to me from time to time.</p>
<div style="width:200px; overflow:auto; border:1px solid #666; float:right;height:75px;">
.exe .jpg .gif .php .html .flv .doc .pages .zip .pdf .torrent .mp3 .mov .wmv
</div>
<p>My issue steams from hit highlighting in search results. Our back-end database automatically adds code similar to this for the search term &#8220;foo&#8221;:</p>
<p><code>&lt;span&gt;Found In:&#038;lt/span&gt; ...&lt;span class="hitHighlight"&gt;foo&lt;/span&gt; ...&lt;span class="hitHighlight"&gt;foo&lt;/span&gt; ...&lt;span class="hitHighlight">foo&lt;/span&gt; ...<br />
</code><br />
Now normally this wouldn&#8217;t be an issue and probably would go unnoticed but there are some cases where the search term is rather long. ( I&#8217;ve been working on a Finnish site and the term I&#8217;m having issues with is &#8220;Kappaletavarakuljetukset&#8221;. ) When the search term is long we want the text to wrap on to the next line. Which in IE it won&#8217;t unless you force it by adding &lt;wbr&gt; or another space after the period. </p>
<p>You might be able to imagine there are some legitimate places you will want to place &#8220;text .text&#8221;. However as in my case its not really legitimate and due to the Microsoft (!) back-end we are using to produce the code/text its rather difficult to change the generated code. </p>
<p>Update: Since the bug isn&#8217;t overly apparent in non-IE browsers&#8230; Screenshots:</p>
<p>Non-IE:<br />
<img src="http://andrewjaswa.com/uploads/2010/09/Picture-15-548x154.png" alt="Non-ie" title="Non-ie" width="548" height="154" class="alignnone size-medium wp-image-400" /></p>
<p>IE:<br />
<img src="http://andrewjaswa.com/uploads/2010/09/Picture-16-548x159.png" alt="IE" title="IE" width="548" height="159" class="alignnone size-medium wp-image-401" /></p>
<p>Update2: It seems that &lt;wbr&gt; doesn&#8217;t work in all cases. Sadly in my case in IE8, I had to add an extra space. </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/blog/2010/09/internet-explorer-and-line-breaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Markup Conditionals</title>
		<link>http://andrewjaswa.com/blog/2009/05/markup-conditionals/</link>
		<comments>http://andrewjaswa.com/blog/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/blog/2009/05/markup-conditionals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On being left handed</title>
		<link>http://andrewjaswa.com/blog/2009/02/on-being-left-handed/</link>
		<comments>http://andrewjaswa.com/blog/2009/02/on-being-left-handed/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 23:12:11 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[experiences]]></category>
		<category><![CDATA[industry]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[left-handed]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=319</guid>
		<description><![CDATA[I consider myself to be left handed. Though I think I&#8217;m more mixed handed. But alas mixed handedness gets cut out of the picture most of the time since the focus tends to be on the dominate writing hand. I like being left handed, it means I might have a gene that makes me left [...]]]></description>
			<content:encoded><![CDATA[<p>I consider myself to be left handed. Though I think I&#8217;m more mixed handed. But alas mixed handedness gets cut out of the picture most of the time since the focus tends to be on the dominate writing hand. </p>
<p>I like being left handed, it means I might have a gene that makes me left handed, but they aren&#8217;t sure about that yet. I also notice quite a bit when other people around me are left handed. It makes me feel special. I&#8217;m an oddity (I&#8217;m sure most people would agree with that). Being left handed also makes me adept at using my right hand better then right handed folks can use their left hand. Some call this ambidextrous, but truly, I am not. I&#8217;m not equally dexterous on both sides of my body which is why I&#8217;m more mixed handed. I can&#8217;t throw things with my left arm and I play baseball (as well as most sports) with my right arm. I am also right footed and right eyed. There are few things that I can only do well with my left arm/hand.</p>
<p>What I don&#8217;t like is when people don&#8217;t consider the left handed folks when designing things. </p>
<p>Spurring on this rant was a recent discussion on a well known and widely read interaction design mailing list. The discussion was around mouse clicks on a web app/site. More to the point they were talking about the use of contextual menus being accessed via a &#8220;right click&#8221;. I&#8217;m sure you might be thinking this is a little nit-picky and perhaps it is. However the problem persists, people do not think out side their own means. They tend to think of what they can do and not what others do or can&#8217;t do. For crying out loud these guys design interfaces and interactions. What happens if they design something strictly for their means not considering how others may use it and someone dies? </p>
<p>Taking this a little further, there has been <a href="http://www.sciencedirect.com/science?_ob=ArticleURL&#038;_udi=B6V1W-4BHCHRX-1&#038;_user=10&#038;_rdoc=1&#038;_fmt=&#038;_orig=search&#038;_sort=d&#038;view=c&#038;_acct=C000050221&#038;_version=1&#038;_urlVersion=0&#038;_userid=10&#038;md5=e922c0191c67b77d20db5792ede96929">research on the effects of left handed people using right handed mice</a>. It can cause some issues with posture. Which makes you wonder if ~10% of the worlds population is cared about by the other 90%. It seems that the <a href="http://en.wikipedia.org/wiki/Pareto_principle">80/20 rule</a> shouldn&#8217;t apply for handedness. But alas it does and designers, business people and right handed folks don&#8217;t see the value in accommodating the southpaws of this world. </p>
<p>We might be an edge case in some people&#8217;s minds but wouldn&#8217;t people with disabilities considered edge cases? It basically the same thing, people with psychical disabilities could have a hard time doing things that people without disabilities do with ease. People who are left hand dominate could have difficulties with things that are designed for the right handed world. </p>
<p>Equality for all? No. Not until the right handed world stops being selfish. </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/blog/2009/02/on-being-left-handed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPhone safe fonts</title>
		<link>http://andrewjaswa.com/blog/2009/02/iphone-safe-fonts/</link>
		<comments>http://andrewjaswa.com/blog/2009/02/iphone-safe-fonts/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 22:03:47 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[fonts]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=329</guid>
		<description><![CDATA[I was pondering the other day as to what fonts could be used in mobile Safari. I came across an article about this very subject on Daring Fireball. There is even a chart of exactly what fonts are installed on the iphone. It&#8217;s a great resource, but it seems a bit overwhelming. We all know [...]]]></description>
			<content:encoded><![CDATA[<p>I was pondering the other day as to what fonts could be used in mobile Safari. I came across an <a href="http://daringfireball.net/2007/07/iphone_fonts">article about this very subject</a> on <a href="http://daringfireball.net">Daring Fireball</a>. There is even a <a href="http://daringfireball.net/misc/2007/07/iphone-osx-fonts">chart of exactly what fonts</a> are installed on the iphone. It&#8217;s a great resource, but it seems a bit overwhelming. We all know that browser and OS support for fonts isn&#8217;t as great as we would like. Which is why things like SIFR and image replacement are used. There aren&#8217;t a lot of fonts we can use </p>
<p>While Daring Fireball&#8217;s list is comprehensive I wanted something that would be a quick reference. So I created <a href="http://andrewjaswa.com/research/fonts/iphone/">my own test</a> based on commonly used web fonts. A quick rundown of the fonts that can be used on MobileSafari:</p>
<ul>
<li>Arial</li>
<li>Courier</li>
<li>Courier New</li>
<li>Garamond</li>
<li>Georgia</li>
<li>Helvetica</li>
<li>Times/Times New Roman</li>
<li>Trebuchet MS</li>
<li>Verdana</li>
</ul>
<p>I didn&#8217;t test the other fonts that Daring Fireball listed because I&#8217;m pretty sure they aren&#8217;t &#8220;web-safe&#8221;. Interestingly enough Daring Fireball doesn&#8217;t have Garamond listed. There could be an explanation for this though. Their post is from July 2007, if Apple added Garamond later that would explain it. </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/blog/2009/02/iphone-safe-fonts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>February&#8217;s Article on 13things</title>
		<link>http://andrewjaswa.com/blog/2009/02/februarys-article-on-13things/</link>
		<comments>http://andrewjaswa.com/blog/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[code]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[13things]]></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/blog/2009/02/februarys-article-on-13things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordle</title>
		<link>http://andrewjaswa.com/blog/2009/02/wordle/</link>
		<comments>http://andrewjaswa.com/blog/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/blog/2009/02/wordle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordcamp Denver</title>
		<link>http://andrewjaswa.com/blog/2009/01/wordcamp-denver/</link>
		<comments>http://andrewjaswa.com/blog/2009/01/wordcamp-denver/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 05:34:47 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[industry]]></category>
		<category><![CDATA[presentations]]></category>
		<category><![CDATA[denver]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=309</guid>
		<description><![CDATA[Yup. I&#8217;m going. And for $20 who wouldn&#8217;t? That&#8217;s a steal. For 12 speakers in one day. Oh hell yes. And I think I get a t-shirt out of it.]]></description>
			<content:encoded><![CDATA[<p><a href="http://denver.wordcamp.org/"><img title="Attending WordCamp Denver" src="http://denver.wordcamp.org/files/2008/10/attending-badge.png" alt="I'm Attending WordCamp Denver 2009" width="125" height="125" /></a></p>
<p>Yup. I&#8217;m going. </p>
<p>And for $20 who wouldn&#8217;t? That&#8217;s a steal. For 12 speakers in one day. Oh hell yes. And I think I get a t-shirt out of it. </p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/blog/2009/01/wordcamp-denver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>13things</title>
		<link>http://andrewjaswa.com/blog/2009/01/13things/</link>
		<comments>http://andrewjaswa.com/blog/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/blog/2009/01/13things/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>You, Yourself</title>
		<link>http://andrewjaswa.com/blog/2009/01/you-yourself/</link>
		<comments>http://andrewjaswa.com/blog/2009/01/you-yourself/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 21:32:53 +0000</pubDate>
		<dc:creator>ajaswa</dc:creator>
				<category><![CDATA[industry]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[challenges]]></category>
		<category><![CDATA[identity]]></category>

		<guid isPermaLink="false">http://andrewjaswa.com/?p=286</guid>
		<description><![CDATA[You. Who are you? Do you know how you are perceived by others? Do I know you? Do other people know you? A year or so ago I was reading something about making good impressions with resumes. While it was aimed at fresh college graduates it did have some good pointers for anyone who wants [...]]]></description>
			<content:encoded><![CDATA[<p>You. Who are you? Do you know how you are perceived by others? Do I know you? Do other people know you? </p>
<p>A year or so ago I was reading something about making good impressions with resumes. While it was aimed at fresh college graduates it did have some good pointers for anyone who wants to be a professional. The one point that that still sticks in my mind was their comments about email addresses. They suggested getting a email address based on your name rather then partyperson247@example.com. </p>
<blockquote><p>Hi. I&#8217;m the marketing Director for a Fortune 500 company. IM me at &ldquo;shavedkitty2008&rdquo; &#8211; <cite><a href="http://ryanbrunsvold.com">Ryan Brunsvold</a></cite></p></blockquote>
<p>While that is an extreme example of this I still know quite a few professionals that use screen names and email addresses that aren&#8217;t of the professional nature you want to be known for. Now don&#8217;t get me wrong I&#8217;ve had my share of strange screen names and email addresses in the past, but I realized that if I want to be taken seriously then I need to act accordingly. Nearly all my screen names/email/accounts are some variation on Andrew Jaswa. This not only makes it easy for me to remember but it also helps others know who I am. By making my account names some variation on my real name I&#8217;ve opened the door for more communication, both good and bad. People now know that idiot posting is me and not some teen age boy with nothing better to do. </p>
<p>Numbers in your user name might be an easy way to get that &ldquo;loverboy&rdquo; account name, but it doesn&#8217;t look professional. I blame AOL for this. If you have a common name, such as &ldquo;John Smith&rdquo;, I would try everything possible to get something that is close to it. User you middle name if you have to. </p>
<p>If you use some fleeting interest you had at the time in your screen name, you have to realize that you might not like that thing later and change your screen name. Who likes changing established screen names? Not I.</p>
<p>If you are a public figure or have professional aspirations then you need to have a good public face and the start of that is to have a good name you are known by online. Make your online identity universal and always relevant to you. But please, please don&#8217;t use &ldquo;shavedkitty2008&rdquo; (Ryan already has dibs on it).</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewjaswa.com/blog/2009/01/you-yourself/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
