<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:admin="http://webns.net/mvcb/"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:content="http://purl.org/rss/1.0/modules/content/">

	<channel>
    
	    <title>David Raffauf: News</title>
	    <link>http://www.davidraffauf.com/blog</link>
	    <description></description>
	    <dc:language>en</dc:language>
	    <dc:creator>david@aimtokilldesigns.com</dc:creator>
	    <dc:rights>Copyright 2010</dc:rights>
	    <dc:date>2010-04-06T21:37:53-08:00</dc:date>
	    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    
		
			
		<item>
			<title>Introducing Our Referral Program</title>
			<link>http://davidraffauf.com/blog/introducing_our_referral_program/</link>
			<guid>http://davidraffauf.com/blog/introducing_our_referral_program/#When:21:37:53Z</guid>
			<description>Do you know someone who needs a website?
Why not make some cash?

It&#8217;s easy.Do you know someone who needs a website?&amp;nbsp; Why not make some cash?

It&#8217;s easy.

Tell them to call me directly at (415) 615&#45;2529, or email us at sales@davidraffauf.com.&amp;nbsp; When we quote $5,000 you get paid $500 when we get paid.

It&#8217;s that simple.

If you have any questions, feel free to call me directly at (415) 615&#45;2529 or email us at sales@davidraffauf.com.</description>
			<dc:subject></dc:subject>
			<dc:date>2010-04-06T21:37:53-08:00</dc:date>
		</item>

		
			
		<item>
			<title>The Evolution of Online Community</title>
			<link>http://davidraffauf.com/blog/the_evolution_of_community_online/</link>
			<guid>http://davidraffauf.com/blog/the_evolution_of_community_online/#When:22:57:16Z</guid>
			<description>Henry Ford famously declared: &amp;ldquo;If I&amp;rsquo;d asked my customers what they wanted, they&amp;rsquo;d have said a faster horse.&amp;rdquo;&amp;nbsp; But when it comes to improving on a great idea, your community of customers is an invaluable source of ideas.
&amp;nbsp;
Henry Ford famously declared: &amp;ldquo;If I&amp;rsquo;d asked my customers what they wanted, they&amp;rsquo;d have said a faster horse.&amp;rdquo;  But when it comes to improving on a great idea, your community of customers is an invaluable source of ideas.


Humble Beginnings


Years ago companies began to realize that their support forums were being filled with better answers from customers than from their own support staff.  Customers ran into more errors, frequently undocumented, than customer service could anticipate.  The myriad issues could never be fully addressed from inside the company.  Armies of loyal customers were a better source for informed troubleshooting and often more responsive than the official support staff.  This is where online communities got legs.


Beneficial Mutations


Not long after, sites like Yelp and Digg took the idea further by building their whole businesses around user generated content&amp;ndash;tech speak for community.  Locals shared first&#45;hand, credible reviews on Yelp; and techies shared their favorites findings online through Digg.  In a recent move to Oregon, armed only with an iPhone with the Yelp app, I was able to find the best place to buy a mattress and the best place to eat brunch within minutes.  This kind of spontaneous, informed decision&#45;making was science fiction even ten years ago.


Top of the Food Chain


In 2009 we&amp;rsquo;re beginning to see this idea taken to the next step.  Companies like GetSatisfaction and UserVoice are offering completely outsourced, community&#45;based Customer Relationship Management (CRM) tools.  Plug a couple javascript snippets into your website and you can collect feedback on errors, product suggestions, prioritization of customer feedback and much more.  This kind of community feedback gives product managers and producers an invaluable way to plan new features and improve their designs.  And the value of the community is so apparent that you can pay GetSatisfaction up to $899/mo for these benefits.


Examining the Fossil Record


First community drove support.  Then community drove content.  Now community is driving the direction of products.  The good news is that there has never been more potential for products to realistically adapt to customer needs.  Of course customer demands will still need to be balanced with business needs and other parties involved in your business.  The bad news? I can&amp;rsquo;t think of any.


What Does Community Mean for Your Business?


