<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Lee Munroe</title> <link>http://www.leemunroe.com</link> <description>User Experience and Web Interface Designer Lee Munroe</description> <lastBuildDate>Wed, 04 Apr 2012 18:50:38 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/LeeMunroeBlog" /><feedburner:info uri="leemunroeblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>LeeMunroeBlog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item><title>CSS3 Animated Loading Bar</title><link>http://feedproxy.google.com/~r/LeeMunroeBlog/~3/PSoa4aTbnrk/</link> <comments>http://www.leemunroe.com/css3-animated-loading-bar/#comments</comments> <pubDate>Tue, 03 Apr 2012 17:09:10 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[bar]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[demo]]></category> <category><![CDATA[loading]]></category> <category><![CDATA[ui]]></category><guid isPermaLink="false">http://www.leemunroe.com/?p=2819</guid> <description><![CDATA[I&#8217;m working on a project that requires a bit of Javascript loading time before displaying the UI, so instead of doing what I usually do and downloading an animated gif&#8230;<html><body><h1>400 Bad request</h1> Your browser sent an invalid request.</body></html> ]]></description> <content:encoded><![CDATA[<p>I&#8217;m working on a project that requires a bit of Javascript loading time before displaying the UI, so instead of doing what I usually do and downloading an animated gif from <a
href="http://www.ajaxload.info/">ajaxload</a> I thought it would be a good opportunity to try out a CSS3 animation.</p><p><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/37signals.jpg" alt="37signals" border="0" width="218" height="119" /></p><p>Inspired by 37 Signals loading bar (pictured above) and making good use of Chris Coyier&#8217;s <a
href="http://css-tricks.com/css3-progress-bars/">tutorial</a> on CSS3 Progress Bars I set to work designing a bar in Photoshop and then replicating it in CSS3.</p><p><a
href="http://dribbble.com/shots/497920-Animated-Loading-Bar"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/animatedloadingbar.png" alt="Animatedloadingbar" border="0" width="400" height="300" /></a></p><p><a
href="http://www.leemunroe.com/demos/css3-loading-bar/" class="button cta">View demo here</a></p><h4>CSS and Markup</h4><p>Here is the source code if you want to try it yourself.</p><pre><code>&lt;style&gt;
/* 
Set the container for the bar
*/
.bar {
	height:20px;
	width:200px;
	padding:10px;
	margin:200px auto 0;
	background-color:rgba(0,0,0,.1);
	-webkit-border-radius:25px;
	-moz-border-radius:25px;
	-ms-border-radius:25px;
	border-radius:20px;
	-webkit-box-shadow:0 1px 0 rgba(255,255,255,.03),inset 0 1px 0 rgba(0,0,0,.1);
	-moz-box-shadow:0 1px 0 rgba(255,255,255,.03),inset 0 1px 0 rgba(0,0,0,.1);
	-ms-box-shadow:0 1px 0 rgba(255,255,255,.03),inset 0 1px 0 rgba(0,0,0,.1);
	box-shadow:0 1px 0 rgba(255,255,255,.03),inset 0 1px 0 rgba(0,0,0,.1);
}

/* 
This is the actual bar with stripes
*/	
.bar span {
	display:inline-block;
	height:100%;
	width:100%;
	border:1px solid #ff9a1a;
	border-bottom-color:#ff6201;
	background-color:#d3d3d3;
	-webkit-border-radius:20px;
	-moz-border-radius:20px;
	-ms-border-radius:20px;
	border-radius:20px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
	background-image:
		-webkit-linear-gradient(
		-45deg,
		rgba(255, 154, 26, 1) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 154, 26, 1) 50%,
		rgba(255, 154, 26, 1) 75%,
		transparent 75%,
		transparent
	);
	background-image:
		-moz-linear-gradient(
		-45deg,
		rgba(255, 154, 26, 1) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 154, 26, 1) 50%,
		rgba(255, 154, 26, 1) 75%,
		transparent 75%,
		transparent
	);
	background-image:
		-ms-linear-gradient(
		-45deg,
		rgba(255, 154, 26, 1) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 154, 26, 1) 50%,
		rgba(255, 154, 26, 1) 75%,
		transparent 75%,
		transparent
	);
	background-image:
		linear-gradient(
		-45deg,
		rgba(255, 154, 26, 1) 25%,
		transparent 25%,
		transparent 50%,
		rgba(255, 154, 26, 1) 50%,
		rgba(255, 154, 26, 1) 75%,
		transparent 75%,
		transparent
	);
	-webkit-background-size:50px 50px;
	-moz-background-size:50px 50px;
	-ms-background-size:50px 50px;
	background-size:50px 50px;
	-webkit-animation:move 2s linear infinite;
	-moz-animation:move 2s linear infinite;
	-ms-animation:move 2s linear infinite;
	animation:move 2s linear infinite;
	-webkit-border-radius:20px;
	-moz-border-radius:20px;
	-ms-border-radius:20px;
	border-radius:20px;
	overflow: hidden;
	-webkit-box-shadow:inset 0 10px 0 rgba(255,255,255,.2);
	-moz-box-shadow:inset 0 10px 0 rgba(255,255,255,.2);
	-ms-box-shadow:inset 0 10px 0 rgba(255,255,255,.2);
	box-shadow:inset 0 10px 0 rgba(255,255,255,.2);
}

/*
Animate the stripes
*/	
@-webkit-keyframes move{
  0% {
  	background-position: 0 0;
  }
  100% {
  	background-position: 50px 50px;
  }
}	
@-moz-keyframes move{
  0% {
  	background-position: 0 0;
  }
  100% {
  	background-position: 50px 50px;
  }
}	
@-ms-keyframes move{
  0% {
  	background-position: 0 0;
  }
  100% {
  	background-position: 50px 50px;
  }
}	
@keyframes move{
  0% {
  	background-position: 0 0;
  }
  100% {
  	background-position: 50px 50px;
  }
}	
&lt;/style&gt;

&lt;!-- Start of loading bar --&gt;
&lt;div class="bar"&gt;
	&lt;span&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;!-- End of loading bar --&gt;</code></pre><p><a
