<?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>visiblecompany.com</title>
	<atom:link href="http://www.visiblecompany.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.visiblecompany.com</link>
	<description></description>
	<lastBuildDate>Fri, 18 May 2012 03:51:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Pull PR(PageRank) data into Google Docs</title>
		<link>http://www.visiblecompany.com/2012/04/pull-pagerank-data-into-google-docs/</link>
		<comments>http://www.visiblecompany.com/2012/04/pull-pagerank-data-into-google-docs/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 12:01:07 +0000</pubDate>
		<dc:creator>JR Oakes</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Search]]></category>

		<guid isPermaLink="false">http://www.visiblecompany.com/?p=128</guid>
		<description><![CDATA[<p>If you have a simple listing of urls that you want to compare pagerank for this is a great little script for Google Docs. Here is an example: First you want to import your spreadsheet into Google Docs. Next,  head &#8230; <a href="http://www.visiblecompany.com/2012/04/pull-pagerank-data-into-google-docs/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p><a href="http://www.visiblecompany.com/2012/04/pull-pagerank-data-into-google-docs/">Pull PR(PageRank) data into Google Docs</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></description>
			<content:encoded><![CDATA[<p>If you have a simple listing of urls that you want to compare pagerank for this is a great little script for Google Docs. Here is an example:<img style="padding:15px 0;" src="http://www.visiblecompany.com/wp-content/uploads/2012/04/pr-screen.png" alt="Screenshot of Google Docs" title="pr-screen" width="603" height="318" class="aligncenter size-full wp-image-137" /></p>
<p>First you want to import your spreadsheet into Google Docs.<br />
Next,  head on over to the Tools tab and click on Script Editor.</p>
<p style="text-align: left;">You can name the document and script sheet whatever you like or you can follow what I have here: <img style="padding:15px 0;" class="size-full wp-image-129 aligncenter" title="google_docs_pr" src="http://www.visiblecompany.com/wp-content/uploads/2012/04/google_docs_pr-e1333368003471.png" alt="" width="581" height="317" />Insert the code from below (or from the text file) into the editor.</p>
<p style="text-align: left;">Now save that and head on over to your spreadsheet and copy this into the cells of the column for pagerank : &#8220;=iferror(getpr(A3),&#8221;no available data&#8221;)&#8221;</p>
<p style="text-align: left;">You should be all set.</p>
<p>Here is the code</p>
<p><code><br />
/************************************************************\<br />
* Call This - I do all the work...<br />
\************************************************************/<br />
function getpr(baseurl) {</code></p>
<p>url = baseurl.replace(/\?.*$/g,&#8217;?');</p>
<p>if (!stristr(url, &#8220;http&#8221;) ){<br />
url = &#8220;http://&#8221; + url + &#8220;/&#8221;;<br />
}</p>
<p>var reqgr = &#8220;info:&#8221; + url;<br />
var reqgre = &#8220;info:&#8221; + URLencode(url);<br />
var gch = GoogleCH(strord(reqgr));<br />
var gch = &#8220;6&#8243; + GoogleNewCh(gch);</p>
<p>var query = &#8220;&#8221;;<br />
query += &#8220;http://toolbarqueries.google.com/tbr&#8221;;<br />
query += &#8220;?client=navclient-auto&#8221;;<br />
query += &#8220;&amp;hl=en&#8221;;<br />
query += &#8220;&amp;ch=&#8221; + gch ;<br />
query += &#8220;&amp;ie=UTF-8&#8243;;<br />
query += &#8220;&amp;oe=UTF-8&#8243;;<br />
query += &#8220;&amp;features=Rank&#8221;;<br />
query += &#8220;&amp;q=&#8221;+ reqgre ;</p>
<p>var str = UrlFetchApp.fetch(query);<br />
str = str.getContentText();</p>
<p>var foo = str.match(/Rank_.*?:.*?:(\d+)/i);</p>
<p>var pagerank = (foo) ? foo[1] : &#8220;No Rank&#8221;;</p>
<p>return pagerank;</p>
<p>}</p>
<p>/************************************************************\<br />
* Hex<br />
\************************************************************/<br />
function hexdec(hex_string) {<br />
hex_string = (hex_string+&#8221;).replace(/[^a-f0-9]/gi, &#8221;);<br />
return parseInt(hex_string, 16);<br />
}</p>
<p>/************************************************************\<br />
* Count<br />
\************************************************************/<br />
function Gcount( mixed_var, mode ) {<br />
var key, cnt = 0;<br />
if( mode == &#8216;COUNT_RECURSIVE&#8217; ) mode = 1;<br />
if( mode != 1 ) mode = 0;<br />
for (key in mixed_var){<br />
cnt++;<br />
if( mode==1 &amp;&amp; mixed_var[key] &amp;&amp; (mixed_var[key].constructor === Array || mixed_var[key].constructor === Object) ){<br />
cnt += count(mixed_var[key], 1);<br />
}<br />
}<br />
return cnt;<br />
}</p>
<p>/************************************************************\<br />
* Size<br />
\************************************************************/<br />
function sizeof( mixed_var, mode ) {<br />
return Gcount( mixed_var, mode );<br />
}</p>
<p>/************************************************************\<br />
* CodePoint<br />
\************************************************************/<br />
function ord(string) {<br />
return (string+&#8221;).charCodeAt(0);<br />
}</p>
<p>/************************************************************\<br />
* String Length<br />
\************************************************************/<br />
function strlen(string) {<br />
var str = string+&#8221;;<br />
var i = 0, chr = &#8221;, lgth = 0;<br />
var getWholeChar = function (str, i) {<br />
var code = str.charCodeAt(i);<br />
var next = &#8221;, prev = &#8221;;<br />
if (0xD800 if (str.length next || next &gt; 0xDFFF) {<br />
throw &#8216;High surrogate without following low surrogate&#8217;;<br />
}<br />
return str[i]+str[i+1];<br />
} else if (0xDC00 prev || prev &gt; 0xDBFF) {<br />
throw &#8216;Low surrogate without preceding high surrogate&#8217;;<br />
}<br />
return false;<br />
}<br />
return str[i];<br />
};<br />
for (i=0, lgth=0; i &lt; str.length; i++) {<br />
if ((chr = getWholeChar(str, i)) === false) {<br />
continue;<br />
}<br />
lgth++;<br />
}<br />
return lgth;<br />
}</p>
<p>/************************************************************\<br />
* Sub String<br />
\************************************************************/<br />
function substr(f_string,f_start,f_length ) {<br />
f_string += &#8221;;<br />
if(f_start &lt; 0) {<br />
f_start += f_string.length;<br />
}<br />
if(f_length == undefined) {<br />
f_length = f_string.length;<br />
} else if(f_length &lt; 0){<br />
f_length += f_string.length;<br />
} else {<br />
f_length += f_start;<br />
}<br />
if(f_length &lt; f_start) {<br />
f_length = f_start;<br />
}<br />
return f_string.substring(f_start, f_length);<br />
}</p>
<p>/************************************************************\<br />
* String in String &#8211; I &gt; 1);<br />
a &amp;= (~ z);<br />
a |= 0&#215;40000000;<br />
a = (a &gt;&gt; (b &#8211; 1));<br />
}<br />
else {<br />
a = (a &gt;&gt; b);<br />
}<br />
return a;<br />
}</p>
<p>/************************************************************\<br />
* Mix<br />
\************************************************************/<br />
function mix(a, b, c){<br />
a -= b; a -= c; a ^= (zeroFill(c, 13));<br />
b -= c; b -= a; b ^= (a &lt;&lt; 8);<br />
c -= a; c -= b; c ^= (zeroFill(b, 13));<br />
a -= b; a -= c; a ^= (zeroFill(c, 12));<br />
b -= c; b -= a; b ^= (a &lt;&lt; 16);<br />
c -= a; c -= b; c ^= (zeroFill(b, 5));<br />
a -= b; a -= c; a ^= (zeroFill(c, 3));<br />
b -= c; b -= a; b ^= (a &lt;&lt; 10); c -= a; c -= b; c ^= (zeroFill(b, 15)); return new Array(a, b, c); } /************************************************************\ * Old G Hash \************************************************************/ function GoogleCH(url,length) { var init = 0xE6359A60; if (arguments.length == 1) length = url.length; var a = 0x9E3779B9; var b = 0x9E3779B9; var c = 0xE6359A60; var k = 0; var len = length; var mixo = new Array(); while(len &gt;= 12)<br />
{<br />
a += (url[k+0] +(url[k+1]&lt; b += (url[k+4] +(url[k+5]&lt; c += (url[k+8] +(url[k+9]&lt; mixo = mix(a,b,c);<br />
a = mixo[0]; b = mixo[1]; c = mixo[2];<br />
k += 12;<br />
len -= 12;<br />
}<br />
c += length;<br />
switch(len)<br />
{<br />
case 11:<br />
c += url[k+10]&lt; case 10:<br />
c+=url[k+9]&lt; case 9 :<br />
c+=url[k+8]&lt; case 8 :<br />
b+=(url[k+7]&lt; case 7 :<br />
b+=(url[k+6]&lt; case 6 :<br />
b+=(url[k+5]&lt; case 5 :<br />
b+=(url[k+4]);<br />
case 4 :<br />
a+=(url[k+3]&lt; case 3 :<br />
a+=(url[k+2]&lt; case 2 :<br />
a+=(url[k+1]&lt; case 1 :<br />
a+=(url[k+0]);<br />
}<br />
mixo = mix(a,b,c);<br />
if (mixo[2] &lt; 0)<br />
return (0&#215;100000000 + mixo[2]);<br />
else<br />
return mixo[2];<br />
}</p>
<p>/************************************************************\<br />
* C32 to 8 Bit<br />
\************************************************************/<br />
function c32to8bit(arr32)<br />
{<br />
var arr8 = new Array();<br />
for(i=0;i {<br />
for (bitOrder=i*4;bitOrder {<br />
arr8[bitOrder]=arr32[i]&amp;255;<br />
arr32[i]=zeroFill(arr32[i], 8);<br />
}<br />
}<br />
return arr8;<br />
}</p>
<p>/************************************************************\<br />
* Mod<br />
\************************************************************/<br />
function myfmod(x,y)<br />
{<br />
var i = Math.floor(x/y);<br />
return (x &#8211; i*y);<br />
}</p>
<p>/************************************************************\<br />
* New G Hash<br />
\************************************************************/<br />
function GoogleNewCh(ch)<br />
{<br />
ch = (((ch/7) &lt;&lt; 2) | ((myfmod(ch,13))&amp;7));</p>
<p>prbuf = new Array();<br />
prbuf[0] = ch;<br />
for(i = 1; i &lt; 20; i++) {<br />
prbuf[i] = prbuf[i-1]-9;<br />
}<br />
ch = GoogleCH(c32to8bit(prbuf), 80);<br />
return ch;</p>
<p>}</p>
<p>/************************************************************\<br />
* String CodePoint<br />
\************************************************************/<br />
function strord(string){<br />
var result = new Array();<br />
for (i = 0; i &lt; strlen(string); i++) {<br />
result[i] = ord(string[i]);<br />
}<br />
return result;<br />
}</p>
<p>/************************************************************\<br />
* Get G Hash<br />
\************************************************************/<br />
function gethash(url) {<br />
return GoogleCH(strord(url));<br />
}</p>
<p>/************************************************************\<br />
* URL Encode<br />
\************************************************************/<br />
function URLencode(sStr)<br />
{<br />
return encodeURIComponent(sStr).replace(/\+/g,&#8221;%2B&#8221;).replace(/\//g,&#8221;%2F&#8221;);<br />
}</p>
<p>&nbsp;</p>
<p>or you can download a text file here: <a href="http://www.visiblecompany.com/wp-content/uploads/2012/04/prscript.txt">prscript</a></p>
<p>&nbsp;</p>
<p>Have fun!!!</p>
<p><a href="http://www.visiblecompany.com/2012/04/pull-pagerank-data-into-google-docs/">Pull PR(PageRank) data into Google Docs</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.visiblecompany.com/2012/04/pull-pagerank-data-into-google-docs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress › Support » Retrieving featured image URL</title>
		<link>http://www.visiblecompany.com/2012/01/wordpress-support-retrieving-featured-image-url/</link>
		<comments>http://www.visiblecompany.com/2012/01/wordpress-support-retrieving-featured-image-url/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 15:36:15 +0000</pubDate>
		<dc:creator>JR Oakes</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://visiblecompany.com/?p=110</guid>
		<description><![CDATA[<p>Link Filed under: wordpress, snippets, featured, image</p><p><a href="http://www.visiblecompany.com/2012/01/wordpress-support-retrieving-featured-image-url/">WordPress › Support » Retrieving featured image URL</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/support/topic/retrieveing-featured-image-url">Link</a></p>
<p>Filed under: wordpress, snippets, featured, image</p>
<p><a href="http://www.visiblecompany.com/2012/01/wordpress-support-retrieving-featured-image-url/">WordPress › Support » Retrieving featured image URL</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.visiblecompany.com/2012/01/wordpress-support-retrieving-featured-image-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Super useful WordPress hacks and snippets &#124; CatsWhoCode.com</title>
		<link>http://www.visiblecompany.com/2011/12/super-useful-wordpress-hacks-and-snippets-catswhocode-com/</link>
		<comments>http://www.visiblecompany.com/2011/12/super-useful-wordpress-hacks-and-snippets-catswhocode-com/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 04:35:58 +0000</pubDate>
		<dc:creator>JR Oakes</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://visiblecompany.com/?p=108</guid>
		<description><![CDATA[<p>Link Filed under: wordpress, snippets</p><p><a href="http://www.visiblecompany.com/2011/12/super-useful-wordpress-hacks-and-snippets-catswhocode-com/">Super useful WordPress hacks and snippets | CatsWhoCode.com</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.catswhocode.com/blog/super-useful-wordpress-hacks-and-snippets">Link</a></p>
<p>Filed under: wordpress, snippets</p>
<p><a href="http://www.visiblecompany.com/2011/12/super-useful-wordpress-hacks-and-snippets-catswhocode-com/">Super useful WordPress hacks and snippets | CatsWhoCode.com</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.visiblecompany.com/2011/12/super-useful-wordpress-hacks-and-snippets-catswhocode-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 awesome jQuery snippets &#124; CatsWhoCode.com</title>
		<link>http://www.visiblecompany.com/2011/12/10-awesome-jquery-snippets-catswhocode-com/</link>
		<comments>http://www.visiblecompany.com/2011/12/10-awesome-jquery-snippets-catswhocode-com/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 23:36:09 +0000</pubDate>
		<dc:creator>JR Oakes</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://visiblecompany.com/?p=106</guid>
		<description><![CDATA[<p>Link Filed under: jquery, javascript</p><p><a href="http://www.visiblecompany.com/2011/12/10-awesome-jquery-snippets-catswhocode-com/">10 awesome jQuery snippets | CatsWhoCode.com</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.catswhocode.com/blog/10-awesome-jquery-snippets">Link</a></p>
<p>Filed under: jquery, javascript</p>
<p><a href="http://www.visiblecompany.com/2011/12/10-awesome-jquery-snippets-catswhocode-com/">10 awesome jQuery snippets | CatsWhoCode.com</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.visiblecompany.com/2011/12/10-awesome-jquery-snippets-catswhocode-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10+ .htaccess snippets to optimize your website &#124; CatsWhoCode.com</title>
		<link>http://www.visiblecompany.com/2011/12/10-htaccess-snippets-to-optimize-your-website-catswhocode-com/</link>
		<comments>http://www.visiblecompany.com/2011/12/10-htaccess-snippets-to-optimize-your-website-catswhocode-com/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 23:36:08 +0000</pubDate>
		<dc:creator>JR Oakes</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://visiblecompany.com/?p=104</guid>
		<description><![CDATA[<p>Link I am always on the lookout for posts that make website coding easier.  Here is a great post with a great list of scripts to add to your htaccess file to ensure your blog is runing smoothly Filed under: &#8230; <a href="http://www.visiblecompany.com/2011/12/10-htaccess-snippets-to-optimize-your-website-catswhocode-com/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p><a href="http://www.visiblecompany.com/2011/12/10-htaccess-snippets-to-optimize-your-website-catswhocode-com/">10+ .htaccess snippets to optimize your website | CatsWhoCode.com</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.catswhocode.com/blog/10-htaccess-snippets-to-optimize-your-website">Link</a></p>
<p>I am always on the lookout for posts that make website coding easier.  Here is a great post with a great list of scripts to add to your htaccess file to ensure your blog is runing smoothly</p>
<p>Filed under: design, snippets, .htaccess, optimization</p>
<p><a href="http://www.visiblecompany.com/2011/12/10-htaccess-snippets-to-optimize-your-website-catswhocode-com/">10+ .htaccess snippets to optimize your website | CatsWhoCode.com</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.visiblecompany.com/2011/12/10-htaccess-snippets-to-optimize-your-website-catswhocode-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop talking about “social” » THINK OUTSIDE IN</title>
		<link>http://www.visiblecompany.com/2011/12/stop-talking-about-social-think-outside-in/</link>
		<comments>http://www.visiblecompany.com/2011/12/stop-talking-about-social-think-outside-in/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 16:36:01 +0000</pubDate>
		<dc:creator>JR Oakes</dc:creator>
				<category><![CDATA[Search]]></category>

		<guid isPermaLink="false">http://visiblecompany.com/?p=102</guid>
		<description><![CDATA[<p>Link Filed under: communication, social</p><p><a href="http://www.visiblecompany.com/2011/12/stop-talking-about-social-think-outside-in/">Stop talking about “social” » THINK OUTSIDE IN</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.thinkoutsidein.com/blog/2011/12/stop-talking-about-social">Link</a></p>
<p>Filed under: communication, social</p>
<p><a href="http://www.visiblecompany.com/2011/12/stop-talking-about-social-think-outside-in/">Stop talking about “social” » THINK OUTSIDE IN</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.visiblecompany.com/2011/12/stop-talking-about-social-think-outside-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design Trends in 2012 &#124; Tips</title>
		<link>http://www.visiblecompany.com/2011/12/web-design-trends-in-2012-tips/</link>
		<comments>http://www.visiblecompany.com/2011/12/web-design-trends-in-2012-tips/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 20:40:47 +0000</pubDate>
		<dc:creator>JR Oakes</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://visiblecompany.com/?p=100</guid>
		<description><![CDATA[<p>Link Good list of web design trends for 2012 Filed under: Design</p><p><a href="http://www.visiblecompany.com/2011/12/web-design-trends-in-2012-tips/">Web Design Trends in 2012 | Tips</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://webdesignledger.com/tips/web-design-trends-in-2012">Link</a></p>
<p>Good list of web design trends for 2012</p>
<p>Filed under: Design</p>
<p><a href="http://www.visiblecompany.com/2011/12/web-design-trends-in-2012-tips/">Web Design Trends in 2012 | Tips</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.visiblecompany.com/2011/12/web-design-trends-in-2012-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google advisor</title>
		<link>http://www.visiblecompany.com/2011/12/google-advisor/</link>
		<comments>http://www.visiblecompany.com/2011/12/google-advisor/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 20:28:20 +0000</pubDate>
		<dc:creator>JR Oakes</dc:creator>
				<category><![CDATA[Search]]></category>

		<guid isPermaLink="false">http://visiblecompany.com/?p=98</guid>
		<description><![CDATA[<p>Link Google gets into the financial game.  Wow,  what are they NOT into Filed under: financial</p><p><a href="http://www.visiblecompany.com/2011/12/google-advisor/">Google advisor</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.google.com/advisor/home">Link</a></p>
<p>Google gets into the financial game.  Wow,  what are they NOT into</p>
<p>Filed under: financial</p>
<p><a href="http://www.visiblecompany.com/2011/12/google-advisor/">Google advisor</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.visiblecompany.com/2011/12/google-advisor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tour &#124; Quote Roller &#8211; An awesome way to create and send proposal.</title>
		<link>http://www.visiblecompany.com/2011/12/tour-quote-roller-an-awesome-way-to-create-and-send-proposal/</link>
		<comments>http://www.visiblecompany.com/2011/12/tour-quote-roller-an-awesome-way-to-create-and-send-proposal/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 19:36:37 +0000</pubDate>
		<dc:creator>JR Oakes</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://visiblecompany.com/?p=91</guid>
		<description><![CDATA[<p>Link Quoteroller is a really nice proposal / quoting app.  It allow you to create multi-page templates for all of your services and use text, images, pricing tables, to turn your proposals around quickly.  Best of all, it is a &#8230; <a href="http://www.visiblecompany.com/2011/12/tour-quote-roller-an-awesome-way-to-create-and-send-proposal/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p><a href="http://www.visiblecompany.com/2011/12/tour-quote-roller-an-awesome-way-to-create-and-send-proposal/">Tour | Quote Roller &#8211; An awesome way to create and send proposal.</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quoteroller.com/tour">Link</a></p>
<p>Quoteroller is a really nice proposal / quoting app.  It allow you to create multi-page templates for all of your services and use text, images, pricing tables, to turn your proposals around quickly.  Best of all, it is a really clean and beautiful interface to actually make this part of the job enjoyable.</p>
<p>Filed under: financial</p>
<p><a href="http://www.visiblecompany.com/2011/12/tour-quote-roller-an-awesome-way-to-create-and-send-proposal/">Tour | Quote Roller &#8211; An awesome way to create and send proposal.</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.visiblecompany.com/2011/12/tour-quote-roller-an-awesome-way-to-create-and-send-proposal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ifttt / Put the internet to work for you.</title>
		<link>http://www.visiblecompany.com/2011/12/ifttt-put-the-internet-to-work-for-you/</link>
		<comments>http://www.visiblecompany.com/2011/12/ifttt-put-the-internet-to-work-for-you/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 18:38:07 +0000</pubDate>
		<dc:creator>JR Oakes</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://visiblecompany.com/?p=89</guid>
		<description><![CDATA[<p>Link This is a very powerful web app to connect all of you accounts and get important information when and how you want.  Give it a try, it is easy! Filed under: automation, tools</p><p><a href="http://www.visiblecompany.com/2011/12/ifttt-put-the-internet-to-work-for-you/">ifttt / Put the internet to work for you.</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://ifttt.com">Link</a></p>
<p>This is a very powerful web app to connect all of you accounts and get important information when and how you want.  Give it a try, it is easy!</p>
<p>Filed under: automation, tools</p>
<p><a href="http://www.visiblecompany.com/2011/12/ifttt-put-the-internet-to-work-for-you/">ifttt / Put the internet to work for you.</a> | <a href="http://www.visiblecompany.com">visiblecompany.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.visiblecompany.com/2011/12/ifttt-put-the-internet-to-work-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