Savings.  Loyal customers can address many support issues.  A quick look at a list of complaints, errors or bugs can help you decide which fixes to include in your next software release.  Feature requests weighted by votes can help you determine the priority of features in your product roadmaps.  Community can save you money and steer you in the right direction.</description>
			<dc:subject></dc:subject>
			<dc:date>2009-08-06T22:57:16-08:00</dc:date>
		</item>

		
			
		<item>
			<title>Pro CSS Tips: Advanced Selectors</title>
			<link>http://davidraffauf.com/blog/pro_css_tips_advanced_selectors/</link>
			<guid>http://davidraffauf.com/blog/pro_css_tips_advanced_selectors/#When:18:45:41Z</guid>
			<description>One of the most powerful but overlooked features of CSS is the ability to use CSS selectors to pinpoint content and style it.&amp;nbsp; There&#8217;s probably untapped power you&#8217;re missing.&amp;nbsp; Here are the advanced CSS selector techniques I use everyday.







	SyntaxHighlighter.config.clipboardSwf = &#39;/javascripts/syntax&#45;highlighter/clipboard.swf&#39;;
	SyntaxHighlighter.all();


One of the most powerful but overlooked features of CSS is the ability to use CSS selectors to pinpoint content and style it.  Here are the advanced CSS selector tips I use everyday.

Use a namespace, even for your own website&#39;s components.

By keeping all my styles specifically applied to the &quot;poll&quot; table I can guarantee they aren&#39;t accidentally applied to other tables in the future.


	table#poll {}
	table#poll tr {}
	table#poll tr th {}
	table#poll tr.odd td {}
	table#poll tr.even td {}


If you decide in the future you like this style for all your tables, just remove the ID in the CSS.  There&#39;s no harm in having the ID set in the HTML of the poll table.


	table {}
	table tr {}
	table tr th {}
	table tr.odd td {}
	table tr.even td {}


Or, if this is one of a few styles, just change the ID to a class:


	table.poll {}
	table.poll tr {}
	table.poll tr th {}
	table.poll tr.odd td {}
	table.poll tr.even td {}



Descendant vs. child selectors

It&#39;s not uncommon to have deeply nested HTML.  Let&#39;s assume you have a div#wrapper that contains some layout divs.  To keep this simple let&#39;s say you want to set their border to gray.


	div#wrapper div { border: 1px solid #ccc; }


Everything looks good.  But maybe you want to add some divs inside your layout divs.  Since we&#39;ve used the descendant selector, these new divs will also receive a gray border.  Before I knew better I attempted to fix the issue doing this:


	div#wrapper div div { border: none; }


The problem is that you&#39;d have to define an infinite list of nested div selectors to cover all the cases.  The right way to handle this is to use a child selector from the start:


	div#wrapper &gt; div { border: 1px solid #ccc; }


Now, no matter how many nested divs are within your layout divs they won&#39;t receive the border. 


Use attribute selectors for forms and more

If you&#39;re daring enough to use CSS to wrangle a form&#39;s appearance you&#39;ve probably run into CSS like this:


	input[type=text] {}


But did you know this is a generic pattern you can apply to any element?  You could warn yourself about images with no alt tags with this style:


	img[alt=&quot;&quot;] { color: red; }


There are other patterns that let you look for substrings, first characters, and last characters of attributes.  If you wanted to add an icon after all your .pdf files you could do this:


	img[src~=&quot;.pdf&quot;]:after {
		content: &#39;&#39;;
	}


I still have to remind myself that there&#39;s usually a better solution attainable via advanced selectors than adding more HTML that&#39;s really style related.


Selecting on multiple classes at once

Let&#39;s say you&#39;ve got a photo gallery.  You tag all your photo img elements with the class &quot;photo&quot;:


	


But you also need to highlight recent additions.


	


So how do you say you want to select recent photos in CSS?


	img.photo.recent { border: 2px solid blue; }


This is a practical tip that I use almost everyday.  When I didn&#39;t know this I ended up with bloated HTML with lots of additional span tags.


Learning more

If you want to get even fancier there are additional examples you can find in the O&#39;Reilly CSS Pocket Reference.  You can select siblings for example by doing this:


	h2 + p {}


But I personally haven&#39;t run into many interesting uses for this kind of specificity.  It&#39;s nice to know it&#39;s there for when I inevitably learn what it&#39;s super useful.

