<?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/"
	>

<channel>
	<title>Blue Shift</title>
	<atom:link href="http://blog.myrdo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.myrdo.com</link>
	<description>The RDO Developer's Blog</description>
	<pubDate>Mon, 22 Feb 2010 22:27:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Own Your Domain! A cautionary tale.</title>
		<link>http://blog.myrdo.com/2010/02/own-your-domain-a-cautionary-tale/</link>
		<comments>http://blog.myrdo.com/2010/02/own-your-domain-a-cautionary-tale/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 22:27:07 +0000</pubDate>
		<dc:creator>torgie</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.myrdo.com/?p=124</guid>
		<description><![CDATA[For any internet-centric business, the website&#8217;s domain name can make or break your company.  Think about it &#8212; when giving somebody your domain name (or your &#8220;URL&#8221;), they are going to immediately make judgements about it.  Before seeing a single pixel of design.  Before seeing a single word of content.
There are plenty of guides on [...]]]></description>
			<content:encoded><![CDATA[<p>For any internet-centric business, the website&#8217;s domain name can make or break your company.  Think about it &mdash; when giving somebody your domain name (or your &#8220;URL&#8221;), they are going to immediately make judgements about it.  Before seeing a single pixel of design.  Before seeing a single word of content.</p>
<p>There are plenty of guides on <a title="Registering Domain Names" href="http://realdesignonline.com/registering-domain-names.php" target="_blank">how to register a domain name</a> &mdash; they will help you avoid some common mistakes when registering your domain.  But let&#8217;s assume you <em>nailed it</em>.  You have an absolutely perfect domain for your business, and it&#8217;s been organically driving lots of good traffic to your site.  Unless you have control of your Domain Name Servers <a title="Domain Name System" href="http://en.wikipedia.org/wiki/Domain_Name_System" target="_blank">DNS</a>, you could potentially lose that domain, either by accident or by malicious activity.</p>
<p>The place where you originally purchased your domain is called the &#8220;<a title="Domain Name Registrar" href="http://en.wikipedia.org/wiki/Domain_name_registrar" target="_blank">registrar</a>&#8221; &mdash; if you are the controller of a business and don&#8217;t personally have a username/password to your registrar, you are at risk!  Either your domain might expire (on average a registration lasts 1 to 2 years), or someone might be able to log in and delete/redirect traffic from that domain.</p>
<p>I once knew a mother/son real estate team &mdash; their last names were the same so they both used the same domain name, let&#8217;s call it &#8220;smithRE.com&#8221;.  This domain saw incredible traffic due to its generic nature, but eventually the two parted ways to start their own offices.  The son actually logged into the registrar, changed all the passwords, and <em>held the domain for ransom</em> from his own mother!</p>
<p>Don&#8217;t let this happen to you!  Make sure you have all the passwords &mdash; and all the control &mdash; of your domains!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.myrdo.com/2010/02/own-your-domain-a-cautionary-tale/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Chrome bug - table cell height and rowspan</title>
		<link>http://blog.myrdo.com/2010/02/chrome-bug-table-cell-height-and-rowspan/</link>
		<comments>http://blog.myrdo.com/2010/02/chrome-bug-table-cell-height-and-rowspan/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 01:05:05 +0000</pubDate>
		<dc:creator>torgie</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.myrdo.com/?p=117</guid>
		<description><![CDATA[While working my way through some not-so-complicated tables earlier today, I ran into a Chrome bug (I believe) with table cell heights when using a rowspan.
This table will render incorrectly in Chrome:



1





2


3



The first two cells on the left will collapse to be as small as they can - just large enough for the text they [...]]]></description>
			<content:encoded><![CDATA[<p>While working my way through some not-so-complicated tables earlier today, I ran into a Chrome bug (I believe) with table cell heights when using a rowspan.</p>
<p>This table will render incorrectly in Chrome:</p>
<table style="margin-left: 30px;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="border: 1px #F00 solid;">1</td>
<td rowspan="3">
<div style="background: #aaeeee none repeat scroll 0% 0%; width: 20px; height: 200px; margin-left: 20px;"></div>
</td>
</tr>
<tr>
<td style="border: 1px #0F0 solid;">2</td>
</tr>
<tr>
<td style="border: 1px #00F solid;">3</td>
</tr>
</tbody>
</table>
<p>The first two cells on the left will collapse to be as small as they can - just large enough for the text they contain.  The third cell will then become very tall to cover the remaining space.  In Firefox and Internet Explorer, all cells are equally spaces, as is the expected outcome.  I&#8217;ve written up a more <a title="Chrome bug report" href="http://3-1design.com/bug-report.php" target="_blank">detailed bug report</a> on the 3-1 Design site.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.myrdo.com/2010/02/chrome-bug-table-cell-height-and-rowspan/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How does return i++ work?</title>
		<link>http://blog.myrdo.com/2009/12/how-does-return-i-plus-plus-work/</link>
		<comments>http://blog.myrdo.com/2009/12/how-does-return-i-plus-plus-work/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 05:23:05 +0000</pubDate>
		<dc:creator>aaronpk</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.myrdo.com/?p=101</guid>
		<description><![CDATA[This came up while working on some code. I want to keep an internal counter within a function, and every time the function is called, return the incremented result. The function ended with return $i++; which, after I typed it, realized may not work as expected.
I wrote this quick test code to figure out what [...]]]></description>
			<content:encoded><![CDATA[<p>This came up while working on some code. I want to keep an internal counter within a function, and every time the function is called, return the incremented result. The function ended with <code>return $i++;</code> which, after I typed it, realized may not work as expected.</p>
<p>I wrote this quick test code to figure out what might happen.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">function</span> increment<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	static <span style="color: #000088;">$count</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// do stuff</span>
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$count</span><span style="color: #339933;">++;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">&lt;</span><span style="color: #cc66cc;">4</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'i='</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$i</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' return='</span> <span style="color: #339933;">.</span> increment<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;n&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>I figured one of three things might happen:</p>
<p><strong>Option 1:</strong> <code>$count</code> is never incremented because <code>return</code> returns the pre-incremented value and prevents it from incrementing.</p>
<pre>
   i=0 return=0
   i=1 return=0
   i=2 return=0
   i=3 return=0
</pre>
<p><strong>Option 2:</strong> <code>$count</code> is incremented and the incremented value is passed to <code>return</code>.</p>
<pre>
   i=0 return=1
   i=1 return=2
   i=2 return=3
   i=3 return=4
</pre>
<p><strong>Option 3:</strong> The current value of <code>$count</code> is evaluated and passed to the <code>return</code>, <code>$count</code> is incremented, then the function returns. </p>
<pre>
   i=0 return=0
   i=1 return=1
   i=2 return=2
   i=3 return=3
</pre>
<p>Well it turns out that the function does what I wanted it to do, option 3. Can you explain why the value of <code>$count</code> can be incremented after the function returns?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.myrdo.com/2009/12/how-does-return-i-plus-plus-work/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Analytics leaks source code?</title>
		<link>http://blog.myrdo.com/2009/11/google-analytics-leaks-source-code/</link>
		<comments>http://blog.myrdo.com/2009/11/google-analytics-leaks-source-code/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 06:26:32 +0000</pubDate>
		<dc:creator>aaronpk</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://blog.myrdo.com/?p=89</guid>
		<description><![CDATA[While signing up for a new Google Analytics profile, we noticed a change in their new platform. The confirmation screen that gives you the tracking code is now drawn in via AJAX. Being the curious types that we are, we opened up Firebug to take a look at why this might be happening.
The first thing [...]]]></description>
			<content:encoded><![CDATA[<p>While signing up for a new <a href="http://analytics.google.com">Google Analytics</a> profile, we noticed a change in their new platform. The confirmation screen that gives you the tracking code is now drawn in via AJAX. Being the curious types that we are, we opened up <a href="http://getfirebug.com/">Firebug</a> to take a look at why this might be happening.</p>
<p>The first thing we noticed was that the response from Google looks like a block of PHP code wrapped in what appears to be a Java serialized string.</p>
<p><img src="http://blog.myrdo.com/wp-content/uploads/2009/11/google-analytics-php.jpg" alt="Google Analytics signup response" title="Google Analytics signup response" width="500" height="113" class="aligncenter size-full wp-image-93" /></p>
<p>Cleaning up the response, it looks like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
  <span style="color: #666666; font-style: italic;">// Copyright 2009 Google Inc. All Rights Reserved.</span>
  <span style="color: #000088;">$GA_ACCOUNT</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;MO-11576892-1&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$GA_PIXEL</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;ga.php&quot;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #000000; font-weight: bold;">function</span> googleAnalyticsGetImageUrl<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$GA_ACCOUNT</span><span style="color: #339933;">,</span> <span style="color: #000088;">$GA_PIXEL</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$url</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$GA_PIXEL</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;?&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$url</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;utmac=&quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$GA_ACCOUNT</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$url</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&amp;utmn=&quot;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">rand</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #208080;">0x7fffffff</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$referer</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;HTTP_REFERER&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$query</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;QUERY_STRING&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$path</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;REQUEST_URI&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$referer</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000088;">$referer</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000088;">$url</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&amp;utmr=&quot;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$referer</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$path</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000088;">$url</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&amp;utmp=&quot;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">urlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$path</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000088;">$url</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&amp;guid=ON&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$url</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
  <span style="color: #000088;">$googleAnalyticsImageUrl</span> <span style="color: #339933;">=</span> googleAnalyticsGetImageUrl<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;img src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?=</span> <span style="color: #000088;">$googleAnalyticsImageUrl</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;</pre></td></tr></table></div>

<p>It&#8217;s definitely PHP, so why does the server return PHP code to a client-side script? It returned a function that builds up an image URL containing our account ID and some other information.</p>
<p>The <a href="http://code.google.com/apis/analytics/docs/tracking/gaTrackingTroubleshooting.html">Tracking Code Troubleshooting</a> page has documentation on what all the query string parameters mean. The image URL that is built up contains only basic information of what would otherwise look like a normal tracking code request. Only the account ID, path, referrer, and a random number are passed. There&#8217;s also guid=ON, which is not in the documentation.</p>
<p>The other strange part is that normally the account ID begins with UA-, but in this case begins with MO-. Maybe it&#8217;s some sort of initialization request?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.myrdo.com/2009/11/google-analytics-leaks-source-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Walkability Improved!</title>
		<link>http://blog.myrdo.com/2009/11/walkability-improved/</link>
		<comments>http://blog.myrdo.com/2009/11/walkability-improved/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 22:08:00 +0000</pubDate>
		<dc:creator>torgie</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.myrdo.com/?p=81</guid>
		<description><![CDATA[Our Walkscore widget just got a bit smarter!  As mentioned on the company blog, Walkscore just incorporated public transit information to their data! Because we tie in directly to their API, our widget automatically got the new feature.
All of our single property sites come with the Walkscore widget included on the Community page.  This means [...]]]></description>
			<content:encoded><![CDATA[<p>Our Walkscore widget just got a bit smarter!  As mentioned on the <a href="http://blog.walkscore.com/" target="_blank">company blog</a>, Walkscore just incorporated <a href="http://blog.walkscore.com/?p=344" target="_blank">public transit information</a> to their data! Because we tie in directly to their API, our widget automatically got the new feature.</p>
<p>All of our single property sites come with the Walkscore widget included on the Community page.  This means that you can instantly provide public transit data to your clients - with no extra work!</p>
<p>I&#8217;d say it&#8217;s the easiest upgrade we&#8217;ve ever implemented :)  Thanks, Walkscore!  We can&#8217;t wait to see what you guys come up with next!</p>
<p><img class="aligncenter size-full wp-image-84" title="Walkscore Public Transit" src="http://blog.myrdo.com/wp-content/uploads/2009/11/tile.gif" alt="Walkscore Public Transit" width="505" height="291" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.myrdo.com/2009/11/walkability-improved/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Now reporting from Portland, Oregon!</title>
		<link>http://blog.myrdo.com/2009/10/now-reporting-from-portland-oregon/</link>
		<comments>http://blog.myrdo.com/2009/10/now-reporting-from-portland-oregon/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 16:21:35 +0000</pubDate>
		<dc:creator>torgie</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.myrdo.com/?p=76</guid>
		<description><![CDATA[Well, we certainly have been busy these last few months!  Real Design Online has relocated our offices to the bright, sunny Portland, Oregon! Well, maybe it&#8217;s bright and sunny a few days of the year.
This is an exciting change of scenery for us, and our new offices are just swell!  Bringing everyone closer together means [...]]]></description>
			<content:encoded><![CDATA[<p>Well, we certainly have been busy these last few months!  Real Design Online has relocated our offices to the bright, sunny Portland, Oregon! Well, maybe it&#8217;s bright and sunny a few days of the year.</p>
<p>This is an exciting change of scenery for us, and our new offices are just swell!  Bringing everyone closer together means we can get features added faster, get shinier templates, and better support all-around.</p>
<p>If you are in the real estate business and want to grab lunch sometime, give us a ring <img src='http://blog.myrdo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img class="aligncenter size-full wp-image-78" title="portland" src="http://blog.myrdo.com/wp-content/uploads/2009/10/portland.jpg" alt="portland" width="510" height="115" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.myrdo.com/2009/10/now-reporting-from-portland-oregon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Logistix: six bold colors, one great design</title>
		<link>http://blog.myrdo.com/2009/07/logistix-six-bold-colors-one-great-design/</link>
		<comments>http://blog.myrdo.com/2009/07/logistix-six-bold-colors-one-great-design/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 18:08:44 +0000</pubDate>
		<dc:creator>aaronpk</dc:creator>
		
		<category><![CDATA[Release Notes]]></category>

		<category><![CDATA[Templates]]></category>

		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://blog.myrdo.com/?p=64</guid>
		<description><![CDATA[With six bold color themes to choose from, and the ability to upload a custom header graphic, this template is our most versatile yet!

Start with Orange, Strawberry, Lime, Forest, Blueberry or Eggplant, then customize the header with your logo or a photo of the property. With six colors to choose from, you&#8217;re sure to find [...]]]></description>
			<content:encoded><![CDATA[<p>With six bold color themes to choose from, and the ability to upload a <a href="http://blog.myrdo.com/2009/06/custom-headers-for-templates/">custom header graphic</a>, this template is our most versatile yet!</p>
<p><img class="aligncenter size-full wp-image-70" title="Logistix: six bold colors, one great design" src="http://blog.myrdo.com/wp-content/uploads/2009/07/logistix-stacked.png" alt="Logistix: six bold colors, one great design" width="500" height="570" /></p>
<p>Start with <a href="http://logistix-orange.myrdo.com">Orange</a>, <a href="http://logistix-strawberry.myrdo.com">Strawberry</a>, <a href="http://logistix-lime.myrdo.com">Lime</a>, <a href="http://logistix-forest.myrdo.com">Forest</a>, <a href="http://logistix-blueberry.myrdo.com">Blueberry</a> or <a href="http://logistix-eggplant.myrdo.com">Eggplant</a>, then customize the header with your logo or a photo of the property. With six colors to choose from, you&#8217;re sure to find one to complement your custom header.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.myrdo.com/2009/07/logistix-six-bold-colors-one-great-design/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Custom headers for templates!</title>
		<link>http://blog.myrdo.com/2009/06/custom-headers-for-templates/</link>
		<comments>http://blog.myrdo.com/2009/06/custom-headers-for-templates/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 18:24:26 +0000</pubDate>
		<dc:creator>aaronpk</dc:creator>
		
		<category><![CDATA[Release Notes]]></category>

		<guid isPermaLink="false">http://blog.myrdo.com/?p=57</guid>
		<description><![CDATA[Today we launched a new feature (requested by one of our clients) which allows you to upload custom graphics into the header of certain templates!
The &#8220;Flow&#8221; template by default looks like this:

With the custom header, the template can match the property:
The ability to upload graphics like this opens up endless possibilities for you to customize [...]]]></description>
			<content:encoded><![CDATA[<p>Today we launched a new feature (requested by one of our clients) which allows you to upload custom graphics into the header of certain templates!</p>
<p>The &#8220;Flow&#8221; template by default looks like this:</p>
<p><img class="aligncenter size-full wp-image-58" title="template-header-default" src="http://blog.myrdo.com/wp-content/uploads/2009/06/template-header-default.jpg" alt="template-header-default" width="500" height="397" /></p>
<p>With the custom header, the template can match the property:</p>
<p><img class="aligncenter size-full wp-image-59" title="template-header-custom" src="http://blog.myrdo.com/wp-content/uploads/2009/06/template-header-custom.jpg" alt="template-header-custom" width="500" height="397" />The ability to upload graphics like this opens up endless possibilities for you to customize our templates to exactly your liking.</p>
<p>We hope you enjoy this new feature, and encourage you to suggest new ideas you might have!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.myrdo.com/2009/06/custom-headers-for-templates/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Your single-property sites now include visitor statistics!</title>
		<link>http://blog.myrdo.com/2009/06/your-single-property-sites-now-include-visitor-statistics/</link>
		<comments>http://blog.myrdo.com/2009/06/your-single-property-sites-now-include-visitor-statistics/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 03:02:26 +0000</pubDate>
		<dc:creator>aaronpk</dc:creator>
		
		<category><![CDATA[Release Notes]]></category>

		<guid isPermaLink="false">http://blog.myrdo.com/?p=48</guid>
		<description><![CDATA[We are proud to announce a new feature - visitor statistics for your property sites! This page provides, at a quick glance, lots of useful information about how many times your sites are being viewed. If you really want to impress your seller, print this page and show them just how much exposure their property [...]]]></description>
			<content:encoded><![CDATA[<p>We are proud to announce a new feature - visitor statistics for your property sites! This page provides, at a quick glance, lots of useful information about how many times your sites are being viewed. If you really want to impress your seller, print this page and show them just how much exposure their property is getting!</p>
<p>The top of the page has an overall traffic graph showing number of page views per day, overlayed with number of craigslist views. You can also see a breakdown of the most popular days of the week and hours of the day.</p>
<p><img class="aligncenter size-full wp-image-49" title="Visitor Statistics" src="http://blog.myrdo.com/wp-content/uploads/2009/06/stats-page.jpg" alt="Visitor Statistics" width="500" height="493" /></p>
<p>At the bottom is a list of referring websites people were on when they clicked a link to your site, and shows you which ones are bringing in the most hits. Your craigslist postings will appear here, as well as any other websites that link to your posting. Additionally, search terms people enter into search engines will be highlighted in bold so you can see what key words people are using to find your site.</p>
<p>We hope you enjoy this new feature as much as we enjoyed creating it!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.myrdo.com/2009/06/your-single-property-sites-now-include-visitor-statistics/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Problem with Pricing</title>
		<link>http://blog.myrdo.com/2009/06/the-problem-with-pricing/</link>
		<comments>http://blog.myrdo.com/2009/06/the-problem-with-pricing/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 19:29:41 +0000</pubDate>
		<dc:creator>torgie</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://blog.myrdo.com/?p=39</guid>
		<description><![CDATA[That pricing page&#8230; I don&#8217;t think any other page in our application, front-end or back-end, has received the same level of attention.  It&#8217;s extremely important that we communicate our pricing perfectly to our potential (and existing!) customers.
Previously, we charged a tiny fee up-front for publishing sites, and then on top of it a monthly fee [...]]]></description>
			<content:encoded><![CDATA[<p>That pricing page&#8230; I don&#8217;t think any other page in our application, front-end or back-end, has received the same level of attention.  It&#8217;s extremely important that we communicate our pricing <em>perfectly</em> to our potential (and existing!) customers.</p>
<p>Previously, we charged a tiny fee up-front for publishing sites, and then on top of it a monthly fee which represented our hosting, and other bundled services.</p>
<p>Now, we&#8217;ve done away with this multi-level billing system, and simply combined both of those charges into a single (and slightly cheaper!) monthly payment.  <a title="Pricing Page" href="http://realdesignonline.com/pricing.php" target="_blank">The new pricing</a> page should explain how everything works&#8230; and there&#8217;s even a built-in freebie site now!</p>
<p><a href="http://noteworthy-parchment.myrdo.com/"><img class="alignright size-full wp-image-45" title="noteworthy-parchment-black" src="http://blog.myrdo.com/wp-content/uploads/2009/06/noteworthy-parchment-black.jpg" alt="noteworthy-parchment-black" width="160" height="260" /></a>We also have a lovely new template making an appearance in <a title="Gallery Page" href="http://realdesignonline.com/gallery.php" target="_blank">the gallery page</a> - everyone say hello to Noteworthy, please!</p>
<p>Noteworthy only has one variant right now, called &#8220;parchment&#8221;&#8230; but this is a calm, classic template for anybody selling a home with a musical history.  More variants are in the works.</p>
<p>Oh, and speaking of things which are in the works, we&#8217;ll have a <strong>huge</strong> new feature coming through concerning templates - It was recommended to us by a client of ours, and we listened!  You can get the full details here soon when the patch is made.</p>
<p>That about wraps it up for this Friday.  If you have any comments or questions about the new pricing, just leave a note here and we&#8217;ll make sure to help you out as best we can!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.myrdo.com/2009/06/the-problem-with-pricing/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
