<?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>this.rand() &#187; website</title>
	<atom:link href="http://www.thisrand.com/category/website/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thisrand.com</link>
	<description>the life of Ryan Meinzer and Jessica Meinzer</description>
	<lastBuildDate>Mon, 19 Sep 2011 01:41:44 +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>WordPress 3.2.1 Update broke the Arras Theme</title>
		<link>http://www.thisrand.com/2011/08/wordpress-3-2-1-update-broke-the-arras-theme</link>
		<comments>http://www.thisrand.com/2011/08/wordpress-3-2-1-update-broke-the-arras-theme#comments</comments>
		<pubDate>Mon, 01 Aug 2011 15:46:42 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=1559</guid>
		<description><![CDATA[Looks like our theme was broken and so I have reverted the website back to the default theme.  I will be changing it shortly, so please look past the generic...]]></description>
			<content:encoded><![CDATA[<p>Looks like our theme was broken and so I have reverted the website back to the default theme.  I will be changing it shortly, so please look past the generic style.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2011%2F08%2Fwordpress-3-2-1-update-broke-the-arras-theme&amp;title=WordPress%203.2.1%20Update%20broke%20the%20Arras%20Theme" id="wpa2a_2"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2011/08/wordpress-3-2-1-update-broke-the-arras-theme/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweaking Jquery AutoSuggest</title>
		<link>http://www.thisrand.com/2011/01/tweaking-jquery-autosuggest</link>
		<comments>http://www.thisrand.com/2011/01/tweaking-jquery-autosuggest#comments</comments>
		<pubDate>Mon, 31 Jan 2011 17:19:52 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[geekdom]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=1521</guid>
		<description><![CDATA[Tweaking the Drew Wilson Jquery autosuggest script to display a full list on double click without typing any input.]]></description>
			<content:encoded><![CDATA[<p>I have been using the <a target="_blank" class="zem_slink" title="JQuery" rel="homepage" href="http://jquery.com/">JQuery library</a> for a long time now, and am still amazed at what people get it to do.  One feature that the base libaray was really lacking was a good <a target="_blank" class="zem_slink" title="Incremental search" rel="wikipedia" href="http://en.wikipedia.org/wiki/Incremental_search">Autosuggest</a> for a text input.  It needed to be <a target="_blank" class="zem_slink" title="Ajax (programming)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Ajax_%28programming%29">AJAX</a> driven, and understand having multiple values.</p>
<p>I found a great example of what I wanted at <a target="_blank" href="http://code.drewwilson.com/entry/autosuggest-jquery-plugin" target="_blank">Drew Wilson&#8217;s blog</a>, complete with almost all the features I needed.</p>
<p>One thing his script is really lacking is a good way to show ALL the results.  We have a huge category list, and want to let someone browse them all.  In the base script, this isn&#8217;t going to work, since there isnt a way to make the look up fire off without input.  I didnt want my users to have to enter in, one by one, each letter of the alphabet looking for what they wanted, so I settled on using a double click event to force the display of the entire list.</p>
<p>And here is how to make that happen:</p>
<p>In the js file (jquery.autoSuggest.js) you will need to make some changes.</p>
<p>~line 149 add:</p>
<pre> }).dblclick(<a target="_blank" class="zem_slink" title="Function (mathematics)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Function_%28mathematics%29">function</a>(){</pre>
<pre> if (timeout){ clearTimeout(timeout); }</pre>
<pre> timeout = setTimeout(function(){ keyChange(); }, opts.keyDelay);</pre>
<p>so it will look like:</p>
<pre> }).blur(function(){</pre>
<pre> if($(this).val() == "" &amp;&amp; values_input.val() == "" &amp;&amp; prefill_value == ""){</pre>
<pre> $(this).val(opts.startText);</pre>
<pre> } else if(input_focus){</pre>
<pre> $("li.as-selection-item", selections_holder).addClass("blur").removeClass("selected");</pre>
<pre> results_holder.hide();</pre>
<pre> }</pre>
<pre> }).dblclick(function(){</pre>
<pre> if (timeout){ clearTimeout(timeout); }</pre>
<pre> timeout = setTimeout(function(){ keyChange(); }, opts.keyDelay);</pre>
<pre> }).keydown(function(e) {</pre>
<p>This will pull up a list on <a target="_blank" class="zem_slink" title="Double-click" rel="wikipedia" href="http://en.wikipedia.org/wiki/Double-click">double click</a>.  You can change dlbclick to just click for a <a target="_blank" class="zem_slink" title="Point-and-click" rel="wikipedia" href="http://en.wikipedia.org/wiki/Point-and-click">single click</a> response instead.</p>
<p>~line 226 comment out the lines:</p>
<pre>if( lastKeyPressCode == 46 || (lastKeyPressCode &gt; 8 &amp;&amp; lastKeyPressCode &lt; 32) ){ return results_holder.hide(); }</pre>
<p>and</p>
<pre>if (string == prev) return;</pre>
<p>and</p>
<pre>if (string.length &gt;= opts.minChars) {</pre>
<p>and then on ~line 252 comment out</p>
<pre> } else {</pre>
<pre> selections_holder.removeClass("loading");</pre>
<pre> results_holder.hide();</pre>
<pre> }</pre>
<p>You will also want to turn the option &#8220;resultsHighlight&#8221; false, when you create the instance.</p>
<p>Now, on double click it will present a full list of options.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://designshack.co.uk/articles/javascript/weekly-freebies-10-brilliant-jquery-plugins">Weekly Freebies: 10 Brilliant jQuery Plugins</a> (designshack.co.uk)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.devcurry.com/2010/11/jquery-144-fadetoggle-function.html">jQuery 1.4.4 fadeToggle() function</a> (devcurry.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://addyosmani.com/blog/jquery-roundrr/">jQuery Roundrr &#8211; How To Create Awesome Circular Image Galleries With jQuery &amp; CSS</a> (addyosmani.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.devcurry.com/2010/10/use-jquery-to-scroll-to-bottom-or-top.html">Use jQuery to Scroll to Bottom or Top of a Page</a> (devcurry.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://renesd.blogspot.com/2011/01/jquery-15-promises-better-future.html">JQuery 1.5 promises a better future.</a> (renesd.blogspot.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=4e0fe6cc-4494-4d0c-a7ab-aa75277a202e" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2011/01/tweaking-jquery-autosuggest/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Validation is (still) pointless!</title>
		<link>http://www.thisrand.com/2010/11/html-validation-is-still-pointless</link>
		<comments>http://www.thisrand.com/2010/11/html-validation-is-still-pointless#comments</comments>
		<pubDate>Tue, 23 Nov 2010 20:43:03 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[cute]]></category>
		<category><![CDATA[geekdom]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[legal]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[zoo]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=542</guid>
		<description><![CDATA[Ok, so we all know that we should write &#8220;valid&#8221;* HTML, and yet, less than 5% of websites validate for one reason or another.  Now this statistic can be a...]]></description>
			<content:encoded><![CDATA[<p>Ok, so we all know that we <em>should</em> write &#8220;valid&#8221;* <a target="_blank" class="zem_slink" title="HTML" rel="wikipedia" href="http://en.wikipedia.org/wiki/HTML">HTML</a>, and yet, <a target="_blank" href="http://www.netmag.co.uk/zine/latest-issue/issue-183" target="_blank">less than 5% of websites validate</a> for one reason or another.  Now this statistic can be a bit misleading as a comment from a user that didn&#8217;t use valid markup could invalidate the <a target="_blank" class="zem_slink" title="Website" rel="wikipedia" href="http://en.wikipedia.org/wiki/Website">website</a>, so granted, there is some play with the stats (per the usual), but let&#8217;s again assume that number is close.</p>
<p>Why?  Why do we not write perfect HTML?  Surely with the free <a target="_blank" href="http://validator.w3.org/" target="_blank">validator</a> on the authority&#8217;s website there is no excuse to write code that wont validate against the standard.</p>
<p>The answer there is simple, <strong>if and when </strong>all the major browsers (<a target="_blank" class="zem_slink" title="Mozilla Firefox" rel="geolocation" href="http://maps.google.com/maps?ll=45.1238,-123.1138&amp;spn=1.0,1.0&amp;q=45.1238,-123.1138%20%28Mozilla%20Firefox%29&amp;t=h">Firefox</a>, <a target="_blank" class="zem_slink" title="Safari (web browser)" rel="homepage" href="http://www.apple.com/safari/">Safari</a>, IE, <a target="_blank" class="zem_slink" title="Opera Software" rel="homepage" href="http://www.opera.com">Opera</a>, Chrome) all render a page according to the standard, then I will finally start caring about the validation of my websites.  Until then, I will continue to write code that works across the board, and just not care if it is &#8220;valid&#8221;.</p>
<p>To be real though, most of the browsers work pretty well, however the <a target="_blank" href="http://www.w3schools.com/browsers/browsers_stats.asp" target="_blank">800lb gorilla</a> in the room, IE, does not.  <a target="_blank" class="zem_slink" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> continually changes the standards by which they will render a page, like promising <a target="_blank" href="http://blogs.msdn.com/ie/archive/2006/08/22/712830.aspx" target="_blank">CSS 2 support in IE7</a> then bailing on that promise 6 months before release.  And let us not forget the horribly pathetic Javascript <a target="_blank" class="zem_slink" title="Layout engine" rel="wikipedia" href="http://en.wikipedia.org/wiki/Layout_engine">rendering engine</a>, <a target="_blank" class="zem_slink" title="JScript" rel="homepage" href="http://msdn.microsoft.com/en-us/library/hbxc2t98%28VS.85%29.aspx">JScript</a>, that the rest of us just ignore because it can&#8217;t be trusted to behave reliably.</p>
<p>So, like even on this website, we find ourselves writing &#8220;valid&#8221; code, and at the same time having to redefine valid to mean &#8220;Code that works in all the browsers&#8221;, not &#8220;Code that the W3C says is valid even though it looks like crap in IE6&#8243;.  Just to maintain a semblance of order and sanity, we use the handy IE CSS hacks where IE on <a target="_blank" class="zem_slink" title="Windows" rel="homepage" href="http://www.microsoft.com/WINDOWS">Windows</a> will actually arbitrarly execute code depending on the version of the IE browser being used.  Does that sound like an admission of guilt on the part of MS to anyone else?  OK Bill, repeat after me, &#8220;I know my browser sucks, so, instead of fixing it which would severely hamper my marketing and legal budgets, I will just allow hacks in order to ensure you nerdy web guys can still make pretty pages&#8221;.  There, was that so hard!?</p>
<p>So, someone feel free to run the validate against any of my websites.  Don&#8217;t bother sending me the results because I don&#8217;t care.  The sites work, the code looks good, documented, and is maintainable, so, what exactly was the complaint?</p>
<h5>*valid code is extremely subjective, but let&#8217;s assume here I mean W3C &#8220;valid&#8221; code.</h5>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://blogs.msdn.com/ie/archive/2009/02/19/the-css-corner-using-filters-in-ie8.aspx">The CSS Corner: Using Filters In IE8</a> (blogs.msdn.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.inquisitr.com/17897/mozilla-should-be-thanking-microsoft-for-bundling-ie-not-kissing-eus-butt/">Mozilla should be thanking Microsoft for bundling IE not kissing EU&#8217;s butt</a> (inquisitr.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://r.zemanta.com/?u=http%3A//www.infoworld.com/article/09/01/16/browser-wars-deemed-hot-again_1.html&amp;a=2664880&amp;rid=688f04e7-7910-4d78-8153-78194999c6b9&amp;e=62bf56fb0808fa686789d7d6995fdf45">Browser wars deemed hot again</a> (infoworld.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.ghacks.net/2009/02/23/how-to-zoom-in-firefox/">How To Zoom In Firefox</a> (ghacks.net)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://r.zemanta.com/?u=http%3A//www.infoworld.com/article/09/01/23/Microsoft_to_deliver_first_IE8_release_candidate_Monday_1.html&amp;a=2800890&amp;rid=688f04e7-7910-4d78-8153-78194999c6b9&amp;e=32f3ce5da320127c5a388473cabdd420">Microsoft to deliver first IE8 release candidate Monday</a> (infoworld.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://r.zemanta.com/?u=http%3A//www.infoworld.com/article/08/12/19/Google_issues_first_postbeta_Chrome_update_1.html&amp;a=2330376&amp;rid=688f04e7-7910-4d78-8153-78194999c6b9&amp;e=0d13e5560c2070cb64992b4e6fce5c55">Google issues first post-beta Chrome update</a> (infoworld.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://thenextweb.com/2009/01/27/eu-force-microsoft-include-firefox-future-versions-windows/">The EU Could Force Microsoft to Include Firefox in Future of Versions of Windows</a> (thenextweb.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/688f04e7-7910-4d78-8153-78194999c6b9/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=688f04e7-7910-4d78-8153-78194999c6b9" alt="Reblog this post [with Zemanta]" /></a></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2010%2F11%2Fhtml-validation-is-still-pointless&amp;title=HTML%20Validation%20is%20%28still%29%20pointless%21" id="wpa2a_4"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/11/html-validation-is-still-pointless/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Amateur Web Design</title>
		<link>http://www.thisrand.com/2010/11/amateur-web-design</link>
		<comments>http://www.thisrand.com/2010/11/amateur-web-design#comments</comments>
		<pubDate>Wed, 03 Nov 2010 23:06:50 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[links]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=874</guid>
		<description><![CDATA[There are a lot of amateur web designers out there.  They post on forums, and advertise freakishly cheap prices, like $150 for a website.  The differences between them and those...]]></description>
			<content:encoded><![CDATA[<p>There are a lot of amateur web designers out there.  They post on forums, and advertise freakishly cheap prices, like $150 for a <a target="_blank" class="zem_slink" title="Website" rel="wikipedia" href="http://en.wikipedia.org/wiki/Website">website</a>.  The differences between them and those of us that do this professionally are too many to be named.  Obviously the pricing is a huge difference, they charge for an entire website what my hourly rate is.  But then again, I don&#8217;t really make just the brochure 4 page websites, we actually write custom applications that do very complex things ranging from <a target="_blank" class="zem_slink" title="Electronic commerce" rel="wikipedia" href="http://en.wikipedia.org/wiki/Electronic_commerce">e-commerce</a> to mission critical business processes.</p>
<p>Another huge difference is the professionals actually stick to standards and try to keep up with trends and new technology, unlike the 15 year old designers working from mom&#8217;s house.  I found out recently about this &#8220;<a target="_blank" href="http://www.lrwebs.com/" target="_blank">company</a>&#8221; (<a target="_blank" href="http://www.lrwebs.com/" target="_blank">LR Web Design</a>).  First, they call <a target="_blank" class="zem_slink" title="HTML" rel="wikipedia" href="http://en.wikipedia.org/wiki/HTML">HTML</a> &#8220;coding&#8221; which is a complete misnomer.  And then talked down <a target="_blank" class="zem_slink" title="Adobe Dreamweaver" rel="homepage" href="http://www.adobe.com/products/dreamweaver">Dreamweaver</a>, and yet their &#8220;code&#8221; is at least 10 years out of date.  No <a target="_blank" class="zem_slink" title="Cascading Style Sheets" rel="wikipedia" href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets">CSS</a>, inline font tags, UPPERCASE tags, <a target="_blank" class="zem_slink" title="Image map" rel="wikipedia" href="http://en.wikipedia.org/wiki/Image_map">image maps</a> for menus, and tables for very basic positioning.  Here is another one of their websites: <a target="_blank" href="http://knbcolo.webs.com/" target="_blank">http://knbcolo.webs.com/</a> .  They don&#8217;t even use a true host, but a free website company.  Let me fill you in, none of this is what you want your company to have on its website.  It is unprofessional and doesn&#8217;t really put your best foot forward.  But if you want a slow loading website on a free host with no custom anything, by all means go with one of these people.  Otherwise, go with someone with training, experience, and credentials, as well as a portfolio with real clients you have heard of.</p>
<p>Like wine &amp; cars, you get what you pay for with websites.  I wouldn&#8217;t want my company looking cheap.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://blogs.adobe.com/dreamweaver/2009/09/get_up_to_speed_with_css_layou.html">Get up to speed with CSS layouts</a> (blogs.adobe.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://woorkup.com/2009/10/09/a-methodic-approach-to-css-coding-four-bubbles-model/">Methodic approach to CSS coding: Four Bubbles Model</a> (woorkup.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=f2b1937e-2189-4d02-bdf7-59a2260f5263" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2010%2F11%2Famateur-web-design&amp;title=Amateur%20Web%20Design" id="wpa2a_6"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/11/amateur-web-design/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Stop invading my ears!</title>
		<link>http://www.thisrand.com/2010/10/stop-invading-my-ears</link>
		<comments>http://www.thisrand.com/2010/10/stop-invading-my-ears#comments</comments>
		<pubDate>Mon, 18 Oct 2010 15:02:43 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[website]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=564</guid>
		<description><![CDATA[To everyone out there that thinks it is &#8220;cool&#8221; or &#8220;neat&#8221; to put music on your website, do the rest of us a favor, and don&#8217;t.  While I understand the...]]></description>
			<content:encoded><![CDATA[<p>To everyone out there that thinks it is &#8220;cool&#8221; or &#8220;neat&#8221; to put music on your <a target="_blank" class="zem_slink" title="Website" rel="wikipedia" href="http://en.wikipedia.org/wiki/Website">website</a>, do the rest of us a favor, and don&#8217;t.  While I understand the aesthetic nature of some sound,  for the most part it is just annoying.  When online, I usually listen to <a target="_blank" class="zem_slink" title="ITunes" rel="homepage" href="http://www.apple.com/itunes/">iTunes</a>, and the last thing I want is some hideously encoded streaming .<a target="_blank" class="zem_slink" title="WAV" rel="wikipedia" href="http://en.wikipedia.org/wiki/WAV">wav</a> file repeating the same 6 seconds of music over and over again.  Unless I really need to be on your website, I hit back on my mouse and try to immediately start repressing the memory that is your website.</p>
<p>At the end of the day, music requires a lot of <a target="_blank" class="zem_slink" title="Bandwidth (computing)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Bandwidth_%28computing%29">bandwidth</a> for those of you hosting the music files, a lot more than even a complex page (assuming your images are optimized, but don&#8217;t get me started on that today).  And for every <a target="_blank" href="http://www.balthaser.com" target="_blank">Pro:fx</a> out there, there are a 100 <a target="_blank" href="http://www.hampsterdance.com/" target="_blank">Hampsterdance</a> websites.</p>
<p>If you aren&#8217;t an amazing <a target="_blank" class="zem_slink" title="Disc jockey" rel="wikipedia" href="http://en.wikipedia.org/wiki/Disc_jockey">DJ</a>, or awesome <a target="_blank" href="http://en.wikipedia.org/wiki/Adobe_Flash" target="_blank">Flash</a>/<a target="_blank" href="http://www.shockwave.com" target="_blank">Shockwave</a>/<a target="_blank" href="http://silverlight.net/" target="_blank">Silverlight</a> developer, do us all a favor, and leave the music off your website.  I like my thousands of <a target="_blank" class="zem_slink" title="MP3" rel="wikipedia" href="http://en.wikipedia.org/wiki/MP3">MP3</a>&#8216;s, and I don&#8217;t force you to listen to them.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=377bdfc6-4d64-454e-8b80-25f0e45078dc" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2010%2F10%2Fstop-invading-my-ears&amp;title=Stop%20invading%20my%20ears%21" id="wpa2a_8"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/10/stop-invading-my-ears/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>For the Love of God, Optimize those Images!</title>
		<link>http://www.thisrand.com/2010/10/for-the-love-of-god-optimize-those-images</link>
		<comments>http://www.thisrand.com/2010/10/for-the-love-of-god-optimize-those-images#comments</comments>
		<pubDate>Thu, 07 Oct 2010 16:29:46 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[love]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=582</guid>
		<description><![CDATA[Time for another lesson in web design: Image Optimization!  Yes, as we all know it is really pretty to have a huge header on your website.  Hey, look at this...]]></description>
			<content:encoded><![CDATA[<p>Time for another lesson in <a target="_blank" class="zem_slink" title="Web design" rel="wikipedia" href="http://en.wikipedia.org/wiki/Web_design">web design</a>: Image Optimization!  Yes, as we all know it is really pretty to have a huge <a target="_blank" class="zem_slink" title="Header (computing)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Header_%28computing%29">header</a> on your <a target="_blank" class="zem_slink" title="Website" rel="wikipedia" href="http://en.wikipedia.org/wiki/Website">website</a>.  Hey, look at this website, I have large images on my front page.  But, you don&#8217;t have to make that experience painful for your users, especially those on *gasp* <a target="_blank" class="zem_slink" title="Dial-up internet access" rel="wikipedia" href="http://en.wikipedia.org/wiki/Dial-up_internet_access">dial-up</a>!</p>
<p>The solution is simple: optimize your images.  I use <a target="_blank" href="http://www.adobe.com/products/fireworks/" target="_blank">Fireworks</a>, but <a target="_blank" href="http://www.adobe.com/products/photoshop/photoshop/" target="_blank">Photoshop</a> has it built in these days as well.  It is basically a way of taking the image you want to use, and removes unwanted data, making the image size smaller, and hence, faster to load.  <a target="_blank" class="zem_slink" title="World Wide Web" rel="wikipedia" href="http://en.wikipedia.org/wiki/World_Wide_Web">The web</a> is a horrible medium for images, the 72dpi resolution of most monitors is just not that great.  But, it is all we have right now, and that is probably a good thing since anything more and the image just gets bigger and bigger.</p>
<p>By optimizing, your look stays intact, and everyone can enjoy it faster.  And it is cheaper on your wallet since it requires less <a target="_blank" class="zem_slink" title="Bandwidth (computing)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Bandwidth_%28computing%29">bandwidth</a> and less <a target="_blank" class="zem_slink" title="Central processing unit" rel="wikipedia" href="http://en.wikipedia.org/wiki/Central_processing_unit">CPU</a> to serve a smaller file.  Speaking of cheap, for those of you that do not have the <a target="_blank" class="zem_slink" title="Adobe" rel="wikipedia" href="http://en.wikipedia.org/wiki/Adobe">Adobe</a> suite, there is a pretty spiffy free online optimizer <a target="_blank" href="http://tools.dynamicdrive.com/imageoptimizer/" target="_blank">here</a>.  Enjoy, and for the love of all things holy, optimize!</p>
<p>If you want to read more on the topic: <a target="_blank" href="http://www.yourhtmlsource.com/optimisation/imageoptimisation.html" target="_blank">HTMLSource</a>.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://blogs.adobe.com/jnack/2009/02/gridmaker_panel.html">GridMaker panel released for Photoshop CS4</a> (blogs.adobe.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://chris.pirillo.com/2008/12/05/how-to-make-money-with-web-design/">How to Make Money With Web Design</a> (chris.pirillo.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.noupe.com/best-of/2008-most-popular-design-posts-tutorials-and-resources.html">2008 Most Popular Design posts, Tutorials and Resources</a> (noupe.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.code4dotnet.com/?p=1994">Photoshop.com: Store &amp; Share Your Pics Online</a> (code4dotnet.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://blogs.adobe.com/sarthaksinghal/2008/12/adobe_launches_community_help_1.html">Get to know the all new Adobe CS4 Help</a> (blogs.adobe.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://blogs.adobe.com/jnack/2009/02/julieanne_blogs.html">Julieanne blogs, right inside Photoshop</a> (blogs.adobe.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.masternewmedia.org/free-picture-editing-software-best-downloadable-image-editors-mini-guide/">Free Picture Editing Software: Best Downloadable Image Editors &#8211; Mini-Guide</a> (masternewmedia.org)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.noupe.com/photoshop/60-most-wanted-photoshop-tutorials-brushes-psds-and-resources.html">60 Most Wanted Photoshop Tutorials, Brushes, .PSDs and Resources</a> (noupe.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=2036d642-2b4d-438a-a0c4-bd3d42cefa6f" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2010%2F10%2Ffor-the-love-of-god-optimize-those-images&amp;title=For%20the%20Love%20of%20God%2C%20Optimize%20those%20Images%21" id="wpa2a_10"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/10/for-the-love-of-god-optimize-those-images/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>SEO…It really isn&#039;t hard</title>
		<link>http://www.thisrand.com/2010/10/seoit-really-isnt-hard</link>
		<comments>http://www.thisrand.com/2010/10/seoit-really-isnt-hard#comments</comments>
		<pubDate>Mon, 04 Oct 2010 14:13:28 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[website]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=519</guid>
		<description><![CDATA[Search Engine Optimization (SEO) really isnt a new concept although the buzzword is fairly new.  It is basically the process of ensuring your site has on it that which search...]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://en.wikipedia.org/wiki/Search_engine_optimization" target="_blank">Search Engine Optimization</a> (SEO) really isnt a new concept although the buzzword is fairly new.  It is basically the process of ensuring your site has on it that which <a target="_blank" class="zem_slink" title="Web search engine" rel="wikipedia" href="http://en.wikipedia.org/wiki/Web_search_engine">search engines</a> (e.g. <a target="_blank" href="http://www.google.com" target="_blank">Google</a>) index, hence making your search engine rankings higher and presumably driving more traffic to your website.  I still remember doing this in the mid-90&#8242;s when we had a huge number of search engines ranging from <a target="_blank" href="http://www.hotbot.com" target="_blank">Hotbot</a> to <a target="_blank" href="http://www.altavista.com" target="_blank">Alta Vista</a> to <a target="_blank" href="http://www.aol.com" target="_blank">AOL</a> that mattered and each one needed to be submitted to and then your site massaged in order to get anything resembling a decent ranking.</p>
<p>Times have changed, the index bots are much more sophisticated than 10+ years ago, and are far less likely to be fooled by the tricks (like using keywords hidden in your background by using the same color for both).</p>
<p>I often get asked, &#8220;How can I improve my search results?&#8221;.  I usually try to resist rolling my eyes for two reasons: 1) the sheer amount of resources out there covering this topic are just overwhelming and 2) it isnt that hard!  So, to those hosting with me and everyone else reading this, here are a few short tips on how to get your site SEOized!</p>
<p><strong>Content, Content, Content</strong><br />
The more content you have, and I dont mean junk, I mean actual meaningful content, the higher your rank.  So sharpen your pencils and start writing.</p>
<p><strong>New Content, New Images, </strong><strong>New Stuff</strong><br />
Daily blog posts or news releases will really help you get noticed by the bots.  But again, dont post junk, otherwise your ranking will drop due to noone visiting.</p>
<p><strong>Network</strong><br />
You must network your site.  Join a few groups, post on them, use <a target="_blank" href="http://www.wordpress.org" target="_blank">WordPress</a> or <a target="_blank" href="http://www.hotscripts.com/PHP/Scripts_and_Programs/Blog/index.html" target="_blank">similar software</a>, embrace <a target="_blank" href="http://www.whatisrss.com/" target="_blank">RSS</a>, use <a target="_blank" href="http://www.myspace.com" target="_blank">MySpace</a> or <a target="_blank" href="http://www.facebook.com" target="_blank">Facebook</a> and link to your site.  These will only drive traffic to your site, increase the relevancy of your keywords and get you the rankings you want.</p>
<p><strong>Use decent <a target="_blank" class="zem_slink" title="HTML" rel="wikipedia" href="http://en.wikipedia.org/wiki/HTML">HTML</a>/</strong><strong>CSS</strong><br />
I say decent, since I still think the entire validation thing is a scam (I will post more on that later).  Your page should work in all <a target="_blank" href="http://www.w3schools.com/browsers/browsers_stats.asp" target="_blank">major browsers</a>, use <em></em><em></em><em>alt</em> tags in your images, name your pages something relevant, and avoid a lot of <a target="_blank" href="http://en.wikipedia.org/wiki/Adobe_Flash" target="_blank">Flash</a> or Images (for now) since they still aren&#8217;t fully indexed.    Do not use an image for text blocks, it will not index!</p>
<p>See, not hard.  Enjoy adding quality content, dont overuse images or the other spiffy technologies (<a target="_blank" href="http://silverlight.net/" target="_blank">Silverlight</a>, Flash, etc&#8230;) and have fun watching your traffic come to you for a change.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=7086a7c7-1b0b-446d-b55f-fcf728985424" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2010%2F10%2Fseoit-really-isnt-hard&amp;title=SEO%E2%80%A6It%20really%20isn%26%23039%3Bt%20hard" id="wpa2a_12"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/10/seoit-really-isnt-hard/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Web Design at its Worst</title>
		<link>http://www.thisrand.com/2010/09/web-design-at-its-worst</link>
		<comments>http://www.thisrand.com/2010/09/web-design-at-its-worst#comments</comments>
		<pubDate>Tue, 28 Sep 2010 13:56:41 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=1018</guid>
		<description><![CDATA[I admit, I like to find gigs on Craigslist.  There are horrible things on there, and some stupid requests (&#8220;I need a PMP certified Project Manager with 12 years industry...]]></description>
			<content:encoded><![CDATA[<p>I admit, I like to find gigs on <a target="_blank" class="zem_slink" title="Craigslist" rel="homepage" href="http://www.craigslist.org/">Craigslist</a>.  There are horrible things on there, and some stupid requests (&#8220;I need a <a target="_blank" class="zem_slink" title="Project Management Professional" rel="wikipedia" href="http://en.wikipedia.org/wiki/Project_Management_Professional">PMP</a> certified <a target="_blank" class="zem_slink" title="Project manager" rel="wikipedia" href="http://en.wikipedia.org/wiki/Project_manager">Project Manager</a> with 12 years industry experience that can start today for $12/hr.&#8221;), but every now and then, something decent appears.</p>
<p>I was browsing, wondering about competition and stumbled on this website : <a target="_blank" href="http://www.leo-scorp.com/index.html" target="_blank">LeoScorp, LLC</a> .  What a bad name for a company, but when you first look at the site, you are amazed they claim to be in the website building business.  Bad use of colors, background image is distracting, and let&#8217;s face it, picking something like Astrology to base your company name/theme/logo on could actually turn people off, especially down here in the <a target="_blank" class="zem_slink" title="Bible Belt" rel="wikipedia" href="http://en.wikipedia.org/wiki/Bible_Belt">Bible Belt</a>.</p>
<p>Assuming you make it past all that, check out their <a target="_blank" href="http://www.leo-scorp.com/aboutus.html" target="_blank">About Us</a>.  Does anyone care they swam together at a public pool?  Does that make them better developers/designers?  If this was their homepage, sure knock yourself out, but on a business site, keep it professional.</p>
<p>Then go to the <a target="_blank" href="http://www.leo-scorp.com/services.html" target="_blank">Services page</a>, where they have a stupid little computer extremely slowing typing out the content.  First, it is slow, I type much faster than that and read WAY faster.  Let&#8217;s go already.  I don&#8217;t have time to sit there and be annoyed at a little graphic you thought was cute.  Furthermore, doing that stuff isn&#8217;t even close to SEO helpful, so maybe it is a good thing you are on Craigslist looking for jobs since <a target="_blank" class="zem_slink" title="Google" rel="homepage" href="http://google.com">Google</a> just isn&#8217;t working out for you.</p>
<p>But let&#8217;s face it, no matter how bad a site is, it could always be <a target="_blank" href="http://www.dokimos.org/ajff/" target="_blank">worse.</a></p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://blog.kissmetrics.com/ugly-websites/">4 &#8220;Ugly&#8221; Sites that Make Millions (and What We Can Learn from Them)</a> (kissmetrics.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://r.zemanta.com/?u=http%3A//www.telegraph.co.uk/news/worldnews/northamerica/usa/7933937/Craigslist-accused-of-being-hub-for-child-prostitution.html&amp;a=22306333&amp;rid=ea2cc45d-d7fc-4b14-8f3f-cde8fa2623ce&amp;e=17e53401da6a78b04a9de5bec02902f6">Craigslist accused of being &#8216;hub for child prostitution&#8217;</a> (telegraph.co.uk)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://ask.metafilter.com/160479/Should-I-freelance-in-smallbusinesswebsitebuilding-or-customwordpresshacking">Should I freelance in small-business-web-site-building, or custom-wordpress-hacking?</a> (ask.metafilter.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://gawker.com/5599132/how-did-the-owner-of-a-barely+legal-teen-gossip-blog-get-into-a-prestigious-law-school">How Did the Owner of a Barely-Legal Teen Gossip Blog Get Into a Prestigious Law School? [Horrible People]</a> (gawker.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=ea2cc45d-d7fc-4b14-8f3f-cde8fa2623ce" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2010%2F09%2Fweb-design-at-its-worst&amp;title=Web%20Design%20at%20its%20Worst" id="wpa2a_14"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/09/web-design-at-its-worst/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Look for this.rand()</title>
		<link>http://www.thisrand.com/2010/01/new-look-for-this-rand</link>
		<comments>http://www.thisrand.com/2010/01/new-look-for-this-rand#comments</comments>
		<pubDate>Wed, 20 Jan 2010 00:20:42 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=898</guid>
		<description><![CDATA[Well, it has been a while since I did a new look for our homepage, so here it is.  What do ya think?  This is a theme instead of the...]]></description>
			<content:encoded><![CDATA[<p>Well, it has been a while since I did a new look for our homepage, so here it is.  What do ya think?  This is a theme instead of the usual totally custom method I do, but I like it.  It is a very magazine type of look, but it gets a lot more content on the front page, and uses the sidebars better.  So it should drive a little more traffic, and be easier to use for those that do show up.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2010%2F01%2Fnew-look-for-this-rand&amp;title=New%20Look%20for%20this.rand%28%29" id="wpa2a_16"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/01/new-look-for-this-rand/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Self Symmetry</title>
		<link>http://www.thisrand.com/2009/04/self-symmetry</link>
		<comments>http://www.thisrand.com/2009/04/self-symmetry#comments</comments>
		<pubDate>Mon, 27 Apr 2009 20:28:30 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[links]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Dallas]]></category>
		<category><![CDATA[health food]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=832</guid>
		<description><![CDATA[My good friend Kat over at Self Symmetry recently posted a really nice blog entry thanking me for some work I did for her on that website.  So here is...]]></description>
			<content:encoded><![CDATA[<p><em>My good friend Kat over at <a target="_blank" href="http://www.selfsymmetry.com" target="_blank">Self Symmetry</a> recently posted a really nice blog entry thanking me for some work I did for her on that website.  So here is the post, not to toot my own horn, but hopefully get some of our friends more interested in a great <a target="_blank" class="zem_slink" title="Yoga" rel="wikipedia" href="http://en.wikipedia.org/wiki/Yoga">yoga</a> teacher! ~ Ryan<br />
</em></p>
<p>With the help of an amazing <a target="_blank" href="http://www.thisrand.com/portfolio" target="_blank">IT guy</a>, <a href="http://www.thisrand.com/" target="_blank">Ryan Meinzer</a>, I am proud to announce the relaunch of my website.  Actually, it’s  just the shopping cart area of my site.  BUT — I do hope you’ll check it out (and Ryan…he’s fast, efficient, easy to understand (he is an<a href="http://newmindcreative.com/" target="_blank"> IT guy</a> afterall), and can totally hook you up if you need any help in this department.  And, he writes a really good <a href="http://www.thisrand.com/" target="_blank">blog</a> too!)</p>
<p>Getting back to me…haha  As you can tell by the name of my company, <a target="_blank" href="http://www.selfsymmetry.com/" target="_blank">Self Symmetry</a>, I’m all about <a target="_blank" href="http://www.selfsymmetry.com/get-balanced/" target="_blank">finding balance</a>.  I believe that when you find balance; physically, mentally, and spiritually, that you are completely and wholly healthy!  I’m also all about feeling good.   If we can get ourselves feeling good all the time, then our lives will be free flowing and easy.  (I’m not saying that we shouldn’t experience any other emotion, but just that our dominate state should be good and positive.)</p>
<p>With my strong belief in finding balance and feeling good I teach yoga, make <a target="_blank" href="http://www.selfsymmetry.com/jewelry-2/" target="_blank">jewelry</a>, and now this blog.  If you’re in <a target="_blank" class="zem_slink" title="Dallas" rel="homepage" href="http://www.dallascityhall.com">Dallas</a>/Plano, I would love to have you come take a class of mine.  See <a target="_blank" href="http://www.selfsymmetry.com/get-balanced/calendar/" target="_blank">my schedule </a>for details.  If you’re not in Dallas, then just go check out a class in your ‘hood.  It’s really amazing, transforming, and healing.</p>
<p>If you’re interested in jewelry, browse around my new shopping cart.  I hand make everything and use semi precious gemstones.  Gemstones have healing properties to them.  They are from the earth, so they hold all kinds of positive energy…making you look good and feel good!  I attach a card to each piece of jewelry describing the stones used and what they do for you energetically.  Because of this, they make awesome, thoughtful gifts (<a target="_blank" class="zem_slink" title="Mother's Day" rel="wikipedia" href="http://en.wikipedia.org/wiki/Mother%27s_Day">Mother’s Day</a> coming up…hint, hint).  However, if you don’t wear much jewelry, check out <a target="_blank" href="http://www.selfsymmetry.com/products-page/be-charmed/" target="_blank">BE Charmed</a>!  Who can’t use some extra positive energy?  Side note:  Guys…I don’t have any man jewelry on my site, but I can make you something.  I’ve made several pieces for guys so just email me and we’ll come up with something really manly!</p>
<p>If you’re reading this, then you found my blog.  Congrats!  I would say this blog is on the spiritual side.  It’s about my attempt to live life to the fullest, and all the things that I’ve learned and am still learning.</p>
<p>So there you have it…my shameless self promotion.  I hope you leave my yoga class (or any yoga class) feeling good.  I hope you feel good wearing my jewelry (I know you’ll look good!), and I hope reading my blog leaves you feeling inspired, hopeful, and optimistic!</p>
<p>And Ryan, you rock!  I can’t thank you enough!</p>
<p>Balanced and feeling good &#8211; Love, Kat</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/d307942c-75ab-4b1a-b67e-40d2ab9a9879/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=d307942c-75ab-4b1a-b67e-40d2ab9a9879" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2009%2F04%2Fself-symmetry&amp;title=Self%20Symmetry" id="wpa2a_18"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2009/04/self-symmetry/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