Thanks for reading this quick review of underused CSS tricks.  It&#39;s by no means comprehensive but hopefully it will whet your appetite for finding simpler solutions.</description>
			<dc:subject></dc:subject>
			<dc:date>2009-06-26T18:45:41-08:00</dc:date>
		</item>

		
			
		<item>
			<title>Microsoft Doesn&#8217;t Get Web Design</title>
			<link>http://davidraffauf.com/blog/microsoft_doesnt_get_web_design/</link>
			<guid>http://davidraffauf.com/blog/microsoft_doesnt_get_web_design/#When:18:51:35Z</guid>
			<description>At the risk of sounding like a whiny designer, I&#8217;m going to blast Microsoft for a minute.&amp;nbsp; They don&#8217;t get web interfaces or typical job roles for web teams.&amp;nbsp; I&#8217;m sure their tools are great for building web services, but building an interface can be needlessly difficult.

At the risk of sounding like a whiny designer, I&#8217;m going to blast Microsoft for a minute.&amp;nbsp; They don&#8217;t get the web, or typical job roles for web teams.&amp;nbsp; My question to Microsoft is why would should a designer have to learn to program, or why should a programmer have to learn to design, in order to build a web app together?

Let&#8217;s just get it out of the way that the &#8220;design&#8221; mode is useless for building pleasant web experiences.&amp;nbsp; It&#8217;s good for desktop apps and people making a living off tutorial books.&amp;nbsp; But it isn&#8217;t web ready.

Therefor, I&#8217;ve spend most of my time in Microsoft&#8217;s front&#45;end .cs files on a C# project.&amp;nbsp; If you want to pull any values generated by the codebehind files you need to know object instance names and properties.&amp;nbsp; I don&#8217;t mean that you need to be able to choose them from a context menu, you have to have the developer give you a list or resort to digging through their code.&amp;nbsp; This is insane.&amp;nbsp; PHP and Rails make this much easier.&amp;nbsp; Also, if you want to loop over some data it&#8217;s the same deal.&amp;nbsp; You have to use a repeater control or something similar.

Smarty in PHP had this designer/developer relationship nailed years ago.&amp;nbsp; Rails also took a rather intuitive approach with some basic programming tools that a designer could quickly grasp.&amp;nbsp; Microsoft is seriously lagging.

What this means to your web team is that either your designers will be sifting through code or that your coders will be writing placeholder interfaces for designers.&amp;nbsp; Neither of these are good situations, and will build unhealthy resentment and animosity within your team.

Another problem with Visual Studio / .Net is that you do not have control over the final HTML that is spit out.&amp;nbsp; The IDs on all controls get rendered dynamically.&amp;nbsp; This rules out doing cool things easily with Prototype, Scriptaculous or other javascript libraries.&amp;nbsp; Sometimes there are ways to work around it, but they take a lot more time and are less than ideal.

Also, prepare to have SPANs and DIVs peppered throughout your design where you don&#8217;t want them.&amp;nbsp; And don&#8217;t try to remove them, Microsoft sees these as unobtrusive code changes. This is the markup equivalent of having a dozen semicolons randomly inserted into your programming code, with no ability to remove them.&amp;nbsp; Have fun!

The Visual Studio IDE is also obtrusive.&amp;nbsp; It doesn&#8217;t simply suggest changes, it will alter your code when you don&#8217;t want it to.&amp;nbsp; A common Prototype ID selector is $(&#8216;ID_HERE&#8217;).PROPERTY_HERE, but good luck typing that in Visual Studio without erasing a bunch of auto&#45;filled suggestions.

I guess my basic gripe about working with .Net and Visual is that developing with it doesn&#8217;t match real world job roles.&amp;nbsp; It feels like they figured out a way to spit out desktop apps on the web and never examined what&#8217;s different online and off.&amp;nbsp; And their editor is like an annoying kid that keeps trying to prove why he&#8217;s smarter than you.