href="http://www.leemunroe.com/demos/css3-loading-bar/" class="button cta">View demo here</a></p><p>If you like it please <a
href="http://dribbble.com/shots/497920-Animated-Loading-Bar">give it some love on Dribbble</a>.</p> 
<p><a href="http://feedads.g.doubleclick.net/~a/sDiQbHIWrGGA5Cx7G-lH8aXXDlI/0/da"><img src="http://feedads.g.doubleclick.net/~a/sDiQbHIWrGGA5Cx7G-lH8aXXDlI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/sDiQbHIWrGGA5Cx7G-lH8aXXDlI/1/da"><img src="http://feedads.g.doubleclick.net/~a/sDiQbHIWrGGA5Cx7G-lH8aXXDlI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/LeeMunroeBlog/~4/PSoa4aTbnrk" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/css3-animated-loading-bar/feed/</wfw:commentRss> <slash:comments>12</slash:comments> <feedburner:origLink>http://www.leemunroe.com/css3-animated-loading-bar/</feedburner:origLink></item> <item><title>5 Ways to get valuable user feedback</title><link>http://feedproxy.google.com/~r/LeeMunroeBlog/~3/0FCObgar18w/</link> <comments>http://www.leemunroe.com/user-feedback/#comments</comments> <pubDate>Tue, 20 Mar 2012 16:13:27 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[User Experience Design]]></category> <category><![CDATA[feedback]]></category> <category><![CDATA[research]]></category> <category><![CDATA[usability]]></category> <category><![CDATA[user experience]]></category> <category><![CDATA[users]]></category><guid isPermaLink="false">http://www.leemunroe.com/?p=2806</guid> <description><![CDATA[When you design a product or app and put it out there for the world to see, there&#8217;s a pretty good chance it isn&#8217;t perfect. There are always going to&#8230;]]></description> <content:encoded><![CDATA[<p>When you design a product or app and put it out there for the world to see, there&#8217;s a pretty good chance it isn&#8217;t perfect. There are always going to be bugs, usability issues and room for improvement.</p><p>How do you track and find out what issues users are having?</p><p>Here are some of the methods I&#8217;ve use to get user feedback.</p><h4>1. Talk to customers</h4><p>Should be obvious but amazing how many companies fail to <a
href="http://thestartupdaily.com/2011/12/get-out-of-the-building/">get out of the building</a> and go visit customers. They&#8217;ll tell you things you never thought of and just watching them use your product will give you valuable insights into what&#8217;s important and what needs improved.</p><p>Run user tests and have them complete certain tasks. Offer gift vouchers in return for their time. If you can&#8217;t get to them, use <a
href="http://skype.com">Skype</a> or <a
href="http://gotomeeting.com">GotoMeeting</a> to chat remotely.</p><p>Steve Krug&#8217;s book &#8220;<a
href="http://www.amazon.co.uk/gp/product/0321657292/ref=as_li_ss_tl?ie=UTF8&#038;tag=leemunroe-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=0321657292">Rocket Surgery Made Easy</a>&#8221; is a great reference book for running your own user tests.</p><p><a
href="http://silverbackapp.com/">Silverback</a> is a very good app for conducting user tests. It records the screen, audio and clicks so you can watch back the test or share it with your team.</p><p><a
href="http://silverbackapp.com/"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/silverback.jpg" alt="Silverback" border="0" width="441" height="286" /></a></p><h4>2. Talk to customer support</h4><p>If your product or company has customer support, which may be a team or even one person, this is a great source of feedback on what issues users are having.</p><p><a
href="http://www.desk.com/"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/desk.jpg" alt="Desk" border="0" width="500" height="271" /></a></p><p>Use tools like <a
href="http://www.desk.com/">Desk</a>, <a
href="http://www.zendesk.com/">Zendesk</a> or <a
href="http://www.olark.com/">Olark</a> to help gather and manage support contacts.</p><h4>3. Send out surveys</h4><p>If you have a database of user email addresses, either from a newsletter sign up or from users signing up to use your application, leverage this to send out a survey asking for their feedback.</p><p>Make sure it&#8217;s short enough that users will actually take the time to complete it. The shorter it is the more likely the completion rate. And offer and incentive like a prize for one lucky winner, or even a limited time free upgrade in return for their time.</p><p><a
href="http://wufoo.com"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/wufoo1.jpg" alt="Wufoo" border="0" width="500" height="221" /></a></p><p>Use a tool like <a
href="http://wufoo.com">Wufoo</a> to put together surveys and generate reports.</p><h4>4. In-page feedback</h4><p>There are a handful of tools that enable you to drop a bit of javascript on a page and ask for feedback. You can ask questions like &#8220;Was his helpful?&#8221; or &#8220;How can we make this better?&#8221;.</p><p><a
href="http://www.uservoice.com/">UserVoice</a> lets users submit feedback and vote on other feedback items. This helps you place importance on the feedback items based on the amount of votes they have.</p><p><a
href="http://www.uservoice.com/"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/uservoice.jpg" alt="Uservoice" border="0" width="500" height="288" /></a></p><p><a
href="http://www.kissinsights.com/">KISSinsights</a> lets you place a micro survey on any URL so you can get specific feedback about the page the user is on.</p><p><a
href="http://www.kissinsights.com/"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/kissinsights.jpg" alt="Kissinsights" border="0" width="500" height="98" /></a></p><p><a
href="https://www.intercom.io/">Intercom</a> is a light weight CRM tool that helps you build relationships with your users. You can broadcast messages to all your users, groups of users or direct messages to individual users.</p><p><a
href="https://www.intercom.io/"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/intercom.jpg" alt="Intercom" border="0" width="500" height="355" /></a></p><h4>5. Unobtrusive feedback with tracking scripts</h5><p>All the techniques above involve additional interaction from the user, but of course you can learn a lot simply by observing how users naturally use your application.</p><p><a
href="http://www.google.com/analytics/">Google Analytics</a> is the obvious tool. Not only does it tell you what pages are most popular but it will give you an idea of user flow and what pages the user clicks through to next.</p><p><a
href="http://www.crazyegg.com/">Crazy Egg</a> is a heatmap tool that shows you what areas of the screen your users are clicking or looking at.</p><p><a
href="http://www.crazyegg.com/"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/heatmap.jpg" alt="Heatmap" border="0" width="500" height="370" /></a></p><p><a
href="http://userfly.com/">Userfly</a> will record a user session so you can playback a video of it later and watch how the user navigates your application, what they click on and what they enter into input fields.</p><p><a
href="https://mixpanel.com/">MixPanel</a> records actions and page views, allowing for a deeper analysis of what users are clicking and funnel analysis.</p><p><a
href="https://mixpanel.com/"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/mixpanel.jpg" alt="Mixpanel" border="0" width="500" height="188" /></a></p><h4>Conclusion</h4><p>If you&#8217;re not constantly getting user feedback you&#8217;re doing it wrong. There is always room for improvement so figure out which method of getting feedback works best for you. Ideally it&#8217;s a combination of all the above.</p><p><strong><em>This isn&#8217;t an exhaustive list. What other methods are you using to get user feedback?</em></strong></p> 
<p><a href="http://feedads.g.doubleclick.net/~a/-e7gPUaU3OYQ_i-I093eNoZU1BQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/-e7gPUaU3OYQ_i-I093eNoZU1BQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-e7gPUaU3OYQ_i-I093eNoZU1BQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/-e7gPUaU3OYQ_i-I093eNoZU1BQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/LeeMunroeBlog/~4/0FCObgar18w" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/user-feedback/feed/</wfw:commentRss> <slash:comments>6</slash:comments> <feedburner:origLink>http://www.leemunroe.com/user-feedback/</feedburner:origLink></item> <item><title>SXSW 2012 Review</title><link>http://feedproxy.google.com/~r/LeeMunroeBlog/~3/3ipjG2PuWVI/</link> <comments>http://www.leemunroe.com/sxsw2012/#comments</comments> <pubDate>Thu, 15 Mar 2012 16:27:49 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Events]]></category> <category><![CDATA[event]]></category> <category><![CDATA[sxsw]]></category><guid isPermaLink="false">http://www.leemunroe.com/?p=2788</guid> <description><![CDATA[I had the pleasure of attending SXSW Interactive once again this year. As per usual it was flat out. So many talks. So many people. So many parties. So overwhelming.&#8230;]]></description> <content:encoded><![CDATA[<p>I had the pleasure of attending SXSW Interactive once again this year. As per usual it was flat out. So many talks. So many people. So many parties. So overwhelming.</p><h4>Most buzzed about apps and startups</h4><p>Without a doubt <a
href="http://highlig.ht/">Highlight</a> was the most talked about app, both in the lead up to and at the event.</p><p>It notifies you when someone interesting is nearby based on your interests and friends in common.</p><p>Mashable has a good <a
href="http://mashable.com/follow/leaderboards/sxsw">leaderboard of hyped up startups</a>.</p><p><a
href="http://mashable.com/follow/leaderboards/sxsw"><img
style="display: block; margin-left: auto; margin-right: auto;" src="http://www.leemunroe.com/wp-content/uploads/apps.jpg" alt="Apps" width="500" height="441" border="0" /></a></p><h4>Notes from talks and panels</h4><p>It&#8217;s hard to get a grasp of all the talks. There&#8217;s something like 40 talks all happening at once (somewhere in the region of 1,000 total I&#8217;m guessing) so you have to pick and choose, which is a risk as you might end up in something that isn&#8217;t what you thought or you&#8217;ve heard before.</p><p>Some of the more notable talks I attended:</p><h5>Chris Risdon, Adaptive Path, Applying Behaviour Design</h5><p>Every design decision we make influences the user.</p><p>Context is a huge contributor. Think of charitable donations. People are more likely to donate at the counter when they swipe their card, as opposed to you handing them a flier and them going away to do it later. Why? Because it&#8217;s easy.</p><p>Interesting visual graph with motivation against ability.</p><p><img
style="display: block; margin-left: auto; margin-right: auto;" src="http://www.leemunroe.com/wp-content/uploads/behaviour1.jpg" alt="Behaviour" width="500" height="410" border="0" /></p><h5>David Hogue, Fluid Inc, The Complexity Curve: How to Design for Simplicity</h5><p>For a product to succeed there are 3 things that must match:</p><ol><li>Mental model, what user expects to do</li><li>Conceptual model, what website asks you to do</li><li>System model, what happens behind the scenes</li></ol><p>You can remove complexity from conceptual by hiding it in system e.g. collect the user&#8217;s location.</p><p>Complexity grows as you get more involved in a project and more people voice their opinion:</p><ul><li>&#8220;By the way…&#8221;</li><li>&#8220;Wouldn&#8217;t it be cool if…&#8221;</li><li>&#8220;Looks good but lets add…&#8221;</li></ul><p>Scope increases or you try to add stuff you&#8217;ve seen elsewhere.</p><p>How things get complex:</p><ol><li>Don&#8217;t listen to initial feedback</li><li>By disconnecting action from outcome</li><li>Trying to design your product to be everything to everyone</li><li>Too many &#8220;nice to haves&#8221;</li><li>Copying other solutions</li><li>Designing to your limitations (rather than ideal)</li><li>Focusing too much on latest trends</li><li>Designing for yourself</li><li>By accepting assumptions</li><li>Not collecting data before you start</li></ol><h5>Jared Spool, UI Engineering, The Secret Lives of Links</h5><p>Links use the scent of information to get us what we want.</p><p>Walgreens homepage, 4% of it is taken up by what the user wants, 96% is what marketing wants. This violates Fitts’s law. The bigger and closer the easier a target is to hit.</p><p>Link copy needs to communicate what users will get when they click.</p><p>The back button is the button of doom. Once user clicks back, you&#8217;ve lost them and there&#8217;s little chance of them progressing further. It&#8217;s a predictor of failure.</p><p>Three useless phrases:</p><ol><li>Click here</li><li>Learn more</li><li>Click here to learn more</li></ol><h5>Frog, Prototype vs. Sim: Validating Software &amp; UX Design</h5><p>User research is often filled with BS, lies, wish lists, advice and complaints.</p><p>Use prototypes to validate thinking and ideas.</p><p>Make sure development team knows it&#8217;s a prototype, that it&#8217;s fake and the end result is an artefact (not for production).</p><p>Designers have the tools to validate any idea these days.</p><p><img
style="display: block; margin-left: auto; margin-right: auto;" src="http://www.leemunroe.com/wp-content/uploads/ux11.jpg" alt="Ux1" width="500" height="397" border="0" /></p><p><img
style="display: block; margin-left: auto; margin-right: auto;" src="http://www.leemunroe.com/wp-content/uploads/ux2.jpg" alt="Ux2" width="500" height="366" border="0" /></p><h5>Mark Channon, Author, How to Remember Anything: A Teach Yourself Guide</h5><p>Break things down into key images to help visualise your memory.</p><p>Look around a room and apply visuals to different objects. This acts as a chain of cue cards.</p><p>To remember names, look for something interesting about them, listen to their name, apply an image in your head to that name and repeat their name back to them.</p><h5>Mark Gilbreath, LiquidSpace, Work When Startup Culture Hits Mainstream</h5><p>70% of the work day desks are empty. Why?</p><p>People get work done outside the office, people expect to work where they want to work and technology enables this.</p><p>Be economically efficient &#8211; spend money on people, not physical assets or buildings.</p><p>Let people work outside the office and encourage them to work in co-working environments to maintain that startup culture.</p><p>Companies like AOL now have incubators in-house as they try bring that startup culture into the company.</p><h5>Ogilvy Notes</h5><p>If you&#8217;d like to get a quick snapshot view of more of the talks, Ogilvy Notes have some <a
href="<a href="http://ogilvynotes.com/49790/sxsw-2012">&#8220;>amazing visuals</a>.</p><p><a
href="http://ogilvynotes.com/49790/sxsw-2012"><img
style="display: block; margin-left: auto; margin-right: auto;" src="http://www.leemunroe.com/wp-content/uploads/ogilvy1.jpg" alt="Ogilvy" width="500" height="334" border="0" /></a></p><h5>Other things of interest</h5><p>It was good to see the Northern Ireland crew out again. They had some companies showcasing at both the UKTI Showcase and the SXSW Trade Show.</p><p>Check out the <a
href="http://nisxsw.com/">NI companies and startups that were attending</a>.</p><p><a
href="http://nisxsw.com/"><img
style="display: block; margin-left: auto; margin-right: auto;" src="http://www.leemunroe.com/wp-content/uploads/ni.jpg" alt="Ni" width="500" height="347" border="0" /></a></p><p>The Trade Show was interesting. There&#8217;s a mix of well established companies and new companies handing out all sorts of schwag and dressed in various costumes.</p><p><img
style="display: block; margin-left: auto; margin-right: auto;" src="http://www.leemunroe.com/wp-content/uploads/itriage.jpg" alt="Itriage" width="448" height="600" border="0" /></p><p>As usual there were a lot of parties. Too many. Official and unofficial, hosted by the likes of Mashable, Zappos, GroupMe, Frog, Media Temple. Notable performers were Jay-Z and Kasabian.</p><p>There was also a Dribbble meetup organised by the chaps at <a
href="http://paravelinc.com/">Paravel</a>. Great to meet up with other designers and hear what they&#8217;re working on.</p><p><img
style="display: block; margin-left: auto; margin-right: auto;" src="http://www.leemunroe.com/wp-content/uploads/dave.jpg" alt="Dave" width="448" height="600" border="0" /></p><h4>Conclusion</h4><p>If you haven&#8217;t been to <a
href="http://sxsw.com/">SXSW</a> before, go next year. It&#8217;s awesome.</p> 
<p><a href="http://feedads.g.doubleclick.net/~a/ql8luctKIUJvqXBWShNQmVvdPeg/0/da"><img src="http://feedads.g.doubleclick.net/~a/ql8luctKIUJvqXBWShNQmVvdPeg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ql8luctKIUJvqXBWShNQmVvdPeg/1/da"><img src="http://feedads.g.doubleclick.net/~a/ql8luctKIUJvqXBWShNQmVvdPeg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/LeeMunroeBlog/~4/3ipjG2PuWVI" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/sxsw2012/feed/</wfw:commentRss> <slash:comments>1</slash:comments> <feedburner:origLink>http://www.leemunroe.com/sxsw2012/</feedburner:origLink></item> <item><title>The benefits of interactive prototypes</title><link>http://feedproxy.google.com/~r/LeeMunroeBlog/~3/JeE55SmQv7A/</link> <comments>http://www.leemunroe.com/interactive-prototypes/#comments</comments> <pubDate>Tue, 21 Feb 2012 08:01:26 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[User Experience Design]]></category> <category><![CDATA[axure]]></category> <category><![CDATA[prototyping]]></category> <category><![CDATA[ux]]></category><guid isPermaLink="false">http://www.leemunroe.com/?p=2773</guid> <description><![CDATA[A while back I wrote about prototyping while searching for the best prototyping tool. As a freelancer the most prototyping I ever did was on paper, and it was usually&#8230;]]></description> <content:encoded><![CDATA[<p>A while back I wrote about <a
href="http://www.leemunroe.com/high-fidelity-rapid-prototyping/">prototyping</a> while searching for the best prototyping tool.</p><p>As a freelancer the most prototyping I ever did was on paper, and it was usually for the benefit of me. What I&#8217;d end up with was a well designed UI, but that hadn&#8217;t been tested.</p><p>Then I joined Kareo and started putting together interactive prototypes. As part of our <strong>development cycle we design and iterate</strong> on prototypes on a daily basis.</p><h4>Benefits of prototyping</h4><h5>Experience the full flow</h5><p>Instead of thinking about the design as individual screens, you get a better idea of the full experience and flow including pages or states you might otherwise overlook.</p><h5>Get early feedback</h5><p>Put it in front of users and start testing for early feedback.</p><h5>Better than specs</h5><p>Nobody wants to read through a 20-page spec document. By prototyping you can pass the prototype around developers and executives instead.</p><h5>Low or high fidelity</h5><p>I typically start off fairly low, doing just a rough prototype to help flush out some requirements and ideas. Then gradually move onto higher fidelity, incorporating validation, graphics etc. The more tests and iterations the more detailed the prototype gets.</p><h5>Less time and resources spent</h5><p>Before the engineering team start work, you&#8217;re able to experiment and go through many rounds of testing. Of course you can continue to iterate during and after development, but the aim is to make sure as little time is wasted as possible while getting the best possible outcome.</p><h5>Collaboration with team members</h5><p>It&#8217;s easier to show team members something that is interactive than to try and tell them about it.</p><h5>Rapid and quick iterations</h5><p>As it&#8217;s a prototype you don&#8217;t have to worry about clean markup or pixel perfection at this stage.</p><h4>Conclusion</h4><p>Before you start any project or feature, put together a prototype. It costs a lot less and you can learn a lot by <strong>putting something clickable together</strong>.</p><p><a
href="http://axure.com">Axure</a> is my tool of choice at the minute but there are a number of great <a
href="http://www.leemunroe.com/high-fidelity-rapid-prototyping/">prototyping tools</a> available.</p> 
<p><a href="http://feedads.g.doubleclick.net/~a/n__ueouxaQL7JeVjVOVnptTgdeM/0/da"><img src="http://feedads.g.doubleclick.net/~a/n__ueouxaQL7JeVjVOVnptTgdeM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/n__ueouxaQL7JeVjVOVnptTgdeM/1/da"><img src="http://feedads.g.doubleclick.net/~a/n__ueouxaQL7JeVjVOVnptTgdeM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/LeeMunroeBlog/~4/JeE55SmQv7A" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/interactive-prototypes/feed/</wfw:commentRss> <slash:comments>3</slash:comments> <feedburner:origLink>http://www.leemunroe.com/interactive-prototypes/</feedburner:origLink></item> <item><title>Twit Amore – Who do you love on Twitter?</title><link>http://feedproxy.google.com/~r/LeeMunroeBlog/~3/Qz4AlHGl8Gg/</link> <comments>http://www.leemunroe.com/who-do-you-love-on-twitter/#comments</comments> <pubDate>Mon, 13 Feb 2012 17:05:49 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[General News]]></category> <category><![CDATA[rails]]></category> <category><![CDATA[sideproject]]></category> <category><![CDATA[twitamore]]></category> <category><![CDATA[Twitter]]></category><guid isPermaLink="false">http://www.leemunroe.com/?p=2757</guid> <description><![CDATA[In the spirit of building and shipping more projects, I launched a little web app to coincide with Valentine&#8217;s Day, Twit Amore. It&#8217;s not going to change the world, but&#8230;]]></description> <content:encoded><![CDATA[<p>In the spirit of building and shipping more projects, I launched a little web app to coincide with Valentine&#8217;s Day, <a
href="http://twitamore.com/">Twit Amore</a>.</p><p>It&#8217;s not going to change the world, but <strong>it will tell you who you love on Twitter</strong>.</p><p>It&#8217;s a light humoured Rails app that uses the Twitter API to look up your profile and calculate who you &#8220;love&#8221;. <a
href="http://twitamore.com/about">Read more about how it works</a>.</p><p><a
href="http://twitamore.com"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/twit.gif" alt="Twit" border="0" width="500" height="380" /></a></p><p>It managed to pick up a bit of activity after launching on Friday, and got some viral spread over the weekend with lots of <a
href="https://twitter.com/#!/search/realtime/twitamore">chatter on Twitter</a>. Here&#8217;s an early insight into the analytics.</p><p><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/stats1.gif" alt="Stats" border="0" width="500" height="160" /></p><p><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/live.gif" alt="Live" border="0" width="500" height="287" /></p><p>As of writing this <strong>over 100,000 people have been &#8220;matched&#8221;</strong>.</p><p>It&#8217;s no surprise that most celebrities love themselves, but every so often there will be one or two surprises.</p><p><a
href="http://twitamore.com/rickygervais"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/notable5.gif" alt="Notable5" border="0" width="500" height="208" /></a></p><p><a
href="http://twitamore.com/justinbieber"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/notable1.gif" alt="Notable1" border="0" width="500" height="217" /></a></p><p><a
href="http://twitamore.com/ronpaul"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/notable4.gif" alt="Notable4" border="0" width="500" height="229" /></a></p><p><a
href="http://twitamore.com/">Check out Twit Amore</a> and have some fun looking up your friends for Valentine&#8217;s Day.</p> 
<p><a href="http://feedads.g.doubleclick.net/~a/EsY8D_cr1gJfy9-TDhsWJNYqLdA/0/da"><img src="http://feedads.g.doubleclick.net/~a/EsY8D_cr1gJfy9-TDhsWJNYqLdA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/EsY8D_cr1gJfy9-TDhsWJNYqLdA/1/da"><img src="http://feedads.g.doubleclick.net/~a/EsY8D_cr1gJfy9-TDhsWJNYqLdA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/LeeMunroeBlog/~4/Qz4AlHGl8Gg" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/who-do-you-love-on-twitter/feed/</wfw:commentRss> <slash:comments>3</slash:comments> <feedburner:origLink>http://www.leemunroe.com/who-do-you-love-on-twitter/</feedburner:origLink></item> <item><title>Steve Jobs on Taking a Calligraphy Class</title><link>http://feedproxy.google.com/~r/LeeMunroeBlog/~3/HhqB4zvwrLY/</link> <comments>http://www.leemunroe.com/steve-jobs-calligraphy/#comments</comments> <pubDate>Mon, 06 Feb 2012 06:01:53 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Trends & Inspiration]]></category> <category><![CDATA[audiobook]]></category> <category><![CDATA[book]]></category> <category><![CDATA[steve jobs]]></category><guid isPermaLink="false">http://www.leemunroe.com/?p=2733</guid> <description><![CDATA[I&#8217;m currently listening to Steve Jobs biography, which I highly recommend (even if you&#8217;re not an Apple fanboy). Edit: Steve talks about once taking a calligraphy class, which he also&#8230;]]></description> <content:encoded><![CDATA[<p>I&#8217;m currently listening to Steve Jobs biography, which I highly recommend (even if you&#8217;re not an Apple fanboy).</p><p><a
href="http://www.amazon.co.uk/gp/product/1408703742/ref=as_li_ss_tl?ie=UTF8&#038;tag=leemunroe-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=1408703742"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/steve.jpg" alt="Steve" border="0" width="300" height="300" /></a></p><p>Edit: Steve talks about once taking a calligraphy class, which he also talked about in his <a
href="http://www.youtube.com/watch?v=UF8uR6Z6KLc">Stanford Commencement Address</a>:</p><blockquote><p>&ldquo;I decided to take a calligraphy class to learn how to [learn calligraphy]. I learned about serif and sans-serif typefaces, about varying the space between different letter combinations, about what makes great typography great. It was beautiful. Historical. Artistically subtle in a way that science can&#8217;t capture. And I found it fascinating.</p><p>None of this had any hope of any practical application in my life. But 10 years later, when we were designing the first Macintosh computer, it all came back to me. And we designed it all into the Mac. It was the first computer with beautiful typography.</p><p>If I had never dropped in on that single course in college, the Mac would never have multiple typefaces or proportionally spaced fonts. And since Windows just copied the Mac, it&#8217;s likely that no personal computer would have them.&rdquo;</p></blockquote><p>Keep learning and experiencing new things. You never know how or when it may make an impact in the future.</p> 
<p><a href="http://feedads.g.doubleclick.net/~a/Sdn0xY487A5xffaestsHxlFgfpA/0/da"><img src="http://feedads.g.doubleclick.net/~a/Sdn0xY487A5xffaestsHxlFgfpA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Sdn0xY487A5xffaestsHxlFgfpA/1/da"><img src="http://feedads.g.doubleclick.net/~a/Sdn0xY487A5xffaestsHxlFgfpA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/LeeMunroeBlog/~4/HhqB4zvwrLY" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/steve-jobs-calligraphy/feed/</wfw:commentRss> <slash:comments>9</slash:comments> <feedburner:origLink>http://www.leemunroe.com/steve-jobs-calligraphy/</feedburner:origLink></item> <item><title>Kareo Help Center Redesign</title><link>http://feedproxy.google.com/~r/LeeMunroeBlog/~3/qqDjX69UjbA/</link> <comments>http://www.leemunroe.com/kareo-help-center/#comments</comments> <pubDate>Sun, 05 Feb 2012 20:47:25 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[General News]]></category> <category><![CDATA[kareo]]></category> <category><![CDATA[process]]></category> <category><![CDATA[redesign]]></category><guid isPermaLink="false">http://www.leemunroe.com/?p=2728</guid> <description><![CDATA[One of the first projects I worked on at Kareo was improving the Help Center. Support is one of the most important parts of our service. The objective of the&#8230;]]></description> <content:encoded><![CDATA[<p>One of the first projects I worked on at Kareo was improving the Help Center.</p><p>Support is one of the most important parts of our service. The objective of the Help Center is to help customers as much as we can up front before they have to contact our support team.</p><h4>How we approached the project</h4><p>This was a great team effort utilising various expertise within the company.</p><ul><li>Identified problems with the existing Help Center by <strong>talking to customers</strong> and support.</li><li><strong>User tests</strong> on the existing Help Center.</li><li>Looked at <strong>metrics</strong> behind the existing Help Center to see what pages users were using and looking for.</li><li>Restructured the <strong>sitemap, user flows and information architecture</strong>.</li><li>Put together a <strong>high fidelity prototype</strong> and ran customers through user tests to identify key issues.</li><li>Ran a number of <strong>usability tests</strong> internally and externally.</li><li><strong>Reworded a lot of the copy</strong> and content to make it more readable and user friendly.</li><li><strong>Redesigned the UI</strong> with a fresh, modern look and feel.</li><li>Marked up the HTML/CSS from scratch making use of <strong>SCSS, responsive design, HTML5 and CSS3</strong>.</li><li>Better <strong>optimized the pages for search</strong> and included Google Site Search.</li><li>Made lots of back end changes to help improve <strong>performance and user flows</strong>.</li><li>Added more <strong>tracking for better metrics</strong> on how customers use the help center and what they search for so we can continue to <strong>iterate</strong>.</li></ul><p>You can <a
href="http://kareo.com/help">see the new Help Center in action here</a>.</p><h4>Old Help Center</h4><p><a
href="http://www.kareo.com/help"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/old11.jpg" alt="Old1" border="0" width="500" height="455" /></a></p><p><a
href="http://www.kareo.com/help"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/old2.jpg" alt="Old2" border="0" width="500" height="444" /></a></p><h4>New Help Center</h4><p><a
href="http://www.kareo.com/help"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/new1.jpg" alt="New1" border="0" width="500" height="355" /><br
/> </a></p><p><a
href="http://www.kareo.com/help"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/new2.jpg" alt="New2" border="0" width="500" height="343" /></a></p><p><a
href="http://www.kareo.com/help"><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/new3.jpg" alt="New3" border="0" width="200" height="390" /></a></p> 
<p><a href="http://feedads.g.doubleclick.net/~a/EZjIKQAfslULcOk6lyOIps0BSZg/0/da"><img src="http://feedads.g.doubleclick.net/~a/EZjIKQAfslULcOk6lyOIps0BSZg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/EZjIKQAfslULcOk6lyOIps0BSZg/1/da"><img src="http://feedads.g.doubleclick.net/~a/EZjIKQAfslULcOk6lyOIps0BSZg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/LeeMunroeBlog/~4/qqDjX69UjbA" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/kareo-help-center/feed/</wfw:commentRss> <slash:comments>1</slash:comments> <feedburner:origLink>http://www.leemunroe.com/kareo-help-center/</feedburner:origLink></item> <item><title>Friends’ School Lisburn viral lipdub video</title><link>http://feedproxy.google.com/~r/LeeMunroeBlog/~3/cQNq2V7WxdA/</link> <comments>http://www.leemunroe.com/friends-school-lisburn-viral-lipdub-video/#comments</comments> <pubDate>Mon, 16 Jan 2012 16:50:50 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Northern Ireland]]></category> <category><![CDATA[lipdub]]></category> <category><![CDATA[northern ireland]]></category> <category><![CDATA[video]]></category> <category><![CDATA[viral]]></category><guid isPermaLink="false">http://www.leemunroe.com/?p=2709</guid> <description><![CDATA[It was great to see this video from Friends&#8217; School Lisburn go viral over the weekend. In just 3 days it has received over 100,000 views, which is a fantastic&#8230;]]></description> <content:encoded><![CDATA[<p>It was great to see this video from Friends&#8217; School Lisburn go viral over the weekend.</p><p>In just 3 days it has received over 100,000 views, which is a fantastic accomplishment for any YouTube video, let alone one produced in Northern Ireland.</p><p>The video was put together by one of NI&#8217;s talented young cinematographers <a
href="https://twitter.com/#!/mattgoood">Matt Good</a> (who incidentally happens to be my cousin). Well done to Matt and all Friends&#8217; staff and students involved in the video.</p><p>Makes me want to go back to school. Enjoy.</p><p
align="center"><a
href="http://www.leemunroe.com/friends-school-lisburn-viral-lipdub-video/"><img
src="http://img.youtube.com/vi/LGMIzHDzEtI/default.jpg" width="130" height="97" border=0></a></p><p>You can <a
href="http://vimeo.com/user2380077/videos">view some of Matt&#8217;s earlier work here</a>.</p> 
<p><a href="http://feedads.g.doubleclick.net/~a/V4YGYSsmwjaf2KyDCFZGFd69MUE/0/da"><img src="http://feedads.g.doubleclick.net/~a/V4YGYSsmwjaf2KyDCFZGFd69MUE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/V4YGYSsmwjaf2KyDCFZGFd69MUE/1/da"><img src="http://feedads.g.doubleclick.net/~a/V4YGYSsmwjaf2KyDCFZGFd69MUE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/LeeMunroeBlog/~4/cQNq2V7WxdA" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/friends-school-lisburn-viral-lipdub-video/feed/</wfw:commentRss> <slash:comments>5</slash:comments> <feedburner:origLink>http://www.leemunroe.com/friends-school-lisburn-viral-lipdub-video/</feedburner:origLink></item> <item><title>Goals for 2012</title><link>http://feedproxy.google.com/~r/LeeMunroeBlog/~3/NDMOIWKjcC8/</link> <comments>http://www.leemunroe.com/2012-goals/#comments</comments> <pubDate>Mon, 09 Jan 2012 07:01:03 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[General News]]></category> <category><![CDATA[2011]]></category> <category><![CDATA[2012]]></category> <category><![CDATA[goals]]></category> <category><![CDATA[new years resolutions]]></category> <category><![CDATA[resolutions]]></category><guid isPermaLink="false">http://www.leemunroe.com/?p=2696</guid> <description><![CDATA[A quick blog post about things I learned and accomplished in 2011 and goals for 2012. I hope that by writing them down there&#8217;s more chance of me actually doing&#8230;]]></description> <content:encoded><![CDATA[<p>A quick blog post about things I learned and accomplished in 2011 and goals for 2012.</p><p>I hope that by writing them down there&#8217;s more chance of me actually doing them.</p><h4>Things I learned and put into practice in 2011</h4><ul><li>Learned <a
href="http://haml-lang.com/">Haml</a> and <a
href="http://sass-lang.com/">Sass</a> for a couple of Rails projects</li><li>Started using <a
href="http://html5boilerplate.com/">HTML5 Boilerplate</a></li><li>Started making websites <a
href="http://www.leemunroe.com/adaptive-responsive/">responsive</a></li><li>Am now using <a
href="http://www.leemunroe.com/html5-web-designer/">HTML5 and CSS3</a> for every web project</li><li>Learned how to deploy web apps with <a
href="http://www.leemunroe.com/deploy-rails-with-capistrano/">Capistrano</a></li><li>Redesigned <a
href="http://tweetni.com">TweetNI</a></li><li>Redesigned <a
href="http://webdesignire.com">WebDesignire</a></li></ul><h4>Books read in 2011</h4><ul><li><a
href="http://www.amazon.co.uk/Lean-Startup-Innovation-Successful-Businesses/dp/0670921602/">The Lean Startup</a></li><li><a
href="http://www.amazon.co.uk/gp/product/0321719905?ie=UTF8&#038;tag=10homepa-21&#038;linkCode=shr&#038;camp=3194&#038;creative=21330&#038;creativeASIN=0321719905&#038;ref_=sr_1_1&#038;s=books&#038;qid=1325564474&#038;sr=1-1">Undercover UX Design</a></li><li><a
href="http://www.amazon.co.uk/gp/product/1430232889?ie=UTF8&#038;tag=10homepa-21&#038;linkCode=shr&#038;camp=3194&#038;creative=21330&#038;creativeASIN=1430232889&#038;ref_=sr_1_1&#038;s=books&#038;qid=1325564561&#038;sr=1-1">Pro CSS for High Traffic Websites</a></li><li><a
href="http://www.amazon.co.uk/gp/product/B001AQ95UY?ie=UTF8&#038;tag=10homepa-21&#038;linkCode=shr&#038;camp=3194&#038;creative=21330&#038;creativeASIN=B001AQ95UY&#038;ref_=sr_1_1&#038;s=books&#038;qid=1325564620&#038;sr=1-1 ">Inspired: How to Create Products Customers Love</a></li><li><a
href="https://www.rosenfeldmedia.com/books/prototyping/">Prototyping</a></li><li><a
href="http://www.abookapart.com/products/responsive-web-design">Responsive Web Design</a></li></ul><h4>New software/apps for 2011</h4><p>Some of these apps I had used before, but in 2011 I found myself becoming more reliant on them and working them into my daily routine.</p><ul><li><a
href="http://axure.com/">Axure</a> for prototyping</li><li><a
href="https://www.evernote.com/">Evernote</a> for taking notes (and sharing across multiple devices)</li><li><a
href="https://agilebits.com/onepassword">OnePassword</a> for remembering usernames/passwords</li><li><a
href="http://www.leemunroe.com/omnigraffle/">Omnigraffle</a> for wireframing and sitemaps</li><li><a
href="http://www.tripit.com/">Tripit</a> for keeping track of travel plans</li></ul><h4>Goals for 2011</h4><p>A look back at the goals I set this time last year.</p><p><strong><del>1. Read more books</del></strong><br
/> Success: I read a good few books.</p><p><strong>2. Talk at more events</strong><br
/> Fail: There were a few Barcamp and Bizcamp opportunities, but I struggled to find the time to commit to any.</p><p><strong>3. Develop an iPhone app</strong><br
/> Fail: Purchased &#8220;Beginning iPhone 4 Development&#8221; but struggled to get past the first chapter. Started looking at <a
href="http://www.appcelerator.com/">Appcelorator</a> instead.</p><p><strong>4. More side projects</strong><br
/> Fail: Started off the year well by redesigning a couple of <a
href="http://tweetni.com/">older</a> <a
href="http://webdesignire.com/">projects</a>, but didn&#8217;t get around to working on anything new.</p><p><strong><del>5. Blog more</del></strong><br
/> Success: Blogged more this year than I did last year.</p><h4>Goals for 2012</h4><p><strong>1. Be more mobile focused</strong><br
/> Kind of broad but comes down to designing/developing for mobile. Whether that&#8217;s native apps, html5 apps, responsive websites &#8211; who knows.</p><p><strong>2. Release an iPhone app</strong><br
/> Related to the first goal, I want the experience of developing an app from scratch, submitting it to the app store and seeing it go live.</p><p><strong>3. Compete in a triathlon</strong><br
/> I don&#8217;t own a race bike yet and can&#8217;t swim very far, but I figure I might have a go at it.</p><p><strong>4. Snowboard</strong><br
/> Just something I&#8217;ve always wanted to try.</p><p><strong>5. Release at least 3 side projects</strong><br
/> There are 46 items on my &#8220;Someday&#8221; list so at least 3 of them should be achievable.</p><p>What do you think, decent list?</p> 
<p><a href="http://feedads.g.doubleclick.net/~a/vr__lJRrdDgvNplmxld1noepwgk/0/da"><img src="http://feedads.g.doubleclick.net/~a/vr__lJRrdDgvNplmxld1noepwgk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vr__lJRrdDgvNplmxld1noepwgk/1/da"><img src="http://feedads.g.doubleclick.net/~a/vr__lJRrdDgvNplmxld1noepwgk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/LeeMunroeBlog/~4/NDMOIWKjcC8" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/2012-goals/feed/</wfw:commentRss> <slash:comments>2</slash:comments> <feedburner:origLink>http://www.leemunroe.com/2012-goals/</feedburner:origLink></item> <item><title>3 ways to improve copy for a better user experience</title><link>http://feedproxy.google.com/~r/LeeMunroeBlog/~3/BAyLjjQBcps/</link> <comments>http://www.leemunroe.com/improve-copywriting/#comments</comments> <pubDate>Tue, 06 Dec 2011 08:00:30 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[User Experience Design]]></category> <category><![CDATA[content]]></category> <category><![CDATA[copy]]></category> <category><![CDATA[kareo]]></category> <category><![CDATA[user experience]]></category> <category><![CDATA[ux]]></category> <category><![CDATA[wording]]></category><guid isPermaLink="false">http://www.leemunroe.com/?p=2660</guid> <description><![CDATA[Recently I wrote about user testing content, and how the main results I got from testing was that the copy and content needed to be improved. Specifically, I was talking&#8230;]]></description> <content:encoded><![CDATA[<p>Recently I wrote about <a
href="http://www.leemunroe.com/user-testing-content/">user testing content</a>, and how the main results I got from  testing was that the <strong>copy and content needed to be improved</strong>.</p><p>Specifically, I was talking about the <strong>wording of the copy in applications</strong> (web, desktop and mobile).</p><p>Here are three ways in which copy can be improved:</p><h4>1. Words need changed</h4><p>In this case, the word(s) <strong>didn&#8217;t make sense</strong> to the user.</p><p>I had made a (wrong) assumption that all users knew what certain abbreviations were when some didn&#8217;t. Also in some cases the copy was rushed so it just didn&#8217;t read very well.</p><p><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/reword1.jpg" alt="Reword1" border="0" width="361" height="290" /></p><h5>Solution</h5><p>Change the wording so it makes sense and is <strong>understood by all types of users</strong>.</p><p>Pay attention to grammar and <strong>write full words</strong> as opposed to abbreviations if there&#8217;s any chance a percentage of users won&#8217;t understand it.</p><p><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/reword2.jpg" alt="Reword2" border="0" width="361" height="290" /></p><h4>2. Words need added</h4><p>In some cases users would ask &#8220;What does this mean?&#8221; or &#8220;Why do you need this?&#8221;. <strong>There wasn&#8217;t enough information</strong> to clarify that.</p><p><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/add1.jpg" alt="Add1" border="0" width="361" height="290" /></p><h5>Solution</h5><p><strong>Add a word</strong> or two to make it abundantly clear what you&#8217;re referring to.</p><p><strong>Add some <a
href="http://bokardo.com/archives/writing-microcopy/">microcopy</a></strong> under the input field to help guide the user and help explain why you need this information.</p><p><img
style="display:block; margin-left:auto; margin-right:auto;"  src="http://www.leemunroe.com/wp-content/uploads/add21.jpg" alt="" title="add2" width="361" height="290" class="alignnone size-full wp-image-2664" /></p><h4>3. Words need removed</h4><p>My favourite solution, removing words. We tend to waffle, a lot. <strong>The more you write the less people will read it.</strong></p><p>In one particular example, there is a page with a notification that explains to the user that they have to print and sign additional documents. But because there was so much text within this notification area, they simply weren&#8217;t reading it.</p><p><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/remove1.jpg" alt="Remove1" border="0" width="361" height="363" /></p><h5>Solution</h5><p>Make copy as short as possible. Always <strong>re-read your copy and remove words</strong> if you can.</p><p><strong>Add tooltips</strong> or links to more information for users who may need to read more.</p><p><img
style="display:block; margin-left:auto; margin-right:auto;" src="http://www.leemunroe.com/wp-content/uploads/remove2.jpg" alt="Remove2" border="0" width="361" height="363" /></p><p><strong><em>Have you any tips for writing copy?</em></strong></p> 
<p><a href="http://feedads.g.doubleclick.net/~a/lANt1pAftC2W5hREh4oj4fML8qw/0/da"><img src="http://feedads.g.doubleclick.net/~a/lANt1pAftC2W5hREh4oj4fML8qw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/lANt1pAftC2W5hREh4oj4fML8qw/1/da"><img src="http://feedads.g.doubleclick.net/~a/lANt1pAftC2W5hREh4oj4fML8qw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/LeeMunroeBlog/~4/BAyLjjQBcps" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/improve-copywriting/feed/</wfw:commentRss> <slash:comments>6</slash:comments> <feedburner:origLink>http://www.leemunroe.com/improve-copywriting/</feedburner:origLink></item> </channel> </rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic
Database Caching 16/25 queries in 1.745 seconds using disk: basic

Served from: www.leemunroe.com @ 2012-05-26 18:11:13 -->

