<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>webEprint blog</title>
	<link>http://blog.webeprint.com</link>
	<description>a blog about developing the web</description>
	<pubDate>Wed, 16 Apr 2008 07:34:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>JSON Classes for Open Rico Live Grid</title>
		<link>http://blog.webeprint.com/2008/04/15/json-classes-for-open-rico-live-grid/</link>
		<comments>http://blog.webeprint.com/2008/04/15/json-classes-for-open-rico-live-grid/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 06:59:32 +0000</pubDate>
		<dc:creator>jgreen</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.webeprint.com/2008/04/15/json-classes-for-open-rico-live-grid/</guid>
		<description><![CDATA[I&#8217;ve been working on a project using Google Gears for the last few weeks and I&#8217;ve hacked together some classes to allow the user of the Open Rico Live Grid to use Gears to operate offline.   A result of using Gears to take an application offline is that it is much easier to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a project using <a href="http://gears.google.com/" title="The Gears that power the tubes.">Google Gears</a> for the last few weeks and I&#8217;ve hacked together some classes to allow the user of the <a href="http://openrico.org/" title="Open Rico">Open Rico</a> Live Grid to use Gears to operate offline.   A result of using Gears to take an application offline is that it is much easier to move data around in a raw data type format as oppose to a markup format that you might use if you can format the data on the server.  The advantage is that if your server produces raw data and your Gears database produces raw data, then you can do all of your formating in one place.  In the browser via JavaScript.  If your server is pushing fragments of markup to your page via AJAX, then when you need to replicate that functionality offline, you have to grab the data from the local DB and then format via JS and try to produce the same markup that your server is producing.  Then when you need to change something, you get to change it twice.  Boo!</p>
<p> <a href="http://blog.webeprint.com/2008/04/15/json-classes-for-open-rico-live-grid/#more-12" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.webeprint.com/2008/04/15/json-classes-for-open-rico-live-grid/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Local Websites Work For Small Business</title>
		<link>http://blog.webeprint.com/2008/04/08/local-websites-work-for-small-business/</link>
		<comments>http://blog.webeprint.com/2008/04/08/local-websites-work-for-small-business/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 21:43:52 +0000</pubDate>
		<dc:creator>tanner</dc:creator>
		
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://blog.webeprint.com/2008/04/08/local-websites-work-for-small-business/</guid>
		<description><![CDATA[I&#8217;m not sure how many times I&#8217;ve heard local business owners say that the Internet doesn&#8217;t really apply to their business.  When we started our business adventure in 1999, I think that many businesses could have made a strong argument that that was true.  The Internet had not really impacted their business, because [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure how many times I&#8217;ve heard local business owners say that the Internet doesn&#8217;t really apply to their business.  When we started our business adventure in 1999, I think that many businesses could have made a strong argument that that was true.  The Internet had not really impacted their business, because the new business they needed to continue to grow was being delivered by phone book advertising. <a href="http://blog.webeprint.com/2008/04/08/local-websites-work-for-small-business/#more-11" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.webeprint.com/2008/04/08/local-websites-work-for-small-business/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fancy Form - Prototype.js Edition (FFP for short)</title>
		<link>http://blog.webeprint.com/2008/03/24/fancy-form-prototypejs-edition/</link>
		<comments>http://blog.webeprint.com/2008/03/24/fancy-form-prototypejs-edition/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 05:00:14 +0000</pubDate>
		<dc:creator>jgreen</dc:creator>
		
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.webeprint.com/2008/03/24/fancy-form-prototypejs-edition/</guid>
		<description><![CDATA[The other day I came across Fancy Form and decided that it would be a great addition to a project I&#8217;ve been working on.  It&#8217;s a great piece of code that will replace normal check boxes and radio button form elements with nice images to give you more control over styling those elements than [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I came across <a href="http://lipidity.com/fancy-form/" title="Fancy Form">Fancy Form</a> and decided that it would be a great addition to a project I&#8217;ve been working on.  It&#8217;s a great piece of code that will replace normal check boxes and radio button form elements with nice images to give you more control over styling those elements than you can get by just affecting them via CSS.  I ran into some problems with compatibility between <a href="http://mootools.net/" title="MooTools">MooTools</a> (required by Fancy Form) and <a href="http://www.prototypejs.org/" title="Prototyp">Prototype</a> (which I was already using).  So I modified Fancy Form to be able to use Prototype instead.  <a href="http://blog.webeprint.com/wp-content/uploads/2008/03/ffp/demo.html">View the demo.</a></p>
<p align="center"><strong>Plain Form VS Fancy Form</strong></p>
<p align="center"><img src="http://blog.webeprint.com/wp-content/uploads/2008/03/plain_vs_fancy.png" alt="Plain Form VS Fancy Form" /></p>
<p> <a href="http://blog.webeprint.com/2008/03/24/fancy-form-prototypejs-edition/#more-5" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.webeprint.com/2008/03/24/fancy-form-prototypejs-edition/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Three rules for successful email campaigns</title>
		<link>http://blog.webeprint.com/2007/10/04/three-rules-for-successful-email-campaigns/</link>
		<comments>http://blog.webeprint.com/2007/10/04/three-rules-for-successful-email-campaigns/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 15:31:02 +0000</pubDate>
		<dc:creator>tanner</dc:creator>
		
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://blog.webeprint.com.s15453.gridserver.com/?p=4</guid>
		<description><![CDATA[Value Your Clients Will Understand
There are three rules for creating an effective email campaign that will help your clients understand the value in direct email.  The first rule is to only send email to recipients that have requested information from you.  The second rule is to only send your subscribers information they are [...]]]></description>
			<content:encoded><![CDATA[<p><font face="Adobe Garamond Pro, serif"><strong>Value Your Clients Will Understand</strong><br />
There are three rules for creating an effective email campaign that will help your clients understand the value in direct email.  The first rule is to only send email to recipients that have requested information from you.  The second rule is to only send your subscribers information they are interested in.  The third rule is to create a compelling message.  In my experience, if you can meet these criteria your conversion rates increase dramatically, and your campaign is a success.</font></p>
<p> <a href="http://blog.webeprint.com/2007/10/04/three-rules-for-successful-email-campaigns/#more-4" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.webeprint.com/2007/10/04/three-rules-for-successful-email-campaigns/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.212 seconds -->