I&#8217;m sure .Net (C#) is an amazing tool for building scalable web services.&amp;nbsp; I&#8217;m not a big Microsoft fan but I do understand that they can make useful tools, especially for the enterprise.&amp;nbsp; But Microsoft, please don&#8217;t pretend to offer a useful tool for creating front&#45;end web interfaces.</description>
			<dc:subject></dc:subject>
			<dc:date>2009-04-24T18:51:35-08:00</dc:date>
		</item>

		
			
		<item>
			<title>GUI Magnets</title>
			<link>http://davidraffauf.com/blog/gui_magnets/</link>
			<guid>http://davidraffauf.com/blog/gui_magnets/#When:23:53:04Z</guid>
			<description>Here is a nice tool you can use to plan forms and GUIs in a meeting.&amp;nbsp; They&#8217;re magnetic form controls that you can stick on a whiteboard.&amp;nbsp; What&#8217;s even better is that you can write on them with dry&#45;erase markers.&amp;nbsp; These should improve collaboration with developers and producers.Here is a nice tool you can use to plan out forms and GUIs in a meeting.&amp;nbsp; They&#8217;re magnetic form controls that you can stick on a whiteboard.&amp;nbsp; What&#8217;s even better is that you can write on them with dry&#45;erase markers.&amp;nbsp; These should improve collaboration with developers and producers.





I&amp;rsquo;ve always wanted a way to collaborate on interfaces.&amp;nbsp; This should help bring the product manager and developers into your design process.&amp;nbsp; They&#8217;re a little pricey at about $30 per sheet with shipping, but I&#8217;m hoping they really help with planning sessions.&amp;nbsp; I&#8217;ll report back once they show up and I can try them out.&amp;nbsp; Check out the website.&amp;nbsp; I&#8217;m especially interested to see how the hold up to repeat use.

If nothing else they&#8217;ll make for some novel gifts.</description>
			<dc:subject></dc:subject>
			<dc:date>2009-04-23T23:53:04-08:00</dc:date>
		</item>

		
			
		<item>
			<title>How to Tackle a Design</title>
			<link>http://davidraffauf.com/blog/how_to_tackle_a_design/</link>
			<guid>http://davidraffauf.com/blog/how_to_tackle_a_design/#When:23:02:33Z</guid>
			<description>Do you need to come up with a website or application design, or redesign, and you&amp;rsquo;re not sure where to start?&amp;nbsp; This is a process I typically run through for the design portion of my projects.&amp;nbsp; These are some basic strategies that can be applied to many different scenarios.Do you need to come up with a website or application (re)design and you&amp;rsquo;re not sure where to start?&amp;nbsp; This is the process I typically run through for the design portion of my projects.&amp;nbsp; These are some basic strategies that can be applied to many different scenarios.


What Do You Want Visitors to See?


This may sound like a condescending question, but it isn&#8217;t.&amp;nbsp; It&#8217;s one of the hardest questions to answer, especially when there are multiple stakeholders for your website.&amp;nbsp; Think about your homepage.&amp;nbsp; Make a list of everything you could possibly want to show, now assign 10 votes to these pieces of content.&amp;nbsp; You can vote for one piece of content 0 times, or 10 times, but no fractional votes.&amp;nbsp; After distributing these 10 votes among your content, you&#8217;ll have a plan for weighting these elements visually within your design.



What Do You Want Visitors to Do?


It&#8217;s best if you can limit your most important pages to one call to action.&amp;nbsp; The action could be signing up, viewing a product or giving you a call.&amp;nbsp; But try to narrow it down to one thing.&amp;nbsp; If you have more than one action, try to color code them by audience.&amp;nbsp; Or, visually designate one action as the primary and have one or two secondary actions.



Wireframes as Blueprints


The goal of wireframing is to layout your pages and workflows.&amp;nbsp; They help to determine where items should appear, how large they will be and the order in which they will appear.&amp;nbsp; It&#8217;s really important to iterate over the wireframes until everyone is satisfied.&amp;nbsp; These wireframes then serve as a blueprint that everyone involved in the project can use to get started.&amp;nbsp; They&#8217;re your game plan.&amp;nbsp; They&#8217;re also big money savers; fixing solutions here is multiples cheaper than once you&#8217;re coding and doing visual design.



Visual Design


