<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>Speeding up for the speed bumps</description><title>capcloud | Martin Polley</title><generator>Tumblr (3.0; @martinpolley)</generator><link>http://capcloud.com/</link><item><title>Setting up a Static Blog on OS X to Publish to S3 [UPDATED]</title><description>&lt;p&gt;&lt;strong&gt;WARNING: This is rather a technical post. If you&amp;#8217;re not comfortable doing neckbeardy things like typing stuff at the Unix command line and adding stuff to your bash profile, you probably want to give it a miss.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;All I wanted to be able to do was write posts in Markdown in a Dropbox folder and have them be automatically published as a static blog hosted on Amazon S3. On a Mac. Not too much to ask, right?&lt;/p&gt;

&lt;p&gt;Well it turned out to be quite difficult and time consuming, with lots of wrong turns into blind alleys. So if you&amp;#8217;re thinking about setting up something similar, here&amp;#8217;s what worked for me.&lt;/p&gt;

&lt;h3&gt;The Pieces&lt;/h3&gt;

&lt;p&gt;This setup only really has two pieces:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;&lt;p&gt;A static blog generator—this takes files that you write (typically in Markdown) and converts them into a set of HTML pages, including a main page, individual post pages, archives, etc.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Some way to sync these HTML files to S3.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;And this is what I actually ended up using:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://getpelican.com/"&gt;Pelican&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="http://s3tools.org/s3cmd"&gt;s3cmd&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;I also used &lt;a href="http://www.peterborgapps.com/lingon/"&gt;Lingon&lt;/a&gt; to automate it all (using &lt;a href="http://en.wikipedia.org/wiki/Launchd"&gt;launchd&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;But first a little bit on how I arrived at this point.&lt;/p&gt;

&lt;h3&gt;Some Right Turns, Some Wrong Turns&lt;/h3&gt;

&lt;p&gt;There are many static blog generators out there. The most popular seems to be &lt;a href="http://jekyllrb.com/"&gt;Jekyll&lt;/a&gt;, so I decided to have a go at installing that. It uses Ruby. Macs come with Ruby, so it should be easy. It went OK, but eventually I reached the point where I was required to upgrade Xcode. Xcode is a hefty download, and I didn&amp;#8217;t want to wait, so I started looking at alternatives.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://getpelican.com/"&gt;Pelican&lt;/a&gt; seems to offer similar functionality to Jekyll, but uses Python instead of Ruby. And Python is also pre-installed on OS X, so why not give it a shot? So I installed Pelican and the things that it requires: &lt;a href="http://www.pip-installer.org/en/latest/"&gt;pip&lt;/a&gt;, &lt;a href="http://www.virtualenv.org/en/latest/"&gt;virtualenv&lt;/a&gt;, and &lt;a href="http://doughellmann.com/projects/virtualenvwrapper/"&gt;virtualenvwrapper&lt;/a&gt;. (Ignore the fact that the pip docs say you can get pip by installing virtualenv—the easiest way is to install pip and then use &lt;em&gt;it&lt;/em&gt; to install virtualenv.) Pip also requires another package called &lt;a href="https://pypi.python.org/pypi/distribute/"&gt;distribute&lt;/a&gt;, so install that too. And if you want to write in Markdown, you&amp;#8217;ll need to install the Markdown module, as described in the Pelican docs.&lt;/p&gt;

&lt;p&gt;So now that I&amp;#8217;ve got all these installed, it should &amp;#8220;just work&amp;#8221;, right? You wish. To get Pelican to generate the HTML, you need to run the &lt;code&gt;make&lt;/code&gt; command with the makefile that comes with Pelican. But to get &lt;code&gt;make&lt;/code&gt; (if you don&amp;#8217;t already have it), you need to install the latest version of Xcode. (Déjà-vu much?)&lt;/p&gt;

&lt;p&gt;So, much later that day, I have the latest Xcode, and have installed the optional (but required here) command-line tools. Now it works, right? Well, almost. Now I get an &amp;#8220;unknown locale&amp;#8221; error. Say what now? A little more Googling reveals that I need to set the &lt;code&gt;LC_CTYPE&lt;/code&gt; environment variable in my &lt;code&gt;.bashrc&lt;/code&gt; file to something like &lt;code&gt;en_US.UTF-8&lt;/code&gt;. (An aside: I tried all this with tcsh, which I like more than bash, but ran into even more problems, so I switched back to bash.)&lt;/p&gt;

&lt;p&gt;Anyway, now, finally, it works. On to the next piece of the puzzle—syncing the files to S3.&lt;/p&gt;

&lt;p&gt;There were a couple of things that I tried that did not work for me. The first was trying to mount my S3 bucket as a remote drive using MacFusion. I thought I could mount the bucket right inside a folder in my Dropbox. But it didn&amp;#8217;t really work.&lt;/p&gt;

&lt;p&gt;The second was trying to upload using SFTP via an FTP-to-S3 gateway (like &lt;a href="https://cloudgates.net/"&gt;Cloud Gates&lt;/a&gt;). The gateway part works great (and I use it regularly for other stuff). And Pelican has an FTP &lt;code&gt;make&lt;/code&gt; target that you can modify to use SFTP. But again, it didn&amp;#8217;t really work.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://s3tools.org/s3cmd"&gt;s3cmd&lt;/a&gt;, on the other hand, works great. At least, once I figured out that I needed to install the latest version from Github instead of the one on the download page. s3cmd has a sync command that lets you sync a local directory with one in your S3 bucket.&lt;/p&gt;

&lt;h3&gt;Automating It All&lt;/h3&gt;

&lt;p&gt;The only thing left to do was to automate it so that as soon as I add or change a file in Pelican&amp;#8217;s &lt;code&gt;content&lt;/code&gt; directory, it will automatically regenerate the HTML and sync the output directory with S3.&lt;/p&gt;

&lt;p&gt;On OS X, launchd is the thing to use. But manually creating the necessary plist files is a bit of a pain. Thankfully, there are tools that can make it easier. One of these is &lt;a href="http://www.peterborgapps.com/lingon/"&gt;Lingon&lt;/a&gt;. I used it to add two items:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;&lt;p&gt;One to start Pelican&amp;#8217;s &lt;code&gt;make regenerate&lt;/code&gt;, which, once started, detects any changes in files in the &lt;code&gt;content&lt;/code&gt; directory and updates the HTML&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;One to run s3cmd sync whenever the &lt;code&gt;index.html&lt;/code&gt; file in the output directory changes&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;This is what they look like in Lingon:&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/ae5debc4a9ca7d897a2eb0333b85a45d/tumblr_inline_mkjfbpQ9xQ1qz4rgp.png" alt="Regenerate HTML plist"/&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/c42bdc27a240e373c9bb539632a98fe7/tumblr_inline_mkjfciNUG51qz4rgp.png" alt="Sync with S3 plist"/&gt;&lt;/p&gt;

&lt;p&gt;I couldn&amp;#8217;t get these to work by typing the commands directly into Lingon—I had to wrap each one in a shell script. This is what they look like. (Of course, you&amp;#8217;ll have to change the directory paths and the S3 bucket name.)&lt;/p&gt;

&lt;p&gt;To run &lt;code&gt;make regenerate&lt;/code&gt;:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;#!/bin/bash

source /usr/local/bin/virtualenvwrapper.sh
cd /Users/martinpolley/Dropbox/konigi/protokit/projects/blog
workon pelican
make regenerate
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;To sync with S3:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;#!/bin/bash

/usr/local/bin/s3cmd sync --delete-removed \
/Users/martinpolley/Dropbox/konigi/protokit/projects/blog/output/ \
s3://livetyping.capcloud.com/blog/
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Don&amp;#8217;t forget to &lt;code&gt;chmod +x&lt;/code&gt; these so they can be executed.&lt;/p&gt;

&lt;h3&gt;Some Other Gotchas&lt;/h3&gt;

&lt;p&gt;When you&amp;#8217;re writing posts, you must give them a title and a date, like this:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Title: My Awesome Post
Date: 2013-03-31
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;If you don&amp;#8217;t, Pelican won&amp;#8217;t process them. You can also add a status of &amp;#8220;draft&amp;#8221;:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Status: draft
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Pelican will put the generated draft post in a folder called &lt;code&gt;drafts&lt;/code&gt;. The post will not appear on your blog until you remove this line.&lt;/p&gt;

&lt;h3&gt;Conclusion&lt;/h3&gt;

&lt;p&gt;This was a total pain in the ass to set up. But the result is &lt;em&gt;so&lt;/em&gt; worth it. When I hit save in Textmate, and twenty or so seconds later, the post appears on my blog, it feels like &lt;em&gt;magic&lt;/em&gt;. And because the files are in Dropbox, I can do the same in &lt;a href="http://iawriter.com/"&gt;iA Writer&lt;/a&gt; on my iPhone or iPad (or move from one device to the other if the kids are playing Subway Surf on the iPad).&lt;/p&gt;

&lt;p&gt;You can see it in action on the &lt;a href="http://livetyping.capcloud.com/blog/"&gt;Livetyping blog&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;UPDATE:&lt;/strong&gt; After finding that my whole blog had completely disappeared (twice), I stopped using &lt;code&gt;--delete-unused&lt;/code&gt; in &lt;code&gt;s3cmd sync&lt;/code&gt;…&lt;/p&gt;</description><link>http://capcloud.com/post/46775499466</link><guid>http://capcloud.com/post/46775499466</guid><pubDate>Fri, 19 Apr 2013 22:04:16 +0300</pubDate></item><item><title>Breaking up the Band</title><description>&lt;p&gt;OK, well, not really. I&amp;#8217;m actually splitting this blog up into &lt;em&gt;two&lt;/em&gt; blogs. Stuff related to UX (and especially HTML prototyping) will be posted on the &lt;a href="http://livetyping.capcloud.com/blog/"&gt;Livetyping blog&lt;/a&gt;, while everything else will be posted here.&lt;/p&gt;

