<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Startup Next Door &#187; Tools &amp; Resources</title>
	<atom:link href="http://www.startupnextdoor.com/category/tools_resources/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.startupnextdoor.com</link>
	<description>Venture without Capital</description>
	<lastBuildDate>Sat, 07 Jan 2012 06:07:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Cache PHP Sessions in Membase</title>
		<link>http://www.startupnextdoor.com/2011/11/how-to-cache-php-sessions-in-membase/</link>
		<comments>http://www.startupnextdoor.com/2011/11/how-to-cache-php-sessions-in-membase/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 19:17:35 +0000</pubDate>
		<dc:creator>jwasham</dc:creator>
				<category><![CDATA[Tools & Resources]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://www.startupnextdoor.com/2011/11/how-to-cache-php-sessions-in-membase/</guid>
		<description><![CDATA[From time to time, I’ll divert from talking business into getting down into tech details, because doing more with fewer servers or other resources will save you money and that’s good for business, especially when bootstrapping. For this tutorial, you’ll need to be running your apps in PHP and can configure it, and have the [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time, I’ll divert from talking business into getting down into tech details, because doing more with fewer servers or other resources will save you money and that’s good for business, especially when bootstrapping.</p>
<p><a href="http://www.couchbase.com/products-and-services/membase-server"><img style="border-right-width: 0px; margin: 10px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="membase logo" border="0" alt="membase logo" src="http://www.startupnextdoor.com/wp-content/uploads/2011/11/membaselogo.png" width="426" height="108" /></a></p>
<p>For this tutorial, you’ll need to be running your apps in PHP and can configure it, and have the ability to install software to your server. If you’re still reading, I’ll assume you’re comfortable with both. Let’s go!</p>
<p><span id="more-606"></span>
<p><strong>Important update:</strong> see bottom of post</p>
<h3>The Usual: Memcache</h3>
<p>You may be familiar with memcache. <a href="http://memcached.org/">Memcache</a> is a simple, fast, in-memory caching system that is used for caching data that is requested often. By using memcache, you avoid the need of repeatedly pulling information from disk or from a database query. This speeds up serving requests and reduces the need for disk accesses.&#160; It can easily be made to expand the caching across servers, so you are not bound to the memory limits of a single server. Your memcache storage can be as large as the added memory of many servers.</p>
<h3>Memcache and Sessions</h3>
<p>In PHP, user sessions are stored on disk by default. This is fine for keeping track of sessions for small traffic and a small number of users, capable of being handled by a single server. But once your site is getting heavy traffic, the repeated disk accesses for session files will start to slow down requests, as well as exhausting the filesystem’s capability of handling many files per directory.</p>
<p>Should you decide to increase the number of servers to handle the traffic (using a load balancer) you’ll run into the next challenge: users who hit one server on one request may not end up on the same server on the next request. So the session that had their logged-in state may be on server A, but on next request they get routed to server B which doesn’t have a session for them, or may have a logged-out session for them. So the user ends up being logged in or logged out, and it’s at the whim of the load balancer.&#160; Some load balancers are smart in that they will keep a user “stuck” to one server for session’s sake.</p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Load balancing" border="0" alt="Load balancing" src="http://www.startupnextdoor.com/wp-content/uploads/2011/11/IC9101.gif" width="299" height="307" /></p>
<p>The next logical step is to put sessions in memcache or in the database, so that it won’t matter what server the user ends up on, their session will still be available for the request. Putting sessions in the database is better than files, but still involves a database request for page request.&#160; The better option is to put sessions in memcache. Since all servers share the same memcache storage pool, each has access to all the sessions, and the session lookups are super fast.</p>
<h3>The Problem with Memcache</h3>
<p>Memcache is great, but once you start running low on memory (as you cache more info) lesser-used items in the cache will be destroyed to free up more space for new items. This can result in users getting logged out.&#160; Also, if one of the servers in the pool fails or gets rebooted, all the data it was holding is lost, and then the cache must get “warmed up” again.</p>
<p>What’s a developer to do?</p>
<h3></h3>
<h3>Membase, the Next Big Thing</h3>
<p><a href="http://www.couchbase.com/products-and-services/membase-server">Membase</a> is memcache with data persistence. And it doesn’t use something <em>like</em> memcache, <strong>it is memcache</strong>. So if you have code that already is using memcache, you can have it use membase right away, usually with no change to your code.</p>
<p>The improvement of having data persistence is that if you need to bring down a server, you don’t have to worry about all that dainty, floaty data in memory that is gonna get burned. Since membase has replication and persistence built-in, you can feel free to restart a troublesome server without fear of your database getting pounded as the caches need to refill, or that a set of unlucky users will get logged out.&#160; I’ll let you read about all the <a href="http://www.couchbase.com/products-and-services/membase-server">many other advantages of membase here</a>.&#160; It’s much more than I’ve mentioned here.</p>
<p>Membase is a <a href="http://en.wikipedia.org/wiki/NoSQL">NoSQL solution</a>, so if you’ve been looking to try one out but haven’t had data problems big enough, this is your opportunity to jump in.</p>
<p>Membase server comes in two flavors: community and enterprise. The community version is open source, and doesn’t have some of the high-end features of the enterprise version.&#160; But for our project here and many of your projects, the community version will be more than enough.&#160; Enterprise is not necessarily for the bootstrapped. You get more features and support, but you’ll pay thousands for it.</p>
<p>Who’s using it? Between Membase and its cousin, Couchbase (based on CouchDB) there are a number of <a href="http://www.couchbase.com/customers">high performance and high-traffic sites using them</a>.&#160; And all <a href="http://www.readyprompt.com">ReadyPrompt sites</a> use it. <img src='http://www.startupnextdoor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>The Tutorial</h3>
<p>Let’s start in on the real meat and potatoes here.</p>
<p>I’m going to focus on an Debian/Ubuntu-based package install, since I’m fond of it and stopped liking installing from source years ago. Those on other Linux platforms should be comfortable here, however.&#160; No worries, folks.</p>
<h4>Cleaning up old Junk</h4>
<p>Since Membase provides memcache within its install, we don’t want any previously installed memcache stuff hanging around and messing up our mojo.</p>
<p>These are the Ubuntu packages you’ll want to <strong>get rid of</strong>:</p>
<ul>
<li>php5-memcache </li>
<li>php5-memcached </li>
<li>memcache (may or may not exist as a package for your Linux flavor) </li>
<li>memcached </li>
</ul>
<p>That’s right, get rid of them. Just apt-get remove ‘em.</p>
<p>In addition, to make sure you remove any memcache.ini or memcached.ini that may be sitting in /etc/php5/conf.d</p>
<p>Then run:</p>
<p><font size="2" face="Courier New">service apache2 restart</font></p>
<p>to restart apache.</p>
<h4>Getting on the Right Memcache</h4>
<p>You’ll notice I listed memcache and memcached. We’re going to stick to memcache<strong>d</strong> for the remainder of this tutorial. Yes, it matters.</p>
<h4>Getting the code</h4>
<p>Since we’re staying away from the Enterprise version here, let’s go straight to the <a href="http://www.couchbase.com/downloads/membase-server/community">download page</a>.</p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="membase downloads" border="0" alt="membase downloads" src="http://www.startupnextdoor.com/wp-content/uploads/2011/11/membase_dl.png" width="438" height="382" /></p>
<p><font size="2" face="Courier New"></font><font size="3" face="Georgia">As you can see, there are binaries available for a number of platforms, including 64-bit versions.</font></p>
<p>After downloading, let’s run (on Ubuntu 64-bit):</p>
<p><font size="2" face="Courier New">dpkg -i membase-server-community_x86_64_1.7.1.1.deb</font></p>
<p>Like I said, once it’s done with a very quick install, you’ll have memcached installed and running. You can run this to see the services it runs, including its bundled memcached:</p>
<p><font size="2" face="Courier New">ps –aef | grep mem</font></p>
<p>Now point your browser to <a href="http://yourserverip:8091">http://yourserverip:8091</a></p>
<p>If the browser just spins or gives you an error, you’ll need to edit your firewall to allow TCP access to port 8091 from outside.</p>
<p>When the membase admin on your server shows up, you’ll see this nice welcome:</p>
<p><a href="http://www.startupnextdoor.com/wp-content/uploads/2011/11/ScreenShot20111031at5.55.01PM.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Membase setup: welcome screen" border="0" alt="Membase setup: welcome screen" src="http://www.startupnextdoor.com/wp-content/uploads/2011/11/ScreenShot20111031at5.55.01PM_thumb.png" width="424" height="211" /></a></p>
<p>On the next screen you’ll enter the path to where you want data to be stored (or leave it as default), and memory size option for setting up a new cluster. We’re going to do a cluster of one for this tutorial.</p>
<p><a href="http://www.startupnextdoor.com/wp-content/uploads/2011/11/ScreenShot20111031at5.55.33PM.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Membase setup:configure server" border="0" alt="Membase setup:configure server" src="http://www.startupnextdoor.com/wp-content/uploads/2011/11/ScreenShot20111031at5.55.33PM_thumb.png" width="417" height="372" /></a>&#160;</p>
<p>Next, you’ll set how much memory you’ll want for you first bucket. Oh yeah, I didn’t discuss buckets. You can save things to separate buckets. Investigate.</p>
<p>I also set it to have 1 backup copy via replication.</p>
<p><a href="http://www.startupnextdoor.com/wp-content/uploads/2011/11/ScreenShot20111031at5.55.49PM.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Membase setup: create default bucket" border="0" alt="Membase setup: create default bucket" src="http://www.startupnextdoor.com/wp-content/uploads/2011/11/ScreenShot20111031at5.55.49PM_thumb.png" width="417" height="307" /></a></p>
<p>Next to last detail: enable software notifications:</p>
<p><a href="http://www.startupnextdoor.com/wp-content/uploads/2011/11/ScreenShot20111031at5.56.03PM.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Membase setup: notifications" border="0" alt="Membase setup: notifications" src="http://www.startupnextdoor.com/wp-content/uploads/2011/11/ScreenShot20111031at5.56.03PM_thumb.png" width="419" height="225" /></a>&#160; <br />The very last step is setting a username and password (not depicted).</p>
<p>Once you’ve set your password, you’re in! Soon you will see these graphs full of very hot lines.</p>
<p><a href="http://www.startupnextdoor.com/wp-content/uploads/2011/11/ScreenShot20111031at5.57.50PM.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Membase setup: data screen" border="0" alt="Membase setup: data screen" src="http://www.startupnextdoor.com/wp-content/uploads/2011/11/ScreenShot20111031at5.57.50PM_thumb.png" width="421" height="269" /></a>&#160;</p>
<p>The next step is to install php5-memcached:</p>
<p><font size="2" face="Courier New">apt-get install php5-memcached</font></p>
<p>This will also install memcached, as you can see from the output:</p>
<p><font size="2" face="Courier New">Reading package lists&#8230; Done      <br />Building dependency tree&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />Reading state information&#8230; Done       <br />The following extra packages will be installed:       <br />libevent-1.4-2 libmemcached2 memcached       <br />Suggested packages:       <br />libcache-memcached-perl libmemcached       <br />The following NEW packages will be installed:       <br />libevent-1.4-2 libmemcached2 memcached php5-memcached       <br />0 upgraded, 4 newly installed, 0 to remove and 39 not upgraded.</font></p>
<p>This additional memcached will conflict in a subtle way with the one membase installed. Not to worry. Just get rid of it:</p>
<p><font size="2" face="Courier New">apt-get remove memcached</font></p>
<p>You should have a new file that php5-memcached made for you: /etc/php5/conf.d/memcached.ini</p>
<p>with this as the content:    <br /><font size="2" face="Courier New">extension = memcached.so</font></p>
<h3>Changing PHP to Handle Membase Sessions</h3>
<p>Since membase is sitting right behind memcache, you’ll still use memcache session handling. Edit your php.ini file (or add a custom ini file to conf.d directory) with this:</p>
<p><font size="2" face="Courier New">session.save_handler = memcached      <br />session.save_path = &quot;localhost:11211&quot;</font></p>
<p>Now just restart apache and you’re done.</p>
<p><font size="2" face="Courier New">service apache2 restart</font></p>
<p>If you fire up a phpinfo() you’ll see this in your session section (edited for brevity):</p>
<p><a href="http://www.startupnextdoor.com/wp-content/uploads/2011/11/memcachedsessions.png"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="memcached-sessions" border="0" alt="memcached-sessions" src="http://www.startupnextdoor.com/wp-content/uploads/2011/11/memcachedsessions_thumb.png" width="438" height="277" /></a></p>
<p>You should see “memcached” as one of your registered save handlers, as well as your session.save_handler.&#160; You should see the save path as above also.</p>
<h3>Updating Your Existing Memcache Code</h3>
<p>If you are already using memcache as a caching mechanism for other things, you’ll need to make sure you’re using the <a href="http://us2.php.net/manual/en/class.memcached.php">Memcached library</a>. It’s not greatly different from the <a href="http://us2.php.net/manual/en/book.memcache.php">Memcache library</a>, so converting your code to use it should be trivial.</p>
<p>You’ll need to change lines like this:</p>
<p><font size="2" face="Courier New">$memcache = new Memcache;      <br />$memcache-&gt;connect(&#8216;memcache_host&#8217;, 11211);</font></p>
<p>to this:</p>
<p><font size="2" face="Courier New">$memcache = new Memcached;      <br />$memcache-&gt;addServer(&#8216;memcache_host&#8217;, 11211);</font></p>
<p>The expiration you use for <a href="http://us2.php.net/manual/en/memcached.set.php">set() operations</a> does not need to change. Read more <a href="http://us2.php.net/manual/en/memcached.expiration.php">about expirations here</a>.</p>
<p>In general, I don’t like to deal with Memcached library directly. I wrap it in a utility class so that if I need to add more membase/memcache servers in the future or change the way I create hash keys, I only have to do it in one place.</p>
<p>If needed, at any time you may restart membase by issuing:</p>
<p><font size="2" face="Courier New">service membase-server restart</font></p>
<p>Hope this tutorial helped you out.</p>
<p><strong>Update (Nov. 4th, 2011):</strong> After further checking and integration, some frameworks require php5-memcache. Installing both php5-memcache and php5-memcached&#160; causes no weird side effects. They are just separate libraries for talking to memcached.</p>
<p><strong>Update (Nov. 5th, 2011):</strong> You’ll notice over time that the items in cache are increasing and rarely decreasing, and it’s nothing to be afraid of.&#160; <a href="http://blog.ovesens.net/2011/02/membase-cache-item-expiration-issue/">Explained here in a post by Mikkel Ovesen</a>.</p>
<p><strong>Update (Jan. 6th, 2011):</strong> Some colleagues have run into troubles with this approach, as PHP’s memcached does not store session expiration correctly. That means that when your membase runs out of memory, it stops working instead of freeing up old sessions. I’m researching and will update when I find out a solution.&#160; Please comment below if you can help.</p>
<h3>Call to Action</h3>
<p>Did you discover anything new or helpful you’d like to share about this tutorial? Let everyone know in a comment below!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.startupnextdoor.com/2011/11/how-to-cache-php-sessions-in-membase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Launched: Dot Com or Nothing</title>
		<link>http://www.startupnextdoor.com/2011/08/just-launched-dot-com-or-nothing/</link>
		<comments>http://www.startupnextdoor.com/2011/08/just-launched-dot-com-or-nothing/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 19:05:25 +0000</pubDate>
		<dc:creator>jwasham</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Startup News]]></category>
		<category><![CDATA[Tools & Resources]]></category>
		<category><![CDATA[announcement]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[solo]]></category>

		<guid isPermaLink="false">http://www.startupnextdoor.com/2011/08/just-launched-dot-com-or-nothing/</guid>
		<description><![CDATA[Early Friday morning, I was thinking that if I could get an instant domain search going, I could hook it up to Hover.com and send them traffic (because they’re awesome) and get some affiliate revenue when someone bought a domain with them.&#160; After work Friday I started coding, and Sunday night I finished it: http://dotcomornothing.com&#160; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dotcomornothing.com/"><img style="background-image: none; border-right-width: 0px; margin: 1px auto 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Screen Shot 2011-08-15 at 8.57.34 AM" border="0" alt="Screen Shot 2011-08-15 at 8.57.34 AM" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-Shot-2011-08-15-at-8.57.34-AM.png" width="425" height="276" /></a></p>
<p>Early Friday morning, I was thinking that if I could get an instant domain search going, I could hook it up to Hover.com and send them traffic (because they’re awesome) and get some affiliate revenue when someone bought a domain with them.&#160; After work Friday I started coding, and Sunday night I finished it: <a href="http://dotcomornothing.com">http://dotcomornothing.com</a>&#160; Ah, weekend projects.</p>
</p>
<p><span id="more-589"></span>
</p>
<p>At the time I started coding, I wasn’t a Hover affiliate.&#160; I didn’t have an appropriate site to mention on the affiliate application, so this site was made before I even filed for approval. Glad I was approved. Whew!</p>
<p>The folks at Hover were pretty enthused to see this, and the dev team was stoked:</p>
<blockquote><p><font size="2">Woot! That was awesome. I ran it by the Dev team and their reactions were, &quot;See? Now THAT&#8221;s how we like to see people use our [~stuff~]&quot;. LOL</font></p>
<p><font size="2">Actually, funny that you were able to figure that out with the domain look-up, because that&#8217;s new and you couldn&#8217;t do that before. Dev just updated some code recently, so they&#8217;re quite impressed with themselves now, because this is exactly what they wanted to happen.</font></p>
</blockquote>
<p>I know the integration of the coupon code is non-existent, but hopefully they will have a way to integrate that in so you won’t have to copy/paste it.&#160; Just not supported right now except thru this link: <a title="http://hover.com/ReadyPrompt" href="http://hover.com/ReadyPrompt">http://hover.com/ReadyPrompt</a></p>
<p>Why Hover? I’ve been a big fan since last November. You may remember my post “<a href="http://www.startupnextdoor.com/2010/11/ditching-godaddy-for-hover/">Ditching GoDaddy for Hover</a>”.</p>
<p>There was some coding trickiness to building the site, and there is a lot of optimization and caching going on, but it’s blazing fast and helps you cut through the jungle of reserved domains to help you find the next great domain.</p>
<p>For some explanation on the name and some SEO fodder, I had to put some hidden text in the page:</p>
<blockquote><p><font size="2">For anyone buying a domain for a new startup, it&#8217;s an important, and sometimes terribly expensive choice.&#160; This post by Fred Wilson: </font><a href="http://www.avc.com/a_vc/2011/04/finding-and-buying-a-domain-name.html"><font size="2">Finding And Buying A Domain Name</font></a><font size="2"> is a good start, and is immediately followed by an outstanding comment on why dot com is the only TLD that matters and continues on to how to negotiate a dot-com name by </font><a href="http://www.avc.com/a_vc/2011/04/finding-and-buying-a-domain-name.html#comment-193649096"><font size="2">contacting the domain owner cold</font></a><font size="2">.</font></p>
<p><font size="2">Here&#8217;s the deal. The only domain name that matters for your startup is .com. Dotcoms got their name in the 90s because they represent business. Dot-com is the money TLD. Even companies like del.icio.us and bit.ly eventually had to buy their dot-com counterparts. There&#8217;s just too much mindshare about .com.</font></p>
</blockquote>
<p>With domains, it’s “fake it till you make it”, so if your startup is successful with a .ly, .it, .us, or whatever, that’s great, but know that you’ll have to break down and get a name-appropriate dot-com once your business blows up.&#160; One exception is short URLs. When going short, dropping one character and having that .co, .ly or similar is nice to have. I’ve got rdpt.co.</p>
<p>Now <a href="http://www.dotcomornothing.com/">go get yourself</a> a “fresh from the oven” dot-com!</p>
<p><strong>     <br />Next post:</strong> <a href="http://www.startupnextdoor.com/2011/11/how-to-cache-php-sessions-in-membase/">How to Cache PHP Sessions in Membase</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.startupnextdoor.com/2011/08/just-launched-dot-com-or-nothing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using LegalZoom to Set Up your Delaware LLC</title>
		<link>http://www.startupnextdoor.com/2011/08/using-legalzoom-to-set-up-your-delaware-llc/</link>
		<comments>http://www.startupnextdoor.com/2011/08/using-legalzoom-to-set-up-your-delaware-llc/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 15:40:01 +0000</pubDate>
		<dc:creator>jwasham</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Tools & Resources]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[legal]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://www.startupnextdoor.com/2011/08/using-legalzoom-to-set-up-your-delaware-llc/</guid>
		<description><![CDATA[This is Part III of the Delaware LLC series. Start series here. OK, this is where the real action happens. Once you’ve got your business and personal accounts separated, it’s time to take the plunge and get your LLC.&#160; There are any number of companies that would jump to help you: The Company Corporation and [...]]]></description>
			<content:encoded><![CDATA[<h3>This is Part III of the Delaware LLC series. Start series <a href="http://www.startupnextdoor.com/2011/07/protect-your-startup-with-a-delaware-llc/">here</a>.     </p>
</h3>
<p><img style="margin: 10px auto; display: block; float: none" title="LegalZoom Logo" alt="LegalZoom Logo" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/legalzoom-logo.jpg" width="401" height="84" /></p>
<p>OK, this is where the real action happens. Once you’ve got your business and personal accounts separated, it’s time to take the plunge and get your LLC.&#160; There are any number of companies that would jump to help you: <a href="http://www.incorporate.com/">The Company Corporation</a> and <a href="http://www.legalzoom.com/">LegalZoom</a> are just two.&#160; But since I’ve had good experience with LegalZoom in the past I used them.</p>
<p>I’ll guide you through the whole process, which takes about 30 minutes.&#160; Let’s go!</p>
<p><span id="more-565"></span>
<p>Whether you’re here to incorporate or do an LLC, they can handle either, and for just about every state. But for the purposes of this, we’re going with a Delaware LLC.</p>
<h4>Step 1:</h4>
<p>Get to LegalZoom’s LLC <a href="http://www.legalzoom.com/limited-liability-company/limited-liability-company-overview.html" target="_blank">start page</a>.</p>
<p>There are <a href="http://www.legalzoom.com/limited-liability-company/limited-liability-company-pricing.html">three packages</a> you can choose, but you don’t have to worry about picking which until checkout.&#160; There’s something here for everyone from the budget-conscious to the impatient high-roller.&#160; I chose the middle package (Standard), because I wasn’t in a huge hurry, and because I’m a sucker for fancy stuff like leather-looking binders and company seals:</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="LegalZoom &quot;standard&quot; package swag" border="0" alt="LegalZoom &quot;standard&quot; package swag" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/imageProductDetailLLC.jpg" width="407" height="295" /></p>
<p>Before we go too much further, here’s a rundown of the price I paid for the whole deal:</p>
<p><img style="background-image: none; border-right-width: 0px; margin: 0px 0px 0px 10px; padding-left: 0px; padding-right: 0px; display: inline; float: right; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Cost rundown for Delaware LLC" border="0" alt="Cost rundown for Delaware LLC" align="right" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-shot-9a.png" width="248" height="312" /></p>
<p>I chopped off the part where it states that the purchase price is tax deductible, subject to IRS limitations.&#160; Also, if you are a little queasy on the total, they offer an installment plan over 2 months.&#160; It also mentioned that a typical lawyer would charge $1839 for a LLC. Wowzers.&#160; Anyway, enough with narrow filler. On with the show.</p>
<p>I’ll hit on some of the screens you’ll see and give you some extra info on what they are asking. The little help parts on the forms were quite helpful in making informed decisions about which paths to take.</p>
<h4>Step 2:</h4>
<p>I won’t go over every screen (although almost all are here), but some key ones.</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="LLC membership and units of share" border="0" alt="LLC membership and units of share" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-shot-1.png" width="425" height="251" /></p>
<p>The answers you see above are my answers, and not necessarily the defaults. See the “How did most people answer this question?” parts? Those were helpful, but I sometimes went against the wisdom of the crowd.&#160; The main question here that I had to think on was whether to use percentage for membership share or business units. Business units are arbitrary and not tied to a dollar amount.&#160; So you could express 2 members sharing 50/50 ownership by 50% each, or in terms of half the business units. I went with business units since I viewed them like shares, and are easier to divide in large numbers or small numbers without needing to go into 5 decimal places.&#160; I think in the big picture it may not matter as much, but do your own research to see what works best for you.</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Business units and initial investment" border="0" alt="Business units and initial investment" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-shot-2.png" width="427" height="252" /></p>
<p>On this screen where you add members, enter your initial investment in the LLC, and what percentage of the business, or how many business units it represents. Here I chose one million business units as the entire business unit pool, since I am the only member.&#160; You can choose the initial size of the business unit pool at whatever you like, but I chose to go large on the number, since I view them as shares.</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Me = CEO" border="0" alt="Me = CEO" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-shot-4.png" width="421" height="170" /></p>
<p>I decided to go with officers, and as such crowned myself CEO.&#160; That’s right.</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Ownership decisions" border="0" alt="Ownership decisions" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-shot-5.png" width="427" height="395" /></p>
<p>Below the officers you must define rules on how decisions for the company will be made, and who the IRS contact will be.&#160; Think hard about the decision on how ownership interests will be handled.&#160; As soon as you add one more member to your LLC, this decision could make or break you.&#160; And don’t get too hung up on getting everything perfect here. You can change these my amending your company articles later, but I wanted to have it solid from the beginning.</p>
<h4>Step 3: Taxation and the EIN    <br /></h4>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="LLC taxation questions" border="0" alt="LLC taxation questions" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-shot-6.png" width="421" height="376" /></p>
<p>These next questions determine how you wish your LLC to be taxed.&#160; The big question is if you want to be taxed as a sole proprietor, which I do for simplicity’s sake, and so I don’t contribute too much profit to Uncle Sam.</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="EIN questions" border="0" alt="EIN questions" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-shot-7.png" width="415" height="386" /></p>
<p>The questions above pertain to the SS-4.&#160; I decided in an earlier step to spend an extra $30 and have LegalZoom prepare my SS-4 form, which is how you get your EIN (Employer Identification Number) which acts kind of like your company’s Social Security number.&#160; It turns out that you don’t really need an SS-4 for requesting it since I ended up requesting the EIN over the phone with the IRS, but you’ll still need your signed and dated SS-4 in your records. And it also makes it easier to request the EIN over the phone since they will ask you questions from the form.&#160; Nice to have it handy so you don’t fumble on the phone with the IRS.</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Primary business activity: Internet services" border="0" alt="Primary business activity: Internet services" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-shot-8.png" width="305" height="69" /></p>
<p>That’s a short one, also pertains to the SS-4.</p>
<h4>Step 4: Pay Up</h4>
<p>Pick the <a href="http://www.legalzoom.com/limited-liability-company/limited-liability-company-pricing.html" target="_blank">package you want</a> and lay your money down. This was the total for the “Standard” package with overnight delivery and Tax ID number form preparation.</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Grand Total: $480.95" border="0" alt="Grand Total: $480.95" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-shot-9.png" width="369" height="109" /></p>
<p>Post-pay instructions:</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Post-order instructions" border="0" alt="Post-order instructions" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-shot10.png" width="314" height="365" /></p>
<p>There is a bit of time built in to the delivery process, since LegalZoom must prepare papers for the Delaware Secretary of State and send and get approval.&#160; See the 35 days above? If it really took that long the overnight shipping might have been a waste, but maybe I was lucky because it didn’t take long at all.&#160; Check out the status page:</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="LegalZoom delivery timeline" border="0" alt="LegalZoom delivery timeline" src="http://www.startupnextdoor.com/wp-content/uploads/2011/08/Screen-Shot12.png" width="431" height="242" /></p>
<p>Was ordered July 7th.&#160; Took only 14 days to process and was delivered on the fourteenth day. So I don’t feel too dumb for paying for overnight.&#160; Go LegalZoom!</p>
<h4>Step 5: Aftermath</h4>
<p>Once you get the package from LegalZoom there will be a few things to sign and you’ll need to get on the horn and call the IRS to get your EIN.&#160; That takes about 10 minutes, mostly wait time on hold.&#160; Once you get your EIN, it’s immediately effective.&#160; Now you’re in business!</p>
<p>At this point, you can set up your business account. Your bank will need your copy of the letter from Delaware Secretary of State showing that your LLC was recorded.&#160; LegalZoom will send you this with your packet. If you get your Delaware LLC through LegalZoom, you’ll need to call LegalZoom’s business assistance number and request a “bridge letter”. This letter connects you, your LLC, and your registered agent so that your bank will know that you are a representative of your LLC.&#160; The reason they need this is because they will check the Delaware Secretary of State’s <a href="https://delecorp.delaware.gov/tin/GINameSearch.jsp">website and do an entity search</a>.&#160; Since LegalZoom is responsible for maintaining your registered agent, the registered agent will show up in this search, and not your name.&#160; This bridge letter fills in the gaps by connecting you with the business.&#160; They will email it to you soon after as an attachment.&#160; Print it out and take it to the bank.</p>
<p><strong>Note:</strong> Keep in mind that LegalZoom will set you up with a Delaware registered agent, and will bill you $159 per year a month later and every year afterwards on the anniversary of your LLC’s inception.     </p>
<p>I hope you enjoyed this short series. I hope it helps many of you in protecting yourselves and also legitimizing your business in the business world.&#160; Now let’s kick some tail.    </p>
<p><strong>Next post:</strong> <a href="http://www.startupnextdoor.com/2011/08/dont-worry-about-the-3-percent/">Don’t Worry About the 3 Percent</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.startupnextdoor.com/2011/08/using-legalzoom-to-set-up-your-delaware-llc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protect your Startup with a Delaware LLC</title>
		<link>http://www.startupnextdoor.com/2011/07/protect-your-startup-with-a-delaware-llc/</link>
		<comments>http://www.startupnextdoor.com/2011/07/protect-your-startup-with-a-delaware-llc/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 16:02:50 +0000</pubDate>
		<dc:creator>jwasham</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Tools & Resources]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[legal]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://www.startupnextdoor.com/2011/07/protecting-your-startup-with-a-delaware-llc/</guid>
		<description><![CDATA[Part I: Why you need one, and your options This is the first of a three-part series on how to set your startup with a Delaware LLC. I recently did this, and will guide you through the process. Let’s get started. Sole Proprietorships are good if you are very small When you&#8217;re first starting your [...]]]></description>
			<content:encoded><![CDATA[<h3><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="ReadyPrompt, LLC" border="0" alt="ReadyPrompt, LLC" src="http://www.startupnextdoor.com/wp-content/uploads/2011/07/IMAG1096.jpg" width="416" height="164" /></h3>
<h3>Part I: Why you need one, and your options</h3>
<p>This is the first of a three-part series on how to set your startup with a Delaware LLC. I recently did this, and will guide you through the process. Let’s get started.</p>
<h4>Sole Proprietorships are good if you are very small</h4>
<p>When you&#8217;re first starting your business and you&#8217;re making a few bucks, you don&#8217;t have to worry too much about getting sued. For one, you may only have a few customers, you&#8217;re making them happy, and they are paying you. But as time goes on and your customer base grows, it&#8217;s realistic to expect that something will go wrong.</p>
<p><span id="more-541"></span>Perhaps you host websites for businesses and you have a few hours of downtime due to an outage or something similar outside your control. Or perhaps you infringe on a patent you didn&#8217;t know existed. Or you lose a customer&#8217;s data that they deemed vital and irreplaceable. By damaging others, even in ways you may consider insignificant, you open yourself up to the greater possibility of a lawsuit.
<p>If your business is a sole proprietorship and your business is sued, the judge can go beyond the assets of the business and a judgment can extend into your personal income and savings. You could lose every penny you have, and perhaps even future earnings. A judgment that your business funds can&#8217;t cover could even mean having to sell your car or home. The reason a sole proprietorship is so weak in terms of protecting your assets is that a sole proprietorship, by its name, indicates that you are the sole owner. That includes sole owner of the liability and debt. In addition, whether your sole proprietorship&#8217;s bank account is intertwined with your personal account or not is irrelevant. The business is all you and that&#8217;s all the judge will see. In a sole proprietorship there is no legal distinction between the owner and the business.</p>
<h4>Enter corporations and LLCs</h4>
<p>Once you move into the realms of corporations and LLCs, the business transforms into its own entity in the eyes of the law. It is separated from you, and is taxed appropriately. <em>There is a work-around coming ahead, so don’t let the tax thing scare ya.</em></p>
<p>Both corporations and LLCs protect their investors/shareholders/members from liability should the company become a target of litigation.</p>
<h5>Corporations</h5>
<p>Read more on <a href="http://en.wikipedia.org/wiki/Corporation">Corporations at Wikipedia</a>.</p>
<p><strong>C-Corp</strong></p>
<p>A C corporation has the advantage of having multiple levels of stock: preferred, common, etc.&#160; There is no limit on the number of members who can join the company as shareholders. Profits made by the C-Corp are taxed separately from dividends paid to shareholders.&#160; Therefore, the corporation is taxed on profits, then the dividends are paid to shareholders, who then pay capital gains taxes on the dividends. This is referred to by some as double-taxation.</p>
<p>C Corporations are typically a better fit than LLCs for startups seeking investors such as venture capitalists and angels, due to the flexible share types. You could always convert to a corporation from an LLC if needed.</p>
<p><strong>S-Corp</strong></p>
<p>In contrast to a C-Corp, an S corporation is not subject to income tax. The shareholders pay tax on their share of the profits. This is similar to an LLC from a tax point of view.</p>
<p>S Corporations can only have up to 100 members and one class of stock.</p>
<h5>LLC (Limited Liability Company)</h5>
<p>A Limited Liability Company, or LLC, is a special type of business that can have one or many members with voting privileges in the company. There is no limit on the number of members, and depending on the state the LLC was formed, members could be individuals, corporations, and partnerships.&#160; Each member is granted either a percentage of the company or a share of the total business units. I’ll discuss business units in part three of this series. An LLC has the advantage of pass-thru taxation. It can be taxed like a corporation, partnership, or even as a sole proprietorship, where the taxes are paid easily on the single owner’s personal tax form. The method is declared on form <a href="http://www.irs.gov/pub/irs-pdf/fss4.pdf">SS-4</a> when applying for an EIN (Employer Identification Number) from the IRS (and if you wish your LLC to be taxed like a corporation, file form <a href="http://www.irs.gov/pub/irs-pdf/f8832.pdf">8832</a>). More on this also in part three.</p>
<p>LLCs also have it easy compared to corporations as far as the paperwork and maintenance of the business. Read more on <a href="http://en.wikipedia.org/wiki/Limited_liability_company">LLCs at Wikipedia</a>.</p>
<p><strong>     <br />Why Delaware?</strong></p>
<p><img style="margin: 0px 0px 0px 5px; display: inline; float: right" title="Great Seal of the State of Delaware" alt="Great Seal of the State of Delaware" align="right" src="http://www.startupnextdoor.com/wp-content/uploads/2011/07/seal2.png" width="240" height="240" />Delaware LLCs (as more and more states do nowadays) allow for single-person membership.&#160; In addition, under the business-favorable Delaware LLC law, LLCs do not have to have annual member meetings. And the paperwork needed to maintain the business is minimal.</p>
<p>Some states such as California have steep annual fees to maintain an LLC. The Delaware LLC franchise fee is only $250 per year.</p>
<p>To maintain a Delaware presence, should you live in some other part of the country, you will need a registered agent. Fees for this can range from around $100 per year to close to $300 per year depending on the agent you use. The agency I’m with costs $159/year.&#160; For this you get an agent who will contact you should any paperwork come from the Delaware government or in the event your business is sued. They are your business’ representative in Delaware.</p>
<p>Also, Delaware has no sales tax or intangible personal property tax.&#160; Delaware also allows the owners and managers of an LLC to remain anonymous.</p>
<p>Whether you decide to go Corporation (C or S) or LLC, you’ll find that Delaware is a favorable choice for either.</p>
<p><span style="font-size: x-small"><strong>Legal disclaimer:</strong> I’m not your lawyer and I’m not your mom, and you shouldn’t believe everything you read on the internet. Make sure you do your own research.&#160; And eat your vegetables.</span></p>
<p>In the next post, I’ll go over the first step in protecting your personal assets &#8211; separating all your personal accounts from your business. It’s vital to do it and do it right, or you may forfeit the legal protections that LLCs and corporations offer.</p>
<p><strong>     <br />Next post:</strong> <a href="http://www.startupnextdoor.com/2011/07/separate-your-business-and-personal-accounts/">Separate your Business and Personal Accounts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.startupnextdoor.com/2011/07/protect-your-startup-with-a-delaware-llc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ditching GoDaddy for Hover</title>
		<link>http://www.startupnextdoor.com/2010/11/ditching-godaddy-for-hover/</link>
		<comments>http://www.startupnextdoor.com/2010/11/ditching-godaddy-for-hover/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 22:08:41 +0000</pubDate>
		<dc:creator>jwasham</dc:creator>
				<category><![CDATA[Tools & Resources]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://www.startupnextdoor.com/2010/11/ditching-godaddy-for-hover/</guid>
		<description><![CDATA[After using GoDaddy for about 4 years, I ditched them and switched all my domains to Hover. Why? GoDaddy is the Hooters of the domain registrar world. Their self-controversial “too hot for TV” ads are a pathetic attempt to stand out in the competitive domain registrations space. I’m not their target market because I look [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hover.com"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Hover.com" border="0" alt="Hover.com" src="http://www.startupnextdoor.com/wp-content/uploads/2010/11/cap_62.png" width="424" height="290" /></a></p>
<p>After using <a href="http://www.godaddy.com/">GoDaddy</a> for about 4 years, I ditched them and switched all my domains to <a href="http://www.hover.com/">Hover</a>.</p>
<p><span id="more-529"></span><br />
<h3>Why?</h3>
<p>GoDaddy is the Hooters of the domain registrar world. Their self-controversial “too hot for TV” ads are a pathetic attempt to stand out in the competitive domain registrations space. I’m not their target market because I look for quality, and <a href="http://videos.godaddy.com/girls.aspx?ci=9157">sex appeal</a> does not compare to quality. I don’t want to support GoDaddy for the same reason I don’t go to Hooters or bikini barista drive-thrus. You may have really good hot wings or coffee, but I don’t want to support or encourage that type of marketing. Let your product speak for itself, without the sexy gimmick.</p>
<p>I was even going to use a screenshot to show how ridiculous their marketing is, but I’d rather promote <a href="http://www.hover.com/">Hover</a>.</p>
<p>GoDaddy adds so many extra services to the checkout process, the vast majority of which I would never need, and makes me uneasy that I’ll add something on accident and regret it.&#160; The only additional service I ever used beyond domain registration was the private registrations through <a href="https://www.domainsbyproxy.com">Domains By Proxy</a>, which <a href="http://www.startupnextdoor.com/2010/03/anonymous-domain-registration/">I profiled in a separate post</a>. DBP is good stuff.</p>
<h3>Hover.com</h3>
<p>Hover is a nice little oasis in the polluted world of domain registrars.&#160; Their service is simple and it works.</p>
<p>I first heard about them on <a href="http://www.twit.tv/">This Week in Tech</a> (TWiT).</p>
<p>For $25, they will handle all your domain transfers for you, whether you have 1 domain or 1000. For each domain you transfer, your initial registration fee is only $10 each.&#160; For that, you get the domain registration PLUS anonymous registration service.</p>
<p>And it’s anonymous registration service that you don’t need to make another account for on another site. It’s built-in to Hover.com.</p>
<p>For all other domains you register afterwards, the price is $15/year, which includes anonymous registration.&#160; With GoDaddy, my domain renewals were $18.47 per year ($9.48 for domain registration, and $8.99 for anonymous registration). So you actually save money with Hover.com.</p>
<blockquote><p><font size="4">Use my coupon code “<strong>ReadyPrompt</strong>” and save <strong>10%</strong>: </font><a title="http://hover.com/ReadyPrompt" href="http://hover.com/ReadyPrompt"><font size="4">http://hover.com/ReadyPrompt</font></a></p>
</blockquote>
<p>With Hover.com, you get complete DNS and Name Server control.&#160; Check out the nice UI (<em>update: Summer 2011, they made the DNS UI even better, not as pictured</em>):</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="DNS UI" border="0" alt="DNS UI" src="http://www.startupnextdoor.com/wp-content/uploads/2010/11/cap_63.png" width="425" height="312" /></p>
<p>The customer service ay Hover is outstanding. When you call, you get a person answering the phone.</p>
<p>The gent who handled my domain transfers recreated all of the DNS and MX records, switched the name servers, and filled in all of the contact records.</p>
<h3>The “Hover”</h3>
<p>Hover also offers a free service on all of your domains: the ability to create a “Hover”.&#160; I’m still trying to wrap my head around the concept, but it has to do with forwarding. You can create a subdirectory on your domain that will go to another location, or make your domain forward to an entirely different domain altogether. Some nice DNS magic.</p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="cap_65" border="0" alt="cap_65" src="http://www.startupnextdoor.com/wp-content/uploads/2010/11/cap_65.png" width="430" height="405" /></p>
<h3>But transferring domains is expensive…</h3>
<p>I understand.&#160; I went ahead and did all of mine at once, and now I have all of my domains set until 2012.&#160; So I won’t have to worry about it next year.</p>
<p>Remember that when you transfer you’re also adding a year to the expiration.</p>
<p>You can transfer one at a time as your domains get close to expiration, but I was just ready for a change.    </p>
<p><strong>Next post:</strong> <a href="http://www.startupnextdoor.com/2011/07/protect-your-startup-with-a-delaware-llc/">Protect your Startup with a Delaware LLC</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.startupnextdoor.com/2010/11/ditching-godaddy-for-hover/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merchandising your Startup</title>
		<link>http://www.startupnextdoor.com/2010/08/merchandising-your-startup/</link>
		<comments>http://www.startupnextdoor.com/2010/08/merchandising-your-startup/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 19:02:04 +0000</pubDate>
		<dc:creator>jwasham</dc:creator>
				<category><![CDATA[Tools & Resources]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://www.startupnextdoor.com/2010/08/merchandising-your-startup/</guid>
		<description><![CDATA[Whether your site is a content site, an e-commerce portal, a museum site, or something else completely, you’ll likely have fans.&#160; Fans come in two types: sneezers and non-sneezers.&#160; The word “sneezer” comes from Seth Godin’s Purple Cow.&#160; A sneezer is someone who wants to tell others about your site or product.&#160; Usually because there [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Yogurt Doll" border="0" alt="Yogurt Doll" src="http://www.startupnextdoor.com/wp-content/uploads/2010/08/yogurtDoll1.jpg" width="339" height="220" /></p>
<p>Whether your site is a content site, an e-commerce portal, a museum site, or something else completely, you’ll likely have fans.&#160; Fans come in two types: sneezers and non-sneezers.&#160; The word “sneezer” comes from Seth Godin’s <a href="http://www.sethgodin.com/purple/">Purple Cow</a>.&#160; A sneezer is someone who wants to tell others about your site or product.&#160; Usually because there is something remarkable to talk about.</p>
<p> <span id="more-508"></span>
</p>
<p>Furthermore (from my brain now), sneezers like to have a way to spur that conversation.&#160; This is where merchandising comes in.&#160; By selling shirts, hats, shoes, and coffee mugs, you provide a way for others to get your product name out there.</p>
<h3>You Won’t get Rich from T-shirts</h3>
<p><img style="border-right-width: 0px; margin: 0px 10px 10px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Droid Factory" border="0" alt="Droid Factory" align="left" src="http://www.startupnextdoor.com/wp-content/uploads/2010/08/droidbox1th.jpg" width="197" height="168" /> Unless you’re George Lucas, you’re not going to get rich from merchandising.&#160; Even if you come up with some hit meme, the margins you’ll get from the t-shirts, hats, and thongs won’t get you far.&#160; It’s just nice to get a check now and then when you least expect it.</p>
<h3><a href="http://astore.amazon.com/">Amazon aStores</a></h3>
<p>A few years ago, I tried selling products (Korean keyboards and keyboard stickers) and it just didn’t pay off.&#160; The margins were too small to keep it up.</p>
<p>A good alternative is using Amazon aStores.&#160; The service allows you to set up a store at Amazon with your branding, with products you choose.&#160; The nice thing about it is that it takes care of itself.&#160; You don’t need to worry about shipping products or handling returns, and you get a small affiliate amount from each sale.</p>
<p>For my <a href="http://astore.amazon.com/zkorean-20">aStore at zKorean</a>, I set up some pages, each with keywords and categories of products that I want to display.&#160; Over time, Amazon will load in new products that match, meaning you don’t need to go in regularly to add more.&#160; It’s just automatically managed for you.</p>
<h3><a href="http://www.zazzle.com/">Zazzle</a></h3>
<p><a href="http://www.zazzle.com/android_black_shoe_shoes-167849606791851016"><img style="border-right-width: 0px; margin: 0px 0px 0px 10px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Android Shoes" border="0" alt="Android Shoes" align="right" src="http://www.startupnextdoor.com/wp-content/uploads/2010/08/cap_115.png" width="249" height="188" /></a> </p>
<p>I’m not going to list all the things you can make at Zazzle, because it’s way too many.&#160; But check it out.&#160; Yes, you can make Keds, but also posters, binders, postage, calendars, and so much more.</p>
<h3><a href="http://www.cafepress.com/">Cafepress</a></h3>
<p><a href="http://www.cafepress.com/zkorean.36544269"><img style="border-right-width: 0px; margin: 0px 10px 10px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="cap_116" border="0" alt="cap_116" align="left" src="http://www.startupnextdoor.com/wp-content/uploads/2010/08/cap_116.png" width="165" height="162" /></a> I use <a href="http://www.cafepress.com/zkorean">Cafepress for zKorean</a>, and I did something a little different.&#160; Yes there are zKorean shirts and mugs, but also <a href="http://www.cafepress.com/+tenets_of_tae_kwon_do_tshirt,36542856">items for TaeKwonDo</a> (many zKorean visitors are looking for TKD vocabulary).&#160; So even if your site isn’t anything too awesome to sneeze about, perhaps you can find something in it worth merchandising.</p>
<p>Cafepress also has a wide array of cool stuff to slap your design on: keepsake boxes, beer steins, license plate frames, and more.</p>
<p>And the hoodies are warm.&#160; That’s what I’m wearing on the <a href="http://www.startupnextdoor.com/about/">About SND</a> page.</p>
<h3>Size Matters</h3>
<p>An important point I must make is that your logo needs to be VERY large and high-quality if you want it to look good on printed matter.&#160; For more details, read this <a href="http://www.startupnextdoor.com/2010/03/going-big-with-your-logo/">oldie</a>.</p>
<p><strong>Next post:</strong> <a href="http://www.startupnextdoor.com/2010/10/what-ive-been-up-to-saving-advertising/">What I’ve Been Up To</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.startupnextdoor.com/2010/08/merchandising-your-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Publish your Email the Right Way</title>
		<link>http://www.startupnextdoor.com/2010/08/publish-your-email-the-right-way/</link>
		<comments>http://www.startupnextdoor.com/2010/08/publish-your-email-the-right-way/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 19:09:48 +0000</pubDate>
		<dc:creator>jwasham</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Tools & Resources]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://www.startupnextdoor.com/2010/08/publish-your-email-the-right-way/</guid>
		<description><![CDATA[You may not be aware that placing your email address on your “contact us” page is a sure-fire way to get yourself truckloads of spam.&#160; As we speak, there are bots traversing the web, looking for email addresses that have been published publicly on web pages.&#160; These email addresses (and items that resemble email addresses) [...]]]></description>
			<content:encoded><![CDATA[<p>You may not be aware that placing your email address on your “contact us” page is a sure-fire way to get yourself truckloads of spam.&#160; As we speak, there are bots traversing the web, looking for email addresses that have been published publicly on web pages.&#160; These email addresses (and items that resemble email addresses) are stored and sold to spammers.</p>
<p> <span id="more-489"></span>
</p>
<p><strong>So how do you avoid this?</strong></p>
<p>The trick is to display your email in a way that the user viewing the site sees the email address and can click it or copy it into their email program, while robots only see a jumble of characters that to a machine does not look like an email address.</p>
<p>There are a number of sites to help you.&#160; My favorite is David Grayson’s Email Hider: <a title="http://www.davidegrayson.com/emailhider/" href="http://www.davidegrayson.com/emailhider/">http://www.davidegrayson.com/emailhider/</a></p>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="David Grayson’s Email Hider" border="0" alt="David Grayson’s Email Hider" src="http://www.startupnextdoor.com/wp-content/uploads/2010/08/cap_1121.png" width="330" height="101" /> </p>
<p>What it will do is replace some characters with HTML entities, which are readable by your browser and will display as normal characters.&#160; The probability that a character in your email will be replaced is determined by the second number.&#160; The closer it is to 1, the more characters will be replaced.&#160; 0.6 is a good balance.</p>
<p>There are other sites, too.&#160; You can find them using a search for “<a href="http://www.bing.com/search?q=email+obfuscator&amp;go=&amp;form=QBLH&amp;qs=n&amp;sk=&amp;sc=1-16">email obfuscator</a>”.</p>
<p>I don’t recommend making an image of your email address because then your visitors will have to copy it visually and try not to make mistakes, which is common in long email addresses or noisy images where your email address does not appear clearly.</p>
<h3>An Extra Note</h3>
<p>Avoid using certain email addresses with your domain. Very common addresses like info@<em>yourdomain</em>, webmaster@<em>yourdomain</em>, and sales@<em>yourdomain</em> are already built-in to spam lists.&#160; It’s better to use something friendly but also less common.&#160; Let’s get original and creative, yes?</p>
<p><strong>Next post:</strong> <a href="http://www.startupnextdoor.com/2010/08/when-your-site-is-in-a-bad-neighborhood/">when your server is in a bad neighborhood</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.startupnextdoor.com/2010/08/publish-your-email-the-right-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What the Fax?</title>
		<link>http://www.startupnextdoor.com/2010/07/what-the-fax/</link>
		<comments>http://www.startupnextdoor.com/2010/07/what-the-fax/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 21:15:44 +0000</pubDate>
		<dc:creator>jwasham</dc:creator>
				<category><![CDATA[Tools & Resources]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://www.startupnextdoor.com/2010/07/what-the-fax/</guid>
		<description><![CDATA[In this day and age, faxes are still surprisingly widely used.&#160; Should you have a fax machine to run your business?&#160; Not necessarily.&#160; I’ve got the solution to all your faxing needs and it’s not expensive. The complete fax solution is a combination of 3 things: eFax, a scanner, and your local Kinko’s. Incoming Faxes [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-right-width: 0px; margin: 0px auto 10px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Boy and Fax" border="0" alt="Boy and Fax" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/3650366475_d10d634d55_m.jpg" width="240" height="244" /> In this day and age, faxes are still surprisingly widely used.&#160; Should you have a fax machine to run your business?&#160; Not necessarily.&#160; I’ve got the solution to all your faxing needs and it’s not expensive.</p>
</p>
<p> <span id="more-485"></span>
</p>
<p>The complete fax solution is a combination of 3 things: eFax, a scanner, and your local Kinko’s.</p>
<h3>Incoming Faxes</h3>
<p><img style="border-right-width: 0px; margin: 0px 15px 0px 10px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="eFax" border="0" alt="eFax" align="right" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_38.png" width="130" height="75" /> So a client or customer wants to send you a fax and they will not be swayed.&#160; Go to eFax and get a <a href="http://www.efax.com/efax-free">free account</a>.&#160; The fax number they provide for free will probably not be a local number for your startup, but since you’re not paying for phone charges, it’s not a problem.</p>
<p>Publish your fax number on your contact page, and once someone sends you a fax you’ll get an email from eFax.&#160; In order to view your fax, you’ll need to <a href="http://www.efax.com/products/internet-fax">download the viewer</a> they provide.</p>
<h3>Outgoing</h3>
<p>When it comes to outgoing faxes, your client may say to fax an item, but you can always offer to send them a PDF by email.&#160; Since PDF is a ubiquitous and user-friendly format, the customer will most likely prefer it.</p>
<p>This scenario is common when you need to print, sign and fax back.&#160; In this situation, I print from my laser printer, sign it, scan it using my scanner and save it and email as a PDF.&#160; Many scanners these days include software that allows you to save scans in PDF format (even multiple pages).</p>
<p><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16838111024"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Canoscan LiDE 200" border="0" alt="Canoscan LiDE 200" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/mid2924b010aa.jpg" width="425" height="189" /></a> This scanner does the trick: the <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16838111024">Canoscan LiDE 200</a>.&#160; It has a small footprint (9.9 x 14.4 inches) and is even powered by USB cable so it doesn’t hog an outlet on your power strip.&#160; It’s small and thin enough to fit in a backpack or briefcase and take with you.</p>
<p>If they stand adamant that only a fax will do, head over to your local Kinko’s and spend $5-$10 (depending on length) and make your customer happy.</p>
<p><img style="border-right-width: 0px; margin: 0px 15px 0px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="myfax" border="0" alt="myfax" align="left" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_39.png" width="216" height="68" /> Another option is to send that fax via email.&#160; It leaves your email box and ends up rolling out of your customer’s fax machine.&#160; <a href="http://www.myfax.com">MyFax</a> offers this service for $10/month and it’s a good option for road warriors.</p>
<div><a href="http://www.flickr.com/photos/alyssafilmmaker/3650366475/">photo courtesy alyssafilmmaker</a> (<a href="http://creativecommons.org/licenses/by/2.0/deed.en">CC BY/SA</a>)</div>
<p><strong>Next post:</strong> <a href="http://www.startupnextdoor.com/2010/08/publish-your-email-the-right-way/">publish your email the right way</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.startupnextdoor.com/2010/07/what-the-fax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Professional Design at a Bargain</title>
		<link>http://www.startupnextdoor.com/2010/07/professional-design-at-a-bargain/</link>
		<comments>http://www.startupnextdoor.com/2010/07/professional-design-at-a-bargain/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 20:18:57 +0000</pubDate>
		<dc:creator>jwasham</dc:creator>
				<category><![CDATA[Tools & Resources]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://www.startupnextdoor.com/2010/07/professional-design-at-a-bargain/</guid>
		<description><![CDATA[Don’t use photos of people pointing at computers You’ve come up with a brilliant startup idea, and perhaps have even completed the site, but at this point it’s just working wireframes.&#160; It’s ugly.&#160; It’s time to employ your design skills to make it appeal to people.&#160; But if you’re like me, your design skills are [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-right-width: 0px; margin: 0px auto; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Don’t use photos of people pointing at computers" border="0" alt="Don’t use photos of people pointing at computers" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_35.jpg" width="272" height="210" /> <strong><font size="2" face="Arial">Don’t use photos of people pointing at computers</font></strong></p>
<p>You’ve come up with a brilliant startup idea, and perhaps have even completed the site, but at this point it’s just working wireframes.&#160; It’s ugly.&#160; It’s time to employ your design skills to make it appeal to people.&#160; But if you’re like me, your design skills are not up to the task?&#160; So what do you do?&#160; Hire a design firm at thousands of dollars?&#160; That could work but it kind of goes against the cheapskate theme I have going here.&#160; What you need are some attractive, ready-made site designs!</p>
</p>
<p> <span id="more-474"></span>
</p>
<h3><a href="http://themeforest.net">ThemeForest</a></h3>
<p>For site themes, there are hundreds of really bad theme sites and thousands of horrible themes.&#160; ThemeForest is a shining island in a sea of mediocrity.&#160; ThemeForest offers HTML and PSD-based site themes, and the quality is surprisingly good. </p>
<p><a href="http://themeforest.net"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="ThemeForest" border="0" alt="ThemeForest" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_36.png" width="419" height="294" /></a>&#160; <br />For the quality, you’ll pay surprisingly little.&#160; Themes range from $15 to about $35, and for that you will be getting a theme that has been used on a few other sites, but it will look attractive and will suffice until you’re raking in megabucks and can afford custom work. </p>
<p>In addition to basic site templates, they also offer almost as many <a href="http://www.wordpress.org">WordPress</a>, themes.&#160; In fact, many times you’ll be able to find a site theme and its matching WordPress theme from the same designer.&#160;&#160; Many times, these WordPress themes are heavy modifications that turn your WordPress blog into a complete content management system.&#160; Pretty amazing stuff.</p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Good stuff" border="0" alt="Good stuff" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/3_about.jpg" width="415" height="291" /></p>
<p>ThemeForest also offers themes for Joomla, Drupal, Magento and even email.</p>
<h3>Shop Locally</h3>
<p>There must be thousands of nascent web designers out there looking for a chance to design a cool website for you and get it on their resume.&#160; It won’t be free (unless they offer), but it will be cheaper than a full-time, experienced web designer.&#160; Checking on Craigslist under <a href="http://seattle.craigslist.org/search/res?query=web+designer&amp;srchType=A">Resumes/Jobs Wanted</a> or your local university or community college are good places to try.&#160; Community colleges tend to have web design classes for college-aged students and adult education, so you’ll find people who are getting their feet wet in Photoshop and other graphics toolkits.</p>
<p>When you’re deciding, take a look at some of the ThemeForest stuff, as well as sites mentioned in these posts:</p>
<ul>
<li><a title="http://net.tutsplus.com/articles/web-roundups/inspiration-character-illustrations-in-website-design/" href="http://net.tutsplus.com/articles/web-roundups/inspiration-character-illustrations-in-website-design/">http://net.tutsplus.com/articles/web-roundups/inspiration-character-illustrations-in-website-design/</a> </li>
<li><a title="http://www.smashingmagazine.com/2010/01/22/35-beautiful-and-effective-ecommerce-websites/" href="http://www.smashingmagazine.com/2010/01/22/35-beautiful-and-effective-ecommerce-websites/">http://www.smashingmagazine.com/2010/01/22/35-beautiful-and-effective-ecommerce-websites/</a> </li>
<li><a title="http://www.smashingmagazine.com/2009/07/30/50-fresh-portfolio-websites-for-your-inspiration/" href="http://www.smashingmagazine.com/2009/07/30/50-fresh-portfolio-websites-for-your-inspiration/">http://www.smashingmagazine.com/2009/07/30/50-fresh-portfolio-websites-for-your-inspiration/</a> </li>
</ul>
<p><font size="3" face="Georgia">You’ll get a good idea of what modern design looks like.&#160; Look for elements like these in your designer’s portfolio.</font></p>
<h3><a href="http://graphicriver.net">GraphicRiver</a></h3>
<p>If you’ve got a good design, but need something to make it look a little more vibrant, a special design element, or just some rock textures, GraphicRiver (a site in the same family as ThemeForest) is an affordable way to fill in the gaps in your design.&#160; The items are quite affordable, and you’ll get $2 off each purchase for using funds in your pre-paid account. </p>
<p><a href="http://graphicriver.net"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="GraphicRiver" border="0" alt="GraphicRiver" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_37.png" width="426" height="294" /></a>&#160; <br />Even if you’re looking for something as simple as a Twitter background, this is a good place to start.&#160; In fact, if you shop around GraphicRiver, you’ll probably discover some elements that resemble elements on this site.&#160; I bought quite a few files and modified them to match my design.</p>
<p><strong>Call for Comment:</strong> Are there sites you recommend for good templates or design elements? What experience have you had with your local web designer?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.startupnextdoor.com/2010/07/professional-design-at-a-bargain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email Marketing and Newsletters, Part II</title>
		<link>http://www.startupnextdoor.com/2010/07/email-marketing-and-newsletters-part-ii/</link>
		<comments>http://www.startupnextdoor.com/2010/07/email-marketing-and-newsletters-part-ii/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 20:14:19 +0000</pubDate>
		<dc:creator>jwasham</dc:creator>
				<category><![CDATA[Tools & Resources]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://www.startupnextdoor.com/2010/07/email-marketing-and-newsletters-part-ii/</guid>
		<description><![CDATA[My last post covered getting your email campaigns out on your own.&#160; Today will cover all-in-one email services.&#160; These services will handle subscribes/unsubscribes, email composition, CAN-SPAM compliance, will keep your email looking consistent across many email clients, send email for you, and keep analytics on opens, bounces, and clicks. I’m not going to go into [...]]]></description>
			<content:encoded><![CDATA[<p>My last post covered getting your email campaigns out on your own.&#160; Today will cover all-in-one email services.&#160; These services will handle subscribes/unsubscribes, email composition, CAN-SPAM compliance, will keep your email looking consistent across many email clients, send email for you, and keep analytics on opens, bounces, and clicks.</p>
<p> <span id="more-464"></span>
<p>I’m not going to go into deep analysis of all these services, because I haven’t used them all.&#160; To be honest, most of this will be truth, half-truth, rumor, and conjecture.&#160; So enjoy.</p>
<h3><a href="http://www.mailchimp.com">MailChimp</a></h3>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="MailChimp" border="0" alt="MailChimp" align="right" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_26.png" width="230" height="74" /> I’ve used MailChimp for a couple of <a href="http://www.zkorean.com">zKorean</a> campaigns.&#160; They have a <a href="http://www.mailchimp.com/features/full_list">massive feature list</a>, way too much to go over here, but I want to mention a few things beyond the list I mentioned at the start of this article.</p>
<h4>Customizable Newsletter Signup Form</h4>
<p>In order to make sure people you send mail to really want mail from you, it’s best to have them opt-in instead of opt-out.&#160; The “Become an Insider” link on this site is a link to my MailChimp signup page: <a title="http://eepurl.com/oaj1" href="http://eepurl.com/oaj1">http://eepurl.com/oaj1</a></p>
<p><a href="http://eepurl.com/oaj1"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="SND Newsletter Signup Form" border="0" alt="SND Newsletter Signup Form" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_22.png" width="271" height="266" /></a></p>
<p>I like it because it mimics aspects of my site, instead of some bland, sterile form.</p>
<h4>Full-featured API</h4>
<p>For the programmer types who want to do everything from the comfort of their own site, the API allows you to sync users, subscribe/unsubscribe users in your campaign lists, and display report data in your own way.</p>
<p> <embed src="http://blip.tv/play/gtRe7bUqAg%2Em4v" type="application/x-shockwave-flash" width="420" height="287" allowscriptaccess="always" allowfullscreen="true"></embed><br />
<h4>Plugins</h4>
<p>Not much of a programmer?&#160; Grab one of the plugins <a href="http://www.mailchimp.com/plugins/">made for your platform</a> (there are many).     </p>
<p><a href="http://www.mailchimp.com/plugins/"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="MailChimp Plugins" border="0" alt="MailChimp Plugins" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_25.png" width="425" height="194" /></a>&#160;</p>
<h4>Pricing</h4>
<p>MailChimp has flexible and affordable pricing plans, whether you send campaigns often or not.&#160; Their pricing plans have you in mind.</p>
<h4>What I don’t like</h4>
<p>The only problem I had was during the email composition portion.&#160; I found myself starting over again a few times.&#160; A friend also has some frustration during creation and expressed that he wanted to go back to <a href="http://www.constantcontact.com">ConstantContact</a>.     </p>
<h3><a href="http://www.constantcontact.com">ConstantContact</a></h3>
<p><a href="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_27.png"><img style="border-right-width: 0px; margin: 0px 0px 0px 15px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="cap_27" border="0" alt="cap_27" align="right" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_27_thumb.png" width="178" height="91" /></a> ConstantContact goes beyond email marketing to include surveys and event marketing.&#160; So once you have a solid list of customers, you can create a complete momentum loop for your business, whereas you get feedback from customers through surveys to help you build better products, and event marketing in order to meet your customers and further your business relationship.</p>
<h4>NutshellMail</h4>
<p>ConstantContact also offers <a href="http://www.constantcontact.com/about-constant-contact/ns/index.jsp">NutshellMail</a>, which sends you an email regularly that contains all mentions of your company or brand across LinkedIn, Twitter, Facebook, and others.</p>
<h4>Pricing</h4>
<p>The pricing plans for ConstantContact are remarkable because they really have the customer in mind, not with a finance spreadsheet in mind.</p>
<p>Pricing plans for email marketing are based on flat monthly rates based on the size of your contact lists.&#160; So you can send as many campaigns as you want without affecting your monthly fee.&#160; And non-profits get a pre-pay discount.&#160; Nice.</p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="ConstantContact Pricing" border="0" alt="ConstantContact Pricing" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_28.png" width="370" height="218" /> </p>
<p>For surveys, pricing is purely on responses received.</p>
<p>For event marketing, you only pay for the number of open events you’re running, and is unlimited on participants. </p>
<blockquote><p>You shouldn&#8217;t be penalized for running a successful, popular, interesting event</p>
</blockquote>
<p>Cool, right?    </p>
<h3><a href="http://madmimi.com">MadMimi</a></h3>
</p>
<p><img style="border-right-width: 0px; margin: 0px 0px 0px 10px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Awwww" border="0" alt="Awwww" align="right" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_30.png" width="158" height="244" /> Was mentioned by Seth Godin, so I’m passing it along.&#160; And you gotta like the about us photo.&#160; I like the feel of this company.&#160; They have developers and owners answering support calls.</p>
<p>The campaign creator is a really nice tool, with an intuitive, easy to use, and <a href="http://madmimi.com/tour/create_send">very pleasing interface</a>.&#160; Their templates are well done and fresh, and won’t make your campaign look frumpy.</p>
<p>And <strong>don’t let the simple site fool you</strong>.&#160; There’s a wealth of analytics, a good API, and <a href="http://madmimi.com/tour/features">mass features</a> that await you.     </p>
<h3><a href="http://myemma.com">Emma</a></h3>
<p><img style="border-right-width: 0px; margin: 0px 0px 0px 10px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Emma" border="0" alt="Emma" align="right" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/SolidCaptureImage9481288.png" width="240" height="77" />Emma is different from all the above in that it’s a custom shop by default.&#160; They design customized email stationery for your business so your campaigns really pop.</p>
<p>Even though it’s custom, <strong>it’s affordable</strong>, and since you’re sending campaigns in order to continue a business relationship, interest your customers, and get them to act, the Emma custom design concept is a smart one.</p>
<p><a href="http://myemma.com/customer-stories/"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Don&#39;t you wish your campaign was hot like me?" border="0" alt="Don&#39;t you wish your campaign was hot like me?" src="http://www.startupnextdoor.com/wp-content/uploads/2010/07/cap_31.png" width="427" height="300" /></a>&#160; <br />Like all these services mentioned, Emma supports your campaign with campaign email distribution, analytics, response tracking, and list management.</p>
</p>
<p><strong>Next post:</strong> <a href="http://www.startupnextdoor.com/2010/07/dont-let-your-startup-get-you-sued/">don’t let your startup get you sued</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.startupnextdoor.com/2010/07/email-marketing-and-newsletters-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

