<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Intel Designer &#187; Design</title>
	<atom:link href="http://inteldesigner.com/category/design/feed" rel="self" type="application/rss+xml" />
	<link>http://inteldesigner.com</link>
	<description>Web blog of Kevin Dees</description>
	<lastBuildDate>Thu, 02 Dec 2010 20:50:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>I&#8217;m Moved</title>
		<link>http://inteldesigner.com/2010/code/im-moved</link>
		<comments>http://inteldesigner.com/2010/code/im-moved#comments</comments>
		<pubDate>Thu, 02 Dec 2010 20:49:29 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Connect]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=867</guid>
		<description><![CDATA[Hey guys look an update!]]></description>
			<content:encoded><![CDATA[<p>This blog will no longer be updated or maintained. We are moving to <a href="http://kevindees.cc">www.kevindees.cc</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/im-moved/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Divergence?</title>
		<link>http://inteldesigner.com/2010/code/what-is-divergence</link>
		<comments>http://inteldesigner.com/2010/code/what-is-divergence#comments</comments>
		<pubDate>Wed, 18 Aug 2010 18:28:55 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=849</guid>
		<description><![CDATA[I’m sorry for the very rough writing here but I need to get this out of my system (will refine soon). In the early day of the web, development was a mess. Everything was intertwined and jumbled. HTML, Styles, and JavaScript lived together.]]></description>
			<content:encoded><![CDATA[<p><strong>Part One</strong>: <a href="http://inteldesigner.com/2010/code/the-principle-of-divergence">Why we need divergence</a>.</p>
<p>Because of this mess a few creative practitioners taught us to separate our content, presentation and behaviors. But, this ideal paradigm is incapable of fulfilling the needs of the web today.</p>
<p>So along came what I will call divergence; or convergence if you look at it from another perspective. Divergence in web development is the braking apart semantics, presentation, and behavior. However, it is not complete separation of the layers.</p>
<p>In divergence you can use presentation with semantics, as long as it’s semantic (not likely to happen because presentation is rarely semantic).  And, you can use behavior within semantics as long as it’s semantic. And, you can use behavior within presentation as long as it’s presentational.</p>
<p>This is basically a conditional AND, not OR, statement versus the boolean ideals behind separation.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-852" title="divergance" src="http://inteldesigner.com/wp-content/uploads/2010/08/divergance1.jpg" alt="" /></p>
<p>For example, in HTML5 we have type=”email”. Attached to this semantic value is form validation, or a behavior; it’s ok to use under divergence.</p>
<p>This is true because the value email is semantic when in use and the behavior supports its semantics. However, if we were to use the font tag we would not be diverging because the font tag is not semantic and presentational, it is only presentational. And, so, we diverge font styling into our CSS only.</p>
<p>If we want to apply JavaScript to our HTML we can’t add it into the HTML body because it is not semantic and behavioral. The JavaScript would need to diverge. And, if we wanted to use behavior within CSS, our presentation, it needs to be both presentational and behavioral.</p>
<p>Under this methodology we keep our semantics, presentation, and behaviors intact while working with new technologies.</p>
<p>More to come later…</p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/what-is-divergence/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Principle of Divergence</title>
		<link>http://inteldesigner.com/2010/code/the-principle-of-divergence</link>
		<comments>http://inteldesigner.com/2010/code/the-principle-of-divergence#comments</comments>
		<pubDate>Wed, 18 Aug 2010 03:40:55 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[Getting Started]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=844</guid>
		<description><![CDATA[CSS3 and HTML5 are innovations to be practiced and mastered. And, while best practices like graceful degradation and progressive enhancement will continue guide implementation, I don’t think that the principles of separation will.]]></description>
			<content:encoded><![CDATA[<p>I have always been one to support the separation of content, presentation, and behavior. But, HTML5 and CSS3 are blurring the lines. For example, there has been a convergence on the behavioral layer; now that we have inline form validation alongside CSS transforms and transitions.</p>
<p>A few purists, I’m sure, will be outraged by what I’m saying. But, if the truth be told, the pseudo class hover has been triggered by user action for quite a while. That is, behavior within presentation.</p>
<p>From the CSS specification, “Interactive user agents sometimes change the rendering in response to user actions. CSS provides three pseudo-classes for common cases.”</p>
<p>This has made me question the principle behind separation of content, presentation and design. And, as I have investigated the idea behind separation, inspiring as it is, I have not found it to be practical.</p>
<p>Separation is a novel idea. It has guided the design style of many amazing programmers and artists. It has led to numerous beautiful and functional websites. But, this segregation of content, presentation and behavior is, as I have found it, much like XHTML 2: little more than an idealistic view worth stemming from.</p>
<p>It is time to leave this ideology behind us. It has served its purpose practically and well. Times are changing and new technologies are piping a different tune: divergence.</p>
<p>It is time to start diverging, not separating.</p>
<p><strong>Part Two</strong>: <a href="http://inteldesigner.com/2010/code/what-is-divergence">Divergence explained</a></p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/the-principle-of-divergence/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Blog redesign in process</title>
		<link>http://inteldesigner.com/2010/code/blog-redesign-in-process</link>
		<comments>http://inteldesigner.com/2010/code/blog-redesign-in-process#comments</comments>
		<pubDate>Tue, 06 Jul 2010 16:27:08 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Connect]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[announcement]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=763</guid>
		<description><![CDATA[Today you might have noticed my blog is a bit wacky; It’s being redesigned. Over the next few weeks things will continue to change. Things will be tweaked and bugs worked out.]]></description>
			<content:encoded><![CDATA[<p>Please, keep in mind that I have not finished this design yet. I still have a long way to go. I have launched early because I’m at the point where I need to test some things live.</p>
<h2>The Changes</h2>
<ul>
<li>New colors</li>
<li>New fonts</li>
<li>Easier to read: headlines, text, and code</li>
<li>Comment avatars enabled</li>
<li>Navigation placement</li>
<li>Tagged added</li>
</ul>
<h2>Still coming</h2>
<ul>
<li>Awesome home page</li>
<li>Archives page</li>
<li>Author’s page</li>
<li>Regular page design</li>
</ul>
<h2>A Look Back</h2>
<p>Here is a last look at what once was, Intel Designer.</p>
<p style="text-align: center;"><a href="http://inteldesigner.com/wp-content/uploads/2010/07/inteldesigner.png"><img class="aligncenter size-full wp-image-799" title="inteldesigner" src="http://inteldesigner.com/wp-content/uploads/2010/07/inteldesigner.png" alt="" /></a></p>
<p><a href="http://inteldesigner.com/wp-content/uploads/2010/07/port-nav.gif"><img class="alignleft size-full wp-image-800" title="port-nav" src="http://inteldesigner.com/wp-content/uploads/2010/07/port-nav.gif" alt="" width="240" height="258" /></a></p>
<p>This design is being processed and will be converted into a WordPress Theme. There will be a few changes to the design, because of my limitations and knowledge of the WordPress admin.</p>
<p>If you want to help me convert this design to a theme please let me know. I could use some help with the admin controls. Mainly adding baked in meta data fields for the theme.  I would love to get some help with this.</p>
<p>If you have any questions or suggestions feel free to hit me up on twitter. Thanks, for making this blog awesome!</p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/blog-redesign-in-process/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Robojuice now live!</title>
		<link>http://inteldesigner.com/2010/connect/robojuice-now-live</link>
		<comments>http://inteldesigner.com/2010/connect/robojuice-now-live#comments</comments>
		<pubDate>Wed, 30 Jun 2010 03:14:27 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Connect]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[announcement]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=741</guid>
		<description><![CDATA[Hi, this is Kevin Dees. Today I launch my new website. To kick off the launch of my website, and business (Robojuice), I’m offering a 10% discount to anyone who works with us over the next 30 days — until July 29th. The discount can be used once on an existing monthly plan or new inquiry.]]></description>
			<content:encoded><![CDATA[<p><a href="http://robojuice.com"><img class="aligncenter size-full wp-image-742" title="Robojuice" src="http://inteldesigner.com/wp-content/uploads/2010/06/Robojuice.png" alt="" /></a></p>
<h2>Our Services</h2>
<p>Robojuice is a web design studio and we have one objective, to help businesses reach their strategic online goals. However, we do more than design websites. If you ever need assistance reaching your online goals, please <a href="http://robojuice.com/">visit our website</a> and contact us.</p>
<p>At Robojuice we work with you. We don’t produce a product without helping you use it effectively. Here is why:</p>
<ul>
<li>People do not use the web like they used to</li>
<li>They use it every day, and every day things change</li>
<li>Facebook, YouTube and Twitter have changed the way people find information and businesses</li>
<li>Search is not the only factor</li>
<li>Simply owning a website will not work</li>
</ul>
<h2>New Customer Management</h2>
<p>Also, Robojuice will be using a few management tools, <a href="http://basecamphq.com/">Basecamp</a> and <a href="http://www.freshbooks.com/">Freshbooks</a>. Basecamp is an online project management tool used by companies like BusinessWeek, Fox Sports, and National Geographic. And, Freshbooks works with Basecamp so you can pay on and offline without a hitch.</p>
<p><strong>Our Website</strong>: <a href="http://robojuice.com/">http://robojuice.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/connect/robojuice-now-live/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop reversing the design process</title>
		<link>http://inteldesigner.com/2010/design/stop-reversing-the-design-process</link>
		<comments>http://inteldesigner.com/2010/design/stop-reversing-the-design-process#comments</comments>
		<pubDate>Mon, 28 Jun 2010 21:25:19 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=729</guid>
		<description><![CDATA[If you are designing in reverse, please stop. Design is not making things look nice. That is meaningless. Design is a form of emotional communication. It must be informed by the content it represents. You don’t smile when you’re angry… it’s freaky. And you don’t design without content… it’s scary.]]></description>
			<content:encoded><![CDATA[<p>When I started designing websites I did it like every newbie, without content. I was a moron. How could I ever create something meaningful without context?</p>
<p>Now, I know when you&#8217;re new it’s hard to get clients to give you anything, content or cash. But, they don’t know what design is, and they don’t know that they need it. It’s not their job, it yours, and you need to inform them.</p>
<h2>Doing design right</h2>
<p>As I learned, design was not about picking up a brush and hoping something nice came out (This is what most new website owners assume). It was about understanding, communication and art.</p>
<p>I had the process all wrong:</p>
<ol>
<li>design a site</li>
<li>plug in content</li>
<li>and market the content</li>
</ol>
<p>Instead the process is quite the opposite:</p>
<ol>
<li>understand the market</li>
<li>develop content based on that information</li>
<li>and let the content inform the design.</li>
</ol>
<h2>Market awareness</h2>
<p>Marketing is the first step to design. For a writer, marketing is a story. For us, it’s the story of those we are working with. But we can only begin to write once we understand their story.</p>
<h2>Content</h2>
<p>Every story has characters. Who are the characters of the brand you are working with? What is their history? What is their personality? What do they do for fun? Are they goofy or proper?</p>
<p>Writing is hard if you don’t know these things. In the end writing is about bringing an idea to life. It’s about painting a picture in the mind’s eye; and it’s our job to communicate what that painting is emotionally.</p>
<h2>Design</h2>
<p>Communication is emotional. It is where most relationships break down too. If a design is not communicating correctly, how can the design stand? Well, it doesn’t. It never will. It’s like a person who smiles on the outside and wages war within. Bad design is like a volcano waiting to erupt without warning, and volcanoes erupt.</p>
<p>Design is informed by content. If it’s not, it’s not communicating.</p>
<h2>What is your story?</h2>
<p>So, what is the story you need to communicate? Have the characters already been given to you? Or, will you pretend that you can design the cover of a book without pages?</p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/design/stop-reversing-the-design-process/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The fading pain of IE6</title>
		<link>http://inteldesigner.com/2010/code/the-fading-pain-of-ie6</link>
		<comments>http://inteldesigner.com/2010/code/the-fading-pain-of-ie6#comments</comments>
		<pubDate>Fri, 18 Jun 2010 03:04:04 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Hacks]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=722</guid>
		<description><![CDATA[If you’re like me you want IE6 to die, and no, I’m not say this to make you smile. It’s true. IE6 is trash, in today’s market. Its standards support is terrible, for today’s market. It is an old hound. It had its prime. Today it’s a royal pain under the design constraints of 2010. However, until IE6 is gone we will have to deal with it sooner or later.]]></description>
			<content:encoded><![CDATA[<h2>One less hair for IE6</h2>
<p>Yes, its 2010, but people still use IE6… not many, but enough to be depressing. Still, all is not lost. I happen to run across lesser known PNG fix for the aging browser. It’s called DD_belatedPNG. Unlike the traditional <a href="http://www.twinhelix.com/css/iepngfix/">iepngfix.htc hack</a> this bad boy gives you the ability to use positioned backgrounds and still retain transparency, among other things. <a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/#how">Check it out for yourself</a>.</p>
<h2>No hairs for IE</h2>
<p>However, if you don’t want anything to do with IE6, you’re in luck. Just recently Andy Clark updated <a href="http://forabeautifulweb.com/blog/about/universal_internet_explorer_6_css">his universal IE6 CSS</a> <a href="http://code.google.com/p/universal-ie6-css/">on Google code</a>. The new version lets you scrap the browser completely by serving it a nicely pruned style sheet that does just enough to be professional. Consider it the default style sheet you wish IE6 came with.</p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/the-fading-pain-of-ie6/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Fonts: Foundries Evolved</title>
		<link>http://inteldesigner.com/2010/code/web-fonts-foundries-evolved</link>
		<comments>http://inteldesigner.com/2010/code/web-fonts-foundries-evolved#comments</comments>
		<pubDate>Mon, 22 Mar 2010 06:00:46 +0000</pubDate>
		<dc:creator>Kevin Dees</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Feature]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Font]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=547</guid>
		<description><![CDATA[Web fonts have been a hot topic in the design community for a while now. In the name of aesthetics many have bent the rules using images, flash, SVG and other back-handed techniques; introducing accessibility problems piled a mile high. However, these days are coming to an end sooner than you may think.]]></description>
			<content:encoded><![CDATA[<h2>The road block</h2>
<p>It has <a href="http://www.alistapart.com/articles/cssatten"> been long hoped</a> that fonts could one day be <a href="http://mezzoblue.com/archives/2009/10/05/starting_wit/">embedded on web pages</a> accessibly. That time is now!</p>
<p>Contrary to common belief, <a href="http://www.fontembedding.com/">font embedding</a> has been around for a long time. In 1996 the W3C chartered its first font working group and developed WebFonts (&#8216;@font-face&#8217;). However, its implementation has been stifled by legalities. <a href="http://www.mezzoblue.com/archives/2009/05/07/font_embeddi/">Dave Shea</a> has spoken on numerous occasions about the problem: font foundries&#8217; weary approach to distribution on the web.</p>
<blockquote><p>“Currently one of the biggest stumbling blocks to embedded type on the web is of a legal nature rather than any genuine technological barrier. Most of the major browsers have now implemented the <a href="http://www.css3.info/preview/web-fonts-with-font-face/">@font-face</a> property…” (Dave Shea)</p></blockquote>
<p>Foundries have been afraid; it’s obvious. Online pirating has been belligerent and font distributors have feared shrinking profits. However, it may be that the recent decline of print has sparked a fire, and the kettle is boiling.</p>
<h2>Stoke the fire</h2>
<p>Until lately the foundries have steered clear of the web.  When <a href="http://blog.typekit.com/2009/05/27/introducing-typekit/">Jeffrey Veen announced Typekit</a> last year only a few had considered the idea. But, this single event proved mind molding, the font makers were starting to get it. As web evangelist Jeffrey Zeldman responded to the <a href="http://fontfeed.com/archives/fontfonts-on-the-web-starting-today/">unfolding of these events</a> late November 2009, “Yes!”</p>
<p>And it was not too early to celebrate.</p>
<p>Only a few months after Typekit’s public release, FontFonts announced they would be licensing web based <a href="http://www.fontshop.com/blog/?cat=80">fonts to designers</a> directly. A paradigm unknown until now, and it’s about time.</p>
<p>The recent chain of events has been a breath of fresh air. And to the surprise of everyone: things are finally moving forward at a quickened pace.</p>
<h2>Font Deck vs Typekit</h2>
<p><a href="http://typekit.com/">Typekit</a> has not been the only one making noise. There are other services like it too, but none of these have stirred the pot more than Typekit.</p>
<p>Clearleft, a web design and consultancy in Brighton UK, has been working with the foundries on their product <a href="http://www.fontdeck.com/">Font Deck</a>. This is exciting because it not only means more competition, but also that foundries are taking things seriously.</p>
<p>Font Deck, similar to Typekit, is a service in which you can register your website with licensing to fonts of your choice. While the list of fonts is limited to participating agencies, the idea alone is enough to make designers <a href="http://dribbble.com/">Dribbble</a>. And it has!</p>
<p><a href="http://www.markboulton.co.uk/">Mark Boulton</a>, typographic maniac of <a href="http://www.markboultondesign.com/">Mark Boulton Design</a>, has recently launched his new corporate website with embedded web fonts using Typekit. The effects are truly stunning.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-563" src="http://inteldesigner.com/wp-content/uploads/2010/03/typekit-455x236.png" alt="Illustration of Mark Boulton Deign home page using TypeKit." /></p>
<p>In addition, Typekit empowers the use of graceful degradation. This has been a huge leap for accessibility, findability and usability.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-564" src="http://inteldesigner.com/wp-content/uploads/2010/03/acs-455x236.png" alt="Illustration of Mark Boulton Deign home page with JavaScript turned off." /></p>
<p>However, there is a problem. Currently, some browsers suffer from “font-pop” the lag time between the rendering of text and that of the embedded @font-face. This may seem like a small price to pay, but significant font popping can disorient users while reading text. The impact is debatable but every designer should be aware of its effects.</p>
<h2>Web Fonts: The time has come!</h2>
<p>Regardless, the time has come. Everyone is talking about it. This month at the SXSW Interactive Conference <a href="http://my.sxsw.com/e/5001">web fonts came front and center</a> as Jeffrey Veen, Stephen Coles, Roger Black, Bert Bos and David Berlow took stage. To top it off, just last week the <a href="http://www.w3.org/News/2010.html#entry-8752">W3C announced</a> its second <a href="http://www.w3.org/Fonts/WG/">Web Fonts Working Group</a>, chartered to create a standard format for downloadable fonts (<em>another debate in its own right</em>).</p>
<h3>A word of warning</h3>
<p>Web fonts are a blessing, but they can be a curse! The potential threat today is akin to that of DHTML.</p>
<p>Back in the 90’s, when Netscape invented JavaScript, many designers went over the deep-end. They made their websites &#8216;dynamic&#8217; and &#8216;flashy.&#8217;</p>
<p>Some felt it would grab and engage users to create pop-ups and animated splash pages. It was a novelty; cool for a day and hated the next. For this reason many thought JavaScript silly or even dangerous, and for good reason too. Obtrusive code has inspired many books dedicated to highly discouraging the idea.</p>
<p>Web fonts are at the same risk! Web Designers may find themselves implementing novelty designs hoping to make a splash. This is not good! It’s up to us to educate ourselves about the potential threats that lay ahead.</p>
<p>It’s not shocking that A List Apart Magazine published two articles in November of 2009 covering the basics of this issue. Jason Santa Maria, Creative director of Typekit, had this to say in <a href="http://www.alistapart.com/articles/on-web-typography/">his article</a> at the time.</p>
<blockquote><p>“There’s a serious possibility that by gaining access to the world’s font libraries, we’re opening Pandora’s Box. Many people working on the web today have some knowledge of typography, but my hunch is that many designers are about to feel quite baffled by the new challenges they face.” (Jason Santa Maria)</p></blockquote>
<p>I totally agree with Jason. It’s time to take a closer look at Typography. There is a dangerously high risk we will end up back in the 90’s; and it’s not just the 90’s that threaten web design either. Font designers will need to start making <a href="http://www.alistapart.com/articles/real-web-type-in-real-web-context/">better rendered fonts</a>, as Tim Brown points out.</p>
<p>Browser makers have known about the black hole threatening to suck in font rendering for a while. Only now has the development team at Microsoft been able to convince the corporate giant to move forward.</p>
<p>The release of IE9 will prove ground breaking. Not just for its enhanced standards support but also for its hardware acceleration and DirectWrite technologies. While the <a href="http://www.zeldman.com/2010/03/17/ed-botts-lament/">debate goes on</a>, whether IE9 will be enough to keep web design moving forward on the most popular desktop platform, the enhancements made can’t be ignored.</p>
<p>Now is the time for web designers to start taking typography seriously. Developers, too, need to be aware of what should and shouldn’t be done with @font-face. It’s time to stop using back handed techniques. This time it’s for real. It’s time to get excited again… it’s time for web fonts!</p>
<p><strong>Edit</strong>: <em>This just in, it looks like I&#8217;m not the only one <a href="http://www.zeldman.com/2010/03/22/my-lovehate-affair-with-typekit/">talking about it</a> today. Zeldman makes some good points.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/web-fonts-foundries-evolved/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 9: A Win Win?</title>
		<link>http://inteldesigner.com/2010/code/internet-explorer-9-a-win-win</link>
		<comments>http://inteldesigner.com/2010/code/internet-explorer-9-a-win-win#comments</comments>
		<pubDate>Wed, 17 Mar 2010 01:43:05 +0000</pubDate>
		<dc:creator>Kevin Dees</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[web standards]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=525</guid>
		<description><![CDATA[Today at the <a href="http://www.microsoft.com/events/mix/">Mix Conference</a> Microsoft announced the <a href="http://blogs.msdn.com/ie/default.aspx">latest</a> <a href="http://blogs.msdn.com/ie/archive/2010/03/16/html5-hardware-accelerated-first-ie9-platform-preview-available-for-developers.aspx">updates</a> about their browser. This sparked a flurry of posts around the web community. As my twitter steam started to crack, the shadows surrounding IE begin to shrink. Maybe, just maybe, IE9 will open up the amazing power of standards for more than <a href="http://www.michaelvandaniker.com/labs/browserVisualization/">a select few</a>.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-large wp-image-526" title="mollydotcom" src="http://inteldesigner.com/wp-content/uploads/2010/03/mollydotcom-455x288.png" alt="mollydotcom speak about IE9 on Twitter." /></p>
<h2>The Effects</h2>
<p>To be honest it’s hard to say how IE9 will affect the current climate. IE9 has not erased the presence of IE6 from the drawing board. It&#8217;s just another nail in the coffin.</p>
<h3>But IE <em>is not</em> the focus here: web standards are!</h3>
<p>When we design for the web we are intrinsically designing for more than IE6, a desktop browser. We are designing for a huge number of devices and platforms with varying constraints and environments.</p>
<p>While <a href="http://www.zeldman.com/2010/03/16/ie9-preview/">IE9 is a huge step</a> toward a more accessible web we cannot, and must not, let IE continue to blindside us or skew our perspective.</p>
<p>For too many years we have complained about how IE is evil. The fact is, its not!</p>
<h2>Focus on the facts</h2>
<p>We need to go back to were it all started. We need a course correction. We need to be realistic about what is possible right now and focus our  energy on the future, specifically HTML5. We need to make it our objective to  cultivate better constraints with clients. We need to educate them  about what is possible now, the new and exciting stuff.</p>
<h2>Moving on</h2>
<p>Innovation requires exploration, and exploration requires just a bit of devastation.</p>
<p>Consider IE, with it we now have AJAX and better support for CSS, yes IE6 was cutting edge at one time. Even, Netscape was involved in the early days and gave us JavaScript.</p>
<p>Those were hard times, but without the browser wars who knows what would have happened.</p>
<p>It’s time to remember how we got here and put aside our bias. IE is not the enemy, it never has been. It has helped cultivate some of the best features on the web today. However, this would have never occurred without organizations like the W3C and the activists of the time.</p>
<p><strong>So then, what do you think? What is our responsibility, our role in all this? How can we encourage change? How can we support standards and still innovation? What are the boundaries and who makes them, if there are any at all?<br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/code/internet-explorer-9-a-win-win/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Will the iPad break web design?</title>
		<link>http://inteldesigner.com/2010/design/will-the-ipad-break-web-design</link>
		<comments>http://inteldesigner.com/2010/design/will-the-ipad-break-web-design#comments</comments>
		<pubDate>Wed, 27 Jan 2010 21:50:28 +0000</pubDate>
		<dc:creator>Kevin Dees</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://inteldesigner.com/?p=289</guid>
		<description><![CDATA[Today Apple announced the iPad; reported live by the twit with Leo Laporte and engandget. With the introduction of iBooks Apple made it clear the iPad leans heavy to the consumer of content.  Apple also made it clear that they were all about the mobile devices. But how, or will, this effect web design? Development [...]]]></description>
			<content:encoded><![CDATA[<p>Today Apple announced the <a href="http://www.apple.com/ipad/">iPad</a>; reported live by the twit with <a href="http://twit.tv/"><em>Leo Laporte</em></a> and <a href="http://www.engadget.com/">engandget</a>. With the introduction of iBooks Apple made it clear the iPad leans heavy to the consumer of content.  Apple also made it clear that they were all about the mobile devices. But how, or will, this effect web design?<span id="more-289"></span></p>
<h2>Development</h2>
<p>With a 1024-by-768-pixel resolution at 132 pixels per inch <a href="https://twitter.com/danrubin/status/8292008353">Dan Rubin sees this as advantage</a> for the <a href="http://960.gs/">CSS Grid Framework 960</a>, via twitter. However, new markets and frameworks could be on their way. Like the iPhone and iTouch, whose unique market created <a href="http://www.jqtouch.com/">JQTouch</a>, the iPad may too create a new field in web development and design.</p>
<p><img class="aligncenter size-large wp-image-290" title="dan ipad" src="http://inteldesigner.com/wp-content/uploads/2010/01/dan-ipad-455x264.gif" alt="" width="455" height="264" /></p>
<p>If you are wondering what weapons the iPad came with look no further then <a href="http://www.apple.com/ipad">Apples iPad page</a>, but <a href="http://yehudakatz.com/2010/01/27/the-irony-of-the-ipad-a-great-day-for-open-technologies/">you will not find flash</a>. Yep, no flash was seen on the iPad’s Safari during the presentation today only the obtrusive symbol of a plug-in; farther locking in CSS, HTML5 and JavaScript as the weapons of choice.</p>
<p>Apple&#8217;s choice to keep Adobe&#8217;s Flash product out of the loop suggests that they may be doing so to push their app store. However, this call has enabled a new play ground for HTML5 and SVG. While it is still uncertain weather Apple will adopt Flash in the future it is safe to say we will be seeing more uptake with <a href="http://www.w3.org/TR/html5/the-canvas-element.html">the canvas tag</a>. Big players like <a href="http://www.youtube.com/html5">YouTube have already begun to implement HTML5</a> versions of their sites.</p>
<p>Could this be for the Mobile web? Maybe so but only time will tell, and I&#8217;m betting my dollar on HTML5.</p>
<h2>So what will the iPad do to design?</h2>
<p>That’s a good question. As Leo points out the iPad is a new breed of device and simply can’t be compared to a net-book. Apple clams this to be a “magical” device, one you need to experience.</p>
<p>This &#8220;magical&#8221; experience Apple promises. Will they hold up on the deal? I doubt it.</p>
<p>What I don&#8217;t doubt is the <em>where</em> people will experience the new platform. Apple is trying to get us out of the chair and on the couch, in the bed, or on the move. They want us to use the device as if it were a book or newspaper.</p>
<p>This might open the doors to a new level of user experience design. As designers we need to re-imagine the environment in which our users interact with these devices. We need to take into account a new type of medium, where people consume more and generate less. <a href="https://twitter.com/Malarkey/status/8319513615">Andy makes the notion</a> to this via twitter.</p>
<p><img class="aligncenter size-large wp-image-310" title="ipad andy" src="http://inteldesigner.com/wp-content/uploads/2010/01/ipad-andy-455x291.gif" alt="The point is not what Apple showed yesterday, but what developers and in my case authors and publishers will imagine for the new platform" width="455" height="291" /></p>
<p>With multi-touch at web designers fingertips who knows what will happen. We have seen JQTouch make mobile web apps feel native to the iPhone but the iPad changes the game with its large screen. It may be that we see <a href="http://gettopup.com/">more lightbox frameworks</a>, like Top Up, creeping into play.</p>
<p>As designer we love to use hover effect. However, over use of hover effects have created a usability problem for touch devices. Be sure to watch your use of the pseudo-class hover, the iPad doesn&#8217;t have a cursor.</p>
<h2>Are there any editors?</h2>
<p>On the Apple iPad page they state that, &#8220;The iWork productivity  applications that people know and love on the Mac  — Keynote, Pages, and  Numbers — have been completely redesigned for  iPad.&#8221; This could mean there is a good chance we may see web development tools in the future (but I doubt they will come from Apple).</p>
<p>With the option for a<a href="http://www.apple.com/ipad/specs/#accessories"> iPad Keyboard Dock</a> the chances of getting a local development toolkit is not to bad either, though not initially intended.</p>
<h2>Any Storage?</h2>
<p>I can’t say that I know about this topic but the iPad will come standard with at least 16GB Solid State Hard Drive Space and up to 64GB. With the ability to sync with iTunes via Windows or Mac sending and receiving development files is likely.</p>
<h2>Predictions</h2>
<p>As a developer, and designer, this only further deeps my love for standards, and CSS will continue to rule over page layout. Flash will have to wait and JQuery will become widely adopted for iPad development. However, I don&#8217;t see the iPad becoming the computer of choice for designers or developers. However, it may be that everyone will want an iPad when their on the go.</p>
<p>The iPad is truly an excellent device for anyone on the go. Its very affordable at $499, Apple-ready slick-design, and the battery life is more than expected weighing in at 10 hours.  The iPad will find its place on many a coffee table, bedside and salesman&#8217;s hand bag.</p>
<p>On a personal note, the iPad is more than I had expected and is amazing! While some think it is little more than a &#8220;worthy cause&#8221;, I believe this device will change the way people think about mobile computing. The iPhone changed the way we think about the phone and they are leading the way with the mobile device of the future. I don&#8217;t know that it will be the iPad 1.0 but they are close.</p>
<h2>Recommended Content</h2>
<p><strong>Podcast</strong>: <a href="http://5by5.tv/conversation/1 ">Premier episode of The Conversation</a></p>
<p><strong>Jeff Croft</strong>: <a href="http://jeffcroft.com/blog/2010/jan/28/ipad-thoughts/">iPad Thoughts</a></p>
<p><strong>Adactio</strong>: <a href="http://adactio.com/journal/1644/">The iPad and the Web</a></p>
<p><strong>Keynote</strong>: <a href="http://events.apple.com.edgesuite.net/1001q3f8hhr/event/index.html">View the keynote now</a></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 445px; width: 1px; height: 1px; overflow: hidden;">
<div id="MASKED-keyboard-only" class="dock-content"><img src="http://images.apple.com/ipad/specs/images/keyboard_dock_2_20100127.jpg" alt="" width="508" height="494" /></div>
<h4>iPad Keyboard Dock</h4>
</div>
]]></content:encoded>
			<wfw:commentRss>http://inteldesigner.com/2010/design/will-the-ipad-break-web-design/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