&lt;p&gt;Right now, the only thing on the Livetyping blog is my &lt;a href="http://livetyping.capcloud.com/blog/the-best-framework-for-ux-prototyping-in-html.html"&gt;recent post about front-end frameworks&lt;/a&gt;, which I copied across from here. In the coming days, I&amp;#8217;ll be copying other relevant posts over too, so they&amp;#8217;re in the &amp;#8220;right&amp;#8221; place.&lt;/p&gt;

&lt;p&gt;So if you follow me for the UX stuff, you should add &lt;a href="http://livetyping.capcloud.com/blog/feeds/all.atom.xml"&gt;this RSS feed&lt;/a&gt; to your feed reader.&lt;/p&gt;</description><link>http://capcloud.com/post/46921299500</link><guid>http://capcloud.com/post/46921299500</guid><pubDate>Tue, 02 Apr 2013 09:58:53 +0300</pubDate></item><item><title>The Best Framework for UX Prototyping in HTML</title><description>&lt;p&gt;&lt;strong&gt;While I was putting together &lt;a href="http://livetyping.capcloud.com" style="color: #699C40; font-weight: bold;"&gt;Livetyping&lt;/a&gt; (my online course that teaches UX designers how to create prototypes in HTML, CSS, and Javascript), I used Foundation for the prototype that I showed how to build. But Foundation isn&amp;#8217;t the only front-end framework out there. So I decided to take a look at a couple of others to see how they compare. Enjoy.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you&amp;#8217;re prototyping in HTML, CSS, and Javascript (or just thinking about it), you probably already know that using a framework can save you a lot of time, especially if your design needs to be responsive. (And these days, with a few exceptions, there aren&amp;#8217;t many reasons to make a design non-responsive.)&lt;/p&gt;

&lt;p&gt;But how can you know which one is best, without downloading them all and trying them for yourself? This post aims to save you the hassle by explaining the pros and cons of each from a UX prototyping perspective.&lt;/p&gt;

&lt;h3&gt;The Contenders&lt;/h3&gt;

&lt;p&gt;The two most popular frameworks are &lt;a href="http://twitter.github.com/bootstrap/index.html"&gt;Bootstrap&lt;/a&gt;, originally created at Twitter, and &lt;a href="http://foundation.zurb.com/"&gt;Foundation&lt;/a&gt;, created by product design company ZURB. There is also a dark horse candidate called &lt;a href="http://www.getskeleton.com/"&gt;Skeleton&lt;/a&gt;, which was created by Twitter designer and former ZURBian Dave Gamache.&lt;/p&gt;

&lt;h3&gt;What Are These Things, Actually?&lt;/h3&gt;

&lt;p&gt;All three of these frameworks let you lay out web pages on a responsive grid. This means that you can make your design work well on any screen size. If that&amp;#8217;s all you need, Skeleton fits the bill. (Bootstrap and Foundation also do this, but they bundle in a lot of extra stuff too.)&lt;/p&gt;

&lt;p&gt;But for all but the simplest prototypes, you will almost certainly need more than just layout. The questions you need to be asking are &lt;em&gt;What do we need?&lt;/em&gt; and &lt;em&gt;What do we know?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;If you need things like tabs, nicely-styled buttons and forms, standardized navigation components, consistent typography, and so on, then both Foundation and Bootstrap come with stuff that makes adding these things easy and fast (and they will look consistent too).&lt;/p&gt;

&lt;p&gt;If you know how to do these things yourself (and want to), Skeleton could be the answer.&lt;/p&gt;

&lt;h3&gt;How they Look Out-of-the-Box&lt;/h3&gt;

&lt;h4&gt;Skeleton&lt;/h4&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/3828274c010881abf44c63c3181bf455/tumblr_inline_mjxcux1JEj1qz4rgp.png" alt=""/&gt;
Skeleton on the Desktop&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/0154951628ee0d85fba494c3e4838fe6/tumblr_inline_mjyi5pKFN11qz4rgp.png" alt=""/&gt;
Skeleton on iPhone&lt;/p&gt;

&lt;h4&gt;Bootstrap&lt;/h4&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/6b0fe329efd133154cdfdee04919fad8/tumblr_inline_mjxcn7McFl1qz4rgp.png" alt=""/&gt;
Bootstrap on the Desktop&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/be2b06ae6933f7e626d5fcf86638bc70/tumblr_inline_mjyhm6zzGB1qz4rgp.png" alt=""/&gt;
Bootstrap on iPhone&lt;/p&gt;

&lt;h4&gt;Foundation&lt;/h4&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/7ce0fe19d36a459cbb75e0e1e0cf8aa7/tumblr_inline_mjxco51ajp1qz4rgp.png" alt=""/&gt;
Foundation on the Desktop&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/2b784b26e21a353e7886db1d61c19069/tumblr_inline_mjyi5496Oj1qz4rgp.png" alt=""/&gt;
Foundation on iPhone&lt;/p&gt;

&lt;h3&gt;What You Get in the Box&lt;/h3&gt;

&lt;h4&gt;Skeleton&lt;/h4&gt;

&lt;p&gt;Skeleton gives you a responsive grid, some basic typography, and some simple form and button styling. That&amp;#8217;s it.&lt;/p&gt;

&lt;h4&gt;Bootstrap and Foundation&lt;/h4&gt;

&lt;p&gt;In terms of feature lists, there is a &lt;strong&gt;lot&lt;/strong&gt; of overlap between Foundation and Bootstrap. I won&amp;#8217;t list them all out here because others have &lt;a href="http://responsive.vermilion.com/compare.php" target="_blank"&gt;already done a better job than I would&lt;/a&gt; (scroll down to &lt;em&gt;UI and Widgets&lt;/em&gt; at the bottom of the page).&lt;/p&gt;

&lt;p&gt;In short, they both provide a responsive grid, nice typography, improved form styling, and pretty much any UI component that you might see in a modern webapp. So instead of listing them out here, I&amp;#8217;m going to point out some of the &lt;em&gt;differences&lt;/em&gt; between the two:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;&lt;p&gt;Bootstrap comes with a set of 140 (naturally) icons. Foundation does not include icons, but ZURB have created several &lt;a href="http://foundation.zurb.com/icon-fonts.php"&gt;icon fonts&lt;/a&gt; and a set of &lt;a href="http://foundation.zurb.com/social-icons.php"&gt;social icons&lt;/a&gt; (as separate products) that you can use.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Foundation has iOS-style &lt;a href="http://foundation.zurb.com/docs/components/switch.html"&gt;switches&lt;/a&gt;, which are a nice alternative to checkboxes.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Both Bootstrap and Foundation have visibility classes, which let you show and hide elements depending on the screen size. Foundation goes one step further by adding visibility classes for device orientation and touch support.&lt;/p&gt;

&lt;p&gt;This means you can do things like:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;&lt;p&gt;Replicate the pattern seen in many iPad apps, where a sidebar is displayed in landscape mode and hidden in portrait.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Show affordances on touch devices that usually only appear on hover.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Bootstrap seems to offer more built-in options for styling tables.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Bootstrap includes iPad-style &lt;a href="http://twitter.github.com/bootstrap/javascript.html#popovers"&gt;popovers&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Bootstrap comes with animated transitions for fade in/out and slide in/out.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Both Foundation and Bootstrap have wizards that let you customize their framework before you download it. Bootstrap seems to have more things you can customize, which may or may not be a good thing.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Foundation has 13 templates for common page layouts that you can &lt;a href="http://foundation.zurb.com/templates.php"&gt;download&lt;/a&gt; from their site. Bootstrap comes with eight example pages included in the download.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;But maybe the most important difference between the two frameworks is that Bootstrap is much more style-heavy than Foundation. This means that you see lots of sites that are very recognizably built using Bootstrap. For prototyping this may not matter so much. After all, what we are prototyping is not the visual design, it&amp;#8217;s the layout and functionality. But on the other hand, if the way things look by default draws too much attention to itself, that may be a disadvantage.&lt;/p&gt;

&lt;p&gt;As someone cleverly put it in an answer to a &lt;a href="http://www.quora.com/Prototyping/Which-one-would-be-a-better-choice-for-production-Twitter-Bootstrap-or-Zurb-Foundation-and-why"&gt;Quora question&lt;/a&gt; about this:&lt;/p&gt;

&lt;p&gt;&amp;gt; It is like the difference between buying a custom Lego kit or buying a bunch of Legos on eBay and then trying to build something from the kits that you scrapped together.&lt;/p&gt;

&lt;h3&gt;Other Factors&lt;/h3&gt;

&lt;h4&gt;Up-to-date-ness&lt;/h4&gt;

&lt;p&gt;Foundation and Bootstrap are both being actively developed, and new versions are released frequently. Skeleton, on the other hand, has not been updated in months. But since what it does is relatively simple, and because it is not engaged in a feature war with the other two (just the opposite, in fact), this may not matter in the slightest.&lt;/p&gt;

&lt;h4&gt;Popularity&lt;/h4&gt;

&lt;p&gt;Now, you don&amp;#8217;t want to be a sheep and just go with the one that everyone else is using. But popularity &lt;em&gt;does&lt;/em&gt; matter. It matters because Bootstrap is attracting people to develop other products that are based on it. And some of those could be quite useful to us.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://preview.liip.ch/protostrap/"&gt;Protostrap&lt;/a&gt; lets you put prototypes together more quickly by using PHP to reuse content. It also includes some enhancements to Bootstrap, including a fake authentication layer, a way to handle missing pages gracefully, an iOS tab bar, a carousel with touch support, more icons, and more.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://jetstrap.com"&gt;Jetstrap&lt;/a&gt; is webapp that lets you lay out Bootstrap pages visually, without having to write any code.&lt;/p&gt;