Generally there are two approaches to take.&amp;nbsp; You can look around at other businesses in your industry and try to develop a look that is similar to what they have.&amp;nbsp; This is the safe route and probably the least time consuming.&amp;nbsp; It makes you look credible but the drawback is that you don&#8217;t stand out.&amp;nbsp; Someone who visits your website might return to your competitor&#8217;s site to place an order, never realizing what happened.&amp;nbsp; If you&#8217;re willing to try to differentiate yourself, you should consciously break the visual language of your niche.&amp;nbsp; Pick a different color, a different voice or play up your key business differentiator.&amp;nbsp; I think you&#8217;ll get the most bang for your buck in the long&#45;term from this approach.



Signing Up, Subscribing, Contacting and Purchasing


If drawing readers, customers or mailing list subscribers is your thing then this is for you.&amp;nbsp; You need an easy and obvious way for users to sign up or sign in.&amp;nbsp; Don&#8217;t ask a dozen questions, don&#8217;t sign people up automatically for emails and make it clear what the benefits are of signing up.&amp;nbsp; You want to lose as few people here as possible.&amp;nbsp; This is a major conversion point.&amp;nbsp; The same goes for making a sale.&amp;nbsp; Only require as much input from your visitors as is immediately required.



Sharing


Likewise, it&#8217;s good to make it easy for users to invite friends.&amp;nbsp; This could be an optional second step after signing up.&amp;nbsp; You can also build an audience by allowing visitors to easily share your site by email or on social bookmarking websites.



That&amp;nbsp;s a Good Start

There have been volumes written on all these topics, but this gives you a rough idea of where to start.&amp;nbsp; As you can tell it&#8217;s a mix of business decisions, structure and style.&amp;nbsp; When working with a designer make sure they&#8217;re doing their best to learn what&#8217;s most important to your business and customers.</description>
			<dc:subject></dc:subject>
			<dc:date>2009-04-23T23:02:33-08:00</dc:date>
		</item>

		
			
		<item>
			<title>The Art of Games: Panzer&amp;nbsp;Dragoon&amp;nbsp;Saga</title>
			<link>http://davidraffauf.com/blog/the_art_of_games_panzer_dragoon_saga1/</link>
			<guid>http://davidraffauf.com/blog/the_art_of_games_panzer_dragoon_saga1/#When:17:47:50Z</guid>
			<description>Panzer Dragoon Saga was one of the first games to attempt a combination of fine art and gameplay.&amp;nbsp; The visual style, sparse setting and amazing soundtrack made this rare game unforgettable.

I&amp;rsquo;ve always been a fan of the Panzer Dragoon games, they&amp;rsquo;re stunning shooters.&amp;nbsp; They thrust the player into a desperate, post apocalyptic world where the powers that be are in a mysterious arms race.&amp;nbsp; In many ways the sense of isolation, desperation and discovery of the hidden mysteries of the world feel very similar to Dune.



What changed with Saga, also known as Azel, was an amazing development in art direction.&amp;nbsp; Head artist, Katsumi Yokota, really made the world come alive with an amazing, fine art inspired visual style.&amp;nbsp; It also helped that, like the other Panzer Dragoon games, Saga was accompanied by a fantastic score.&amp;nbsp; All the elements of this game came together to create a game world that felt very mature and understated.&amp;nbsp; While this Sega Saturn game&#8217;s graphics don&amp;rsquo;t look too aged, I mainly remember this game by the concept art and the character of the story.



The character designs rival work being done today on games with Hollywood sized budgets.&amp;nbsp; They are an interesting mix of the simplicity of Japanese character design combined with more Western style oil painting techniques.



A testament to the quality of this game and its art style is that this is one of the rarest, and most sought after video games.&amp;nbsp; At the time of writing this article this 11&#45;year&#45;old, Sega Saturn game is selling for just under $200 USD.

There are other amazing illustrators that lend their talents to games such as Yoshitaka Amano who works on the Final Fantasy series, but I think the art style for Saga translated more directly from concept to game.&amp;nbsp;  It would be absolutely amazing if some boutique developer could figure out how to use the whimsical Amano style.&amp;nbsp; Where Amano&amp;rsquo;s concepts serve more as promotional art, Saga&amp;rsquo;s designs were pretty faithfully put into gameplay. 



The variety of styles used in concepting this game is amazing.&amp;nbsp; I love these rough marker sketches and although these aren&amp;rsquo;t the final designs used in the game they really capture the mood.



