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

<channel>
	<title>Jupiter Labs Blog - Everything Web 2.0</title>
	<atom:link href="http://www.jupiter-labs.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jupiter-labs.com/blog</link>
	<description>Web Design and Online Marketing</description>
	<pubDate>Sat, 15 Mar 2008 08:19:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5-RC1.1</generator>
	<language>en</language>
			<item>
		<title>The classic shape example, adapted for Haskell</title>
		<link>http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell</link>
		<comments>http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell#comments</comments>
		<pubDate>Sat, 15 Mar 2008 08:19:26 +0000</pubDate>
		<dc:creator>Matthew Elder</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

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

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

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

		<category><![CDATA[hello world]]></category>

		<guid isPermaLink="false">http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell</guid>
		<description><![CDATA[Hello, here is a reproduction of the classic Shape example adapted for haskell (The equivalent of &#8220;hello world&#8221; in the OOP world).
With haskell classes and three  different data types (think Java interfaces)

-- define the shape data types
data Triangle = Triangle
data Square = Square
data Octagon = Octagon

class Shape s where
  sides :: s -&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Hello, here is a reproduction of the classic Shape example adapted for haskell (The equivalent of &#8220;hello world&#8221; in the OOP world).</p>
<h2>With haskell classes and three  different data types (think Java interfaces)</h2>
<pre><code>
-- define the shape data types
data Triangle = Triangle
data Square = Square
data Octagon = Octagon

class Shape s where
  sides :: s -&gt; Integer

instance Shape Triangle where
  sides _ = 3

instance Shape Square where
  sides _ = 4

instance Shape Octagon where
  sides _ = 8
</code></pre>
<p><strong>GHCi output</strong></p>
<pre><code>
*Main&gt; sides Triangle
3
*Main&gt; sides Square
4
*Main&gt; sides Octagon
8
</code></pre>
<h2>With one haskell datatype and runtime pattern matching (think erlang or &#8220;parametric polymorphism&#8221;)</h2>
<pre><code>
-- define the instances of shape
data Shape =
  Triangle |
  Square |
  Octagon

sides Triangle = 3
sides Square = 4
sides Octagon = 8
</code></pre>
<p><strong>GHCi output</strong></p>
<pre><code>
*Main&gt; sides Triangle
3
*Main&gt; sides Square
4
*Main&gt; sides Octagon
8</code></pre>
<pre></pre>
<pre><em>Which do you like better?</em></pre>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>bookmark</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell&amp;title=The+classic+shape+example%2C+adapted+for+Haskell" title="submit 'The classic shape example, adapted for Haskell' to Del.icio.us"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="submit 'The classic shape example, adapted for Haskell' to Del.icio.us" alt="submit 'The classic shape example, adapted for Haskell' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell&amp;title=The+classic+shape+example%2C+adapted+for+Haskell" title="submit 'The classic shape example, adapted for Haskell' to digg"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="submit 'The classic shape example, adapted for Haskell' to digg" alt="submit 'The classic shape example, adapted for Haskell' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell&amp;title=The+classic+shape+example%2C+adapted+for+Haskell" title="submit 'The classic shape example, adapted for Haskell' to reddit"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="submit 'The classic shape example, adapted for Haskell' to reddit" alt="submit 'The classic shape example, adapted for Haskell' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell" title="submit 'The classic shape example, adapted for Haskell' to Technorati"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="submit 'The classic shape example, adapted for Haskell' to Technorati" alt="submit 'The classic shape example, adapted for Haskell' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell&amp;t=The+classic+shape+example%2C+adapted+for+Haskell" title="submit 'The classic shape example, adapted for Haskell' to Yahoo My Web"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="submit 'The classic shape example, adapted for Haskell' to Yahoo My Web" alt="submit 'The classic shape example, adapted for Haskell' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell&amp;title=The+classic+shape+example%2C+adapted+for+Haskell" title="submit 'The classic shape example, adapted for Haskell' to Stumble Upon"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="submit 'The classic shape example, adapted for Haskell' to Stumble Upon" alt="submit 'The classic shape example, adapted for Haskell' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell&amp;title=The+classic+shape+example%2C+adapted+for+Haskell" title="submit 'The classic shape example, adapted for Haskell' to Google Bookmarks"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/google.png" title="submit 'The classic shape example, adapted for Haskell' to Google Bookmarks" alt="submit 'The classic shape example, adapted for Haskell' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell" title="submit 'The classic shape example, adapted for Haskell' to Bloglines"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="submit 'The classic shape example, adapted for Haskell' to Bloglines" alt="submit 'The classic shape example, adapted for Haskell' to Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell&amp;T=The+classic+shape+example%2C+adapted+for+Haskell" title="submit 'The classic shape example, adapted for Haskell' to Netscape"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="submit 'The classic shape example, adapted for Haskell' to Netscape" alt="submit 'The classic shape example, adapted for Haskell' to Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=The+classic+shape+example%2C+adapted+for+Haskell&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell" title="submit 'The classic shape example, adapted for Haskell' to Ask"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="submit 'The classic shape example, adapted for Haskell' to Ask" alt="submit 'The classic shape example, adapted for Haskell' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell&amp;titleThe+classic+shape+example%2C+adapted+for+Haskell" title="submit 'The classic shape example, adapted for Haskell' to Live-MSN"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/live.png" title="submit 'The classic shape example, adapted for Haskell' to Live-MSN" alt="submit 'The classic shape example, adapted for Haskell' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=The+classic+shape+example%2C+adapted+for+Haskell&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell" title="submit 'The classic shape example, adapted for Haskell' to SlashDot"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="submit 'The classic shape example, adapted for Haskell' to SlashDot" alt="submit 'The classic shape example, adapted for Haskell' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell" title="submit 'The classic shape example, adapted for Haskell' to FaceBook"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="submit 'The classic shape example, adapted for Haskell' to FaceBook" alt="submit 'The classic shape example, adapted for Haskell' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.jupiter-labs.com/blog/miscellaneous/classic-shape-adapted-haskell/feed</wfw:commentRss>
		</item>
		<item>
		<title>Web Design: What really bothers you?</title>
		<link>http://www.jupiter-labs.com/blog/web-design/web-design-bothers</link>
		<comments>http://www.jupiter-labs.com/blog/web-design/web-design-bothers#comments</comments>
		<pubDate>Mon, 03 Mar 2008 21:22:54 +0000</pubDate>
		<dc:creator>Kelly Bryant</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.jupiter-labs.com/blog/web-design/web-design-bothers</guid>
		<description><![CDATA[How many times have you gone to a website and been completely disappointed with the design and user interface that you left? Without even checking what you came to the site for? By show of hands there are a lot of us out there.
I am sure that there are people out there that think that [...]]]></description>
			<content:encoded><![CDATA[<p>How many times have you gone to a website and been completely disappointed with the design and user interface that you left? Without even checking what you came to the site for? By show of hands there are a lot of us out there.</p>
<p>I am sure that there are people out there that think that web design is left up to those with creative minds, artists, who have the chance to express their voice with a website to the entire world. But in reality there is a lot more that goes into it, or so we hope.  Now I am not saying that anyone could design a website, nothing could be further from the truth. There are a lot questions that must be answered before you can design a site successfully.</p>
<p>Take a moment and think about your favorite website&#8230; what do you like about it? Is it the colors? Or a cool looking logo? Is it the user interface? (how easy it is to navigate through the website) Or does it have nothing to do with the look, is it all about the content?</p>
<p>Now take another moment and think about the worst website you have come across&#8230; what was it that made you cringe when you arrived? Was there music playing? Did it have banners flashing or moving objects? Was it over crowded with no rhyme or reason to the information? Was it impossible to find the information that you came to the website for?</p>
<p>This happens to so many web users, they go onto a website looking for something specific and they end up leaving after ten seconds because they cannot stand the music or the waving flag in the corner. As anyone can attest to, distractions are easy to come by and makes us move on even faster.</p>
<p>You do not need to have a background in design, art, or web design to understand how the fundamentals of a website should work. You do however need to have background in those things plus an understanding of the fundamentals of consumers who surf the web to make a good looking website with a great user interface. People always want the best of both worlds: they want websites to look amazing, and they also want them to be easy to navigate and the information readily available with little effort to find it.</p>
<p>Being in the web development world it is simple to pick up on the latest trends of website production. These days a website needs to be eye catching without all those silly distractions like music and flying objects. The website also needs to look advanced for it&#8217;s time. People need to be able to find the navigation easy to maneuver through and whatever information they are looking for can only be less than two clicks away. Anything longer than two clicks will make your website visitor go bye-bye.</p>
<p>Take my test: go to three of you favorite websites and see if they have the above criteria, and go to three websites you hate the most and find out what they are missing. Tell me what you find.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>bookmark</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.jupiter-labs.com/blog/web-design/web-design-bothers&amp;title=Web+Design%3A+What+really+bothers+you%3F" title="submit 'Web Design: What really bothers you?' to Del.icio.us"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="submit 'Web Design: What really bothers you?' to Del.icio.us" alt="submit 'Web Design: What really bothers you?' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.jupiter-labs.com/blog/web-design/web-design-bothers&amp;title=Web+Design%3A+What+really+bothers+you%3F" title="submit 'Web Design: What really bothers you?' to digg"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="submit 'Web Design: What really bothers you?' to digg" alt="submit 'Web Design: What really bothers you?' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.jupiter-labs.com/blog/web-design/web-design-bothers&amp;title=Web+Design%3A+What+really+bothers+you%3F" title="submit 'Web Design: What really bothers you?' to reddit"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="submit 'Web Design: What really bothers you?' to reddit" alt="submit 'Web Design: What really bothers you?' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.jupiter-labs.com/blog/web-design/web-design-bothers" title="submit 'Web Design: What really bothers you?' to Technorati"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="submit 'Web Design: What really bothers you?' to Technorati" alt="submit 'Web Design: What really bothers you?' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.jupiter-labs.com/blog/web-design/web-design-bothers&amp;t=Web+Design%3A+What+really+bothers+you%3F" title="submit 'Web Design: What really bothers you?' to Yahoo My Web"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="submit 'Web Design: What really bothers you?' to Yahoo My Web" alt="submit 'Web Design: What really bothers you?' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.jupiter-labs.com/blog/web-design/web-design-bothers&amp;title=Web+Design%3A+What+really+bothers+you%3F" title="submit 'Web Design: What really bothers you?' to Stumble Upon"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="submit 'Web Design: What really bothers you?' to Stumble Upon" alt="submit 'Web Design: What really bothers you?' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.jupiter-labs.com/blog/web-design/web-design-bothers&amp;title=Web+Design%3A+What+really+bothers+you%3F" title="submit 'Web Design: What really bothers you?' to Google Bookmarks"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/google.png" title="submit 'Web Design: What really bothers you?' to Google Bookmarks" alt="submit 'Web Design: What really bothers you?' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.jupiter-labs.com/blog/web-design/web-design-bothers" title="submit 'Web Design: What really bothers you?' to Bloglines"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="submit 'Web Design: What really bothers you?' to Bloglines" alt="submit 'Web Design: What really bothers you?' to Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.jupiter-labs.com/blog/web-design/web-design-bothers&amp;T=Web+Design%3A+What+really+bothers+you%3F" title="submit 'Web Design: What really bothers you?' to Netscape"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="submit 'Web Design: What really bothers you?' to Netscape" alt="submit 'Web Design: What really bothers you?' to Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Web+Design%3A+What+really+bothers+you%3F&amp;url=http://www.jupiter-labs.com/blog/web-design/web-design-bothers" title="submit 'Web Design: What really bothers you?' to Ask"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="submit 'Web Design: What really bothers you?' to Ask" alt="submit 'Web Design: What really bothers you?' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.jupiter-labs.com/blog/web-design/web-design-bothers&amp;titleWeb+Design%3A+What+really+bothers+you%3F" title="submit 'Web Design: What really bothers you?' to Live-MSN"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/live.png" title="submit 'Web Design: What really bothers you?' to Live-MSN" alt="submit 'Web Design: What really bothers you?' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Web+Design%3A+What+really+bothers+you%3F&amp;url=http://www.jupiter-labs.com/blog/web-design/web-design-bothers" title="submit 'Web Design: What really bothers you?' to SlashDot"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="submit 'Web Design: What really bothers you?' to SlashDot" alt="submit 'Web Design: What really bothers you?' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.jupiter-labs.com/blog/web-design/web-design-bothers" title="submit 'Web Design: What really bothers you?' to FaceBook"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="submit 'Web Design: What really bothers you?' to FaceBook" alt="submit 'Web Design: What really bothers you?' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.jupiter-labs.com/blog/web-design/web-design-bothers/feed</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;I have a website, why am I not getting more business?&#8221;</title>
		<link>http://www.jupiter-labs.com/blog/online-marketing/website-business</link>
		<comments>http://www.jupiter-labs.com/blog/online-marketing/website-business#comments</comments>
		<pubDate>Mon, 18 Feb 2008 02:10:13 +0000</pubDate>
		<dc:creator>Kelly Bryant</dc:creator>
		
		<category><![CDATA[Online Marketing]]></category>

		<guid isPermaLink="false">http://www.jupiter-labs.com/blog/online-marketing/website-business</guid>
		<description><![CDATA[It is amazing how many people who have websites for their business ask this question. They do not understand why they are not seeing a drastic change in their business just by putting themselves on the web. They think, &#8220;Billy from We are Web Designs said all I needed to do was get my business [...]]]></description>
			<content:encoded><![CDATA[<p>It is amazing how many people who have websites for their business ask this question. They do not understand why they are not seeing a drastic change in their business just by putting themselves on the web. They think, &#8220;Billy from <em>We are Web Designs</em> said all I needed to do was get my business on the web and I would see results&#8221;. Well in this day and age it&#8217;s just about having presence on the web, there are many other factors.</p>
<p>Let&#8217;s start with design, when was your site developed? How is the user interface? (by user interface I mean how easy it is to navigate through the site and find what you are looking for) Would you say that it has a modern look or can you tell what year it was made. You should be asking yourself these questions all the time. With the age of the internet you have to be constantly be upgrading your look. I am not saying that you need to redo your website every year but you need to change with the tides. Think about your favorite websites, is your site up to par with their design? Not only are you up to par with design but is it easy to get the information you are providing? Are you sending a clear message?</p>
<p>I have been reading lots of marketing books lately and they are all saying the same thing. Consumers have changed the way they buy things. Push marketing is no longer effective, we cannot tell our customers to buy our product because they need it, we need to use the pull method. The pull method is to draw the customer in with information, and lots of it. Think about yourself as a consumer for a second, when you decide to buy something now, like a digital camera, do you just go to your local electronics store and buy the first one on sale or do you research all of the latest trends and then you research who has the best deal, not just in town, but on the web. Well this is what everyone is doing. Consumers want to look for the information on what they are buying and they want to be able to get the information at any time. So what should your site do? It should draw people in with readily available  and easily accessible information. When they go to your site they should be able to find what they are looking for in two clicks of a mouse. If the information is further than that they will move onto the next site. Same thing goes for look and feel of your site. If they do not like the way it looks than they will also move onto the next one. Isn&#8217;t it amazing how many things you have to think of when developing you website (this is why there are professionals, this is what they know so you don&#8217;t have to!)</p>
<p>The last thing that has impact on people coming to your site is finding you on the web. This subject could take pages and pages to talk about, but I will be brief.  People need to be able to get to your site easily and fast. Here are some things to think about: what kind of domain name do I have? Is it long, or confusing? Is it hard to spell? What do I talk about on my homepage? Do I have any content on my homepage? Have you searched for yourself through a search engine like google or yahoo? What page were you on?   These are just a few of the things to think about.</p>
<p>People do not realize all the different things that account for their ranking on a search engine. This type of marketing is called SEO, or search engine optimization, and the whole point of SEO is to get your site on the first page of the search, because as we all know, no one really moves on to the second page. We are talking prime real estate here people!</p>
<p>Since SEO is such an extensive subject and even I am yet to have a full grip on it, I will wait to expand until next time.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>bookmark</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.jupiter-labs.com/blog/online-marketing/website-business&amp;title=%26%238220%3BI+have+a+website%2C+why+am+I+not+getting+more+business%3F%26%238221%3B" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Del.icio.us"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Del.icio.us" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.jupiter-labs.com/blog/online-marketing/website-business&amp;title=%26%238220%3BI+have+a+website%2C+why+am+I+not+getting+more+business%3F%26%238221%3B" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to digg"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to digg" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.jupiter-labs.com/blog/online-marketing/website-business&amp;title=%26%238220%3BI+have+a+website%2C+why+am+I+not+getting+more+business%3F%26%238221%3B" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to reddit"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to reddit" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.jupiter-labs.com/blog/online-marketing/website-business" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Technorati"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Technorati" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.jupiter-labs.com/blog/online-marketing/website-business&amp;t=%26%238220%3BI+have+a+website%2C+why+am+I+not+getting+more+business%3F%26%238221%3B" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Yahoo My Web"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Yahoo My Web" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.jupiter-labs.com/blog/online-marketing/website-business&amp;title=%26%238220%3BI+have+a+website%2C+why+am+I+not+getting+more+business%3F%26%238221%3B" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Stumble Upon"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Stumble Upon" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.jupiter-labs.com/blog/online-marketing/website-business&amp;title=%26%238220%3BI+have+a+website%2C+why+am+I+not+getting+more+business%3F%26%238221%3B" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Google Bookmarks"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/google.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Google Bookmarks" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.jupiter-labs.com/blog/online-marketing/website-business" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Bloglines"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Bloglines" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.jupiter-labs.com/blog/online-marketing/website-business&amp;T=%26%238220%3BI+have+a+website%2C+why+am+I+not+getting+more+business%3F%26%238221%3B" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Netscape"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Netscape" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=%26%238220%3BI+have+a+website%2C+why+am+I+not+getting+more+business%3F%26%238221%3B&amp;url=http://www.jupiter-labs.com/blog/online-marketing/website-business" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Ask"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Ask" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.jupiter-labs.com/blog/online-marketing/website-business&amp;title%26%238220%3BI+have+a+website%2C+why+am+I+not+getting+more+business%3F%26%238221%3B" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Live-MSN"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/live.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Live-MSN" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=%26%238220%3BI+have+a+website%2C+why+am+I+not+getting+more+business%3F%26%238221%3B&amp;url=http://www.jupiter-labs.com/blog/online-marketing/website-business" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to SlashDot"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to SlashDot" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.jupiter-labs.com/blog/online-marketing/website-business" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to FaceBook"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to FaceBook" alt="submit '&#8220;I have a website, why am I not getting more business?&#8221;' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.jupiter-labs.com/blog/online-marketing/website-business/feed</wfw:commentRss>
		</item>
		<item>
		<title>Bakersfield and the world of Websites</title>
		<link>http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites</link>
		<comments>http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites#comments</comments>
		<pubDate>Mon, 11 Feb 2008 00:52:06 +0000</pubDate>
		<dc:creator>Kelly Bryant</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites</guid>
		<description><![CDATA[Being in Bakersfield for almost a year I have come to some conclusions, working for Jupiter Labs for a couple of months has given me some more conclusions on Bakersfield. I want to touch on one of them today: Bakersfield and the world of websites.
Bakersfield is a fairly old community, with &#8220;home-town&#8221; feelings and outlooks. [...]]]></description>
			<content:encoded><![CDATA[<p>Being in Bakersfield for almost a year I have come to some conclusions, working for Jupiter Labs for a couple of months has given me some more conclusions on Bakersfield. I want to touch on one of them today: Bakersfield and the world of websites.</p>
<p>Bakersfield is a fairly old community, with &#8220;home-town&#8221; feelings and outlooks.  When it comes to web, they might be quick to think of spider webs more than the &#8220;world wide web&#8221;. This scared me a little when it came to having to talk to Bakersfield business&#8217; about the internet and what the web can do for their business. I thought to myself, how am I supposed to persuade these people that a website can do wonders for their business and reputation when over 50% did not even know how to get onto the internet let alone that business&#8217; had websites. So out came a new strategy, before we can get folks to see the value of a website they need to understand the &#8220;world wide web&#8221; and what it&#8217;s capabilities are. That is what we set out to do, show people what the web means and then show them how to use it to their advantage.</p>
<p>We showed business&#8217; that there is a whole new marketing strategy out there, and that if they wanted to bring in new generations of buyers to come that they were going to have to jump on the wagon.  See times are changing and the new generation of buyers no longer look to that dusty &#8216;ol phone book in the closet to find take-out or a new doctor, they go to the internet. They have found new ways to find the information they need to buy what they want. The main reason that the internet is more appealing than that phone book is because it is fast, easy, and always there and up-to-date. And for the new generations if it is easier and faster why would you use anything else? They are using their old phone books for door stoppers or &#8220;strong man&#8221; challenges in their backyard, one thing we know for sure is that they are not using them for information.</p>
<p>Okay so let&#8217;s say that I am an old business in Bakersfield, I have made my place in this town by putting in hard work, selling a good quality product, and by creating a good reputation, what is a website going to do for me? Well ask yourself some questions: What is my customer base? Do I have mostly new customers or old loyal ones? How did my customers come to hear about me? How can I get new customers in, and how can I target a larger area? All of these questions can be answered with a website. Let&#8217;s examine how by answering these questions&#8230;</p>
<p>Let&#8217;s define our business for answering purposes. We are a dog boutique, that specializes in toys for all different kinds of dogs, dog clothing, and custom dog tags.</p>
<p>So what is my customer base now: any dog owner (in town, or has heard of my company before) What could it be with a website: ANYONE</p>
<p>Most of my customers are old, who have come here before, I only get new customers from advertising (local TV/Newspaper), word of mouth or walk-ins. Potentially with a website most of your customers could be new because of the exposure on the internet. You are not just getting the greater Bakersfield area with your TV and newspaper ads. You are getting anyone and everyone is has access to the internet.</p>
<p>My customers mostly have heard of me through a friend or some kind of referral, I do get some people who have seen my commercial or saw my ad in the paper. Like I said previously with a website now anyone can find you or hear about you, what larger target area could you get than that.</p>
<p>Now I have shown you some obvious reasons why and how a website can help your business. It&#8217;s pretty easy and painless, you just need to do a little homework and find a web design or development company that knows what they are doing and has your best interest at heart. There is a next step, once you have a website for your business, you then need the knowledge to know: is it doing anything for your business, am I sending the right message, ARE PEOPLE FINDING ME?</p>
<p>This last question about &#8220;are people finding me?&#8221; is probably the most important and this leads into Web Marketing, which I will talk about in my next blog. I also want to talk about the world of web design and what is out there.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>bookmark</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites&amp;title=Bakersfield+and+the+world+of+Websites" title="submit 'Bakersfield and the world of Websites' to Del.icio.us"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="submit 'Bakersfield and the world of Websites' to Del.icio.us" alt="submit 'Bakersfield and the world of Websites' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites&amp;title=Bakersfield+and+the+world+of+Websites" title="submit 'Bakersfield and the world of Websites' to digg"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="submit 'Bakersfield and the world of Websites' to digg" alt="submit 'Bakersfield and the world of Websites' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites&amp;title=Bakersfield+and+the+world+of+Websites" title="submit 'Bakersfield and the world of Websites' to reddit"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="submit 'Bakersfield and the world of Websites' to reddit" alt="submit 'Bakersfield and the world of Websites' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites" title="submit 'Bakersfield and the world of Websites' to Technorati"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="submit 'Bakersfield and the world of Websites' to Technorati" alt="submit 'Bakersfield and the world of Websites' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites&amp;t=Bakersfield+and+the+world+of+Websites" title="submit 'Bakersfield and the world of Websites' to Yahoo My Web"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="submit 'Bakersfield and the world of Websites' to Yahoo My Web" alt="submit 'Bakersfield and the world of Websites' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites&amp;title=Bakersfield+and+the+world+of+Websites" title="submit 'Bakersfield and the world of Websites' to Stumble Upon"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="submit 'Bakersfield and the world of Websites' to Stumble Upon" alt="submit 'Bakersfield and the world of Websites' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites&amp;title=Bakersfield+and+the+world+of+Websites" title="submit 'Bakersfield and the world of Websites' to Google Bookmarks"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/google.png" title="submit 'Bakersfield and the world of Websites' to Google Bookmarks" alt="submit 'Bakersfield and the world of Websites' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites" title="submit 'Bakersfield and the world of Websites' to Bloglines"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="submit 'Bakersfield and the world of Websites' to Bloglines" alt="submit 'Bakersfield and the world of Websites' to Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites&amp;T=Bakersfield+and+the+world+of+Websites" title="submit 'Bakersfield and the world of Websites' to Netscape"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="submit 'Bakersfield and the world of Websites' to Netscape" alt="submit 'Bakersfield and the world of Websites' to Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Bakersfield+and+the+world+of+Websites&amp;url=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites" title="submit 'Bakersfield and the world of Websites' to Ask"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="submit 'Bakersfield and the world of Websites' to Ask" alt="submit 'Bakersfield and the world of Websites' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites&amp;titleBakersfield+and+the+world+of+Websites" title="submit 'Bakersfield and the world of Websites' to Live-MSN"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/live.png" title="submit 'Bakersfield and the world of Websites' to Live-MSN" alt="submit 'Bakersfield and the world of Websites' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Bakersfield+and+the+world+of+Websites&amp;url=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites" title="submit 'Bakersfield and the world of Websites' to SlashDot"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="submit 'Bakersfield and the world of Websites' to SlashDot" alt="submit 'Bakersfield and the world of Websites' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites" title="submit 'Bakersfield and the world of Websites' to FaceBook"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="submit 'Bakersfield and the world of Websites' to FaceBook" alt="submit 'Bakersfield and the world of Websites' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.jupiter-labs.com/blog/web-design/bakersfield-world-websites/feed</wfw:commentRss>
		</item>
		<item>
		<title>Web Designers</title>
		<link>http://www.jupiter-labs.com/blog/miscellaneous/web-designers</link>
		<comments>http://www.jupiter-labs.com/blog/miscellaneous/web-designers#comments</comments>
		<pubDate>Fri, 08 Feb 2008 06:40:48 +0000</pubDate>
		<dc:creator>Kai Khoy</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

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

		<category><![CDATA[San Diego]]></category>

		<category><![CDATA[web designer]]></category>

		<guid isPermaLink="false">http://www.jupiter-labs.com/blog/miscellaneous/web-designers</guid>
		<description><![CDATA[I know what your thinking&#8230;.. sounds like a cool job title, however I know for a fact that these guys who have it on their name badges whether you live in Bakersfield or San Diego put their blood sweat and tears into making it eye candy for us.  I can remember a few years [...]]]></description>
			<content:encoded><![CDATA[<p>I know what your thinking&#8230;.. sounds like a cool job title, however I know for a fact that these guys who have it on their name badges whether you live in Bakersfield or San Diego put their blood sweat and tears into making it eye candy for us.  I can remember a few years ago when flash was considered the coolest thing on the web.  I&#8217;m not say it&#8217;s not cool, but for search ability for major search engines like Google, Yahoo, and Ask.com its terrible.  I consider the best site out there are a good blend of design, texture, and simple java scripts.  It&#8217;s like looking at a page in 2d format verses 3d it makes a huge difference when your surfing that page either looking at content or pictures.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>bookmark</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.jupiter-labs.com/blog/miscellaneous/web-designers&amp;title=Web+Designers" title="submit 'Web Designers' to Del.icio.us"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="submit 'Web Designers' to Del.icio.us" alt="submit 'Web Designers' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/web-designers&amp;title=Web+Designers" title="submit 'Web Designers' to digg"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="submit 'Web Designers' to digg" alt="submit 'Web Designers' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.jupiter-labs.com/blog/miscellaneous/web-designers&amp;title=Web+Designers" title="submit 'Web Designers' to reddit"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="submit 'Web Designers' to reddit" alt="submit 'Web Designers' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.jupiter-labs.com/blog/miscellaneous/web-designers" title="submit 'Web Designers' to Technorati"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="submit 'Web Designers' to Technorati" alt="submit 'Web Designers' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.jupiter-labs.com/blog/miscellaneous/web-designers&amp;t=Web+Designers" title="submit 'Web Designers' to Yahoo My Web"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="submit 'Web Designers' to Yahoo My Web" alt="submit 'Web Designers' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.jupiter-labs.com/blog/miscellaneous/web-designers&amp;title=Web+Designers" title="submit 'Web Designers' to Stumble Upon"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="submit 'Web Designers' to Stumble Upon" alt="submit 'Web Designers' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.jupiter-labs.com/blog/miscellaneous/web-designers&amp;title=Web+Designers" title="submit 'Web Designers' to Google Bookmarks"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/google.png" title="submit 'Web Designers' to Google Bookmarks" alt="submit 'Web Designers' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.jupiter-labs.com/blog/miscellaneous/web-designers" title="submit 'Web Designers' to Bloglines"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="submit 'Web Designers' to Bloglines" alt="submit 'Web Designers' to Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.jupiter-labs.com/blog/miscellaneous/web-designers&amp;T=Web+Designers" title="submit 'Web Designers' to Netscape"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="submit 'Web Designers' to Netscape" alt="submit 'Web Designers' to Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Web+Designers&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/web-designers" title="submit 'Web Designers' to Ask"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="submit 'Web Designers' to Ask" alt="submit 'Web Designers' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.jupiter-labs.com/blog/miscellaneous/web-designers&amp;titleWeb+Designers" title="submit 'Web Designers' to Live-MSN"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/live.png" title="submit 'Web Designers' to Live-MSN" alt="submit 'Web Designers' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Web+Designers&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/web-designers" title="submit 'Web Designers' to SlashDot"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="submit 'Web Designers' to SlashDot" alt="submit 'Web Designers' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.jupiter-labs.com/blog/miscellaneous/web-designers" title="submit 'Web Designers' to FaceBook"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="submit 'Web Designers' to FaceBook" alt="submit 'Web Designers' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.jupiter-labs.com/blog/miscellaneous/web-designers/feed</wfw:commentRss>
		</item>
		<item>
		<title>All Things MacWorld</title>
		<link>http://www.jupiter-labs.com/blog/news/macworld</link>
		<comments>http://www.jupiter-labs.com/blog/news/macworld#comments</comments>
		<pubDate>Wed, 16 Jan 2008 01:22:43 +0000</pubDate>
		<dc:creator>Kai Khoy</dc:creator>
		
		<category><![CDATA[News]]></category>

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

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

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

		<category><![CDATA[san fransisco]]></category>

		<guid isPermaLink="false">http://www.jupiter-labs.com/blog/news/macworld</guid>
		<description><![CDATA[Marc, Kelly, and I are at MacWorld in San Francisco and we are having a pretty good time checking out the exhibits as well as the new things coming out of this event.  The only thing for me that was extra cool was I met Sinbad and he asked me if we do websites [...]]]></description>
			<content:encoded><![CDATA[<p>Marc, Kelly, and I are at MacWorld in San Francisco and we are having a pretty good time checking out the exhibits as well as the new things coming out of this event.  The only thing for me that was extra cool was I met Sinbad and he asked me if we do websites and so I gave him my card, I will also post the picture I took with him as well.  I will blog more about this later so stay tuned.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>bookmark</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.jupiter-labs.com/blog/news/macworld&amp;title=All+Things+MacWorld" title="submit 'All Things MacWorld' to Del.icio.us"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="submit 'All Things MacWorld' to Del.icio.us" alt="submit 'All Things MacWorld' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.jupiter-labs.com/blog/news/macworld&amp;title=All+Things+MacWorld" title="submit 'All Things MacWorld' to digg"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="submit 'All Things MacWorld' to digg" alt="submit 'All Things MacWorld' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.jupiter-labs.com/blog/news/macworld&amp;title=All+Things+MacWorld" title="submit 'All Things MacWorld' to reddit"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="submit 'All Things MacWorld' to reddit" alt="submit 'All Things MacWorld' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.jupiter-labs.com/blog/news/macworld" title="submit 'All Things MacWorld' to Technorati"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="submit 'All Things MacWorld' to Technorati" alt="submit 'All Things MacWorld' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.jupiter-labs.com/blog/news/macworld&amp;t=All+Things+MacWorld" title="submit 'All Things MacWorld' to Yahoo My Web"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="submit 'All Things MacWorld' to Yahoo My Web" alt="submit 'All Things MacWorld' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.jupiter-labs.com/blog/news/macworld&amp;title=All+Things+MacWorld" title="submit 'All Things MacWorld' to Stumble Upon"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="submit 'All Things MacWorld' to Stumble Upon" alt="submit 'All Things MacWorld' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.jupiter-labs.com/blog/news/macworld&amp;title=All+Things+MacWorld" title="submit 'All Things MacWorld' to Google Bookmarks"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/google.png" title="submit 'All Things MacWorld' to Google Bookmarks" alt="submit 'All Things MacWorld' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.jupiter-labs.com/blog/news/macworld" title="submit 'All Things MacWorld' to Bloglines"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="submit 'All Things MacWorld' to Bloglines" alt="submit 'All Things MacWorld' to Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.jupiter-labs.com/blog/news/macworld&amp;T=All+Things+MacWorld" title="submit 'All Things MacWorld' to Netscape"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="submit 'All Things MacWorld' to Netscape" alt="submit 'All Things MacWorld' to Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=All+Things+MacWorld&amp;url=http://www.jupiter-labs.com/blog/news/macworld" title="submit 'All Things MacWorld' to Ask"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="submit 'All Things MacWorld' to Ask" alt="submit 'All Things MacWorld' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.jupiter-labs.com/blog/news/macworld&amp;titleAll+Things+MacWorld" title="submit 'All Things MacWorld' to Live-MSN"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/live.png" title="submit 'All Things MacWorld' to Live-MSN" alt="submit 'All Things MacWorld' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=All+Things+MacWorld&amp;url=http://www.jupiter-labs.com/blog/news/macworld" title="submit 'All Things MacWorld' to SlashDot"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="submit 'All Things MacWorld' to SlashDot" alt="submit 'All Things MacWorld' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.jupiter-labs.com/blog/news/macworld" title="submit 'All Things MacWorld' to FaceBook"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="submit 'All Things MacWorld' to FaceBook" alt="submit 'All Things MacWorld' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.jupiter-labs.com/blog/news/macworld/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Chopping Block</title>
		<link>http://www.jupiter-labs.com/blog/miscellaneous/chopping-block</link>
		<comments>http://www.jupiter-labs.com/blog/miscellaneous/chopping-block#comments</comments>
		<pubDate>Sat, 05 Jan 2008 11:00:05 +0000</pubDate>
		<dc:creator>Kai Khoy</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<category><![CDATA[Hey you guys all look alike]]></category>

		<category><![CDATA[taste all like chicken]]></category>

		<guid isPermaLink="false">http://www.jupiter-labs.com/blog/miscellaneous/chopping-block</guid>
		<description><![CDATA[A few weeks ago I was at a business development meeting at the Bakersfield Chamber of Commerce  and  during that meeting I quickly notice that many of the business people there when talking about technology lumped hardware and software together without very much distinction.  Thus, my main problem when talking to business [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I was at a business development meeting at the <a href="http://www.bakersfieldchamber.org/" title="Bakersfield Chamber">Bakersfield Chamber of Commerce</a>  and  during that meeting I quickly notice that many of the business people there when talking about technology lumped hardware and software together without very much distinction.  Thus, my main problem when talking to business owner is this constant loop of reeducation of what we do.  Kelly and I talk about this and I will use the analogy of breaking a bone and going to the dentist to get it fixed.  We both know that does not make sense, however people still believe the same guy who writes code also knows how to fix a server.  Not saying that he does not know how to, but there is an assumption that all technology folks are the same.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>bookmark</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block&amp;title=The+Chopping+Block" title="submit 'The Chopping Block' to Del.icio.us"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="submit 'The Chopping Block' to Del.icio.us" alt="submit 'The Chopping Block' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block&amp;title=The+Chopping+Block" title="submit 'The Chopping Block' to digg"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="submit 'The Chopping Block' to digg" alt="submit 'The Chopping Block' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block&amp;title=The+Chopping+Block" title="submit 'The Chopping Block' to reddit"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="submit 'The Chopping Block' to reddit" alt="submit 'The Chopping Block' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block" title="submit 'The Chopping Block' to Technorati"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="submit 'The Chopping Block' to Technorati" alt="submit 'The Chopping Block' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block&amp;t=The+Chopping+Block" title="submit 'The Chopping Block' to Yahoo My Web"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="submit 'The Chopping Block' to Yahoo My Web" alt="submit 'The Chopping Block' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block&amp;title=The+Chopping+Block" title="submit 'The Chopping Block' to Stumble Upon"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="submit 'The Chopping Block' to Stumble Upon" alt="submit 'The Chopping Block' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block&amp;title=The+Chopping+Block" title="submit 'The Chopping Block' to Google Bookmarks"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/google.png" title="submit 'The Chopping Block' to Google Bookmarks" alt="submit 'The Chopping Block' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.jupiter-labs.com/blog/miscellaneous/chopping-block" title="submit 'The Chopping Block' to Bloglines"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="submit 'The Chopping Block' to Bloglines" alt="submit 'The Chopping Block' to Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block&amp;T=The+Chopping+Block" title="submit 'The Chopping Block' to Netscape"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="submit 'The Chopping Block' to Netscape" alt="submit 'The Chopping Block' to Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=The+Chopping+Block&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block" title="submit 'The Chopping Block' to Ask"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="submit 'The Chopping Block' to Ask" alt="submit 'The Chopping Block' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block&amp;titleThe+Chopping+Block" title="submit 'The Chopping Block' to Live-MSN"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/live.png" title="submit 'The Chopping Block' to Live-MSN" alt="submit 'The Chopping Block' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=The+Chopping+Block&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block" title="submit 'The Chopping Block' to SlashDot"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="submit 'The Chopping Block' to SlashDot" alt="submit 'The Chopping Block' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.jupiter-labs.com/blog/miscellaneous/chopping-block" title="submit 'The Chopping Block' to FaceBook"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="submit 'The Chopping Block' to FaceBook" alt="submit 'The Chopping Block' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.jupiter-labs.com/blog/miscellaneous/chopping-block/feed</wfw:commentRss>
		</item>
		<item>
		<title>Christmas photos</title>
		<link>http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos</link>
		<comments>http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos#comments</comments>
		<pubDate>Mon, 10 Dec 2007 08:58:55 +0000</pubDate>
		<dc:creator>Kai Khoy</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<category><![CDATA[Christmas Photos]]></category>

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

		<guid isPermaLink="false">http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos</guid>
		<description><![CDATA[We just took our Christmas photos for our friends and family and it turned out great.  I thought the park setting may not work, however with the right lighting it came out perfect.

Srey, Paul, and Me
bookmark
]]></description>
			<content:encoded><![CDATA[<p>We just took our Christmas photos for our friends and family and it turned out great.  I thought the park setting may not work, however with the right lighting it came out perfect.</p>
<p style="text-align: center"><img src="http://farm3.static.flickr.com/2378/2100511450_44f8399c55.jpg?v=0" style="text-align: center" border="10" height="392" width="500" /></p>
<p style="clear: both">Srey, Paul, and Me</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>bookmark</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos&amp;title=Christmas+photos" title="submit 'Christmas photos' to Del.icio.us"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="submit 'Christmas photos' to Del.icio.us" alt="submit 'Christmas photos' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos&amp;title=Christmas+photos" title="submit 'Christmas photos' to digg"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="submit 'Christmas photos' to digg" alt="submit 'Christmas photos' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos&amp;title=Christmas+photos" title="submit 'Christmas photos' to reddit"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="submit 'Christmas photos' to reddit" alt="submit 'Christmas photos' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos" title="submit 'Christmas photos' to Technorati"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="submit 'Christmas photos' to Technorati" alt="submit 'Christmas photos' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos&amp;t=Christmas+photos" title="submit 'Christmas photos' to Yahoo My Web"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="submit 'Christmas photos' to Yahoo My Web" alt="submit 'Christmas photos' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos&amp;title=Christmas+photos" title="submit 'Christmas photos' to Stumble Upon"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="submit 'Christmas photos' to Stumble Upon" alt="submit 'Christmas photos' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos&amp;title=Christmas+photos" title="submit 'Christmas photos' to Google Bookmarks"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/google.png" title="submit 'Christmas photos' to Google Bookmarks" alt="submit 'Christmas photos' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos" title="submit 'Christmas photos' to Bloglines"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="submit 'Christmas photos' to Bloglines" alt="submit 'Christmas photos' to Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos&amp;T=Christmas+photos" title="submit 'Christmas photos' to Netscape"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="submit 'Christmas photos' to Netscape" alt="submit 'Christmas photos' to Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Christmas+photos&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos" title="submit 'Christmas photos' to Ask"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="submit 'Christmas photos' to Ask" alt="submit 'Christmas photos' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos&amp;titleChristmas+photos" title="submit 'Christmas photos' to Live-MSN"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/live.png" title="submit 'Christmas photos' to Live-MSN" alt="submit 'Christmas photos' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Christmas+photos&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos" title="submit 'Christmas photos' to SlashDot"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="submit 'Christmas photos' to SlashDot" alt="submit 'Christmas photos' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos" title="submit 'Christmas photos' to FaceBook"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="submit 'Christmas photos' to FaceBook" alt="submit 'Christmas photos' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.jupiter-labs.com/blog/miscellaneous/christmas-photos/feed</wfw:commentRss>
		</item>
		<item>
		<title>Skype callto URL</title>
		<link>http://www.jupiter-labs.com/blog/news/skype-callto-url</link>
		<comments>http://www.jupiter-labs.com/blog/news/skype-callto-url#comments</comments>
		<pubDate>Sun, 09 Dec 2007 06:21:59 +0000</pubDate>
		<dc:creator>Greg Haase</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[URL Skype Call Calling Callto]]></category>

		<guid isPermaLink="false">http://www.jupiter-labs.com/blog//skype-callto-url</guid>
		<description><![CDATA[Sometimes I wonder about things and ask myself, why is this not easier?  Sometimes when I am surfing the internet looking for a phone number. I find it, then I have to dial it on a phone or in Skype.  Which is one extra step I don&#8217;t want to have to do.  [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I wonder about things and ask myself, why is this not easier?  Sometimes when I am surfing the internet looking for a phone number. I find it, then I have to dial it on a phone or in Skype.  Which is one extra step I don&#8217;t want to have to do.  I just discovered that there is a callto:// URL where one can specify a phone number in HTML.  I figured there had to be some easy way to tag phone numbers so that they can be a clickable link.  Everyone should do this to allow for easier connection via web to phone.  Yet getting everyone to adopt a new idea generally takes time.</p>
<p>So, considering every web master in the world is not going to jump up and edit all of those pages with phone numbers.  It would seem possible that maybe a <a href="https://addons.mozilla.org/en-US/firefox/addon/748">grease monkey</a> script would be able to recognize phone numbers and turn them into callto: links.  Well someone has all ready created this.  <a href="http://userscripts.org/scripts/show/6111">Callto Linkify (for Skype)</a></p>
<p>Gotta love the internet.  Thanks to Aaron Boodman (you have saved me soo much time!) for Grease Monkey and Boris Yim for this handy Skype-ification!</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>bookmark</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.jupiter-labs.com/blog/news/skype-callto-url&amp;title=Skype+callto+URL" title="submit 'Skype callto URL' to Del.icio.us"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="submit 'Skype callto URL' to Del.icio.us" alt="submit 'Skype callto URL' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.jupiter-labs.com/blog/news/skype-callto-url&amp;title=Skype+callto+URL" title="submit 'Skype callto URL' to digg"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="submit 'Skype callto URL' to digg" alt="submit 'Skype callto URL' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.jupiter-labs.com/blog/news/skype-callto-url&amp;title=Skype+callto+URL" title="submit 'Skype callto URL' to reddit"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="submit 'Skype callto URL' to reddit" alt="submit 'Skype callto URL' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.jupiter-labs.com/blog/news/skype-callto-url" title="submit 'Skype callto URL' to Technorati"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="submit 'Skype callto URL' to Technorati" alt="submit 'Skype callto URL' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.jupiter-labs.com/blog/news/skype-callto-url&amp;t=Skype+callto+URL" title="submit 'Skype callto URL' to Yahoo My Web"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="submit 'Skype callto URL' to Yahoo My Web" alt="submit 'Skype callto URL' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.jupiter-labs.com/blog/news/skype-callto-url&amp;title=Skype+callto+URL" title="submit 'Skype callto URL' to Stumble Upon"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="submit 'Skype callto URL' to Stumble Upon" alt="submit 'Skype callto URL' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.jupiter-labs.com/blog/news/skype-callto-url&amp;title=Skype+callto+URL" title="submit 'Skype callto URL' to Google Bookmarks"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/google.png" title="submit 'Skype callto URL' to Google Bookmarks" alt="submit 'Skype callto URL' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.jupiter-labs.com/blog/news/skype-callto-url" title="submit 'Skype callto URL' to Bloglines"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="submit 'Skype callto URL' to Bloglines" alt="submit 'Skype callto URL' to Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.jupiter-labs.com/blog/news/skype-callto-url&amp;T=Skype+callto+URL" title="submit 'Skype callto URL' to Netscape"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="submit 'Skype callto URL' to Netscape" alt="submit 'Skype callto URL' to Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Skype+callto+URL&amp;url=http://www.jupiter-labs.com/blog/news/skype-callto-url" title="submit 'Skype callto URL' to Ask"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="submit 'Skype callto URL' to Ask" alt="submit 'Skype callto URL' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.jupiter-labs.com/blog/news/skype-callto-url&amp;titleSkype+callto+URL" title="submit 'Skype callto URL' to Live-MSN"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/live.png" title="submit 'Skype callto URL' to Live-MSN" alt="submit 'Skype callto URL' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Skype+callto+URL&amp;url=http://www.jupiter-labs.com/blog/news/skype-callto-url" title="submit 'Skype callto URL' to SlashDot"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="submit 'Skype callto URL' to SlashDot" alt="submit 'Skype callto URL' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.jupiter-labs.com/blog/news/skype-callto-url" title="submit 'Skype callto URL' to FaceBook"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="submit 'Skype callto URL' to FaceBook" alt="submit 'Skype callto URL' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.jupiter-labs.com/blog/news/skype-callto-url/feed</wfw:commentRss>
		</item>
		<item>
		<title>The world is round and it spins damn slow</title>
		<link>http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow</link>
		<comments>http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow#comments</comments>
		<pubDate>Thu, 06 Dec 2007 04:53:11 +0000</pubDate>
		<dc:creator>Kai Khoy</dc:creator>
		
		<category><![CDATA[Miscellaneous]]></category>

		<category><![CDATA[all mighty email]]></category>

		<guid isPermaLink="false">http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow</guid>
		<description><![CDATA[I sat down today with a day care center that had a specific need to process a child from check in to check out, but it had to do hourly totals with diapers etc etc.  I have to stop here because I thought of the title by Marc, &#8220;The world is flat and it spins [...]]]></description>
			<content:encoded><![CDATA[<p>I sat down today with a day care center that had a specific need to process a child from check in to check out, but it had to do hourly totals with diapers etc etc.  I have to stop here because I thought of the title by Marc, &#8220;<a href="http://www.jupiter-labs.com/blog/miscellaneous/the-world-is-flat-and-it-turns-damn-fast">The world is flat and it spins damn  fast</a>&#8221; I realize that the world is as fast as a person can process information, however it must fulfill  a need in their life for instance like paying bills, buying stuff, and of course the all mighty email.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>bookmark</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow&amp;title=The+world+is+round+and+it+spins+damn+slow" title="submit 'The world is round and it spins damn slow' to Del.icio.us"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="submit 'The world is round and it spins damn slow' to Del.icio.us" alt="submit 'The world is round and it spins damn slow' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow&amp;title=The+world+is+round+and+it+spins+damn+slow" title="submit 'The world is round and it spins damn slow' to digg"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="submit 'The world is round and it spins damn slow' to digg" alt="submit 'The world is round and it spins damn slow' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow&amp;title=The+world+is+round+and+it+spins+damn+slow" title="submit 'The world is round and it spins damn slow' to reddit"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="submit 'The world is round and it spins damn slow' to reddit" alt="submit 'The world is round and it spins damn slow' to reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow" title="submit 'The world is round and it spins damn slow' to Technorati"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="submit 'The world is round and it spins damn slow' to Technorati" alt="submit 'The world is round and it spins damn slow' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow&amp;t=The+world+is+round+and+it+spins+damn+slow" title="submit 'The world is round and it spins damn slow' to Yahoo My Web"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="submit 'The world is round and it spins damn slow' to Yahoo My Web" alt="submit 'The world is round and it spins damn slow' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow&amp;title=The+world+is+round+and+it+spins+damn+slow" title="submit 'The world is round and it spins damn slow' to Stumble Upon"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="submit 'The world is round and it spins damn slow' to Stumble Upon" alt="submit 'The world is round and it spins damn slow' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow&amp;title=The+world+is+round+and+it+spins+damn+slow" title="submit 'The world is round and it spins damn slow' to Google Bookmarks"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/google.png" title="submit 'The world is round and it spins damn slow' to Google Bookmarks" alt="submit 'The world is round and it spins damn slow' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow" title="submit 'The world is round and it spins damn slow' to Bloglines"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="submit 'The world is round and it spins damn slow' to Bloglines" alt="submit 'The world is round and it spins damn slow' to Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow&amp;T=The+world+is+round+and+it+spins+damn+slow" title="submit 'The world is round and it spins damn slow' to Netscape"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="submit 'The world is round and it spins damn slow' to Netscape" alt="submit 'The world is round and it spins damn slow' to Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=The+world+is+round+and+it+spins+damn+slow&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow" title="submit 'The world is round and it spins damn slow' to Ask"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="submit 'The world is round and it spins damn slow' to Ask" alt="submit 'The world is round and it spins damn slow' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow&amp;titleThe+world+is+round+and+it+spins+damn+slow" title="submit 'The world is round and it spins damn slow' to Live-MSN"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/live.png" title="submit 'The world is round and it spins damn slow' to Live-MSN" alt="submit 'The world is round and it spins damn slow' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=The+world+is+round+and+it+spins+damn+slow&amp;url=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow" title="submit 'The world is round and it spins damn slow' to SlashDot"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="submit 'The world is round and it spins damn slow' to SlashDot" alt="submit 'The world is round and it spins damn slow' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow" title="submit 'The world is round and it spins damn slow' to FaceBook"><img src="http://www.jupiter-labs.com/blog/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="submit 'The world is round and it spins damn slow' to FaceBook" alt="submit 'The world is round and it spins damn slow' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.jupiter-labs.com/blog/miscellaneous/world-spins-damn-slow/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