&lt;p&gt;There does not seem to be anything similar for Foundation yet.&lt;/p&gt;

&lt;h4&gt;Under the Hood: Less and Sass&lt;/h4&gt;

&lt;p&gt;Both Foundation and Bootstrap let you work in plain ol&amp;#8217; CSS. But they both use a CSS preprocessor that lets you do more powerful things (and keep your code simpler). Bootstrap uses &lt;a href="http://lesscss.org/"&gt;Less&lt;/a&gt;, while Foundation uses &lt;a href="http://sass-lang.com/"&gt;Sass&lt;/a&gt;. If you know what these are and have a preference, this may sway your decision.&lt;/p&gt;

&lt;h4&gt;Documentation&lt;/h4&gt;

&lt;p&gt;Another important factor is how easy it is to learn each framework. For this, you&amp;#8217;ll be relying on the provided documentation.&lt;/p&gt;

&lt;p&gt;Skeleton&amp;#8217;s documentation is understandably sparse. There&amp;#8217;s not a lot to explain here, but the docs do a perfectly acceptable job of explaining it.&lt;/p&gt;

&lt;p&gt;Foundation and Bootstrap both have very good documentation, but I think Bootstrap has a slight edge here.&lt;/p&gt;

&lt;h3&gt;Conclusions&lt;/h3&gt;

&lt;p&gt;Is any one of these head-and-shoulders above the others, a clear winner? No. All three frameworks are very competent.&lt;/p&gt;

&lt;p&gt;So which one should you use? The answer is a typical, designerly &amp;#8220;It depends&amp;#8221;.&lt;/p&gt;

&lt;p&gt;Each one just has a different emphasis, so which one is right for you depends on what you&amp;#8217;re trying to do.&lt;/p&gt;

&lt;p&gt;Do you mind all your prototypes having a similar look and feel? Maybe that&amp;#8217;s even a positive in your eyes. If so, Bootstrap is a strong contender.&lt;/p&gt;

&lt;p&gt;Do you prefer to impose your own look and feel on your prototypes (not necessarily a proper visual design that approximates a finished product, but maybe one that looks more wireframe-y)? Foundation could be the one for you.&lt;/p&gt;

&lt;p&gt;Do you have strong CSS and Javascript skills and want complete control over both the way your prototype looks and how it behaves? Then check out Skeleton.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&amp;#8220;But which one do &lt;em&gt;you&lt;/em&gt; use?&amp;#8221;&lt;/strong&gt; you ask. Well, I use Foundation. Why? Because I started using it before I&amp;#8217;d even really &lt;em&gt;heard&lt;/em&gt; about Bootstrap or Skeleton or had a chance to try them out.&lt;/p&gt;

&lt;p&gt;And now I&amp;#8217;m used to the way Foundation does things. I know how to do what I want in Foundation, so even if one of the other frameworks might be &amp;#8220;better&amp;#8221; for a particular project, I&amp;#8217;m probably better off leveraging my existing experience with Foundation and bending it to fit the needs of the current project than to invest the time required to learn one of the others.&lt;/p&gt;

&lt;p&gt;But if I was starting from scratch and trying to decide which one to use today, I&amp;#8217;d probably discount Skeleton because Bootstrap and Foundation both provide so many useful extras. Using the provided components is much faster than reinventing the wheel and doing it yourself.&lt;/p&gt;

&lt;p&gt;What it really comes down to is this: Can you live with Bootstrap&amp;#8217;s style-heavy approach? And will the same framework be used in production? (This may not be your decision to make…) If so, then it&amp;#8217;s more work (not for you, but still) to override Bootstrap&amp;#8217;s styles to make it look the way you want.&lt;/p&gt;

&lt;p&gt;&lt;br/&gt;&lt;/p&gt;

&lt;hr&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;

&lt;p&gt;If you want to learn more about using frameworks to create interactive prototypes, check out &lt;a href="http://livetyping.capcloud.com" title="Livetyping" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt;, the online course that teaches UX designers how to make interactive, clickable prototypes using HTML, CSS, and Javascript.&lt;/p&gt;

&lt;p&gt;You can buy Livetyping &lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Or sign up below for news about Livetyping, HTML prototyping tips, and more.&lt;/p&gt;

&lt;div id="mc_embed_signup" style="text-align: left; color: #000; background-color: #555; border-radius: 5px; margin-bottom: 26px; margin-bottom: 2.6rem;"&gt;


&lt;div class="five columns"&gt;
                &lt;form target="_blank" class="validate" id="mc-embedded-subscribe-form" method="post" action="http://capcloud.us4.list-manage.com/subscribe/post?u=3f02f03a1e0d396f36b10c145&amp;amp;id=c9ab18fe27"&gt;
                    
                        &lt;div&gt;&lt;input type="email" id="mce-EMAIL" class="required email" name="EMAIL" value=""&gt;&lt;div class="clear" id="mce-responses"&gt;
                            &lt;div style="display:none" id="mce-error-response" class="response"&gt;&lt;/div&gt;
                            &lt;div style="display:none" id="mce-success-response" class="response"&gt;&lt;/div&gt;
                        &lt;/div&gt;  
                        &lt;div id="mc_button_cont"&gt;
                            &lt;button class="nice small radius blue button" id="mc-embedded-subscribe" name="subscribe" value="Keep me posted" type="submit" onclick="_gaq.push(['_trackEvent', 'Events', 'Subscribe']);"&gt;Keep me posted&lt;/button&gt;
                        &lt;/div&gt;
                &lt;/div&gt;&lt;/form&gt;
                &lt;/div&gt;
                

&lt;/div&gt;</description><link>http://capcloud.com/post/45915556334</link><guid>http://capcloud.com/post/45915556334</guid><pubDate>Thu, 21 Mar 2013 17:19:00 +0200</pubDate></item><item><title>mantocaveman:

This is really disturbing. Please please please...</title><description>&lt;img src="http://25.media.tumblr.com/9e58b67b2d2e065b8b7799728a458dae/tumblr_mgm4dcbU5f1rtfqnfo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://mantocaveman.tumblr.com/post/42421940571/this-is-really-disturbing-please-please-please" class="tumblr_blog"&gt;mantocaveman&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;This is really disturbing. Please please please buy at least free range eggs (organic if you can afford it), and help put an end to caged hen egg production.&lt;/p&gt;&lt;/blockquote&gt;</description><link>http://capcloud.com/post/42440987942</link><guid>http://capcloud.com/post/42440987942</guid><pubDate>Wed, 06 Feb 2013 20:53:45 +0200</pubDate></item><item><title>Photo</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m6pdgxC5aB1qilt7go1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>http://capcloud.com/post/40180198833</link><guid>http://capcloud.com/post/40180198833</guid><pubDate>Thu, 10 Jan 2013 18:35:15 +0200</pubDate></item><item><title>When NOT to Prototype</title><description>&lt;p&gt;As I&amp;#8217;ve been putting together &lt;a href="http://livetyping.capcloud.com/"&gt;Livetyping&lt;/a&gt; (my HTML prototyping course), I&amp;#8217;ve been thinking about situations when you &lt;em&gt;shouldn&amp;#8217;t prototype&lt;/em&gt; stuff (interface elements, interactions, whatever). This two-by-two chart sums up my thinking:&lt;/p&gt;

&lt;img src="http://media.tumblr.com/tumblr_mdhayf0ZFe1qzb1wu.png"/&gt;&lt;p&gt;When something is hard to explain, but easy to code, you should code it. When the opposite it true, you should explain it instead (maybe using something like &lt;a href="http://code.new-bamboo.co.uk/polypage/"&gt;Polypage&lt;/a&gt; to add annotations directly to your prototype). These seem to be no-brainers.&lt;/p&gt;&lt;p&gt;But the interesting bits are the other two rectangles. If something is easy to explain &lt;en&gt;and easy to code, what should you do? And what if it&amp;#8217;s hard to explain &lt;em&gt;and&lt;/em&gt; to code? Well, it depends. And the “it depends” is similar for both cases.&lt;/en&gt;&lt;/p&gt;

&lt;p&gt;It depends on &lt;em&gt;why&lt;/em&gt; you want to prototype this particular bit of the interface. Is it just to communicate how it works to developers and stakeholders? If so, explaining is probably the best route.&lt;/p&gt;&lt;p&gt;But if it&amp;#8217;s so you can test your design with users, it may be worth putting in the extra effort to code it, especially if it is used in any important flows. Of course, if you&amp;#8217;re in the hard/hard rectangle, you may have to collaborate with your developer colleagues to bring it to fruition. (Thinking about it, this flavor of “it depends” applies to all four scenarios—if it has to be in there for testing, then it has to be in there.)&lt;/p&gt;

&lt;p&gt;There are other axes to take into account, of course, such as the relative importance of the thing you&amp;#8217;re contemplating prototyping, and the novelty of the element/interaction, but I&amp;#8217;ve found this to be a useful tool for thinking about this stuff.&lt;/p&gt;&lt;p&gt;What do you think? &lt;a href="https://twitter.com/martinpolley"&gt;Ping me on Twitter&lt;/a&gt; and let me know.&lt;/p&gt;

&lt;br/&gt;&lt;hr&gt;&lt;p&gt;&lt;a href="http://livetyping.capcloud.com" title="Livetyping" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt; is an online course that teaches UX designers how to make interactive, clickable prototypes using HTML, CSS, and Javascript.&lt;/p&gt;

&lt;p&gt;You can buy Livetyping &lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Or sign up below for news about Livetyping, HTML prototyping tips, and more.&lt;/p&gt;




				&lt;!-- Begin MailChimp Signup Form --&gt;
				&lt;div id="mc_embed_signup" style="text-align: left; color: #000; background-color: #555; border-radius: 5px; margin-bottom: 26px; margin-bottom: 2.6rem;"&gt;


