<?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>Lee Munroe &#187; apps</title> <atom:link href="http://www.leemunroe.com/tags/apps/feed/" rel="self" type="application/rss+xml" /><link>http://www.leemunroe.com</link> <description>User Experience and Web Interface Designer Lee Munroe</description> <lastBuildDate>Thu, 09 Feb 2012 02:44:16 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3</generator> <item><title>How to deploy your Rails app with Capistrano (to Dreamhost)</title><link>http://www.leemunroe.com/deploy-rails-with-capistrano/</link> <comments>http://www.leemunroe.com/deploy-rails-with-capistrano/#comments</comments> <pubDate>Wed, 26 Jan 2011 09:01:29 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[apps]]></category> <category><![CDATA[capistrano]]></category> <category><![CDATA[development]]></category> <category><![CDATA[dreamhost]]></category> <category><![CDATA[rails]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=2245</guid> <description><![CDATA[I&#8217;ve been doing a bit of Rails development recently. I&#8217;ve actually been doing what I would call &#8216;basic&#8217; Rails development for a couple of years now on and off. However,&#8230;<html><body><h1>400 Bad request</h1> Your browser sent an invalid request.</body></html> ]]></description> <content:encoded><![CDATA[<p>I&#8217;ve been doing a bit of Rails development recently. I&#8217;ve actually been doing what I would call &#8216;basic&#8217; Rails development for a couple of years now on and off.</p><p>However, <strong>I&#8217;d never used Capistrano</strong> to deploy a web app before. It was always one of those other things that I would have to learn. But recently, with the re-launched <a
href="http://tweetni.com">TweetNI</a>, I decided to sit down and figure it out.</p><p>It didn&#8217;t go quite as smoothly as I had planned so here&#8217;s a quick overview to help you get up and running.</p><p><span
id="more-2245"></span></p><h4>What is Capistrano?</h4><blockquote><p>Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH.<br
/> &mdash; <a
href="https://github.com/capistrano/capistrano">GitHub</a></p></blockquote><p>Sounds a bit complicated but in a nutshell, <strong>you run a command (or two) via Terminal (or Command Line) and your Rails app is &#8216;automagically&#8217; up and running on your server</strong>.</p><p>If you&#8217;ve ever deployed a Rails app manually like I have before, you might have uploaded the files via <strong>FTP</strong>, then created your database in <strong>PHPMyAdmin</strong>, then <strong>&#8216;touched&#8217; the restart.txt</strong> file via SSH (yep, so old skool).</p><p>Capistrano combines all this into a couple of commands.</p><h4>Setup Capistrano</h4><p>Assuming you have Terminal open on a mac, run the following commands:</p><h5>1. Install the gem</h5><pre><code>gem install capistrano</code></pre><h5>2. Tell your app you want to deploy with Capistrano</h5><pre><code>cd your_app_folder
capify .</code></pre><h5>3. Configure deploy.rb</h5><p>There is a new file for you to configure under <strong>/config/deploy.rb</strong></p><p>I&#8217;m going to assume you&#8217;re <strong>*not* using SVN or Git</strong> for this project (it just so happens I didn&#8217;t use them for this project).</p><p>Copy and paste the following:</p><pre><code>require 'bundler/capistrano'

set :application, "tweetni.com" # Your application location on your server goes here

default_run_options[:pty] = true

set :repository,  "."
set :scm, :none
set :deploy_via, :copy

set :checkout, 'export'

set :user, 'username' # Your username goes here
set :use_sudo, false
set :domain, 'tweetni.com' # Your domain goes here
set :applicationdir, "/home/#{user}/#{application}"
set :deploy_to, applicationdir

role :web, domain                 
role :app, domain                          
role :db,  domain, :primary =&gt; true 


set :chmod755, "app config db lib public vendor script script/* public/disp*"

namespace :deploy do
  
  task :start do ; end
  task :stop do ; end
  task :restart, :roles =&gt; :app, :except =&gt; { :no_release =&gt; true } do
    run "#{try_sudo} touch #{File.join(current_path,'tmp','restart.txt')}"
  end
  
