<?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>CouldBe Studios &#187; tutorials</title>
	<atom:link href="http://www.couldbestudios.com/tag/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.couldbestudios.com</link>
	<description>small business web design and development in Portland Oregon</description>
	<lastBuildDate>Thu, 19 Aug 2010 22:05:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Tutorial: How to Make a Size Selector Control (CSS &#8211; Javascript)</title>
		<link>http://www.couldbestudios.com/web-design/tutorial-how-to-make-a-size-selector-control-css-javascript/</link>
		<comments>http://www.couldbestudios.com/web-design/tutorial-how-to-make-a-size-selector-control-css-javascript/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 00:29:48 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[couldbe studios]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://whatcouldbe.com/blog/?p=68</guid>
		<description><![CDATA[Ever wonder how to make one of those little size selector things that t-shirt sites use in forms? This question came up recently, so here is a (fairly) simple solution for it that doesn&#8217;t rely on images. We&#8217;ll be using a simple text-replacement technique (css), with a little bit of straightforward javascript and a set [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wonder how to make one of those little size selector things that t-shirt sites use in forms?</p>
<p>This question came up recently, so here is a (fairly) simple solution for it that doesn&#8217;t rely on images.</p>
<p>We&#8217;ll be using a simple text-replacement technique (css), with a little bit of straightforward javascript and a set of radio buttons to achieve the desired effect.</p>
<p>Here is the finished product.<br />
<iframe src="http://www.whatcouldbe.com/tutorials/sizeselector/example.htm" height="50" width="200" frameborder="0" framespacing="0"><a href="http://www.whatcouldbe.com/tutorials/sizeselector/example.htm">example</a></iframe></p>
<p><a href="http://www.whatcouldbe.com/tutorials/sizeselector/example.htm">&raquo;example source page</a></p>
<p>first lets take a look at the markup we&#8217;ll be using for this. Since the desired effect is that of a radio button set, we&#8217;ll start there.</p>
<pre style="font-size:1.2em;color:#69c;">
&lt;form name="myform">
   &lt;div class="radios" id="set1">
      &lt;input type="radio" class="hidden" name="test" id="test1" value="SM">
      &lt;label for="test1" onClick="setChecked(this, set1);">SM&lt;/label>

      &lt;input type="radio" class="hidden" name="test" id="test2" value="M">
      &lt;label for="test2" onClick="setChecked(this, set1);">M&lt;/label>

      &lt;input type="radio" class="hidden" name="test" id="test3" value="L" checked>
      &lt;label for="test3" onClick="setChecked(this, set1);" class="checked">L&lt;/label>

      &lt;input type="radio" class="hidden" name="test" id="test4" value="XL">
      &lt;label for="test4" onClick="setChecked(this, set1);">XL&lt;/label>

      &lt;input type="radio" class="hidden" name="test" id="test5" value="2X">
      &lt;label for="test5" onClick="setChecked(this, set1);">2X&lt;/label>
   &lt;/div>
&lt;/form>
</pre>
<p>Here is a fairly simple bit of our form. For this example, all you really need is a radio set with labels. We&#8217;re wrapping the radio set in a div with a class of &#8216;radios&#8217; just to make sure that we don&#8217;t trample over any other styles in our CSS later on. We&#8217;ll also give this an ID so that we can adjust the className of these elements without screwing up other labels you might have in your form</p>
<p>Note: It&#8217;s important that each button has an ID so that the label->for relationship will work correctly.</p>
<p>Most of the activity is going to take place on the labels, since we&#8217;re going to hide the actual radio controls. We&#8217;ll use the onClick event to trigger our little bit of javascript, which will allow us to change the style of the label to reflect that it has been clicked.</p>
<p>Let&#8217;s take a look at that:</p>
<pre style="font-size:1.2em;color:#69c;">
function setChecked(label, container)
	{
	/* clear previous checked status */
	var labels=container.getElementsByTagName('label');
	for(i=0; i&lt;labels.length; i++)
		{
		labels[i].className="unchecked";
		}

	/* set current label to checked */
	label.className="checked";
	}
</pre>
<p>Pretty simple, right? All we&#8217;re doing is looping over the labels in the container and resetting them all to a default class before we set the current label to &#8216;checked&#8217;.</p>
<p>Last, but not least there is some CSS that we&#8217;ll need to use to pull this all together.</p>
<pre style="font-size:1.2em;color:#69c;">
.radios .hidden{
	position:absolute;
	left:-9999px;
	}
</pre>
<p>This is important, we&#8217;re using a simple text-replacement to hide the radio buttons without rendering them inert, since we want to be able to capture the value we&#8217;ve chosen.</p>
<pre style="font-size:1.2em;color:#69c;">
.radios .checked{
	color:#fc0;
	background:#333;
	}
.radios .unchecked{
	color:#000;
	background:#fff;
	}
.radios label{
	border:1px solid #555;
	width:20px;
	height:20px;
	font-size:10px;
	line-height:20px;
	font-family:sans-serif;
	text-align:center;
	background:#fff;
	display:block;
	position:relative;
	float:left;
	margin-right:1px;
	}
</pre>
<p>The rest of that is just styling to make them nice looking little boxes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.couldbestudios.com/web-design/tutorial-how-to-make-a-size-selector-control-css-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handy Dandy Shopify Tutorial for Newbies</title>
		<link>http://www.couldbestudios.com/rants-and-raves/63/</link>
		<comments>http://www.couldbestudios.com/rants-and-raves/63/#comments</comments>
		<pubDate>Fri, 15 Jun 2007 21:04:35 +0000</pubDate>
		<dc:creator>Jessica</dc:creator>
				<category><![CDATA[couldbe studios]]></category>
		<category><![CDATA[rants and raves]]></category>
		<category><![CDATA[software and hardware]]></category>
		<category><![CDATA[stuff we use]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://whatcouldbe.com/blog/?p=63</guid>
		<description><![CDATA[We&#8217;ve been loving Shopify for small business e-commerce, and it&#8217;s been great for our clients. The one thing we hear more than anything else is &#8220;Can you send a tutorial for beginners so that we know how to get started?&#8221; We are nothing if not accommodating. Here&#8217;s a super easy, super simple guide to getting [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been loving <a href="http://www.shopify.com">Shopify</a> for small business e-commerce, and it&#8217;s been great for our clients. The one thing we hear more than anything else is &#8220;Can you send a tutorial for beginners so that we know how to get started?&#8221; </p>
<p>We are nothing if not accommodating. Here&#8217;s a super easy, super simple guide to getting started with your own Shopify site. </p>
<div style="text-align: center;">
<div align="left">
<h1>   Shopify Tutorial</h1>
<p>Log in to your Shopify admin account (yoursite.myshopify.com/admin)</p>
<p><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_24dc2h39gn"><img style="width: 500px; height: 173.611px;" src="http://docs.google.com/File?id=dcdqbzh4_24dc2h39gn"></a><br />The first thing you&#8217;ll see is the Home screen, which shows you at a glance how many visitors your site has had, how many orders you&#8217;ve received, the last login of your staff members and your out of stock items (if any). </p>
<p>The green navigation strip shows you what options are available for your shop. </p>
<p><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_32fz5wxbf4"><img style="width: 500px; height: 115.53px;" src="http://docs.google.com/File?id=dcdqbzh4_32fz5wxbf4"></a></p>
<h2>Orders:</h2>
<p>Click Orders to see the details of your orders. </p>
<p>In this screen, you can manage orders, contact your customers, or download a spreadsheet of your orders for offline use. Since there are no orders here, we&#8217;ll move on to the next screen.</p>
<p><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_34fb39gkf2"><img style="width: 500px; height: 234.848px;" src="http://docs.google.com/File?id=dcdqbzh4_34fb39gkf2"></a><br />
<h2>Products:</h2>
<p>Click the Products tab. You will see a list of all the products which have been added to your shop.</p>
<p>To add a new product, click the &#8220;Add New Product&#8221; button (it&#8217;s red, and at the top of your screen).</p>
<p><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_36fpkp9vdx"><img style="width: 500px; height: 230.429px;" src="http://docs.google.com/File?id=dcdqbzh4_36fpkp9vdx"></a></p>
<p>Give your product a title (this can be purely descriptive; inventory control information is later) and a description. </p>
<p><img src="http://docs.google.com/File?id=dcdqbzh4_20d6qtfkdz"><br />Under &#8220;Product type&#8221; you can choose from one of your existing product types or enter a new one. Keep these categories pretty broad; you don&#8217;t want to create a new product type for each item you enter. These categories will be used later to create things like Smart Collections.</p>
<p>Under &#8220;Product vendor&#8221; add the name of the product&#8217;s creator. For example, if you are selling items from a third-party vendor you will enter that name here, but if you create the products yourself you will enter your own company name.</p>
<p>Set the price and weight (weight is used for calculating shipping costs). You can also add a &#8220;Compare at&#8221; price, which is useful if you&#8217;re having a sale and want people to know how much money they&#8217;re saving.</p>
<p><img src="http://docs.google.com/File?id=dcdqbzh4_21g7n36qdr"><br />Under &#8220;Inventory&#8221; you can enter a product ID or SKU (this is optional) and decide whether you want Shopify to track your stock level. If you choose to have your stock level tracked, you will need to add the quantity you have on-hand and choose whether customers can still place orders when you run out (useful if you will be re-ordering based on customer orders) or if your item will show &#8220;SOLD OUT&#8221; when you run out of stock.</p>
<p>Add tags so that people can easily find what they&#8217;re looking for. You can add as many tags as you want. Try to be very descriptive.</p>
<p><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_22hnj8nnd8"><img style="width: 500px; height: 253.788px;" src="http://docs.google.com/File?id=dcdqbzh4_22hnj8nnd8"></a><br />You must upload an image before your product will show up on your site. You can upload several images for each product; the first one in the list will be the &#8220;featured image&#8221; and will show up on your product and collection pages. Once you&#8217;ve uploaded all your images, you can change the order they display by dragging and dropping the thumbnails.</p>
<p>Don&#8217;t forget to SAVE your product!</p>
<p><img src="http://docs.google.com/File?id=dcdqbzh4_23gqfd4rc2"></p>
<h2>Collections:</h2>
<p>Click on the Collections tab to see your collections.</p>
<p><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_27gqp7n7gr"><img style="width: 500px; height: 243.056px;" src="http://docs.google.com/File?id=dcdqbzh4_27gqp7n7gr"></a></p>
<p>By default, your shop starts out with the &#8220;Frontpage&#8221; collection. Don&#8217;t delete this! It keeps track of which products are featured on the front page of your shop. You can change your featured products at any time by going into the product page and checking or un-checking the &#8220;Frontpage&#8221; ticky box.</p>
<p>Collections organize your products into groups, which you can then link to from your shop. Create collections for all your groups of products. For example, if you sell a lot of shirts and pants, you might want to create a &#8220;Shirts&#8221; collection and a &#8220;Pants&#8221; collection as well as an &#8220;Outfits&#8221; collection, in which you can group together things that would go well in a set. You can add the same product to more than one collection.</p>
<p>Standard Collections are collections of items you choose as you go (like the Frontpage collection, above); Smart Collections use pre-defined values to organize your stock. </p>
<p>Create a new Smart Collection by clicking &#8220;Create new Collection&#8221; and choosing &#8220;Smart Collection.&#8221;</p>
<p><img style="width: 500px; height: 371.843px;" src="http://docs.google.com/File?id=dcdqbzh4_38c2xgckch"><br />Next, set the conditions for your Smart Collection. They can be anything you want, and you can add more using the green button on the right.</p>
<div style="padding: 1em 0pt; text-align: left;">                                               <a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_39f2mtr6cp"><img style="width: 576px; height: 210px;" src="http://docs.google.com/File?id=dcdqbzh4_39f2mtr6cp"></a><br />You can play around with this to find the combination that works best for your shop. Once the Smart Collection is set up, the products that meet the criteria will automatically be added.</p>
<h2>Blogs &amp; Pages:</h2>
<p>When you click the Blogs &amp; Pages tab, you will see all of the blogs and pages you have created. A blog is like a collection of articles; you can create a blog and then update it, and your most recent update will be at the top of the blog&#8217;s page. Pages, on the other hand, are static; you can make a page for your shipping information, for example, or to talk about who you are and what you do. Blogs are best for information you will need to add to on a continual basis, like a news page or a list of articles.</p></div>
<p><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_25fh9q492c"><img style="width: 500px; height: 258.207px;" src="http://docs.google.com/File?id=dcdqbzh4_25fh9q492c"></a><br />Click &#8220;Create Blog or Page&#8221; and then choose which one you&#8217;d like to create. For this example, we&#8217;re creating a page. Give your page a title and add some text. Shopify uses Textile for its markup; you can see the examples on the left to figure out how to format your text.</p>
<p>Save your page. In the next step, you will add your page to your navigation so visitors to your site will be able to find it.</p>
<p><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_33g8x623d2"><img style="width: 500px; height: 237.374px;" src="http://docs.google.com/File?id=dcdqbzh4_33g8x623d2"></a></p>
<h2>Navigation:</h2>
<p>Click the Navigation tab. You will see a list of your existing navigation menus. </p>
<p><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_303b4m25dh"><img style="width: 500px; height: 323.232px;" src="http://docs.google.com/File?id=dcdqbzh4_303b4m25dh"></a></p>
<p>For this example, we are adding a link to the footer menu, but you can always add or re-order your navigation menus to fit your site&#8217;s needs. Be aware that some menus (like the footer) will show up in different places on your site, so be aware of which menu you&#8217;re adding to.</p>
<p>To add a link to the Footer menu, click &#8220;Add Link.&#8221; Type in the name of the link (this doesn&#8217;t have to be the same as what you named the page, but it does simplify things if it&#8217;s similar) and choose what you&#8217;re linking to. We linked to the Royalty-Free License page here, but you can link to anything from an external website to an individual product. You can also link to a collection.</p></div>
<div style="padding: 1em 0pt; text-align: left;">     <a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_18f49fswff"><img style="width: 500px; height: 231.692px;" src="http://docs.google.com/File?id=dcdqbzh4_18f49fswff"></a><br />This is a screenshot of our example site, in which you can see the Royalty-Free Images page on the site and listed in the footer menu.</p>
<p><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_37gx2544rb"><img style="width: 500px; height: 299.874px;" src="http://docs.google.com/File?id=dcdqbzh4_37gx2544rb"></a></p>
<h2>Marketing:</h2>
<p>This is a new section that allows you to enter coupon codes and keep track of your marketing efforts.</p>
<p><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_29f4664tf4"><img style="width: 500px; height: 246.212px;" src="http://docs.google.com/File?id=dcdqbzh4_29f4664tf4"></a></p>
<p>Next, look at the right side of the green navigation bar to find the nuts and bolts of your site. </p>
<p><img src="http://docs.google.com/File?id=dcdqbzh4_31htdkx8c6"></p>
<h2>Look &amp; Feel:</h2>
<p>Look &amp; Feel is where the site&#8217;s theme information lives. You probably won&#8217;t want to change that, but you certainly can! We recommend saving a copy of your existing theme before making any changes.</p>
<h2>Preferences:</h2>
<p><img style="width: 500px; height: 357.955px;" src="http://docs.google.com/File?id=dcdqbzh4_28fthgjcfv"></p>
<p>This is where you can set up the inner workings of your store. You will see a sub-menu on the right that lists your options. Click around to see which options are appropriate to your store.</p>
<p><img src="http://docs.google.com/File?id=dcdqbzh4_35krd76skj"></p>
<p>The most important section to set up is the Checkout &amp; Payment section, in which you will specify which payment service(s) your store will use. There is also a &#8220;Bogus Gateway&#8221; for testing purposes; if you activate it, you can place a sample order without sending any actual payment information.<br /> 
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">                     <a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_26gt5mtddv"><img style="width: 500px; height: 244.318px;" src="http://docs.google.com/File?id=dcdqbzh4_26gt5mtddv"></a>
<div style="padding: 1em 0pt; text-align: left;"> 
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<h2>                                                                                                                                                                                                                                       Account:</h2>
<p>The Account screen is where you will go when you want to check to see how much storage space you have left on your site or, if you&#8217;re the account owner, to add a staff member to your lineup or view or change the credit card information for the shop. (Note: only the account owner can add staff members or view or alter the credit card information for the shop.)</p>
<p>The account owner MUST enter credit card information before the shop will accept orders!
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;">
<div style="padding: 1em 0pt; text-align: left;"><a target="_blank" href="http://docs.google.com/File?id=dcdqbzh4_17fjbnw8gp"><img src="http://docs.google.com/File?id=dcdqbzh4_17fjbnw8gp" style="width: 500px; height: 173.611px;"></a></p>
<h2>That&#8217;s it! </h2>
<p>If you have any further questions, check out the Shopify forums or contact <a title="jessica at couldbestudios dot com" href="mailto:jessica@couldbestudios.com">jessica at couldbestudios dot com</a>. <br /> 
<div style="padding: 1em 0pt; text-align: left;"> 
<div style="padding: 1em 0pt; text-align: left;">                                             </div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.couldbestudios.com/rants-and-raves/63/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Juggling: Keeping All Your Online Identities In The Air at Once</title>
		<link>http://www.couldbestudios.com/rants-and-raves/blog-juggling-keeping-all-your-online-identities-in-the-air-at-once/</link>
		<comments>http://www.couldbestudios.com/rants-and-raves/blog-juggling-keeping-all-your-online-identities-in-the-air-at-once/#comments</comments>
		<pubDate>Fri, 12 Jan 2007 06:00:10 +0000</pubDate>
		<dc:creator>Jessica</dc:creator>
				<category><![CDATA[couldbe studios]]></category>
		<category><![CDATA[rants and raves]]></category>
		<category><![CDATA[software and hardware]]></category>
		<category><![CDATA[stuff we use]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[identities]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[personas]]></category>

		<guid isPermaLink="false">http://whatcouldbe.com/blog/?p=55</guid>
		<description><![CDATA[These days it isn&#8217;t unusual for people to have several online aliases. There&#8217;s the personal persona, hanging out on MySpace and YouTube; there&#8217;s the work persona, reading news feeds and doing online research; and there&#8217;s often a third, leisure persona, frequenting specialized bulletin boards and sites for hobbies like crafting, D&#038;D or politics. And, of [...]]]></description>
			<content:encoded><![CDATA[<p>These days it isn&#8217;t unusual for people to have several online aliases. There&#8217;s the personal <i>persona</i>, hanging out on MySpace and YouTube; there&#8217;s the work <i>persona</i>, reading news feeds and doing online research; and there&#8217;s often a third, leisure <i>persona</i>, frequenting specialized bulletin boards and sites for hobbies like crafting, D&#038;D or politics. And, of course, it wouldn&#8217;t be Web 2.0 if each of those aliases didn&#8217;t have its own blog.</p>
<p>As someone who manages several distinctly different blogs, I feel for people taking on the challenge of multiple online identities. The need for them, however, is undeniable. Here are some ways to make it all work (and crank up your productivity in the bargain). </p>
<h3>Compartmentalize</h3>
<p>The first step in managing multiple identities is breaking them down into bite-sized chunks. If you&#8217;re dealing with the line between business and personal, that may be an easy task. But what if your personal and leisure identities overlap? How do you categorize, for example, your love of a site like <a href="http://www.dogster.com">Dogster</a> &#8211; is that personal, or is it leisure? Do you even <i>need</i> a leisure <i>persona</i>? The easiest way to figure that out is to look at your Dogster identity as though you were a stranger. Would you want the random Dogster aficionado to Google the alias in your profile and see, for example, your personal MySpace page or your Flickr photostream? If the answer is yes &#8211; if you&#8217;re on Dogster to invite other dog-lovers into your life, or if your life is already all dogs, all the time &#8211; then you probably don&#8217;t need a leisure <i>persona</i>. But if you&#8217;d rather your personal life and your hobbies remained at least superficially separate, you&#8217;d do well to use a distinct identity for each one.</p>
<h3>Social Bookmarking: Mark &#8216;Em All, Let the Internet Sort &#8216;Em Out</h3>
<p>If you&#8217;re going to use any sort of blogroll on your sites (and who doesn&#8217;t, these days?), you&#8217;ll want an easy way to sort the different links to correspond with your different identities. One of the easiest ways to do that is by using a social bookmarking service like Ma.gnolia or Del.icio.us. Just make sure you tag religiously and tag well, and you&#8217;re good to go. Truly compartmentalized people like me may even use different accounts for personal vs. business links, but within each account I use tags to separate, for example, my parenting links from my catch-all check-out-this-page links.</p>
<h3>Browse in Multiples</h3>
<p>One you&#8217;ve figured out how to define your categories and started the process of separating the personal from the professional, it&#8217;s time to put your browsers to work for you. </p>
<p>Only using one browser? That&#8217;s <i>so</i> last year. The easiest way to segregate one identity from another is to use different browsers for each. That way you can visit the same sites and collect different cookies. That&#8217;s especially useful for internet searches and news portals, but is also good for managing sites like Flickr, which requires a separate login for each alias. Think about it like this: if you want to comment on a friend&#8217;s photo, do you want to use your business login? I&#8217;m too impatient to log in and log out each time I visit a site; with separate browsers, I can stay logged in all the time, even if I use overlapping services.  It&#8217;s also good for web forms and blog comments, for the same reason. You can have each browser remember a different address or e-mail &#8211; home and work, say &#8211; so you don&#8217;t have to re-type it every time.</p>
<p>Also, with separate browsers, you get separate bookmarks. For me, this is key; I don&#8217;t like having to search through lots of different folders to find the bookmark I&#8217;m looking for. Knowing that all my business links are in Firefox (for example) saves me a lot of time. I can set up each browser to open a specific set of bookmarks for me each time I log in, and I can easily manage the follow-up on sites I want to write about.</p>
<p>Yes, I said <i>write</i>. This is an article about blogging, remember? All of these things lead to this next thing: managing your blogs.</p>
<h3>One Blog Per Person(a)</h3>
<p>I&#8217;ve got a lot of blogs. A <a href="http://www.whatcouldbe.com">business blog</a>, a <a href="http://www.cranky-mama.com">mommy blog</a>, and a <a href="http://www.buzzverb.com">fledgling copywriting blog</a>, to name a few. At any given time, I have between ten and twenty tabs open in each of my browsers &#8211; stories I want to read or write about, services I want to check out, links I want to bookmark, reference material and entertainment. How do I keep track of it all?</p>
<p>Since I&#8217;ve assigned my personas different browsers, the first big chunk of work is done for me. I know at a glance that all the tabs I have open in Firefox are related either to writing (for Buzzverb) or design (for What Could Be) while the tabs in Flock are related to parenting, kids, or my new obsession with crafting. This makes it easy to focus my attention on one thing or the other, which in turn means I won&#8217;t be derailed in the middle of writing an article about web design by an amusing parenting anecdote. More importantly, it means I won&#8217;t lose an important link by overloading my brain with too many disparate subjects. </p>
<p>Since I use Flock, posting to my Cranky Mama blog is easy as pie; I just fire up Flock&#8217;s integrated blogging client and go to town. Since my mommy blog is pretty informal and doesn&#8217;t require a lot of editing (or, to be honest, a lot of research), I don&#8217;t miss the more advanced features of a robust desktop client. </p>
<p>For my business blogs, though, I want something with a few more options. I use MarsEdit, although there are dozens of options that are equally useful. Since all my links are open in Firefox, it&#8217;s easy to reference articles and sites, and if I want to find something I looked at a few days ago, my history is relevant to my business persona.</p>
<h3>Don&#8217;t Forget That There Is Only One of You</h3>
<p>Despite all this talk of multiple identities, you&#8217;re still only one person. Don&#8217;t expect that you&#8217;ll be able to maintain daily blogs for each of your <i>personas</i> unless you&#8217;ve got a truly ridiculous amount of time to set aside for blogging. </p>
<p>Decide ahead of time which blog you want to devote the most attention to, and make that your priority. Here are some ideas for managing all that writing:</p>
<ul>
<li>Set deadlines for yourself so that you don&#8217;t leave any of your blogs hanging. If you&#8217;re particularly anal-retentive like me, you may want to use a calendaring service to remind you which days you plan to publish to which blog. Backpack, for example, will send an e-mail each week to remind me to post an article to What Could Be.  I&#8217;m not suggesting that a mild case of OCD is a <i>good</i> thing; I&#8217;m just saying you might as well put it to work for you. Am I right?</li>
<li>Compose entries ahead of time whenever possible; this makes it easy to publish something when your creative energies have run out. </li>
<li>Don&#8217;t underestimate the power of linking. On days when you just <i>can&#8217;t</i> come up with anything to say, put those open tabs to work for you. Tell the world what you&#8217;re reading about. The world will thank you, if by <i>thank you</i> you mean <i>take a look and collectively shrug</i>. (A caveat: make at least a token effort to describe your recommendations using your own words. If you just post a list of links, the other kids on the internet will point at you and laugh.)</li>
</ul>
<p>
<h3>Bring it All Together</h3>
<p>Now that you&#8217;ve got everything all neatly separated, how do you bring together all your myriad online identities? My suggestion is an identity management service like <a href="http://www.claimid.com">ClaimID</a> or an aggregator like <a href="http://www.jaiku.com">Jaiku</a>. ClaimID lets you list every single little bit of information associated with your name and compile the links in one page; you can set privacy levels for each item and arrange by importance (or however else you want). Jaiku lets you enter the RSS feeds for all your many blogs, photo streams, or whatever, and uses all that to create a page which has a constantly-updating, personalized information feed, showing you at a glance where you&#8217;ve been putting your energy. (And no, if you&#8217;re wondering. I get nothing for making these recommendations. Just the inner satisfaction of making good links, and really, isn&#8217;t that what linking is about?)</p>
<h3>Go. Blog.</h3>
<p>Now put all these suggestions to work for you. You&#8217;ve got the tools. You&#8217;ve got the interests. Give it a whirl and see if you can juggle more than one identity. In fact, nothing is stopping you from starting a new blog right now. Go ahead! I&#8217;ll wait.</p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags:<br />
<a href="http://technorati.com/tag/productivity" rel="tag">productivity</a>, <a href="http://technorati.com/tag/organization" rel="tag">organization</a>, <a href="http://technorati.com/tag/aliases" rel="tag">aliases</a>, <a href="http://technorati.com/tag/blogging" rel="tag">blogging</a>, <a href="http://technorati.com/tag/identity" rel="tag">identity</a>, <a href="http://technorati.com/tag/blog%20juggling" rel="tag">blog juggling</a>
</p>
<p><!-- Technorati Tags End --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.couldbestudios.com/rants-and-raves/blog-juggling-keeping-all-your-online-identities-in-the-air-at-once/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>a sketchy tutorial</title>
		<link>http://www.couldbestudios.com/graphic-design/a-sketchy-tutorial/</link>
		<comments>http://www.couldbestudios.com/graphic-design/a-sketchy-tutorial/#comments</comments>
		<pubDate>Sat, 23 Sep 2006 07:05:45 +0000</pubDate>
		<dc:creator>Jessica</dc:creator>
				<category><![CDATA[graphic design]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://whatcouldbe.com/blog/?p=46</guid>
		<description><![CDATA[Want a realistic sketch effect without all that pesky sketching? Check out our latest tutorial. Click the image below to view each step. If you&#8217;re anti-Flash, there&#8217;s an HTML version too.]]></description>
			<content:encoded><![CDATA[<p>Want a realistic sketch effect without all that pesky sketching? Check out our latest tutorial.</p>
<p>Click the image below to view each step. If you&#8217;re anti-Flash, there&#8217;s <a href="http://www.whatcouldbe.com/tutorials/sketch-tutorial.html">an HTML version</a> too.</p>
<p></p>
<p><object type="application/x-shockwave-flash" data="http://www.whatcouldbe.com/tutorials/sketch-tutorial.swf"<br />
width="600" height="450"><br />
<!--[if IE]><param name="movie" value="http://www.whatcouldbe.com/tutorials/sketch-tutorial.swf" /><![endif]--><br />
<img src="noflash.gif" alt="You need Flash to see this." /><br />
</object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.couldbestudios.com/graphic-design/a-sketchy-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