&lt;div class="five columns" id="mc_embed_signup"&gt;
				&lt;form target="_blank" class="validate" name="mc-embedded-subscribe-form" id="mc-embedded-subscribe-form" method="post" action="http://capcloud.us4.list-manage.com/subscribe/post?u=3f02f03a1e0d396f36b10c145&amp;amp;id=c9ab18fe27"&gt;
					
						&lt;input type="email" placeholder="Email address" id="mce-EMAIL" class="required email" name="EMAIL" value=""&gt;&lt;div class="clear" id="mce-responses"&gt;
							&lt;div style="display:none" id="mce-error-response" class="response"&gt;&lt;/div&gt;
							&lt;div style="display:none" id="mce-success-response" class="response"&gt;&lt;/div&gt;
						&lt;/div&gt;	
						&lt;div id="mc_button_cont"&gt;
							&lt;button class="nice small radius blue button" id="mc-embedded-subscribe" name="subscribe" value="Keep me posted" type="submit" onclick="_gaq.push(['_trackEvent', 'Events', 'Subscribe']);"&gt;Keep me posted&lt;/button&gt;
						&lt;/div&gt;
				&lt;/form&gt;
				&lt;/div&gt;
				&lt;!--End mc_embed_signup--&gt; &lt;/div&gt;</description><link>http://capcloud.com/post/35703416805</link><guid>http://capcloud.com/post/35703416805</guid><pubDate>Wed, 14 Nov 2012 15:42:02 +0200</pubDate></item><item><title>Time to Dump Wireframes 2: The Turning Tide</title><description>&lt;p&gt;If you&amp;#8217;re &lt;em&gt;still&lt;/em&gt; not convinced that prototyping is better than wireframing (even after reading &lt;a href="http://capcloud.com/post/25357659999/time-to-dump-wireframes"&gt;this&lt;/a&gt;?!?), here are a couple of great articles that were published recently that you really must read.&lt;/p&gt;

&lt;p&gt;In the first, &lt;a href="https://twitter.com/shesho"&gt;Sergio Nouvel&lt;/a&gt; gives a good overview of the pros and cons of each of the different fidelity deliverables that we are used to producing. He then goes on to make a compelling argument for starting out with lo-fi mockups, then going straight to &amp;#8220;wireframing in the browser&amp;#8221;, which has a number of advantages:

&lt;/p&gt;&lt;ul&gt;&lt;li&gt;With CSS frameworks, basic layout is a breeze.&lt;/li&gt;
&lt;li&gt;Your deliverable is responsive-ready.&lt;/li&gt;
&lt;li&gt;You can take advantage of what the browser does by nature.&lt;/li&gt;
&lt;li&gt;It’s truly interactive.&lt;/li&gt;
&lt;li&gt;The scalable nature of CSS enables easy, live changes.&lt;/li&gt;
&lt;li&gt;You don’t need proprietary software or a powerhouse machine.&lt;/li&gt;
&lt;li&gt;Everything you do saves you time later because you are building the real thing.&lt;/li&gt;
&lt;/ul&gt;

Absolutely! Go &lt;a href="http://uxmag.com/articles/ditch-traditional-wireframes"&gt;check it out&lt;/a&gt; on UX Magazine.

&lt;p&gt;The second article, by &lt;a href="https://twitter.com/leisa"&gt;Leisa&lt;/a&gt; &lt;a href="http://www.disambiguity.com/"&gt;Reichelt&lt;/a&gt;, is a punchy, tour-de-force list of reasons why prototyping beats the pants off wireframing. It&amp;#8217;s a really quick read—already condensed down to its essence—so I won&amp;#8217;t ruin it by trying to summarize it here. Just take the two minutes and &lt;a href="http://the-pastry-box-project.net/leisa-reichelt/2012-october-23/"&gt;go read it&lt;/a&gt; over on The Pastry Box Project. It&amp;#8217;s really good.&lt;/p&gt;

&lt;p&gt;Happy reading :)&lt;/p&gt;

&lt;br/&gt;&lt;hr&gt;&lt;p&gt;&lt;a href="http://livetyping.capcloud.com" title="Livetyping" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt; is an online course that teaches UX designers how to make interactive, clickable prototypes using HTML, CSS, and Javascript.&lt;/p&gt;

&lt;p&gt;You can buy Livetyping &lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Or sign up below for news about Livetyping, HTML prototyping tips, and more.&lt;/p&gt;




				&lt;!-- Begin MailChimp Signup Form --&gt;
				&lt;div id="mc_embed_signup" style="text-align: left; color: #000; background-color: #555; border-radius: 5px; margin-bottom: 26px; margin-bottom: 2.6rem;"&gt;


&lt;div class="five columns" id="mc_embed_signup"&gt;
				&lt;form target="_blank" class="validate" name="mc-embedded-subscribe-form" id="mc-embedded-subscribe-form" method="post" action="http://capcloud.us4.list-manage.com/subscribe/post?u=3f02f03a1e0d396f36b10c145&amp;amp;id=c9ab18fe27"&gt;
					
						&lt;input type="email" placeholder="Email address" id="mce-EMAIL" class="required email" name="EMAIL" value=""&gt;&lt;div class="clear" id="mce-responses"&gt;
							&lt;div style="display:none" id="mce-error-response" class="response"&gt;&lt;/div&gt;
							&lt;div style="display:none" id="mce-success-response" class="response"&gt;&lt;/div&gt;
						&lt;/div&gt;	
						&lt;div id="mc_button_cont"&gt;
							&lt;button class="nice small radius blue button" id="mc-embedded-subscribe" name="subscribe" value="Keep me posted" type="submit" onclick="_gaq.push(['_trackEvent', 'Events', 'Subscribe']);"&gt;Keep me posted&lt;/button&gt;
						&lt;/div&gt;
				&lt;/form&gt;
				&lt;/div&gt;
				&lt;!--End mc_embed_signup--&gt; &lt;/div&gt;</description><link>http://capcloud.com/post/35475269040</link><guid>http://capcloud.com/post/35475269040</guid><pubDate>Sun, 11 Nov 2012 12:19:07 +0200</pubDate></item><item><title>How To: Prototype an Animated Notification (à la Twitter)</title><description>&lt;br/&gt;&lt;iframe width="520" height="293" src="http://www.youtube.com/embed/wGYUlK_Keds?rel=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;Tip:&lt;/strong&gt; Switch to full-screen, otherwise you won&amp;#8217;t be able to see a damn thing :)&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This is a short excerpt from &lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt;, my self-paced video course that teaches you (the UX designer) how to prototype in HTML, CSS, and Javascript.&lt;/p&gt;

&lt;p&gt;You can buy Livetyping &lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Or sign up below for news about Livetyping, HTML prototyping tips, and more.&lt;/p&gt;

				&lt;!-- Begin MailChimp Signup Form --&gt;
				&lt;div id="mc_embed_signup" style="text-align: left; color: #000; background-color: #555; border-radius: 5px; margin-bottom: 26px; margin-bottom: 2.6rem;"&gt;


&lt;div class="five columns" id="mc_embed_signup"&gt;
				&lt;form target="_blank" class="validate" name="mc-embedded-subscribe-form" id="mc-embedded-subscribe-form" method="post" action="http://capcloud.us4.list-manage.com/subscribe/post?u=3f02f03a1e0d396f36b10c145&amp;amp;id=c9ab18fe27"&gt;
					
						&lt;input type="email" placeholder="Email address" id="mce-EMAIL" class="required email" name="EMAIL" value=""&gt;&lt;div class="clear" id="mce-responses"&gt;
							&lt;div style="display:none" id="mce-error-response" class="response"&gt;&lt;/div&gt;
							&lt;div style="display:none" id="mce-success-response" class="response"&gt;&lt;/div&gt;
						&lt;/div&gt;	
						&lt;div id="mc_button_cont"&gt;
							&lt;button class="nice small radius blue button" id="mc-embedded-subscribe" name="subscribe" value="Keep me posted" type="submit" onclick="_gaq.push(['_trackEvent', 'Events', 'Subscribe']);"&gt;Keep me posted&lt;/button&gt;
						&lt;/div&gt;
				&lt;/form&gt;
				&lt;/div&gt;
				&lt;!--End mc_embed_signup--&gt; &lt;/div&gt;</description><link>http://capcloud.com/post/35286800670</link><guid>http://capcloud.com/post/35286800670</guid><pubDate>Thu, 08 Nov 2012 22:29:00 +0200</pubDate></item><item><title>Recording Mobile Screens—Another Option</title><description>&lt;p&gt;Recording the screen of a mobile device is not an easy thing. You can build a fancy test rig, with cameras and so on. But it&amp;#8217;s expensive and cumbersome. There are iOS apps that let you record the screen. But the ones I&amp;#8217;ve seen are either buggy as hell or require you to jailbreak your device.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_mc0431g4QX1qzb1wu.png"/&gt;&lt;/p&gt;

&lt;p&gt;But today I came across another option. AirPlay lets you mirror your iPhone or iPad&amp;#8217;s display on an Apple TV. But you can also mirror it on a Mac, using a product called &lt;a href="http://www.airserverapp.com/en/Download/Referrer/227076"&gt;AirServer&lt;/a&gt;. The company that created it promotes it as a way to play multi-player games with your friends on a nice big screen.&lt;/p&gt;

&lt;p&gt;But with your device&amp;#8217;s screen mirrored on your Mac, you can use screen-recording software (like Screenflow, Camtasia, or Morae) to record it. Which, for user testing, is pretty damn handy. (The image above was captured from my Mac&amp;#8217;s screen.)&lt;/p&gt;