I would love to see more illustration work from Katsumi Yokota.&amp;nbsp; This artist has gone on to work on the Rez and Lumines games.&amp;nbsp; While I&amp;rsquo;m glad to see that this artist has worked on other great games, it&amp;rsquo;s really disappointing to not have been treated to any more of his imaginative illustrations.&amp;nbsp; 

At the time it was a risky move to have a game that focused on the characters&amp;rsquo; humanity and frailties instead of their god&#45;like fighting abilities.&amp;nbsp; I hope future developers can learn something from this game and venture to make understated game worlds with a sense of humanity with which players can connect.</description>
			<dc:subject></dc:subject>
			<dc:date>2009-04-09T17:47:50-08:00</dc:date>
		</item>

		
			
		<item>
			<title>Building Better Bookmarks</title>
			<link>http://davidraffauf.com/blog/building_better_bookmarks/</link>
			<guid>http://davidraffauf.com/blog/building_better_bookmarks/#When:05:53:00Z</guid>
			<description>I find that regular bookmarks are a little cumbersome, live bookmarks are a bit stiff and visual bookmarks are cute but not all that useful.&amp;nbsp; I think combining all three allows for a quick way to get to everything I need and matches my workflow.Sorry for the alliteration, that&amp;rsquo;s a lot of Bs.&amp;nbsp; I was recently inspired by an article I read over at Information Architects where they discuss changes they would like to see in how FireFox handles bookmarks.&amp;nbsp; They did some excellent and inspiring mockups that got my gears turning, and that I drew from heavily for this post.

They have some really good ideas that center around treating websites like we treat other media in applications like iTunes.&amp;nbsp; We can think of websites like albums.&amp;nbsp; They account for visually browsing all your favorite sites, organizing them in different lists and displaying some useful RSS data.

I&amp;rsquo;ve always liked the idea of visual bookmarks like the ones Opera uses (but not quite like the ones Safari uses).&amp;nbsp; But I&amp;rsquo;d never thought of combining RSS information until I read IA&amp;rsquo;s article.

The one thing that I wasn&amp;rsquo;t crazy about was either of the two ways that they used for browsing sites and articles.&amp;nbsp; I noticed that there is a mode of display in iTunes that would allow for a nice combination of browsing sites and seeing the most recent articles at the same time: the search results.&amp;nbsp; I did a mockup to show what this iTunes style visualization could like within FireFox, or any browser for that matter.





Like IA, I used lists to organize websites.&amp;nbsp; These would work exactly like playlists.&amp;nbsp; You have a master list of websites, but you can have any website appear within any list.&amp;nbsp; If you want to view all there&amp;rsquo;s a list for that.&amp;nbsp; 

I also used their surf lists and history lists, because I think they all work with this single visualization.&amp;nbsp; Although I admit that their simple line item list of websites might work better for history considering you may have only viewed a single page on many websites.&amp;nbsp; I also like their idea of having an uncategorized list for new bookmarks.&amp;nbsp; When you have time you can put them in the right place.

As you can see below, each website has a section where the latest articles are displayed.&amp;nbsp; This is the equivalent of the way albums and tracks are displayed in iTunes&amp;rsquo; search results.&amp;nbsp; The logo and the attributes below it serve as links straight to the homepage of the website.&amp;nbsp; All the articles are links that are grouped together from newest to oldest.



If you want to see older entries there are buttons for that.&amp;nbsp; These would either grab more entries from the RSS or a cache maintained in the browser.&amp;nbsp; All of the RSS content is searchable from the top right search menu.&amp;nbsp; 