end</code></pre><p>Make sure you change your app folder, username and domain to your settings.</p><h5>4. Setup your server</h5><pre><code>cap deploy:setup</code></pre><p>You only need to run this command once.</p><p>Each time you deploy, <strong>SSH will ask for your password</strong>.</p><h5>5. Deploy</h5><pre><code>cap deploy:cold
cap deploy:web:enable
cap deploy:migrations</code></pre><h5>You&#8217;re up and running</h5><p>If everything went to plan you should be up and running.</p><p>From now on any time you make any changes you just need to run the following:</p><pre><code>cap deploy</code></pre><h4>On Dreamhost</h4><p>I don&#8217;t know if I did something wrong along the process but after step 5 I couldn&#8217;t get my app to run so<strong> I sent Dreamhost a little support question</strong> and they replied saying:</p><blockquote><p>Sorry about that, I needed to create a symlink to bundle. Give it a try now and write back in if you&#8217;re still having an issue.</p></blockquote><p>Not sure if this happens every time but try giving support a shout if it does.</p><p><strong><em>Hope this is helpful to someone.</em></strong></p><h4>Further reading</h4><ul><li><a
href="http://www.maxkpage.com/blog/capistrano-rails-deploy-without-svn-or-git/">Deploy with Capistrano without SVN or Git</a></li><li><a
href="https://github.com/capistrano/capistrano">Official Capistrano page</a></li><li><a
href="http://wiki.dreamhost.com/Capistrano">Capistrano on Dreamhost</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/deploy-rails-with-capistrano/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>10 iPhone apps from Northern Ireland you should check out</title><link>http://www.leemunroe.com/northern-ireland-iphone-apps/</link> <comments>http://www.leemunroe.com/northern-ireland-iphone-apps/#comments</comments> <pubDate>Tue, 30 Nov 2010 09:01:26 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Northern Ireland]]></category> <category><![CDATA[apps]]></category> <category><![CDATA[iphone]]></category> <category><![CDATA[northern ireland]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=2197</guid> <description><![CDATA[I&#8217;ve been spending a bit of time recently designing an iPhone app and as a result I&#8217;ve installed quite a lot of apps on my own iPhone for research. One&#8230;]]></description> <content:encoded><![CDATA[<p>I&#8217;ve been spending a bit of time recently designing an iPhone app and as a result I&#8217;ve installed quite a lot of apps on my own iPhone for research. One thing I&#8217;ve noticed is <strong>there are a load of great iPhone apps and developers based here in Northern Ireland</strong>.</p><p>I <a
href="http://twitter.com/#!/leemunroe/status/5237705411665920">recently tweeted</a> looking for <strong>recommended Northern Irish iPhone apps</strong>. Based on a combination of the replies I got, the top 10 local apps from <a
href="http://www.syncni.com/">SyncNI</a> and my own personal favourites, I&#8217;ve put together this list of apps from Northern Ireland that you should definitely check out.</p><p><span
id="more-2197"></span></p><h4>1. <a
href="http://itunes.apple.com/us/app/pocket-universe-virtual-sky/id306916838?mt=8">Pocket Universe</a></h4><p>Pocket Universe is an easy-to-use app that <strong>will help you learn constellations, bright stars and planets</strong>. You can literally hold up your iPhone 3GS/4 in front of you, and the app will use the built-in compass to display the same view of the sky you see &#8211; but one that&#8217;s complete with names and information.</p><div
style="text-align:center;"><a
href="http://itunes.apple.com/us/app/pocket-universe-virtual-sky/id306916838?mt=8"><img
src="http://www.leemunroe.com/wp-content/uploads/planet.jpg" alt="planet.jpg" border="0" width="320" height="480" /></a></div><p>Developer: <a
href="http://pocketuniverse.info/">Craic Design</a></p><h4>2. <a
href="http://itunes.apple.com/app/used-cars-ni/id369392226?mt=8">Used Cars NI</a></h4><p>Search <strong>Northern Ireland Used Cars</strong> for sale, Offers, Vans, Farm/Plant, Motorbikes, Caravans/Motorhomes, Salvage and Boats in an easy-to-use application.</p><div
style="text-align:center;"><a
href="http://itunes.apple.com/app/used-cars-ni/id369392226?mt=8"><img
src="http://www.leemunroe.com/wp-content/uploads/cars.jpg" alt="cars.jpg" border="0" width="320" height="480" /></a></div><p>Developer: <a
href="http://eclipticlabs.com">Ecliptic Labs</a><br
/> Website: <a
href="http://www.usedcarsni.com/">Used Cards NI</a></p><h4>3. <a
href="http://itunes.apple.com/us/app/shhmooze/id400523342?mt=8">Shhmooze</a></h4><p>Shhmooze helps you <strong>connect with the useful or interesting strangers around you</strong>. With Shhmooze you don&#8217;t need to &#8216;work&#8217; a whole room &#8211; you can focus on getting to know the people you need to know – quickly and easily! Change the way you meet people with Shhmooze!</p><div
style="text-align:center;"><a
href="http://itunes.apple.com/us/app/shhmooze/id400523342?mt=8"><img
src="http://www.leemunroe.com/wp-content/uploads/shhmooze.jpg" alt="shhmooze.jpg" border="0" width="320" height="480" /></a></div><p>Developer: <a
href="http://shhmooze.com/">Shhmooze</a></p><h4>4. <a
href="http://itunes.apple.com/us/app/belfast-music/id356838268?mt=8">Belfast Music</a></h4><p>The Belfast Music iPhone app <strong>showcases past legends and contemporary inspirations</strong> that have shaped the music landscape of our city. Check out where Belfast legends grew up and cut their musical teeth, and <strong>check out the many venues that show off the present wealth of musical talent</strong>.</p><div
style="text-align:center;"><a
href="http://itunes.apple.com/us/app/belfast-music/id356838268?mt=8"><img
src="http://www.leemunroe.com/wp-content/uploads/music1.jpg" alt="music.jpg" border="0" width="320" height="460" /></a></div><p>Developer: <a
href="http://www.filmtrip.tv/">Filmtrip Ltd</a><br
/> Website: <a
href="http://www.belfastmusic.org/">Belfast Music</a></p><h4>5. <a
href="http://itunes.apple.com/gb/app/cool-fm/id377896188?mt=8">Cool FM</a></h4><p><strong>Listen Live to Cool FM</strong> on your iPhone, at home, at work, on the move.</p><div
style="text-align:center;"><a
href="http://itunes.apple.com/gb/app/cool-fm/id377896188?mt=8"><img
src="http://www.leemunroe.com/wp-content/uploads/cool1.jpg" alt="cool.jpg" border="0" width="320" height="460" /></a></div><p>Website: <a
href="http://coolfm.co.uk">Cool FM</a></p><h4>6. <a
href="http://itunes.apple.com/gb/app/rorys-story-cubes/id342808551?mt=8">Rory&#8217;s Story Cubes</a></h4><p>Rory’s Story Cubes is an invitation to <strong>shared creative thinking</strong>, just open-ended enough to <strong>encourage spontaneity and humor</strong>, just structured enough to <strong>maintain focus and challenge</strong>&#8230;Play it by yourself. Play it with friends. Play it with family. Play it at a party. By all means, play it.</p><div
style="text-align:center;"><a
href="http://itunes.apple.com/gb/app/rorys-story-cubes/id342808551?mt=8"><img
src="http://www.leemunroe.com/wp-content/uploads/rory.jpg" alt="rory.jpg" border="0" width="320" height="480" /></a></div><p>Website: <a
href="http://www.storycubes.com/">Rory&#8217;s Story Cubes</a></p><h4>7. <a
href="http://itunes.apple.com/gb/app/nijobfinder-co-uk/id384739992?mt=8">NI Job Finder</a></h4><p>Search through <strong>Northern Ireland&#8217;s largest selection of jobs</strong>.</p><div
style="text-align:center;"><a
href="http://itunes.apple.com/gb/app/nijobfinder-co-uk/id384739992?mt=8"><img
src="http://www.leemunroe.com/wp-content/uploads/job.jpg" alt="job.jpg" border="0" width="320" height="480" /></a></div><p>Developer: <a
href="http://www.gcdtech.com/">GCD Technologies</a><br
/> Website: <a
href="http:/nijobfinder.co.uk">NI Job Finder</a></p><h4>8. <a
href="http://itunes.apple.com/us/app/hector-badge-of-carnage-ep1/id351646413?mt=8">Hector</a></h4><p>When a hostage crisis erupts in the centre of Clappers Wreake, <strong>only one man has the diplomatic finesse to defuse a simmering situation before it boils over into a stew of butchery and bloodshed: Detective Inspector Hector.</strong></p><p>It’s not for kids.</p><div
style="text-align:center;"><a
href="http://itunes.apple.com/us/app/hector-badge-of-carnage-ep1/id351646413?mt=8"><img
src="http://www.leemunroe.com/wp-content/uploads/hector.jpg" alt="hector.jpg" border="0" width="480" height="320" /></a></div><p>Developer: <a
href="http://www.straandlooper.com/">Straandlooper</a><br
/> Website: <a
href="http://www.thehectorfiles.com/">The Hector Files</a></p><h4>9. <a
href="http://itunes.apple.com/us/app/rock-out/id340954059?mt=8">Rock Out</a></h4><p>Think <strong>air guitar meets the real thing.</strong> A simple interface ensures you can feel the rhythm, follow the beat and rock out to the music in true style.</p><div
style="text-align:center;"><a
href="http://itunes.apple.com/us/app/rock-out/id340954059?mt=8"><img
src="http://www.leemunroe.com/wp-content/uploads/rockout.jpg" alt="rockout.jpg" border="0" width="320" height="480" /></a></div><p>Developer: <a
href="http://www.thedesignzoo.co.uk/">The Design Zoo</a><br
/> Website: <a
href="http://www.rockoutlegend.com/">Rock Out Legend</a></p><h4>10. <a
href="http://itunes.apple.com/gb/app/irish-football-association/id400284306?mt=8">Irish FA</a></h4><p>Get the latest information from inside <strong>Northern Ireland football</strong>.</p><div
style="text-align:center;"><a
href="http://itunes.apple.com/gb/app/irish-football-association/id400284306?mt=8"><img
src="http://www.leemunroe.com/wp-content/uploads/ifa.jpg" alt="ifa.jpg" border="0" width="320" height="460" /></a></div><p>Developer: <a
href="http://paperbagltd.com/">Paper Bag</a><br
/> Website: <a
href="http://irishfa.com/">Irish FA</a></p><h4>Bonus: <a
href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=387163670&#038;cc=gb&#038;mt=8">Lookaly</a></h4><p>Added as a bonus since this is the one I&#8217;m associated with. Lookaly helps you find the best places and services in your area based on reviews from others.</p><div
style="text-align:center;"><a
href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=387163670&#038;cc=gb&#038;mt=8"><img
src="http://www.leemunroe.com/wp-content/uploads/lookaly4.jpg" alt="lookaly.jpg" border="0" width="320" height="460" /></a></div><p>Developer: <a
href="http://eclipticlabs.com">Ecliptic Labs</a><br
/> Website: <a
href="http://lookaly.com">Lookaly</a></p><h4>More apps from Northern Ireland?</h4><p>Apologies if I forgot any obvious ones or overlooked your own app. There are a lot more that I&#8217;ve missed but I&#8217;m more than happy to add them to the list here.</p><ul><li><a
href="http://itunes.apple.com/us/app/goexplore-northern-ireland/id398214524?mt=8">Go Explore NI</a></li><li><a
href="http://itunes.apple.com/gb/app/grand-opera-house/id335365324?mt=8">Grand Opera House</a></li><li><a
href="http://itunes.apple.com/us/app/lightbox/id331342977?mt=8">Media Lightbox</a></li><li><a
href="http://itunes.apple.com/app/my-webcam/id299055510?mt=8">My Webcam</a></li><li><a
href="http://itunes.apple.com/gb/app/propertynews/id346565676?mt=8">Property News</a></li><li><a
href="http://itunes.apple.com/app/skunk-100-real-farts/id323698989?mt=8">Skunk</a></li><li><a
href="http://itunes.apple.com/gb/app/the-ulster-orchestra/id393156441?mt=8">The Ulster Orchestra</a></li></ul><p><strong><em>If you know any good iPhone apps from Northern Ireland or have developed one yourself, leave a comment below with the link and I&#8217;ll add it here.</em></strong></p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/northern-ireland-iphone-apps/feed/</wfw:commentRss> <slash:comments>14</slash:comments> </item> <item><title>5 Mac Apps You Should Try</title><link>http://www.leemunroe.com/recommended-mac-apps/</link> <comments>http://www.leemunroe.com/recommended-mac-apps/#comments</comments> <pubDate>Wed, 18 Aug 2010 08:01:10 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[General News]]></category> <category><![CDATA[Apple]]></category> <category><![CDATA[apps]]></category> <category><![CDATA[browser]]></category> <category><![CDATA[chrome]]></category> <category><![CDATA[inspiration]]></category> <category><![CDATA[journal]]></category> <category><![CDATA[mac]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[Twitter]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=2081</guid> <description><![CDATA[Nearly two years ago I published a post on 15 mac apps web designers should have in their dock. I thought it was about time I updated this list with&#8230;]]></description> <content:encoded><![CDATA[<p>Nearly two years ago I published a post on <a
href="http://www.leemunroe.com/15-mac-apps-web-designers-should-have-in-their-dock/">15 mac apps web designers should have in their dock</a>.</p><p>I thought it was about time I updated this list with any new apps I&#8217;ve started using but turns out I&#8217;ve been using pretty much the same lot since then.</p><p>Here are 5 new apps I&#8217;ve been introduced to during that time and now use daily.</p><p><span
id="more-2081"></span></p><h4><a
href="http://www.google.co.uk/chrome">1. Google Chrome</a></h4><div
style="text-align:center;"><a
href="http://www.google.co.uk/chrome"><img
src="http://www.leemunroe.com/wp-content/uploads/chrome.gif" alt="chrome.gif" border="0" width="128" height="128" /></a></div><p>Firefox was once my choice but for some reason it started running very slow for me. I&#8217;d especially find YouTube videos very jumpy. So one day I tried out Chrome and absolutely loved it. It&#8217;s light weight, fast and trim.</p><p>After I sourced a few extensions I use often (namely <a
href="https://chrome.google.com/extensions/detail/lnejbeiilmbliffhdepeobjemekgdnok">Delicious</a> and <a
href="https://chrome.google.com/extensions/detail/hmdcmlfkchdmnmnmheododdhjedfccka">EyeDropper</a>) I fully switched over my default browser.</p><p>Chrome also renders with the WebKit engine so <strong>you get all the nice CSS3 and HTML5 goodies</strong> (that also come with Safari).</p><p>I still tend to keep Firefox open though. <strong>It&#8217;s hard to beat that Developer Toolbar and Firebug.</strong> I also prefer the autocomplete that comes with the Firefox web address bar.</p><p>If you&#8217;re asking &#8220;What about Safari?&#8221; I never really got using it &#8211; an earlier version used to crash on me quite a lot which put me off it.</p><h4><a
href="http://mailplaneapp.com/">2. Mailplane</a></h4><div
style="text-align:center;"><a
href="http://mailplaneapp.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/mailplane.gif" alt="mailplane.gif" border="0" width="128" height="128" /></a></div><p>Only started using this recently for managing emails. I have 4 different GMail accounts for different domains that I was continually checking and had tabs open in the browser for (I wanted to keep them separate).</p><p>Mailplane is a desktop app but with the same look and feel and interaction as GMail has in the browser. <strong>It has some niceties like a top toolbar and &#8216;neater&#8217; switching between accounts.</strong></p><h4><a
href="http://www.tweetdeck.com/">3. TweetDeck</a></h4><div
style="text-align:center;"><a
href="http://www.tweetdeck.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/tweetdeck.gif" alt="tweetdeck.gif" border="0" width="128" height="128" /></a></div><p>This is my Twitter client of choice. Some people really dislike it, and to be honest it doesn&#8217;t scream of the typical nice UI you get with Mac apps, but <strong>I find it really handy for keeping track of multiple accounts and groups of people</strong>.</p><p>Also nice integration with other social networks like Facebook, LinkedIn, even FourSquare.</p><h4><a
href="http://www.marinersoftware.com/products/macjournal/">4. MacJournal</a></h4><div
style="text-align:center;"><a
href="http://www.marinersoftware.com/products/macjournal/"><img
src="http://www.leemunroe.com/wp-content/uploads/macjournal.gif" alt="macjournal.gif" border="0" width="128" height="128" /></a></div><p>MacJournal actually came part of a <a
href="http://www.macheist.com/">MacHeist</a> bundle and I find it really useful for taking daily notes. I now use it to keep track of:</p><ul><li>Meetings (what was discussed)</li><li>Events (what was talked about)</li><li>Books (overviews and key notes)</li><li>Workshops (what I learned)</li></ul><p>Great for referring back to. In the past I would have recorded these things in a notebook, which would eventually be lost, forgot about or binned.</p><h4><a
href="http://www.realmacsoftware.com/littlesnapper/">5. LittleSnapper</a></h4><div
style="text-align:center;"><a
href="http://www.realmacsoftware.com/littlesnapper/"><img
src="http://www.leemunroe.com/wp-content/uploads/littlesnapper.gif" alt="littlesnapper.gif" border="0" width="128" height="128" /></a></div><p>LittleSnapper was also part of a MacHeist bundle. <strong>Useful for taking screenshots of web pages and nice graphics then keeping them to hand for inspiration.</strong></p><p>I wish I could say I had a really neat and nicely configured LittleSnapper for all areas of inspiration but I never get around to organising it (except once when I did it on a plane).</p><h4>What would you recommend?</h4><p>I&#8217;m sure there are tonnes of apps out there that I haven&#8217;t tried and should be using.</p><p><strong><em>If you were to recommend one really good app that I haven&#8217;t mentioned, what would it be?</em></strong></p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/recommended-mac-apps/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>10 Websites Every Web Designer Should Know About</title><link>http://www.leemunroe.com/designer-resources/</link> <comments>http://www.leemunroe.com/designer-resources/#comments</comments> <pubDate>Thu, 11 Feb 2010 12:48:08 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[apps]]></category> <category><![CDATA[istockphoto]]></category> <category><![CDATA[p52]]></category> <category><![CDATA[resources]]></category> <category><![CDATA[SEO]]></category> <category><![CDATA[sitemap]]></category> <category><![CDATA[smashingmag]]></category> <category><![CDATA[websites]]></category> <category><![CDATA[wireframes]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=1804</guid> <description><![CDATA[There are a number of websites that you, as a web designer, will use on a daily basis making life easier and making you more efficient. Here is a list&#8230;]]></description> <content:encoded><![CDATA[<p>There are a number of websites that you, as a web designer, will use on a daily basis <strong>making life easier and making you more efficient</strong>.</p><p>Here is a list of 10 websites (in no particular order) that I find useful and am constantly using. <strong>I&#8217;m also interested in what websites you swear by and use all the time</strong>, so please share in the comments below.</p><p><span
id="more-1804"></span></p><h4>1. <a
href="http://www.istockphoto.com">iStockphoto</a></h4><div
style="text-align:center;"><a
href="http://www.istockphoto.com/hbkmunroe"><img
src="http://www.leemunroe.com/wp-content/uploads/istock.jpg" alt="istock.jpg" border="0" width="540" height="359" /></a></div><p>iStockphoto is a collection of <strong>royalty free photos</strong>, illustrations, video and audio. You can search for these resources based on any keyword and purchase <strong>from only $1</strong>.</p><p><strong>iStockphoto saves you time and money</strong>. Need a good photo for a website but don&#8217;t have the resources to setup your own photography shoot? iStockphoto will do the job, and you&#8217;ll be able to use the photos legally as they&#8217;re royalty free.</p><p>I find it really useful for <strong>illustration graphics</strong>. There are graphics available for $10 that could otherwise take you a day or two to design from scratch.</p><h4>2. <a
href="http://instantdomainsearch.com/">Instant Domain Search</a></h4><div
style="text-align:center;"><a
href="http://instantdomainsearch.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/ids.jpg" alt="ids.jpg" border="0" width="540" height="263" /></a></div><p>Checks the <strong>availability of domain names</strong> using Ajax.</p><p>Very handy when you have a brain wave and need to check if the domain name is available.</p><h4>3. <a
href="http://www.smashingmagazine.com/">Smashing Magazine</a></h4><div
style="text-align:center;"><a
href="http://www.smashingmagazine.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/sm.jpg" alt="sm.jpg" border="0" width="540" height="334" /></a></div><p>Smashing Magazine is the <strong>ultimate web design blog</strong>.</p><p>If you need to know how to do something, or need some inspiration, Smashing Magazine will undoubtedly have an article on it somewhere. All you need to do is search the site.</p><h4>4. <a
href="http://stackoverflow.com/">Stack Overflow</a></h4><div
style="text-align:center;"><a
href="http://stackoverflow.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/stack.jpg" alt="stack.jpg" border="0" width="540" height="403" /></a></div><p>A <strong>question and answer site</strong> for programmers.</p><p>The great thing about Stack Overflow as opposed to other forums is there is <strong>no sign up required</strong>. And it has a great community around it that are always willing to help.</p><h4>5. <a
href="http://www.seomoz.org">SEOmoz</a></h4><div
style="text-align:center;"><a
href="http://www.seomoz.org"><img
src="http://www.leemunroe.com/wp-content/uploads/seo.jpg" alt="seo.jpg" border="0" width="540" height="415" /></a></div><p>SEOmoz is one of the best <strong>search engine optimisation related websites</strong> on the net.</p><p>I constantly find myself using the <a
href="http://www.seomoz.org/tools">SEO tools</a> available, especially <a
href="http://www.seomoz.org/rank-tracker">Rank Checker</a> that lets you check how your domains (and client domains) are ranking on each search engine for keywords.</p><h4>6. <a
href="http://my.lovelycharts.com/">Lovely Charts</a></h4><div
style="text-align:center;"><a
href="http://my.lovelycharts.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/lovely.jpg" alt="lovely.jpg" border="0" width="540" height="288" /></a></div><p>With Lovely Charts you can <strong>create user flow diagrams and sitemaps</strong>.</p><p>A great little app for starting off a project and getting your website flow down to a tee. Free to use.</p><h4>7. <a
href="http://www.balsamiq.com/">Balsamiq</a></h4><div
style="text-align:center;"><a
href="http://www.balsamiq.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/bal.jpg" alt="bal.jpg" border="0" width="540" height="378" /></a></div><p>Balsamiq lets you<strong> create wireframes</strong>.</p><p>It&#8217;s a quick way of doing up wireframes and it&#8217;s meant to look quick so that it&#8217;s obvious to the person you send it to that it is rough. Saves a lot of time and the online version is free.</p><h4>8. <a
href="http://www.notableapp.com/">Notable</a></h4><div
style="text-align:center;"><a
href="http://www.notableapp.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/notable.jpg" alt="notable.jpg" border="0" width="540" height="389" /></a></div><p>Notable enables you to <strong>take screenshots and then make notes on top of the design</strong>.</p><p>Great way for teams to <strong>provide feedback on designs</strong>, super easy to use and lovely user interface.</p><h4>9. <a
href="http://www.campaignmonitor.com/">Campaign Monitor</a></h4><div
style="text-align:center;"><a
href="http://www.campaignmonitor.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cam.jpg" alt="cam.jpg" border="0" width="540" height="396" /></a></div><p>For <strong>email marketing</strong>. Setup, manage, send and analyse email campaigns.</p><p>Campaign Monitor provides an easy to use interface for creating and managing your email campaigns. Once your campaign is sent, it provides <strong>statistics on how many emails opened, bounce backs, unsubscribed</strong> etc.</p><p>Very good value for money at <strong>$5 per campaign +$0.01 per recipient</strong>.</p><h4>10. <a
href="http://delicious.com">Delicious</a></h4><div
style="text-align:center;"><a
href="http://delicious.com"><img
src="http://www.leemunroe.com/wp-content/uploads/del.jpg" alt="del.jpg" border="0" width="540" height="310" /></a></div><p>Delicious lets you <strong>bookmark and tag websites</strong>.</p><p>Use delicious to <strong>tag useful or inspiring websites</strong> you come across so you can <strong>come back to them when you need them</strong>.</p><h4>Bonus: <a
href="http://dribbble.com/">Dribbble</a></h4><div
style="text-align:center;"><a
href="http://dribbble.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/dribbble.jpg" alt="dribbble.jpg" border="0" width="540" height="384" /></a></div><p>Still in &#8216;invite only&#8217; mode, Dribbble is an app for designers to <strong>share sneak peaks of your work</strong>, which can then be liked and commented on by other designers.</p><p>There is some amazing work being showcased on Dribbble.</p><h4>Bonus: <a
href="http://tvshack.net/">TV Shack</a></h4><div
style="text-align:center;"><a
href="http://tvshack.net/"><img
src="http://www.leemunroe.com/wp-content/uploads/tv.jpg" alt="tv.jpg" border="0" width="540" height="349" /></a></div><p><strong>Streams a load of movies and TV shows.</strong></p><p>Not so specific to web designers but a good resource to catch up with the latest episode of <a
href="http://tvshack.net/tv/Lost/">Lost</a>, <a
href="http://tvshack.net/tv/24/">24</a> and <a
href="http://tvshack.net/tv/Curb_Your_Enthusiasm/">Curb Your Enthusiasm</a>.</p><h4>What have I missed?</h4><p>What websites do you use regularly that other designers will find useful?</p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/designer-resources/feed/</wfw:commentRss> <slash:comments>41</slash:comments> </item> <item><title>Notes From FOWA London 2009</title><link>http://www.leemunroe.com/fowa-london-2009/</link> <comments>http://www.leemunroe.com/fowa-london-2009/#comments</comments> <pubDate>Mon, 05 Oct 2009 14:02:34 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Events]]></category> <category><![CDATA[apps]]></category> <category><![CDATA[carsonified]]></category> <category><![CDATA[fowa]]></category> <category><![CDATA[fowa2009]]></category> <category><![CDATA[london]]></category> <category><![CDATA[web apps]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=1598</guid> <description><![CDATA[Had a great time at FOWA London last week. Thanks to Ryan, Jo and the Carsonified team for hosting another superb event. Rather than listing everything that was talked about&#8230;]]></description> <content:encoded><![CDATA[<p>Had a great time at FOWA London last week. Thanks to <a
href="http://twitter.com/RyanCarson">Ryan</a>, <a
href="http://twitter.com/joleeen">Jo</a> and the <a
href="http://carsonified.com/">Carsonified team</a> for hosting another superb event.</p><p>Rather than listing everything that was talked about over the 2 day event I&#8217;ve put together some notes on things that stood out.</p><p><span
id="more-1598"></span></p><h4>280 Atlas</h4><p><a
href="http://280atlas.com/">Atlas</a> is a development environment for building web/desktop apps with <a
href="http://cappuccino.org/">Cappuccino</a>. Looks really easy to setup and should be available in November &#8211; check out the demo below.</p><div
style="text-align:center;"><a
href="http://280atlas.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/atlas.jpg" alt="atlas.jpg" border="0" width="300" height="200" /></a></div><h4>PayPal Change How We Pay</h4><p><a
href="https://www.paypal-changehowwepay.com/">PayPal</a> are opening up their platform. What does this mean? Check out the &#8216;Anthem Video&#8217; below.</p><div
style="text-align:center;"><a
href="https://www.paypal-changehowwepay.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/paypal.jpg" alt="paypal.jpg" border="0" width="300" height="196" /></a></div><h4>Facebook Connect Wizard</h4><p>Facebook now has an easier way for you to setup Facebook connect on your site. Check out <a
href="http://developers.facebook.com/setup.php">Facebook Connect Wizard</a>.</p><h4>HTML5</h4><p>Bruce Lawson gave a great talk on HTML5. I&#8217;m definitely a lot more excited about it now.</p><p>Check out <a
href="http://html5demos.com/">HTML5 Demos</a> for some cool examples (best viewed in <a
href="http://www.opera.com/">Opera</a>).</p><h4>Go Test It</h4><p>Go Test It is a useful tool for running website tests across various browsers. <a
href="http://go-test.it/fowa">Sign up for a free trial</a>.</p><div
style="text-align:center;"><a
href="http://go-test.it/fowa"><img
src="http://www.leemunroe.com/wp-content/uploads/browsers.jpg" alt="browsers.jpg" border="0" width="517" height="135" /></a></div><h4>Other speaker notes</h4><ul><li>Addison Berry &#8211; Make your app &#8216;open&#8217;, the more open it is the more you will have people contributing for free</li><li>Osama Bedier &#8211; Remove friction and enable innovation</li><li>Chris Abad &#8211; praise your passionate community, incentivise users to market for you, make use of viral channels (e.g. Twitter updates)</li><li>Robin Christopherson &#8211; 80% of Twitter is from mobile devices, captchas = 7% loss in conversions</li><li>Alex Hunter &#8211; Be emotionally invested in your brand and be willing to risk your reputation on your app</li><li>Lynne d Johnson &#8211; 35% of adults now have Facebook profiles</li><li>Dave McClure &#8211; Less = more, remove features, focus on UX, make fast iterations and measure goals</li></ul><p>As far as I know the videos of each talk will be <a
href="http://events.carsonified.com/fowa/2009/london/content">uploaded shortly</a>.</p><p>Met lots of great people at FOWA, all doing really interesting things. If there&#8217;s an opportunity for you to attend a future FOWA, take it :)</p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/fowa-london-2009/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Do You Need To Confirm/Verify Passwords On Sign Up?</title><link>http://www.leemunroe.com/confirm-passwords-signup/</link> <comments>http://www.leemunroe.com/confirm-passwords-signup/#comments</comments> <pubDate>Sun, 06 Sep 2009 23:42:52 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[apps]]></category> <category><![CDATA[forms]]></category> <category><![CDATA[passwords]]></category> <category><![CDATA[register]]></category> <category><![CDATA[signup]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=1538</guid> <description><![CDATA[This is something I&#8217;m curious about and something I&#8217;d like to get your feedback on. Do you need to confirm passwords on sign up? It&#8217;s an extra field For me,&#8230;]]></description> <content:encoded><![CDATA[<p>This is something I&#8217;m curious about and something I&#8217;d like to get your feedback on. <strong>Do you need to confirm passwords on sign up?</strong></p><p><span
id="more-1538"></span></p><h4>It&#8217;s an extra field</h4><p>For me, I don&#8217;t think you do need to confirm your password. It&#8217;s an extra field to fill in therefore <strong>it takes extra time to complete sign up</strong>, so the more fields there are to complete the more <strong>I&#8217;ll think twice about signing up</strong>.</p><h4>But what if I misspell my password?</h4><p>A password field will be starred out i.e. you don&#8217;t see what you&#8217;re typing, which means <strong>you could easily make a mistake and submit the wrong password</strong> without knowing.</p><p>This is where the &#8216;<strong>Forget your password</strong>&#8216; function comes in handy, which is an inconvenience but will have you up and running again with your old/new password in a couple of minutes.</p><h4>Sign up forms with confirm password</h4><h5><a
href="https://secure.wufoo.com/signup/1/">WuFoo</a></h5><div
style="text-align:center;"><a
href="https://secure.wufoo.com/signup/1/"><img
src="http://www.leemunroe.com/wp-content/uploads/wu.jpg" alt="wu.jpg" border="0" width="540" height="400" /></a></div><h5><a
href="https://www.google.com/accounts/NewAccount?service=mail">GMail</a></h5><div
style="text-align:center;"><a
href="https://www.google.com/accounts/NewAccount?service=mail"><img
src="http://www.leemunroe.com/wp-content/uploads/google.jpg" alt="google.jpg" border="0" width="540" height="400" /></a></div><h5><a
href="https://signup.37signals.com/basecamp/Free/signup/new">Basecamp</a></h5><div
style="text-align:center;"><a
href="https://signup.37signals.com/basecamp/Free/signup/new"><img
src="http://www.leemunroe.com/wp-content/uploads/base.jpg" alt="base.jpg" border="0" width="540" height="400" /></a></div><h4>Sign up forms without confirm password</h4><h5><a
href="https://twitter.com/signup">Twitter</a></h5><div
style="text-align:center;"><a
href="https://twitter.com/signup"><img
src="http://www.leemunroe.com/wp-content/uploads/twit.jpg" alt="twit.jpg" border="0" width="540" height="400" /></a></div><h5><a
href="http://www.facebook.com">Facebook</a></h5><div
style="text-align:center;"><a
href="http://www.facebook.com"><img
src="http://www.leemunroe.com/wp-content/uploads/face.jpg" alt="face.jpg" border="0" width="540" height="400" /></a></div><h5><a
href="http://www.tumblr.com/">Tumblr</a></h5><div
style="text-align:center;"><a
href="http://www.tumblr.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/tumb.jpg" alt="tumb.jpg" border="0" width="540" height="400" /></a></div><h4>What you think on Twitter</h4><blockquote><p><a
href="http://twitter.com/leemunroe"><img
src="http://twivatar.org/leemunroe/mini" /></a> What&#8217;s everyones thoughts on confirm/verify password fields on sign up. Are they necessary?</p></blockquote><p><a
href="http://twitter.com/djlowry"><img
src="http://twivatar.org/djlowry/mini" /></a> I&#8217;d say if you have a FOOLPROOF password reset mechanism it&#8217;s ok, but remember users are always the weak link.</p><p><a
href="http://twitter.com/paddydonnelly"><img
src="http://twivatar.org/paddydonnelly/mini" /></a> Annoying and not needed if there&#8217;s decent &#8216;forgot your password&#8217; functionality later in the game.</p><p><a
href="http://twitter.com/webtwozero"><img
src="http://twivatar.org/webtwozero/mini" /></a> yes! either that or do what neilsen suggests and make password fields plain text&#8230; :o</p><p><a
href="http://twitter.com/davymac"><img
src="http://twivatar.org/davymac/mini" /></a> Confirm/Verify just a nuisance to me, I use 1Password or Textexpander to fill that in, so it just makes me paste twice</p><p><a
href="http://twitter.com/lfer_r"><img
src="http://twivatar.org/lfer_r/mini" /></a> They are useful, but not necessary, somehow it looks unfriendly, like mistrusting the user.</p><p><a
href="http://twitter.com/yanngraf"><img
src="http://twivatar.org/yanngraf/mini" /></a> Unnecessary. The iphone Password system is good. You see the char you typed for 1 sec then it disappears</p><p><a
href="http://twitter.com/cgallagher"><img
src="http://twivatar.org/cgallagher/mini" /></a> I despise them. Just make sure they have a means of getting back in if they do manage to mess it up :)</p><p><a
href="http://twitter.com/kylegawley"><img
src="http://twivatar.org/kylegawley/mini" /></a> They don&#8217;t bother me so much, handy for the odd times when a typo is entered into a password field during a rushed sign-up.</p><p><a
href="http://twitter.com/gdpwatson"><img
src="http://twivatar.org/gdpwatson/mini" /></a> Yes. A large portion of support calls to clients regarding log in issues were reduced when we introduced a p/word confirm field.</p><p><a
href="http://twitter.com/arcainus"><img
src="http://twivatar.org/arcainus/mini" /></a> i would think so, just incase you mistype it =)</p><h4>To confirm or not to confirm?</h4><p><strong>What is the best route to take if designing/developing a sign up form?</strong> Have an extra field to verify the password or forget about the extra field and assume if the user makes a mistake they can use the forgotten password link? Or is there something else about the confirm password field that I&#8217;m overlooking here?</p><p><strong><em>Let me know what you think as a user and your reasoning behind your preference.</em></strong></p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/confirm-passwords-signup/feed/</wfw:commentRss> <slash:comments>26</slash:comments> </item> <item><title>10 Web App Tips From 8 Inspirational Speakers</title><link>http://www.leemunroe.com/10-web-app-tips-from-fowa-london/</link> <comments>http://www.leemunroe.com/10-web-app-tips-from-fowa-london/#comments</comments> <pubDate>Mon, 24 Nov 2008 16:33:38 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Events]]></category> <category><![CDATA[apps]]></category> <category><![CDATA[digg]]></category> <category><![CDATA[fowa]]></category> <category><![CDATA[fowalondon08]]></category> <category><![CDATA[fowalondon2008]]></category> <category><![CDATA[tips]]></category> <category><![CDATA[webapps]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=595</guid> <description><![CDATA[This is a long overdue roundup of FOWA London 2008. I was looking through my notes and decided that rather than giving a general roundup (as you&#8217;ve probably already read&#8230;]]></description> <content:encoded><![CDATA[<p><a
href="http://www.leemunroe.com/10-web-app-tips-from-fowa-london/#more-595"><img
style="float:left;margin:0 10px 10px 0;" src="http://www.leemunroe.com/wp-content/uploads/fowa_badge2.png" alt="FOWA" /></a>This is a long overdue roundup of <a
href="http://london2008.futureofwebapps.com/">FOWA London 2008</a>. I was looking through my notes and decided that rather than giving a general roundup (as you&#8217;ve probably already read or seen all the talks online) I would share with you my 10 favorite points from the 2 days.</p><p><span
id="more-595"></span></p><h4 class="clear">1. Push your content to other sites</h4><p><img
style="float:left;margin:0 10px 10px 0;" src="http://www.leemunroe.com/wp-content/uploads/rose.jpg" alt="Kevin Rose" />Kevin Rose &#8211; <a
href="http://digg.com">Digg</a> &#8211; <a
href="http://events.carsonified.com/fowa/2008/london/videos/kevin-rose/">The Future of News</a><br
/> Stuff that happens on your web app should be easily pushed and shared with other apps e.g. Twitter, Facebook, FriendFeed</p><h4>2. Monetize later when the community is built</h4><p><img
style="float:left;margin:0 10px 10px 0;" src="http://www.leemunroe.com/wp-content/uploads/edwin.jpg" alt="Edwin Aoki" />Edwin Aoki &#8211; <a
href="http://aol.com">AOL</a> &#8211; <a
href="http://events.carsonified.com/fowa/2008/london/videos/edwin-aoki/">Web Apps Are Dead &#8211; Long Live Web Apps</a><br
/> Building the community and bringing people together is what matters. Build the web app based on your passion and then monetize.</p><h4>3. Do stuff later when the user is gone</h4><p><img
style="float:left;margin:0 10px 10px 0;" src="http://www.leemunroe.com/wp-content/uploads/blaine.jpg" alt="Blaine Cooke" />Joe Stump, Blaine Cooke &#8211; <a
href="http://digg.com">Digg</a> &amp; (ex)<a
href="http://twitter.com">Twitter</a> &#8211; <a
href="http://events.carsonified.com/fowa/2008/london/highlights/blaine-cook-joe-stump/">Languages Don&#8217;t Scale</a><br
/> Queuing is a technique you can use to do stuff later when the user is gone therefore speeding up the immediate response. &#8220;Every large website has some sort of queuing mechanism&#8221;.</p><h4>4. If you force users to supply info that doesn&#8217;t matter, you will get inaccurate data</h4><p><img
style="float:left;margin:0 10px 10px 0;" src="http://www.leemunroe.com/wp-content/uploads/kevin.jpg" alt="Kevin Marks" />Kevin Marks &#8211; <a
href="http://google.com">Google</a> &#8211; <a
href="http://events.carsonified.com/fowa/2008/london/highlights/kevin-marks/">The Future of Enterprise Web Apps</a><br
/> Only ask the user for the info that matters to them (e.g. username, email, password). If you as for a zip code, for example, chances are you&#8217;ll get 90210 or 12345 &#8211; this information is worthless.</p><h4>5. Plan to localize your app/social network</h4><p><img
style="float:left;margin:0 10px 10px 0;" src="http://www.leemunroe.com/wp-content/uploads/kevin.jpg" alt="Kevin Marks" />Kevin Marks &#8211; <a
href="http://google.com">Google</a> &#8211; <a
href="http://events.carsonified.com/fowa/2008/london/highlights/kevin-marks/">The Future of Enterprise Web Apps</a><br
/> Containers provide a social context for your users and localization is a container already established geographically. If you localize your app it enables an easy way for people to form connections.</p><h4>6. If they haven&#8217;t contributed yet, show them how</h4><p><img
style="float:left;margin:0 10px 10px 0;" src="http://www.leemunroe.com/wp-content/uploads/alvin.jpg" alt="Alvin Woon" />Alvin Woon &#8211; <a
href="http://www.plurk.com/">Plurk</a> &#8211; <a
href="http://events.carsonified.com/fowa/2008/london/videos/alvin-woon-2/">The future of social app interface design</a><br
/> Every web app has novice and advanced users. You need to spend time with the novice users and educate them. When they register, show them how to do things. Expert users don&#8217;t need guidance, they&#8217;ll go off and do their own thing.</p><h4>7. People love to look at data about themselves</h4><p><img
style="float:left;margin:0 10px 10px 0;" src="http://www.leemunroe.com/wp-content/uploads/huh.jpg" alt="Ben Huh" />Ben Huh &#8211; <a
href="http://icanhascheezburger.com/">I Can Haz Cheeseburger</a> &#8211; <a
href="http://events.carsonified.com/fowa/2008/london/videos/ben-huh/">How to take your community to the next level</a><br
/> Info porn! Share info on a daily basis about your users and they&#8217;ll come back on a daily basis to check this data.</p><h4>8. Make users contributors</h4><p><img
style="float:left;margin:0 10px 10px 0;" src="http://www.leemunroe.com/wp-content/uploads/huh.jpg" alt="Ben Huh" />Beh Huh &#8211; <a
href="http://icanhascheezburger.com/">I Can Haz Cheeseburger</a> &#8211; <a
href="http://events.carsonified.com/fowa/2008/london/videos/ben-huh/">How to take your community to the next level</a><br
/> Let your users contribute &#8211; they&#8217;ll work for you for free (look at <a
href="http://www.wikipedia.org">Wikipedia</a>). Once you start paying people to contribute, they become employees and things get complicated and expensive.</p><h4>9. There&#8217;s social value in knowing what your friends know</h4><p><img
style="float:left;margin:0 10px 10px 0;" src="http://www.leemunroe.com/wp-content/uploads/bret.jpg" alt="Bret Taylor" />Bret Taylor &#8211; <a
href="http://friendfeed.com/">Friendfeed</a> -<a
href="http://events.carsonified.com/fowa/2008/london/videos/bret-taylor/">The Future of your Online Presence</a><br
/> The data you provide should be relevant to your user. Even if you&#8217;re not interested in a particular subject, if 20 of your friends or family have read an article then you&#8217;ll want to read it too so you&#8217;re not left out.</p><h4>10. Don&#8217;t prematurely Optimize</h4><p><img
style="float:left;margin:0 10px 10px 0;" src="http://www.leemunroe.com/wp-content/uploads/elaine.jpg" alt="Elaine Wherry" />Elaine Wherry &#8211; <a
href="http://www.meebo.com/">Meebo</a> &#8211; <a
href="http://events.carsonified.com/fowa/2008/london/videos/elaine-wherry/">Scaling the Synchronous web</a><br
/> You can&#8217;t predict what&#8217;s going to happen your app so wait until it does happen and deal with it then, don&#8217;t waste your time trying to fix something that hasn&#8217;t happened yet.</p><h4>Other areas of interest from FOWA</h4><ul><li>Bun Huh&#8217;s <a
href="http://icanhascheezburger.com/">lolcats</a> were very popular (which, to be honest, I just don&#8217;t get)</li><li>Kevin Marks made a good point: In Star Trek, why doesn’t the computer know what date it is? (Captain&#8217;s log stardate&#8230;)</li></ul><h5>Photos thanks to:</h5><ul><li><a
href="http://flickr.com/photos/philhawksworth/">Phil Hawksworth</a></li><li><a
href="http://flickr.com/photos/mauriz/">mauricesvay</a></li><li><a
href="http://flickr.com/photos/sprains/">sprain</a></li><li><a
href="http://flickr.com/photos/37996583811@N01/">Rain Rabbit</a></li><li><a
href="http://flickr.com/photos/drewm/">drewm</a></li><li><a
href="http://flickr.com/photos/jimjarmo/">jimjarmo</a></li><li><a
href="http://flickr.com/photos/thecodefarm/">thecodefarm</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/10-web-app-tips-from-fowa-london/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Why it&#8217;s good to work on your own side projects</title><link>http://www.leemunroe.com/why-its-good-for-creatives-to-work-on-their-own-side-projects/</link> <comments>http://www.leemunroe.com/why-its-good-for-creatives-to-work-on-their-own-side-projects/#comments</comments> <pubDate>Mon, 10 Nov 2008 15:06:43 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[General News]]></category> <category><![CDATA[apps]]></category> <category><![CDATA[Freelance]]></category> <category><![CDATA[inspiration]]></category> <category><![CDATA[mashups]]></category> <category><![CDATA[money]]></category> <category><![CDATA[projects]]></category> <category><![CDATA[side projects]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=509</guid> <description><![CDATA[Whether you&#8217;re freelance, employed or a business owner, we each have our own daily routine, which usually involves doing work to please someone else, whether that someone else be a&#8230;]]></description> <content:encoded><![CDATA[<p>Whether you&#8217;re freelance, employed or a business owner, we each have our own daily routine, which usually involves doing work to please someone else, whether that someone else be a client, end user, reader etc. But every once and a while I think it&#8217;s important to work on your own projects.</p><p><a
href="http://www.leemunroe.com/why-its-good-for-creatives-to-work-on-their-own-side-projects"><img
class="alignnone size-full wp-image-511" style="margin:0 10px 10px 0;float:left;" title="Side Projects" src="http://www.leemunroe.com/wp-content/uploads/businessman.jpg" alt="Side Projects" /></a>As I work on my major Masters project (due December), and while doing the odd freelance job, I take inspiration from the likes of <a
href="http://www.carsonified.com/web-apps/meet-matt-our-new-web-app">Carsonified</a> and <a
href="http://www.contrast.ie/blog/app-school-2008/">Contrast</a> who have been known for their &#8216;drop everything else for a week&#8217; approach to work on other projects, and I work on my own side projects.</p><p>Their approach to taking a week to focus on 1 new project (from start to finish) is great but working 1 or 2 hours a day on a side project is also beneficial.</p><p><span
id="more-509"></span></p><h4 class="clear">Why bother with side projects?</h4><blockquote
class="pullquote"><p>Luck favors the people who try stuff <span
class="author">- Guy Kawasaki</span></p></blockquote><h5>1. Take a break</h5><p>Take a break from your normal routine and refresh your head. Exploring different ideas can get you out of a creative block and bring inspiration.</p><h5>2. Expand your skill-set</h5><p>Try out new frameworks, see what you can do with different APIs, test your design skills. The creative community never stops moving so you need to make sure you stay up-to-date.</p><h5>3. Brand awareness &#8211; raise your profile</h5><p>Whether you&#8217;re a freelance designer or a large corporation, side projects can help raise your profile simply by having your name associated with it.</p><h5>4. Contribute to the community</h5><p>It&#8217;s always good to contribute something to the community. It&#8217;ll be appreciated.</p><h5>5. Have fun</h5><p>You can have a lot of fun working on your own stuff because you&#8217;re in control of the brief and there&#8217;s no one to tell you what to do.</p><h5>6. Passive income</h5><p>It&#8217;s hard to beat an application that makes money while you sleep or get on with the rest of your life. You might not make a fortune, but a few extra bucks a week to fund your Saturday night on the rip is a welcome addition :)</p><h5>7. Try stuff</h5><p>If you want to be successful in life I believe you have to try stuff. If it works, happy days! If it doesn&#8217;t, learn from it and move on. &#8220;Luck favors the people who try stuff&#8221;, says entrepreneur <a
href="http://www.sun.com/solutions/smb/guest.jsp?blog=five_lessons">Guy Kawasaki</a>.</p><h4>Where to start</h4><h5>a. Take notes</h5><p>Take notes when you think of projects and put them on your to-do list. I carry around a small notebook in my laptop bag and constantly add ideas to my &#8216;Someday&#8217; list in <a
href="http://www.culturedcode.com/things/">Things</a>.</p><h5>b. Talk to other creatives</h5><p>Talking to others will spark new ideas.</p><h5>c. Read</h5><p>Read a book from an inspiring designer or look at a book of visuals to get ideas.</p><h5>d. Mashups</h5><p>APIs make it very easy to launch small apps. Look at all the <a
href="http://apiwiki.twitter.com/">Twitter</a> mashups now available. Think of different uses for <a
href="http://code.google.com/apis/maps/">Google Maps</a>, <a
href="http://www.flickr.com/services/api/">Flickr</a>, <a
href="http://www.youtube.com/dev">YouTube</a>.</p><h5>e. What would you find useful?</h5><p>Chances are that if there was a website or tool that you would find useful, then there are 100s or 1000s of people who would also find it useful.</p><h4>What side projects are you working on?</h4><p>A successful side project I co-founded was <a
href="http://www.thebigwordproject.com">The Big Word Project</a> and I&#8217;ve just launched an <a
href="http://www.webdesignire.com">Irish web design gallery</a> (Web Designire) which only took a couple of hours a day for 5 days to develop (<a
href="http://www.leemunroe.com/site-launch-web-designire/">read more about it here</a>).</p><p><a
href="http://www.webdesignire.com"><img
class="alignnone size-full wp-image-501" title="Web Designire" src="http://www.leemunroe.com/wp-content/uploads/web.jpg" alt="Web Designire" /></a></p><p>Please feel free to share the side projects you&#8217;re currently working on or have produced in the past. It would be great to have your input.</p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/why-its-good-for-creatives-to-work-on-their-own-side-projects/feed/</wfw:commentRss> <slash:comments>15</slash:comments> </item> <item><title>15 mac apps web designers should have in their dock</title><link>http://www.leemunroe.com/15-mac-apps-web-designers-should-have-in-their-dock/</link> <comments>http://www.leemunroe.com/15-mac-apps-web-designers-should-have-in-their-dock/#comments</comments> <pubDate>Mon, 20 Oct 2008 14:06:06 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[Apple]]></category> <category><![CDATA[apps]]></category> <category><![CDATA[design]]></category> <category><![CDATA[development]]></category> <category><![CDATA[mac]]></category> <category><![CDATA[software]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=345</guid> <description><![CDATA[Back in June when I was converting from a PC to a MacBook Pro (best decision I ever made) I asked around to see what apps people recommended for the&#8230;]]></description> <content:encoded><![CDATA[<div
style="text-align:center;"><a
href="http://www.leemunroe.com/15-mac-apps-web-designers-should-have-in-their-dock"><img
class="alignnone size-full wp-image-347" title="dock1" src="http://www.leemunroe.com/wp-content/uploads/dock2.jpg" alt="Dock" /></a></div><p>Back in June when I was converting from a PC to a MacBook Pro (best decision I ever made) I asked around to see what apps people recommended for the Mac. There are a <a
href="http://www.apple.com/downloads/">lot of nice apps</a> available for Mac OSX that aren&#8217;t available for Windows.</p><p>I&#8217;ve compiled a list of Mac Apps I have in my OSX dock that I use on a daily basis and should be useful to other Mac users and/or web designers.</p><p><span
id="more-345"></span></p><h4>1. <a
href="http://www.adobe.com">Adobe Creative Suite</a></h4><div
style="text-align:center;"><a
href="http://www.adobe.com"><img
src="http://www.leemunroe.com/wp-content/uploads/ps.png" alt="Photoshop" width="128" height="128" /></a></div><p>An obvious and primary requirement (I feel) all serious web designers should have. I couldn&#8217;t get through the day without Photoshop while Illustrator and Flash are constantly called upon. I hear Fireworks is good too, especially for compressing images, but I&#8217;ve yet to use it myself.</p><h4>2. <a
href="http://www.panic.com/transmit/">Transmit</a></h4><div
style="text-align:center;"><a
href="http://www.panic.com/transmit/"><img
src="http://www.leemunroe.com/wp-content/uploads/transmit.png" alt="Transmit" width="128" height="128" /></a></div><p>Transmit is an FTP client for Mac. Edit remote files, synchronize, search, SSL, tabs; it covers all your daily FTP needs.</p><h4>3. <a
href="http://www.panic.com/coda/">Coda</a></h4><div
style="text-align:center;"><a
href="http://www.panic.com/coda/"><img
src="http://www.leemunroe.com/wp-content/uploads/code.png" alt="Coda" width="128" height="128" /></a></div><p>Coda is a light-weight all in one text editor. You can edit your code, preview your web page, upload to server (integration with Transmit), edit CSS and run commands in Terminal; all from within this one app. I would use Coda for front-end development.</p><h4>4. <a
href="http://macromates.com/">Textmate</a></h4><div
style="text-align:center;"><a
href="http://macromates.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/textmate.png" alt="TextMate" width="128" height="128" /></a></div><p>Textmate is another text editor that I prefer using for back-end development. Code completion, snippets, syntax colouring are some of the things I enjoy about Textmate along with ease of customizing fonts and colours.</p><h4>5. <a
href="http://cocoamysql.sourceforge.net/">CocoaMySQL</a></h4><div
style="text-align:center;"><a
href="http://cocoamysql.sourceforge.net/"><img
src="http://www.leemunroe.com/wp-content/uploads/cocoa.png" alt="Cocoa" width="128" height="128" /></a></div><p>CocoaMySQL gives you an interface to work with your MySQL databases. This is a desktop alternative to PHPMyAdmin, which is a lot quicker and in my opinion a lot easier to operate.</p><p><strong>UPDATE 13/12/08: CocoaMySQL has been abandoned and replaced with <a
href="http://www.mjmedia.com.au/sequel-pro.html">Sequel Pro</a>. Works just as well and looks even better. <a
href="http://www.mjmedia.com.au/sequel-pro.html">Check it out</a>.</strong></p><h4>6. <a
href="http://www.mamp.info/">MAMP</a></h4><div
style="text-align:center;"><a
href="http://www.mamp.info/"><img
src="http://www.leemunroe.com/wp-content/uploads/mamp.png"  alt="Mamp" width="128" height="128" /></a></div><p>MAMP is an easy way to get Apache, MySQL and PHP up and running on your machine. Just by running MAMP all these three services will be up and running, no messing around in Terminal needed.</p><h4>7. <a
href="http://www.culturedcode.com/things/">Things</a></h4><div
style="text-align:center;"><a
href="http://www.culturedcode.com/things/"><img
src="http://www.leemunroe.com/wp-content/uploads/things.png" alt="Things" width="128" height="128" /></a></div><p>Great app for getting things done. Set yourself project tasks and daily tasks and check them off as and when you get them done.</p><h4>8.<a
href="http://macrabbit.com/cssedit/"> CSS Edit</a></h4><div
style="text-align:center;"><a
href="http://macrabbit.com/cssedit/"><img
src="http://www.leemunroe.com/wp-content/uploads/css.png" alt="CSS Edit" width="128" height="128" /></a></div><p>A very good CSS editor. It allows for real time previews of your website and styles and is a very efficient app allowing you to easily find all styles being applied to certain elements.</p><h4>9. <a
href="http://www.transmissionbt.com/">Transmission</a></h4><div
style="text-align:center;"><a
href="http://www.transmissionbt.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/trans.png"  alt="Transmission" width="128" height="128" /></a></div><p>Transmission is used for downloading/uploading torrents over the net. Useful for sharing files with friends and colleagues (among other things)</p><h4>10. <a
href="http://www.red-sweater.com/marsedit/">MarsEdit</a></h4><div
style="text-align:center;"><a
href="http://www.red-sweater.com/marsedit/"><img
src="http://www.leemunroe.com/wp-content/uploads/mars.png" alt="MarsEdit" width="128" height="128" /></a></div><p>MarsEdit allows you to compile draft blog posts on your local machine before publishing them live on your blog. I use it daily to take notes on various blog topics I think of and then I can easily compile a blog post over the course of a week.</p><h4>11. <a
href="http://skitch.com/">Skitch</a></h4><div
style="text-align:center;"><a
href="http://skitch.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/skitch.png" alt="Skitch" width="128" height="128" /></a></div><p>I was only recently introduced to this by <a
href="http://goodonpaper.org">GoodOnPaper</a> @ FOWA. Allows you to easily share images/screenshots on the web and using the Skitch editor you can add notes to your image or highlight areas of a screenshot. Very useful and saves having to load up Photoshop for simple tasks.</p><h4>12. <a
href="http://www.amazon.co.uk/gp/product/B0014BBQ5M?ie=UTF8&amp;tag=10homepa-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B0014BBQ5M">Parallels Desktop</a></h4><div
style="text-align:center;"><a
href="http://www.amazon.co.uk/gp/product/B0014BBQ5M?ie=UTF8&amp;tag=10homepa-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B0014BBQ5M"><img
src="http://www.leemunroe.com/wp-content/uploads/parallels.png" alt="Parallels" width="128" height="128" /></a></div><p>You can run Windows XP or Vista on your Mac using Parallels. Handy for being able to test your websites in versions of IE (<a
href="http://tredosoft.com/Multiple_IE">using Multiple IEs</a>) and if there are any Windows only apps you need to use, e.g. Microsoft Access.</p><h4>13. <a
href="http://www.amazon.co.uk/gp/product/B000WR2F2M?ie=UTF8&amp;tag=10homepa-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B000WR2F2M">Office</a></h4><div
style="text-align:center;"><a
href="http://www.amazon.co.uk/gp/product/B000WR2F2M?ie=UTF8&amp;tag=10homepa-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B000WR2F2M"><img
src="http://www.leemunroe.com/wp-content/uploads/office.png" alt="Office" width="128" height="128" /></a></div><p>A good old favorite for creating text documents, preparing slideshows or looking after sets of data. There are a few Mac alternatives, and of course online alternatives, but I personally prefer Office.</p><h4>14. <a
href="http://www.derailer.org/paparazzi/">Paparazzi</a></h4><div
style="text-align:center;"><a
href="http://www.derailer.org/paparazzi/"><img
src="http://www.leemunroe.com/wp-content/uploads/pap.png" alt="Paparazzi" width="128" height="128" /></a></div><p>Paparazzi takes full screenshots of webpages. The problem with Cmd+Shift+3 is that it only takes a screenshot of the visible screen. Paparrazi takes the whole height of the page, even below the fold, so it&#8217;s great for showing screenshots of your web designs.</p><h4>15. <a
href="http://iconfactory.com/software/twitterrific">Twitterific</a></h4><div
style="text-align:center;"><a
href="http://iconfactory.com/software/twitterrific"><img
src="http://www.leemunroe.com/wp-content/uploads/twit.png" alt="Twitterific" width="128" height="128" /></a></div><p>Easily interact with Twitterland via Twitterific. Saves you having to make the trip to <a
href="http://www.twitter.com">Twitter</a> to see what&#8217;s going on as it can retrieve and send tweets for you.</p><h4>Others worth looking at</h4><ul><li><a
href="http://www.mozilla.com/en-US/firefox/">Firefox</a> Firefox is a fantastic browser with fantastic extensions for web designers like <a
href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer Toolbar</a> and <a
href="https://addons.mozilla.org/en-US/firefox/addon/1843">FireBug</a></li><li><a
href="http://www.pixelmator.com/">Pixelmator</a> Cheap alternative to Photoshop</li><li><a
href="http://www.freeverse.com/apps/app/?id=6020">Lineform</a> Cheap alternative to Illustrator</li><li><a
href="http://www.flickr.com/tools/uploadr/">Flickr Uploader</a> Easily upload your photos to Flickr</li><li><a
href="http://www.skype.com">Skype</a> Have your conference calls for free over the web</li></ul><h4>What apps do you use?</h4><p>Let me know what apps you find useful and you think should be included in the list above.</p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/15-mac-apps-web-designers-should-have-in-their-dock/feed/</wfw:commentRss> <slash:comments>97</slash:comments> </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 (User agent is rejected)
Database Caching 21/30 queries in 0.419 seconds using disk: basic

Served from: www.leemunroe.com @ 2012-02-09 13:15:29 -->