&lt;p&gt;(Disclaimer: If you use the above link to download and install AirServer, my free trial gets extended by three days. Just so you know.)&lt;/p&gt;</description><link>http://capcloud.com/post/33722143140</link><guid>http://capcloud.com/post/33722143140</guid><pubDate>Tue, 16 Oct 2012 22:48:26 +0300</pubDate></item><item><title>Cool things happen when you point the iOS 6 panorama camera out the window of a speeding car</title><description>&lt;p&gt;&lt;a class="tumblr_blog" href="http://new-aesthetic.tumblr.com/post/32421016764/cool-things-happen-when-you-point-the-ios-6"&gt;new-aesthetic&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;img height="228" src="https://pbs.twimg.com/media/A3qEIX_CEAAJo2U.jpg:large" width="1024"/&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Cool things happen when you point the iOS 6 panorama camera out the window of a speeding car&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;a href="https://twitter.com/drcongo/status/250658008680501248/photo/1"&gt;Twitter / drcongo&lt;/a&gt; (via Ben B)&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://capcloud.com/post/33717104683</link><guid>http://capcloud.com/post/33717104683</guid><pubDate>Tue, 16 Oct 2012 21:12:15 +0300</pubDate></item><item><title>Learning HTML Prototyping—Where the Hell Do I Start?</title><description>&lt;p&gt;OK, so you&amp;#8217;ve read what various &lt;a href="http://capcloud.com/post/25357659999/time-to-dump-wireframes"&gt;UX thought leaders have said or written&lt;/a&gt; about prototyping in HTML (or more generally about UXers being able to code) and you&amp;#8217;re convinced that HTML prototyping is an important skill. Maybe you want to improve the collaboration between you (the designer) and your developer colleagues. Perhaps you want to improve communication with stakeholders. Or maybe you want to get your designs in front of your users earlier.&lt;/p&gt;

&lt;p&gt;If you&amp;#8217;re a freelancer, it could be that you are looking for ways to raise your hourly rate. Or maybe you&amp;#8217;re an in-house designer who&amp;#8217;s looking for a better job and who sees the value of having this important skill on your résumé.&lt;/p&gt;

&lt;p&gt;But where do you start?&lt;/p&gt;

&lt;p&gt;The following is my attempt to show you the alternatives that are out there. I hope it helps you find the way that best suits you.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Disclaimer:&lt;/b&gt; I have included &lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt;, which I created. Yes, I think it&amp;#8217;s great. But I recognize that different people learn in different ways. If self-paced, screencast-based learning isn&amp;#8217;t your bag, I&amp;#8217;m sure you&amp;#8217;ll find an alternative here.&lt;/p&gt;

&lt;br/&gt;&lt;h4&gt;Workshops&lt;/h4&gt;

&lt;img width="207px" src="http://media.tumblr.com/tumblr_m9rw91PtcK1qzb1wu.png"/&gt;&lt;p&gt;There have been several HTML prototyping workshops run in various locations. A good example is UX Bootcamp&amp;#8217;s &lt;a href="http://www.uxbootcamp.org/prototyping/"&gt;Prototyping in Code&lt;/a&gt;, an intensive three-day workshop that has been run twice in London, UK.&lt;/p&gt;

&lt;p&gt;Pros:
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;It&amp;#8217;s aimed specifically at UX designers.&lt;/li&gt;
&lt;li&gt;It&amp;#8217;s good for procrastinators and others who struggle with self-paced learning.&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Cons:
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;It&amp;#8217;s a bit pricey (£299, which translates to $475).&lt;/li&gt;
&lt;li&gt;It&amp;#8217;s only any use if you live within a reasonable distance of the venue.&lt;/li&gt;
&lt;li&gt;It&amp;#8217;s not available &lt;em&gt;right now&lt;/em&gt;. You&amp;#8217;ll have to wait for the next one to be scheduled.&lt;/li&gt;
&lt;/ul&gt;&lt;br/&gt;&lt;h4&gt;Books&lt;/h4&gt;

&lt;img src="http://cdn.shopify.com/s/files/1/0051/7692/assets/aba-1-thumb.png"/&gt;&lt;img src="http://cdn.shopify.com/s/files/1/0051/7692/assets/aba-2-thumb.png"/&gt;&lt;img src="http://cdn.shopify.com/s/files/1/0051/7692/assets/aba-4-thumb.png"/&gt;&lt;p&gt;Hundreds of books (maybe even thousands) have been written about HTML, CSS, and Javascript. Here are a few notable ones:
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.abookapart.com/products/html5-for-web-designers"&gt;HTML5 for Web Designers&lt;/a&gt;, by Jeremy Keith&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.amazon.com/Designing-Web-Standards-3rd-Edition/dp/0321616952"&gt;Designing with Web Standards&lt;/a&gt;, by Jeffrey Zeldman and Ethan Marcotte&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.abookapart.com/products/css3-for-web-designers"&gt;CSS3 for Web Designers&lt;/a&gt;, by Dan Cederholm&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.abookapart.com/products/responsive-web-design"&gt;Responsive Web Design&lt;/a&gt;, by Ethan Marcotte&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;There is also Todd Zaki Warfel&amp;#8217;s book, &lt;a href="http://www.amazon.com/Prototyping-Practitioners-Todd-Zaki-Warfel/dp/1933820217"&gt;Prototyping: A Practitioner&amp;#8217;s Guide&lt;/a&gt;, which touches on HTML prototyping, but does not go into much depth.&lt;/p&gt;

&lt;p&gt;Pros:
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;You are spoiled for choice.&lt;/li&gt;
&lt;li&gt;Books are relatively cheap.&lt;/li&gt;
&lt;li&gt;There are some great books out there.&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Cons:
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;It&amp;#8217;s hard to know which books to buy from the huge selection available.&lt;/li&gt;
&lt;li&gt;None of them are really tailored for UX designers who want to learn how to prototype in HTML.&lt;/li&gt;
&lt;li&gt;Not everybody likes learning from books or has the necessary self-discipline.&lt;/li&gt;
&lt;/ul&gt;&lt;br/&gt;&lt;h4&gt;Online Video Courses&lt;/h4&gt;

&lt;img src="http://media.tumblr.com/tumblr_m9rvyphiHp1qzb1wu.png"/&gt;&lt;p&gt;There are dozens of sites that offer screencast-based courses. For example, &lt;a href="http://lynda.com"&gt;Lynda.com&lt;/a&gt; has lots of courses on just about any tech-related subject you could mention, including ones on HTML, CSS, and Javascript. There is a lot of good content out there, but most of it is not aimed specifically at UX designers. It&amp;#8217;s more for people who want to become web designers or web developers.&lt;/p&gt;

&lt;p&gt;Pros:
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;They are typically self-paced, which is great if that works for your learning style.&lt;/li&gt;
&lt;li&gt;The cost is usually reasonable.&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Cons:
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;They aren&amp;#8217;t tailored for UX designers.&lt;/li&gt;
&lt;li&gt;You need to do your research to find the right courses.&lt;/li&gt;
&lt;li&gt;You end up wasting time learning stuff that&amp;#8217;s not really relevant for HTML prototyping.&lt;/li&gt;
&lt;/ul&gt;&lt;br/&gt;&lt;h4&gt;Free Online Resources&lt;/h4&gt;

&lt;img src="http://www.w3schools.com/images/w3html.gif"/&gt;&lt;p&gt;Where do you go to find almost infinite resources about web technologies? The web, of course! Again, the quantity of information available is staggering. You can get all the information you need, but there are two problems: finding it, and being able to tell the good from the bad.&lt;/p&gt;

&lt;p&gt;A few selected resources:
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://diveintohtml5.info/"&gt;&lt;a href="http://diveintohtml5.info/"&gt;http://diveintohtml5.info/&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.codecademy.com"&gt;&lt;a href="http://www.codecademy.com"&gt;http://www.codecademy.com&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.w3schools.com/html/default.asp"&gt;&lt;a href="http://www.w3schools.com/html/default.asp"&gt;http://www.w3schools.com/html/default.asp&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://css-tricks.com/"&gt;&lt;a href="http://css-tricks.com/"&gt;http://css-tricks.com/&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Pros:
&lt;/p&gt;&lt;ul&gt;It doesn&amp;#8217;t cost anything (except time).
&lt;/ul&gt;&lt;p&gt;Cons:
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;It takes a lot of time to find the right resources and work through them. How valuable is your time?&lt;/li&gt;
&lt;/ul&gt;&lt;br/&gt;&lt;h4&gt;&lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt;&lt;/h4&gt;

&lt;img width="250px" src="http://media.tumblr.com/tumblr_m9rw1vP1P01qzb1wu.png"/&gt;&lt;p&gt;&lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt; is a series of screencast lessons that teach you prototyping in HTML, CSS, and Javascript at your own pace. It is tailored for UX designers and doesn&amp;#8217;t include stuff that you don&amp;#8217;t need to know.&lt;/p&gt;