I find that regular bookmarks are a little cumbersome, live bookmarks are a bit stiff and visual bookmarks are cute but not all that useful.&amp;nbsp; I think combining all three allows for a quick way to get to everything I need and matches my workflow.</description>
			<dc:subject></dc:subject>
			<dc:date>2009-04-06T05:53:00-08:00</dc:date>
		</item>

		
			
		<item>
			<title>Why I Make Websites</title>
			<link>http://davidraffauf.com/blog/why_i_make_websites/</link>
			<guid>http://davidraffauf.com/blog/why_i_make_websites/#When:20:55:31Z</guid>
			<description>The web is full of bad website designs, confusing jargon and overcomplicated navigation.&amp;nbsp; Most web design isn&amp;rsquo;t nearly as good as it could be.&amp;nbsp; I want to breathe life into your site, cut through the jargon and help you reach customers.The web is full of bad website designs, confusing jargon and overcomplicated navigation.&amp;nbsp; Most web design isn&amp;rsquo;t nearly as good as it could be.&amp;nbsp; I want to breathe life into your site, cut through the jargon and help you reach customers.&amp;nbsp; Your website doesn&amp;rsquo;t have to be the awkward nerd at the party, with lots of interesting ideas but no way to get anyone&amp;rsquo;s attention.

With the rise of some traditional print design principles on the web we&amp;rsquo;re seeing a lot more elegance and style that&amp;rsquo;s typically reserved for magazines and annual reports.&amp;nbsp; But it&amp;rsquo;s not all rainbows and unicorns.&amp;nbsp; We&amp;rsquo;ve lost some of the energy and wonder we had in the pioneering days of the internet.&amp;nbsp; With the rise of print techniques online we&amp;rsquo;ve lost sight of the fact that this is a different medium than print.&amp;nbsp; We&amp;rsquo;re losing some of the innovation.

Of course we all have to work within our limitations, and there are certainly enough to cripple innovation on any website: tight budgets, short timelines and the impenetrable nature of Flash to most search engines.&amp;nbsp; But we can work within these constraints to make amazing experiences.&amp;nbsp; Evocative stories, colorful characters, artistic style and simplicity are silver bullets in the world of constraints.&amp;nbsp; We see this all the time in movies, music and video games; and it works just as well online.

The web is an inherently techie place but it doesn&amp;rsquo;t have to feel that way.&amp;nbsp; I want to make websites that capture visitors&amp;rsquo; imaginations and stand the test of time.

The internet has become a million cafes, college dorms, lecture halls and special interest clubs all rolled up into one convenient location.&amp;nbsp; Telling your story, providing a useful service or making people&amp;rsquo;s lives easier through your website is your way to reach people in this new marketplace.&amp;nbsp; I can help.</description>
			<dc:subject></dc:subject>
			<dc:date>2009-04-04T20:55:31-08:00</dc:date>
		</item>

		
			
		<item>
			<title>Whose Top Sites?</title>
			<link>http://davidraffauf.com/blog/whose_top_sites/</link>
			<guid>http://davidraffauf.com/blog/whose_top_sites/#When:04:42:31Z</guid>
			<description>I&amp;rsquo;m a big fan of Apple design and the simplicity of their products, but I&amp;rsquo;m not in the &#8220;Apple can do no wrong&#8221; camp.&amp;nbsp; I always get a little creeped out when engineers in Cupertino try to tell me what&amp;rsquo;s most important to me, especially when it comes to websites.

I&amp;rsquo;m a big fan of Apple design and the simplicity of their products, but I&amp;rsquo;m not in the &#8220;Apple can do no wrong&#8221; camp.&amp;nbsp; I always get a little creeped out when engineers in Cupertino try to tell me what&amp;rsquo;s most important to me, especially when it comes to websites.&amp;nbsp; 

With the latest release of Safari comes a seemingly cool feature, Top Sites.&amp;nbsp; They let me view an up&#45;to&#45;date gallery of the sites that I visit most often.&amp;nbsp; The only problem is there&amp;rsquo;s no way to permanently remove all those boring sites I have to visit, or recreational sites I don&amp;rsquo;t want appearing on my Top Sites at work.&amp;nbsp; Conversely, there are a few sites that I really like but I don&amp;rsquo;t frequent as often as other boring websites.&amp;nbsp; Why can&amp;rsquo;t I choose these sites?

Another akward feature of Top Sites is that they cycle in partner sites for free advertising into your unused slots.&amp;nbsp; I much preferred Opera&#8217;s similar offering, where they allow you to choose which visual bookmarks I want.&amp;nbsp; I hope that Apple has plans for allowing me to manually pick my top sites in future releases.</description>
			<dc:subject></dc:subject>
			<dc:date>2009-04-03T04:42:31-08:00</dc:date>
		</item>

		

	</channel>
</rss>