<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.thirdwish.net/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Public</title><subtitle type="html" /><id>http://www.thirdwish.net/blogs/sample_weblog/atom.aspx</id><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/default.aspx" /><link rel="self" type="application/atom+xml" href="http://www.thirdwish.net/blogs/sample_weblog/atom.aspx" /><generator uri="http://communityserver.org" version="2.1.61025.2">Community Server</generator><updated>2010-03-30T03:59:29Z</updated><entry><title>JavaScript Minification Part II</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/20/javascript-minification-part-ii.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/20/javascript-minification-part-ii.aspx</id><published>2010-07-20T10:00:42Z</published><updated>2010-07-20T10:00:42Z</updated><content type="html">Variable naming can be a source of coding angst for humans trying to understand code. Once you’re sure that a human doesn’t need to interpret your JavaScript code, variables simply become generic placeholders for values. Nicholas C. Zakas shows us how to further minify JavaScript by replacing local variable names with the YUI Compressor....(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/20/javascript-minification-part-ii.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1041" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>SVG with a little help from Rapha&#235;l</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/20/svg-with-a-little-help-from-rapha-l.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/20/svg-with-a-little-help-from-rapha-l.aspx</id><published>2010-07-20T10:00:02Z</published><updated>2010-07-20T10:00:02Z</updated><content type="html">Want to make fancy, interactive, scalable vector graphics (SVGs) that look beautiful at any resolution and degrade with grace? Brian Suda urges you to consider Raphaël for your SVG heavy lifting....(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/20/svg-with-a-little-help-from-rapha-l.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1042" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Supersize that Background, Please!</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/06/supersize-that-background-please.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/06/supersize-that-background-please.aspx</id><published>2010-07-06T09:00:50Z</published><updated>2010-07-06T09:00:50Z</updated><content type="html">Background images that fill the screen thrill marketers but waste bandwidth in devices with small viewports, and suffer from cropping and alignment problems in high-res and widescreen monitors. Instead of using a single fixed background size, a better solution would be to scale the image to make it fit different window sizes. And with CSS3 backgrounds and CSS3 media queries, we can do just that. Bobby van der Sluis shows how....(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/06/supersize-that-background-please.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1039" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Prefix or Posthack</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/06/prefix-or-posthack.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/06/prefix-or-posthack.aspx</id><published>2010-07-06T09:00:14Z</published><updated>2010-07-06T09:00:14Z</updated><content type="html">Vendor prefixes: Threat or menace? As browser support (including in IE9) encourages more of us to dive into CSS3, vendor prefixes such as -moz-border-radius and -webkit-animation may challenge our consciences, along with our patience. But while nobody particularly enjoys writing the same thing four or five times in a row, prefixes may actually accelerate the advancement and refinement of CSS. King of CSS Eric Meyer explains why....(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/07/06/prefix-or-posthack.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1040" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Taking Advantage of HTML5 and CSS3 with Modernizr</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/06/22/taking-advantage-of-html5-and-css3-with-modernizr.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/06/22/taking-advantage-of-html5-and-css3-with-modernizr.aspx</id><published>2010-06-22T09:00:33Z</published><updated>2010-06-22T09:00:33Z</updated><content type="html">Years ago, CSS browser support was patchy and buggy, and only daring web designers used CSS for layouts. Today, CSS layouts are commonplace and every browser supports them. But the same can't be said for CSS3 and HTML5. That's where Faruk Ateş’s Modernizr comes in. This open-source JavaScript library makes it easy to support different levels of experiences, based on the capabilities of each visitor’s browser. Learn how to take advantage of everything in HTML5 and CSS3 that is implemented in some...(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/06/22/taking-advantage-of-html5-and-css3-with-modernizr.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1037" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Stop Forking with CSS3</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/06/22/stop-forking-with-css3.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/06/22/stop-forking-with-css3.aspx</id><published>2010-06-22T09:00:13Z</published><updated>2010-06-22T09:00:13Z</updated><content type="html">You may remember when JavaScript was a dark art. It earned that reputation because, in order to do anything with even the teensiest bit of cross-browser consistency, you had to fork your code for various versions of Netscape and IE. Today, thanks to web standards advocacy and diligent JavaScript library authors, our code is relatively fork-free. Alas, in our rush to use some of the features available in CSS3, we’ve fallen off the wagon. Enter Aaron Gustafson’s eCSStender, a JavaScript library that...(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/06/22/stop-forking-with-css3.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1038" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Web Fonts at the Crossing</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/06/08/web-fonts-at-the-crossing.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/06/08/web-fonts-at-the-crossing.aspx</id><published>2010-06-08T09:00:27Z</published><updated>2010-06-08T09:00:27Z</updated><content type="html">Everything you wanted to know about web fonts but were afraid to ask. Richard Fink summarizes the latest news in web fonts, examining formats, rules, licenses, and tools. He creates a checklist for evaluating font hosting and obfuscation services like Typekit; looks at what’s coming down the road (from problems of advanced typography being pursued by the CSS3 Fonts Module group, to the implications of Google-hosted fonts); and wraps it all up with a how-to on making web fonts work today....(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/06/08/web-fonts-at-the-crossing.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1036" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Quick and Dirty Remote User Testing</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/25/quick-and-dirty-remote-user-testing.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/25/quick-and-dirty-remote-user-testing.aspx</id><published>2010-05-25T10:00:57Z</published><updated>2010-05-25T10:00:57Z</updated><content type="html">User research doesn’t have to be expensive and time-consuming. With online applications, you can test your designs, wireframes, and prototypes over the phone and your computer with ease and aplomb. Nate Bolt shows the way....(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/25/quick-and-dirty-remote-user-testing.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1034" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Responsive Web Design</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/25/responsive-web-design.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/25/responsive-web-design.aspx</id><published>2010-05-25T10:00:23Z</published><updated>2010-05-25T10:00:23Z</updated><content type="html">Designers have coveted print for its precision layouts, lamenting the varying user contexts on the web that compromise their designs. Ethan Marcotte advocates we shift our design thinking to appropriate these constraints: using fluid grids, flexible images, and media queries, he shows us how to embrace the “ebb and flow of things&amp;#8221 with responsive web design....(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/25/responsive-web-design.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1035" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Habit Fields</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/04/habit-fields.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/04/habit-fields.aspx</id><published>2010-05-04T09:00:49Z</published><updated>2010-05-04T09:00:49Z</updated><content type="html">We have the power to bestow our abilities onto the things around us. By being conscious of our tools, habits, and spaces, and actively conditioning them to help us behave the way we want to behave, maybe we can more efficiently tap into the thousands of hours of creative genius embedded in our everyday objects. Maybe we’ll be able to maximize the capabilities that new technologies afford us without being overwhelmed by the distractions. And, just maybe, we’ll remember what it feels like to be utterly...(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/04/habit-fields.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1032" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>A Brief History of Markup</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/04/a-brief-history-of-markup.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/04/a-brief-history-of-markup.aspx</id><published>2010-05-04T09:00:07Z</published><updated>2010-05-04T09:00:07Z</updated><content type="html">Hot off the presses! In his brand new, brief book for people who make websites, HTML5 For Web Designers, Jeremy Keith cuts through the confusion surrounding the web's new markup language and presents what every accessibility- and standards-focused web designer and developer needs to know about it—from semantics to strategy. Not only is HTML5 For Web Designers a great, fast read, it is also our first A Book Apart publication. To celebrate, A List Apart proudly presents all of "Chapter One: A Brief...(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/05/04/a-brief-history-of-markup.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1033" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Better JavaScript Minification</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/04/20/better-javascript-minification.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/04/20/better-javascript-minification.aspx</id><published>2010-04-20T10:00:45Z</published><updated>2010-04-20T10:00:45Z</updated><content type="html">Like CSS, JavaScript works best and hardest when stored in an external file that can be downloaded and cached separately from our site's individual HTML pages. To increase performance, we limit the number of external requests and make our JavaScript as small as possible. JavaScript minification schemes began with JSMin in 2004 and progressed to the YUI Compressor in 2007. Now the inventor of Extreme JavaScript Compression with YUI Compressor reveals coding patterns that interfere with compression,...(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/04/20/better-javascript-minification.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1030" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Design Patterns: Faceted Navigation</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/04/20/design-patterns-faceted-navigation.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/04/20/design-patterns-faceted-navigation.aspx</id><published>2010-04-20T10:00:03Z</published><updated>2010-04-20T10:00:03Z</updated><content type="html">Faceted navigation may be the most significant search innovation of the past decade. It features an integrated, incremental search and browse experience that lets users begin with a classic keyword search and then scan a list of results. It also serves up a custom map that provides insights into the content and its organization and offers a variety of useful next steps. In keeping with the principles of progressive disclosure and incremental construction, it lets users formulate the equivalent of...(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/04/20/design-patterns-faceted-navigation.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1031" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Contrast is King</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/03/30/contrast-is-king.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/03/30/contrast-is-king.aspx</id><published>2010-03-30T09:00:12Z</published><updated>2010-03-30T09:00:12Z</updated><content type="html">Being colorblind doesn’t mean not seeing color. It means seeing it differently. If colorblindness challenges the colorblind, it also challenges designers. Some of us think designing sites that are colorblind-friendly means sticking with black and white, or close to it. But the opposite is true. Using contrast effectively not only differentiates our site’s design from others, it’s the essential ingredient that can make our content accessible to every viewer, including the colorblind. By understanding...(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/03/30/contrast-is-king.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1028" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry><entry><title>Infrequently Asked Questions of FAQs</title><link rel="alternate" type="text/html" href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/03/30/infrequently-asked-questions-of-faqs.aspx" /><id>http://www.thirdwish.net/blogs/sample_weblog/archive/2010/03/30/infrequently-asked-questions-of-faqs.aspx</id><published>2010-03-30T08:59:29Z</published><updated>2010-03-30T08:59:29Z</updated><content type="html">We take FAQs for granted as part of our sites’ content, but do they really work, or are they a band-aid for poor content? FAQ-hater R. Stephen Gracey explores the history and usability of FAQs. Learn how to collect, track, and analyze real user questions, sales inquiries, and support requests—and use the insights gained thereby to improve your site's content, not just to write a FAQ. Find out when FAQs are an appropriate part of your content strategy, and discover how to ensure that your FAQ is doing...(&lt;a href="http://www.thirdwish.net/blogs/sample_weblog/archive/2010/03/30/infrequently-asked-questions-of-faqs.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://www.thirdwish.net/aggbug.aspx?PostID=1029" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://www.thirdwish.net/members/Anonymous.aspx</uri></author></entry></feed>