&lt;p&gt;Pros:
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;It&amp;#8217;s tailored specifically for UX designers.&lt;/li&gt;
&lt;li&gt;It&amp;#8217;s great if you can&amp;#8217;t dedicate a big block of time all at once.&lt;/li&gt;
&lt;li&gt;You can work through it at your own speed.&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Cons:
&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Not good for procrastinators or those who struggle with self-paced learning (though it&amp;#8217;s probably better than books in this respect).&lt;/li&gt;
&lt;/ul&gt;&lt;br/&gt;&lt;h4&gt;Conclusion&lt;/h4&gt;

&lt;p&gt;HTML prototyping is a valuable skill that is in demand. There are many different ways to get this skill—some will suit your own personal learning style and how you value your time better than others. Best of luck!&lt;/p&gt;

&lt;br/&gt;&lt;hr&gt;&lt;p&gt;You can get Livetyping &lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Or sign up below for news about Livetyping, HTML prototyping tips, and more.&lt;/p&gt;

				&lt;!-- Begin MailChimp Signup Form --&gt;
				&lt;div id="mc_embed_signup" style="text-align: left; color: #000; background-color: #555; border-radius: 5px; margin-bottom: 26px; margin-bottom: 2.6rem;"&gt;


&lt;div class="five columns" id="mc_embed_signup"&gt;
				&lt;form target="_blank" class="validate" name="mc-embedded-subscribe-form" id="mc-embedded-subscribe-form" method="post" action="http://capcloud.us4.list-manage.com/subscribe/post?u=3f02f03a1e0d396f36b10c145&amp;amp;id=c9ab18fe27"&gt;
					
						&lt;input type="email" placeholder="Email address" id="mce-EMAIL" class="required email" name="EMAIL" value=""&gt;&lt;div class="clear" id="mce-responses"&gt;
							&lt;div style="display:none" id="mce-error-response" class="response"&gt;&lt;/div&gt;
							&lt;div style="display:none" id="mce-success-response" class="response"&gt;&lt;/div&gt;
						&lt;/div&gt;	
						&lt;div id="mc_button_cont"&gt;
							&lt;button class="nice small radius blue button" id="mc-embedded-subscribe" name="subscribe" value="Keep me posted" type="submit" onclick="_gaq.push(['_trackEvent', 'Events', 'Subscribe']);"&gt;Keep me posted&lt;/button&gt;
						&lt;/div&gt;
				&lt;/form&gt;
				&lt;/div&gt;
				&lt;!--End mc_embed_signup--&gt; &lt;/div&gt;</description><link>http://capcloud.com/post/30723121234</link><guid>http://capcloud.com/post/30723121234</guid><pubDate>Sun, 02 Sep 2012 16:31:00 +0300</pubDate></item><item><title>Livetyping Is Live!</title><description>&lt;p&gt;&lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt;, my video course that teaches you (the UX designer) how to prototype in HTML, CSS, and Javascript, is now available!&lt;/p&gt;

&lt;p&gt;So if you&amp;#8217;re ready to start improving collaboration with your developer colleagues, communicating better with stakeholders, and getting your designs in front of users earlier, you should &lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;sign up&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Oh, and did I mention that designers who can code are in demand and can &lt;a href="http://www.uie.com/brainsparks/2011/05/31/why-the-valley-wants-designers-that-can-code/"&gt;make more money&lt;/a&gt; than ones who can&amp;#8217;t? Well, now I did.&lt;/p&gt;</description><link>http://capcloud.com/post/30303616731</link><guid>http://capcloud.com/post/30303616731</guid><pubDate>Mon, 27 Aug 2012 10:05:00 +0300</pubDate></item><item><title>The UX Designer's HTML Cheat Sheet</title><description>&lt;p&gt;While I was creating my &lt;a href="http://livetyping.capcloud.com/" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt; course, I realized that HTML5 might look a bit intimidating to some. It has over 120 different tags, which is a lot to get your head round. But in practice, when making interactive HTML prototypes, I only ever use a small subset of these.&lt;/p&gt;&lt;p&gt;So I made a &lt;a href="http://livetyping.capcloud.com/stuff/The_UX_Designers_HTML_Cheat_Sheet.pdf"&gt;cheatsheet&lt;/a&gt; containing just these commonly-used elements. Enjoy!&lt;/p&gt;

&lt;br/&gt;&lt;a href="http://livetyping.capcloud.com/stuff/The_UX_Designers_HTML_Cheat_Sheet.pdf"&gt;&lt;img src="http://media.tumblr.com/tumblr_m76uk4xtsR1qzb1wu.png" style="-webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 1); -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 1); box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 1);"/&gt;&lt;/a&gt;

&lt;br/&gt;&lt;br/&gt;&lt;p&gt;If you&amp;#8217;ve got any suggestions for improving this cheat sheet, I&amp;#8217;m &lt;a href="https://twitter.com/martinpolley"&gt;@martinpolley&lt;/a&gt; on Twitter.&lt;/p&gt;

&lt;br/&gt;&lt;hr&gt;&lt;p&gt;&lt;a href="http://livetyping.capcloud.com" title="Livetyping" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt; is an online course that teaches UX designers how to make interactive, clickable prototypes using HTML, CSS, and Javascript.&lt;/p&gt;

&lt;p&gt;The course will be launching very soon. Sign up and I&amp;#8217;ll let you know when it&amp;#8217;s about to launch.&lt;/p&gt;




				&lt;!-- Begin MailChimp Signup Form --&gt;
				&lt;div id="mc_embed_signup" style="text-align: left; color: #000; background-color: #555; border-radius: 5px; margin-bottom: 26px; margin-bottom: 2.6rem;"&gt;


&lt;div class="five columns" id="mc_embed_signup"&gt;
				&lt;form target="_blank" class="validate" name="mc-embedded-subscribe-form" id="mc-embedded-subscribe-form" method="post" action="http://capcloud.us4.list-manage.com/subscribe/post?u=3f02f03a1e0d396f36b10c145&amp;amp;id=c9ab18fe27"&gt;
					
						&lt;input type="email" placeholder="Email address" id="mce-EMAIL" class="required email" name="EMAIL" value=""&gt;&lt;div class="clear" id="mce-responses"&gt;
							&lt;div style="display:none" id="mce-error-response" class="response"&gt;&lt;/div&gt;
							&lt;div style="display:none" id="mce-success-response" class="response"&gt;&lt;/div&gt;
						&lt;/div&gt;	
						&lt;div id="mc_button_cont"&gt;
							&lt;button class="nice small radius blue button" id="mc-embedded-subscribe" name="subscribe" value="Keep me posted" type="submit" onclick="_gaq.push(['_trackEvent', 'Events', 'Subscribe']);"&gt;Keep me posted&lt;/button&gt;
						&lt;/div&gt;
				&lt;/form&gt;
				&lt;/div&gt;
				&lt;!--End mc_embed_signup--&gt; &lt;/div&gt;</description><link>http://capcloud.com/post/27245760089</link><guid>http://capcloud.com/post/27245760089</guid><pubDate>Sun, 15 Jul 2012 09:23:00 +0300</pubDate></item><item><title>“… be careful, tools that empower prototyping can enable...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m6bfkaDAA11qzcjwmo1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;blockquote&gt;“… be careful, tools that empower prototyping can enable designers to work in isolation.”&lt;/blockquote&gt;

&lt;p&gt;Bill Scott—&lt;em&gt;&lt;a href="http://www.slideshare.net/billwscott/lean-ux-antipatterns"&gt;Lean UX Anti-Patterns&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;</description><link>http://capcloud.com/post/26058640783</link><guid>http://capcloud.com/post/26058640783</guid><pubDate>Thu, 28 Jun 2012 10:02:00 +0300</pubDate></item><item><title>On Academic Achievement</title><description>&lt;p&gt;&lt;a href="http://matthasafaceforradio.tumblr.com/post/26027967233/it-really-troubles-me-when-people-use-academic" class="tumblr_blog"&gt;matthasafaceforradio&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;blockquote&gt;“It really troubles me when people use academic achievement as a means of measuring intelligence. You’re basically saying that somebody who is able to successfully jump through hoops and be submissive to authority is the height of intelligence, rather than looking at somebody’s capacity to think independently and creatively. I think that you can tell a lot more about somebody’s level of intelligence by sitting down with them and having a five minute conversation rather than looking at some letters on a piece of paper which, essentially, are meaningless.”&lt;/blockquote&gt; &lt;p&gt;— &lt;a href="http://zealotry.tumblr.com/post/22451241252/it-really-troubles-me-when-people-use-academic"&gt;Source&lt;/a&gt; (via &lt;a class="tumblr_blog" href="http://rtrogrd.tk/"&gt;-retrograde&lt;/a&gt;)&lt;/p&gt;&lt;/blockquote&gt;</description><link>http://capcloud.com/post/26058457907</link><guid>http://capcloud.com/post/26058457907</guid><pubDate>Thu, 28 Jun 2012 09:57:46 +0300</pubDate></item><item><title>Should Designers Be Able to Code?—Cennydd Bowles</title><description>&lt;p&gt;In my &lt;a href="http://capcloud.com/post/25357659999/time-to-dump-wireframes"&gt;recent post&lt;/a&gt; about why UXers should learn to prototype in HTML, CSS, and Javascript, I missed out the one person whose opinion prompted me to write the post in the first place.&lt;/p&gt;

&lt;p&gt;In April, Andrew Travers and Matthew Solle &lt;a href="http://london-ia.com/2012/04/london-ia-podcast-with-cennydd-bowles/"&gt;interviewed&lt;/a&gt; Cennydd Bowles for the London IA podcast. They asked him whether he is &amp;#8220;a unicorn that codes&amp;#8221; and whether he thinks that it is something that&amp;#8217;s important. Here are the edited highlights of his reply. (In the &lt;a href="http://london-ia.com/audio/LondonIA_CennyddBowles.m4a"&gt;original audio&lt;/a&gt;, this bit is from 17:44–20:18.)&lt;/p&gt;

&lt;blockquote&gt;

&lt;p&gt;I firmly believe that it&amp;#8217;s a strong benefit to a designer who is working on the web to know HTML and CSS. They&amp;#8217;re not difficult, they really aren&amp;#8217;t. Javascript optional. If you know the basics of Javascript, if you know how to, you know, thrash around a bit of jQuery, then that&amp;#8217;s definitely going to be helpful for prototyping and so on.&lt;/p&gt;

&lt;p&gt;There are two reasons, I think, why I think it&amp;#8217;s useful to be able to code as a designer in our domain. The first is it gives you an understanding or an appreciation of what&amp;#8217;s possible. And equally, what might be possible in six months&amp;#8217; time, or what might be possible if you&amp;#8217;re able to kind of poke the developers hard enough and say &amp;#8220;Go on—you can do it! Let&amp;#8217;s find an innovative solution.&amp;#8221;
&lt;/p&gt;

&lt;p&gt;The flipside of that is also that you know enough to call a developer&amp;#8217;s bullshit. I love developers and I miss working with them as closely as I used to. But I think they would admit that occasionally they can be a bit obstructive, if they feel they&amp;#8217;ve been left out of the loop or if they&amp;#8217;re being forced to, you know, do something unreasonable in a silly timescale. And there can be sometimes a strain of the developer community that says &amp;#8220;No—can&amp;#8217;t do that. Nope, not possible. Have to go away and do it again.&amp;#8221;
&lt;/p&gt;

&lt;p&gt;If you know your stuff, and you say &amp;#8220;Well, actually, I&amp;#8217;ve got a jQuery plugin here or something that can do that for you,&amp;#8221; I&amp;#8217;ve already saved you half the effort, then sometimes that can help realize your design—get past that kind of resistance.
&lt;/p&gt;

&lt;p&gt;The second reason why I think it&amp;#8217;s desirable to be able to code is simply just because it helps the design process. Particularly for interaction design, I&amp;#8217;m a big fan of trying to design within the medium. Now I don&amp;#8217;t mean design in the browser—that&amp;#8217;s maybe something we could talk about later—but I&amp;#8217;m not a big fan of that, in terms of visual design and layout and so on. But I am a big fan of it in terms of the interaction design—how things respond to input.
&lt;/p&gt;

&lt;p&gt;And I think the sooner you can get that kind of design into its native state, be that on an iPhone, or on a telly, or in a web browser, then you can get a better understanding for whether it feels right, because so much of interaction design is about feel and rhythm and flow. The only way really to get that in front of people is to try and prototype it yourself. And I find HTML prototyping really adds something to what I can do. It helps me make the right design decisions, because I can get those interactions out, I can get them tested, and then I can iterate on those quickly. &lt;/p&gt;

&lt;/blockquote&gt;

&lt;hr&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://livetyping.capcloud.com" title="Livetyping" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt; is an online course that teaches UX designers how to make interactive, clickable prototypes using HTML, CSS, and Javascript.&lt;/p&gt;

&lt;p&gt;The course will be launching very soon. Sign up and I&amp;#8217;ll let you know when it&amp;#8217;s about to launch.&lt;/p&gt;




				&lt;!-- Begin MailChimp Signup Form --&gt;
				&lt;div id="mc_embed_signup" style="text-align: left; color: #000; background-color: #555; border-radius: 5px; margin-bottom: 26px; margin-bottom: 2.6rem;"&gt;


&lt;div class="five columns" id="mc_embed_signup"&gt;
				&lt;form target="_blank" class="validate" name="mc-embedded-subscribe-form" id="mc-embedded-subscribe-form" method="post" action="http://capcloud.us4.list-manage.com/subscribe/post?u=3f02f03a1e0d396f36b10c145&amp;amp;id=c9ab18fe27"&gt;
					
						&lt;input type="email" placeholder="Email address" id="mce-EMAIL" class="required email" name="EMAIL" value=""&gt;&lt;div class="clear" id="mce-responses"&gt;
							&lt;div style="display:none" id="mce-error-response" class="response"&gt;&lt;/div&gt;
							&lt;div style="display:none" id="mce-success-response" class="response"&gt;&lt;/div&gt;
						&lt;/div&gt;	
						&lt;div id="mc_button_cont"&gt;
							&lt;button class="nice small radius blue button" id="mc-embedded-subscribe" name="subscribe" value="Keep me posted" type="submit" onclick="_gaq.push(['_trackEvent', 'Events', 'Subscribe']);"&gt;Keep me posted&lt;/button&gt;
						&lt;/div&gt;
				&lt;/form&gt;
				&lt;/div&gt;
				&lt;!--End mc_embed_signup--&gt; &lt;/div&gt;</description><link>http://capcloud.com/post/25629683558</link><guid>http://capcloud.com/post/25629683558</guid><pubDate>Fri, 22 Jun 2012 08:29:00 +0300</pubDate></item><item><title>Time to Dump Wireframes</title><description>&lt;p&gt;Most of the work we do as UX designers is either for the web, or related to it in some way. The things that we design are often web sites or web applications. And even if they aren&amp;#8217;t, web technologies are finding their way into more and more things: native iOS apps, Android apps, even desktop software.&lt;/p&gt;

&lt;p&gt;And the web is a-changin&amp;#8217;. Gone are the days when all you needed was a desktop web site or application with a fixed width of 960 pixels. These days, there is a vast range of different devices and screen sizes that you need to think about. And that range is only going to keep getting bigger.&lt;/p&gt;

&lt;p&gt;If you&amp;#8217;re still using static wireframes to design this stuff, you are doing yourself (not to mention your client, employer, and/or colleagues) a great disservice. Wireframes just aren&amp;#8217;t up to the job of showing subtle interaction details—the things that make the difference between an application that is a delight to use and one that frustrates and annoys.&lt;/p&gt;

&lt;p&gt;And even if you&amp;#8217;re using a more sophisticated prototyping tool, you&amp;#8217;re &lt;i&gt;still&lt;/i&gt; not doing yourself any favors, because these tools don&amp;#8217;t allow your designs to adapt to the multitude of different screen sizes that are out there.&lt;/p&gt;

&lt;p&gt;Many of the most respected people in our industry have been voicing the opinion for some time now that designers need to be able to code and that prototyping in HTML, CSS, and Javascript is a Good Thing. This article highlights some of the arguments they have been making.&lt;/p&gt;

&lt;p&gt;37signals have been vocal proponents of this approach. In &lt;a href="http://37signals.com/svn/posts/1061-why-we-skip-photoshop"&gt;this post&lt;/a&gt; from back in 2008, Jason Fried explained why they don&amp;#8217;t make mockups in Photoshop, instead preferring to &amp;#8220;go right from a quick paper sketch to HTML/CSS.&amp;#8221;&lt;/p&gt;

&lt;p&gt;In an &lt;a href="http://johnnyholland.org/2009/11/the-power-of-prototyping-an-interview-with-todd-zaki-warfel/"&gt;interview&lt;/a&gt; with Johnny Holland magazine in 2009, Todd Zaki Warfel, author of &amp;#8220;Prototyping: A Practitioner&amp;#8217;s Guide&amp;#8221; gave some compelling arguments for prototyping.&lt;/p&gt;

&lt;blockquote&gt;

&lt;p&gt;I can also give our clients examples of how prototyping enabled us to uncover hidden problems, explore design solutions, and make informed decisions prior to launch that we simply couldn’t have done without prototyping…&lt;/p&gt;

&lt;p&gt;Prototypes are about show and tell. They’re a visual way of communicating the design of a system. First and foremost, they communicate your design…&lt;/p&gt;

&lt;p&gt;In nearly every case in the past three years, prototypes have become our documentation. … It still takes less time to build a prototype and write a 20 page supplemental spec than it would to write a 200 page spec and get consensus on it.&lt;/p&gt;

&lt;p&gt;Any design based on a written spec is a design based on theory. A design based on a prototype is a design based on experience and practice.&lt;/p&gt;

&lt;p&gt;I think another significant insight is that reactions we get to from our prototypes from clients and customers is far beyond anything we were ever able to achieve with wireframes and static Photoshop visual comps.&lt;/p&gt;

&lt;p&gt;… my preferred prototyping tools are paper, pencil, pen and HTML/CSS with JavaScript.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In 2010, Aza Raskin wrote a &lt;a href="http://www.azarask.in/blog/post/be-a-designer/"&gt;blog post&lt;/a&gt; that also touched on the subject.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The most powerful tool for creating empathy as a designer is prototyping. It meets the rest of the team half-way, is the second most persuasive artifact (the first being a narrated video of the prototype), and gives you a sense of what’s hard and what’s easy to implement. Having thought through the edge-cases and being able to speak an engineer’s language gives you street cred. You don’t need to be a great coder, but you should at least be able to get your idea across in in HTML and Javascript.&lt;/p&gt;

&lt;p&gt;To design is to inspire participation. To do that, you need to be respected. For that, you need to be a designer-coder.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In May of 2011, Jared Spool wrote the &lt;a href="http://www.uie.com/brainsparks/2011/05/31/why-the-valley-wants-designers-that-can-code/"&gt;post&lt;/a&gt; that really opened up the can of worms.&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Interestingly, it isn’t the designers who get to decide if coding is a valuable skill. It’s the hiring managers. And right now, based on today’s jobs market, it’s pretty clear where they stand. Many want to hire super designers—designers who can also code.&lt;/p&gt;

&lt;p&gt;… those designers who have proven, practiced coding skills can demand a higher salary than those who don’t.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;This provoked a flurry of responses. Matt Nish-Lapidus &lt;a href="http://normativedesign.com/practice/coding-for-designers"&gt;added&lt;/a&gt; to the career and team fit aspects that Jared covered:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;I firmly believe that in order to do good design the designer must work with their materials. We can’t continue to just make pictures and flat representations of the things we’re designing. There is a time in the design process for making pictures, but it should be about generating ideas and refining them. There is no way to know what your web site, app, or other software, will actually be like without making a realistic version of a working interface.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Jenifer Tidwell &lt;a href="http://designinginterfaces.com/2011/06/01/designers-that-code-a-response-to-jared-spool/"&gt;agreed&lt;/a&gt; with most of Jared&amp;#8217;s arguments, but cautioned that &amp;#8220;organizations often value coding skills more than design skills. And when that happens, and you have two skillsets, which one do you think will get used more? Yeah.&amp;#8221;&lt;/p&gt;

&lt;p&gt;Nathan Curtis of EightShapes recorded a &lt;a href="http://www.uie.com/brainsparks/2011/06/03/nathan-curtis-from-pdfs-to-html-prototypes/"&gt;podcast&lt;/a&gt; with UIE around this time, and made a great point about the start-up cost of prototyping.&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;… once that start-up cost has been paid, whether it’s a day of prototyping or even a four hour chunk here, a six hour chunk there. Then things start to really move quickly. That’s in part because our ability to re-use and re-factor different things becomes a lot easier. As opposed to, &amp;#8220;Well, you want to make the header twice as large.&amp;#8221; In HTML we just change the height from 50 pixels to 100 pixels.&lt;/p&gt;

&lt;p&gt;But in a wireframe, suddenly we’re caught going into 16 different files, having to move everything else on the page down, and all of those seemingly subtle changes end up costing a lot, too.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Jack Moffett &lt;a href="http://designaday.tumblr.com/post/6971853775/once-upon-a-time"&gt;brought up an important point&lt;/a&gt;—knowing how to code increases your scope of influence.&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;So for me, the ability to code is less about earning “cred” and communication, although I’m sure it has helped with both, and more about dependency and scope of influence. I am less dependent on the abilities and attention to detail of the developers, and I now have greater influence over the entire course of a project. As a result, the final product is better.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;These posts also sparked interesting debates on the &lt;a href="http://www.ixda.org/node/30334"&gt;IxDA mailing list&lt;/a&gt; and on &lt;a href="http://www.quora.com/Do-companies-need-designers-who-can-code"&gt;Quora&lt;/a&gt;. Despite a few dissenting voices, most seemed to agree that being able to code prototypes is a valuable skill for a UXer.&lt;/p&gt;


&lt;p&gt;So now you&amp;#8217;re convinced that you need to be able to prototype in HTML, CSS, and Javascript. But where do you go to learn this stuff? Most of the information available on the web is aimed at web designers. Much of it is irrelevant for our needs.&lt;/p&gt;

&lt;p&gt;A number of workshops have been put together to teach UX designers how to code, but they&amp;#8217;re only any good if you live close enough to the venue to attend. There are short webinars available that show you the why, but that aren&amp;#8217;t long enough to go deep on the &lt;i&gt;how&lt;/i&gt;.&lt;/p&gt;

&lt;p&gt;Now there is a better alternative. &lt;a href="http://livetyping.capcloud.com" title="Livetyping" onclick="_gaq.push(['_trackEvent', 'Events', 'Go to Livetyping']);"&gt;Livetyping&lt;/a&gt; lets you learn at your own pace, wherever you are. It assumes no previous knowledge of HTML, CSS, or Javascript. And it&amp;#8217;s tailored to the needs of UX designers. You won&amp;#8217;t waste any time learning stuff that you don&amp;#8217;t need. By the time you&amp;#8217;re done, you&amp;#8217;ll be able ditch static wireframes and lengthy spec documents and replace them with lovely, shiny prototypes.&lt;/p&gt;





&lt;del&gt;&lt;p&gt;The course will be launching very soon. Sign up and I&amp;#8217;ll let you know when it&amp;#8217;s about to launch.&lt;/p&gt;&lt;/del&gt;

&lt;ins&gt;&lt;p&gt;The course is now available! Go &lt;a style="font-weight: 700" href="http://livetyping.capcloud.com"&gt;check it out&lt;/a&gt; or sign up below for news about the course, HTML prototyping tips, and more.&lt;/p&gt;&lt;/ins&gt;




				&lt;!-- Begin MailChimp Signup Form --&gt;
				&lt;div id="mc_embed_signup" style="text-align: left; color: #000; background-color: #555; border-radius: 5px; margin-bottom: 26px; margin-bottom: 2.6rem;"&gt;


&lt;div class="five columns" id="mc_embed_signup"&gt;
				&lt;form target="_blank" class="validate" name="mc-embedded-subscribe-form" id="mc-embedded-subscribe-form" method="post" action="http://capcloud.us4.list-manage.com/subscribe/post?u=3f02f03a1e0d396f36b10c145&amp;amp;id=c9ab18fe27"&gt;
					
						&lt;input type="email" placeholder="Email address" id="mce-EMAIL" class="required email" name="EMAIL" value=""&gt;&lt;div class="clear" id="mce-responses"&gt;
							&lt;div style="display:none" id="mce-error-response" class="response"&gt;&lt;/div&gt;
							&lt;div style="display:none" id="mce-success-response" class="response"&gt;&lt;/div&gt;
						&lt;/div&gt;	
						&lt;div id="mc_button_cont"&gt;
							&lt;button class="nice small radius blue button" id="mc-embedded-subscribe" name="subscribe" value="Keep me posted" type="submit" onclick="_gaq.push(['_trackEvent', 'Events', 'Subscribe']);"&gt;Keep me posted&lt;/button&gt;
						&lt;/div&gt;
				&lt;/form&gt;
				&lt;/div&gt;
				&lt;!--End mc_embed_signup--&gt; &lt;/div&gt;</description><link>http://capcloud.com/post/25357659999</link><guid>http://capcloud.com/post/25357659999</guid><pubDate>Mon, 18 Jun 2012 14:24:00 +0300</pubDate></item><item><title>ohonestly:

i’ve been a fan of austin kleon’s work for a few...</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_m2w51nd5IR1qzunseo1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://ohonestly.tumblr.com/post/21583242796/steal-giveaway" class="tumblr_blog"&gt;ohonestly&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;i’ve been a fan of &lt;strong&gt;&lt;a href="http://austinkleon.com"&gt;austin kleon&lt;/a&gt;&lt;/strong&gt;’s work for a few years now, and i was eager to get my hands on his latest book, &lt;strong&gt;&lt;a href="http://www.austinkleon.com/steal/"&gt;“steal like an artist”&lt;/a&gt;&lt;/strong&gt;. billed as a “manifesto for creativity in the digital age”, it’s chock full of great quotes, illustrations, and advice on how to follow your interests and embrace your influences. and though the title says “artist”, the material inside is applicable to any medium. it’s perfect for creatively-frustrated creative types (which i know many of you are), and i loved it so much that i want to give you a copy!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;what you’ll get&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;your very own copy of austin kleon’s “steal like an artist”, shipped anywhere in the world, at no cost to you.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;the rules&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;you have until &lt;strong&gt;may 1st&lt;/strong&gt; to enter.&lt;br/&gt;
  every reblog is considered one entry (likes don’t count, nor do replies).&lt;br/&gt;
  i’ll use &lt;a href="http://www.random.org/"&gt;random.org&lt;/a&gt; to choose &lt;strong&gt;three winners&lt;/strong&gt;.&lt;br/&gt;
  keep your inbox open so i can notify you if you win. if a winner doesn’t respond within 48 hours, a new one will be chosen.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;good luck!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;p.s. if giveaways aren’t your thing, you can always pick up a copy on &lt;a href="http://www.amazon.com/Steal-Like-Artist-Things-Creative/dp/0761169253/ref=cm_cr_pr_product_top"&gt;amazon&lt;/a&gt;.&lt;br/&gt;
p.p.s. this giveaway is not affiliated with or endorsed by tumblr or my employer, new york media.&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt;</description><link>http://capcloud.com/post/21633480210</link><guid>http://capcloud.com/post/21633480210</guid><pubDate>Mon, 23 Apr 2012 08:24:59 +0300</pubDate></item><item><title>Progress?</title><description>&lt;p&gt;So anyway, I haven&amp;#8217;t done much on my webapp lately, but now I&amp;#8217;ve decided to pull my finger out. I originally started playing around with Google AppEngine for the back-end, but I realized a couple of things. &lt;/p&gt;

&lt;p&gt;First, I&amp;#8217;m not going to get very far, nor learn very much, just by copying and tweaking Google&amp;#8217;s example code.&lt;/p&gt;

&lt;p&gt;Second, using AppEngine ties you in to Google. You can&amp;#8217;t easily move elsewhere. So I figured I&amp;#8217;d be better off not going that route.&lt;/p&gt;

&lt;p&gt;So I&amp;#8217;ve decided to take a step back and refresh my programming &amp;#8220;skills&amp;#8221;. On the recommendation of my friend &lt;a href="https://twitter.com/idangazit"&gt;Idan&lt;/a&gt;, I&amp;#8217;m working my way through &lt;a href="http://learnpythonthehardway.org/"&gt;Learn Python the Hard Way&lt;/a&gt;. Which I&amp;#8217;m rather enjoying. It&amp;#8217;s not really a Python book. It&amp;#8217;s more like an introductory programming book that happens to use Python.&lt;/p&gt;

&lt;p&gt;We&amp;#8217;ll see where it leads&amp;#8230;&lt;/p&gt;</description><link>http://capcloud.com/post/14877611163</link><guid>http://capcloud.com/post/14877611163</guid><pubDate>Tue, 27 Dec 2011 22:49:21 +0200</pubDate></item><item><title>Bookmarklet, Part II</title><description>&lt;p&gt;That &lt;a href="javascript:(function()%7B_my_script=document.createElement('SCRIPT');_my_script.type='text/javascript';_my_script.src='http://capcloud.dyndns.org/projects/carryon/bm.js?';document.getElementsByTagName('head')%5B0%5D.appendChild(_my_script);%7D)();"&gt;bookmarklet&lt;/a&gt; is shaping up quite nicely. Shame it doesn&amp;#8217;t actually &lt;i&gt;do&lt;/i&gt; anything yet :)&lt;/p&gt;</description><link>http://capcloud.com/post/11477634159</link><guid>http://capcloud.com/post/11477634159</guid><pubDate>Sat, 15 Oct 2011 17:30:44 +0300</pubDate></item></channel></rss>
