<?xml version="1.0"?>
<rss version="2.0" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:yt="http://gdata.youtube.com/schemas/2007" xmlns:atom="http://www.w3.org/2005/Atom">
   <channel>
      <title>frontendmatters</title>
      <description>Front End News form Front End Matters</description>
      <link>http://pipes.yahoo.com/pipes/pipe.info?_id=94ee98872c6d7e0dfd79ea649e0780ba</link>
      <atom:link rel="next" href="http://pipes.yahoo.com/pipes/pipe.run?_id=94ee98872c6d7e0dfd79ea649e0780ba&amp;_render=rss&amp;page=2"/>
      <pubDate>Thu, 01 Oct 2015 21:18:42 +0000</pubDate>
      <generator>http://pipes.yahoo.com/pipes/</generator>
      <item>
         <title>CSS Stacking Contexts</title>
         <link>http://tiffanybbrown.com/2015/09/css-stacking-contexts-wtf/</link>
         <description>&lt;p&gt;Tiffany B. Brown breaks down what stacking contexts are in a very quick and understandable way. First, &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context&quot;&gt;what makes a new context&lt;/a&gt;, then:&lt;/p&gt;
&lt;p&gt;Children of a stacking context are painted from bottom to top in the following order.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Elements with a negative stack level, typically elements with &lt;code&gt;z-index: -1&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Elements with a &lt;code&gt;position&lt;/code&gt; value of &lt;code&gt;static&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Elements with a stack level of 0, typically positioned elements with a &lt;code&gt;z-index&lt;/code&gt; value of &lt;code&gt;auto&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Elements with positive stack levels, &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;#8230;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;small&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://css-tricks.com/css-stacking-contexts/&quot;&gt;CSS Stacking Contexts&lt;/a&gt; is a post from &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://css-tricks.com&quot;&gt;CSS-Tricks&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">https://css-tricks.com/?p=209060</guid>
         <pubDate>Thu, 01 Oct 2015 17:43:04 +0000</pubDate>
         <content:encoded><![CDATA[<p>Tiffany B. Brown breaks down what stacking contexts are in a very quick and understandable way. First, <a rel="nofollow" target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context">what makes a new context</a>, then:</p>
<blockquote><p>Children of a stacking context are painted from bottom to top in the following order.</p>
<ol>
<li>Elements with a negative stack level, typically elements with <code>z-index: -1</code></li>
<li>Elements with a <code>position</code> value of <code>static</code>.</li>
<li>Elements with a stack level of 0, typically positioned elements with a <code>z-index</code> value of <code>auto</code>.</li>
<li>Elements with positive stack levels, e.g. a positioned  element with a <code>z-index</code> value of <code>1</code> or higher.</li>
</ol>
</blockquote>
<p><a rel="nofollow" target="_blank" href="http://tiffanybbrown.com/2015/09/css-stacking-contexts-wtf/" title="Direct link to featured article">Direct Link to Article</a> &#8212; <a rel="nofollow" target="_blank" href="https://css-tricks.com/css-stacking-contexts/">Permalink</a></p><hr />
<p><small><a rel="nofollow" target="_blank" href="https://css-tricks.com/css-stacking-contexts/">CSS Stacking Contexts</a> is a post from <a rel="nofollow" target="_blank" href="https://css-tricks.com">CSS-Tricks</a></small></p>]]></content:encoded>
         <category>Link</category>
      </item>
      <item>
         <title>Image Diffing in CSS</title>
         <link>http://franklinta.com/2014/11/30/image-diffing-using-css/</link>
         <description>&lt;p&gt;A bonafide CSS trick by Franklin Ta. Position the images on top of each other at 50% opacity and inverted colors. Or, as Bennett Feely pointed out, use &lt;code&gt;background-blend-mode: difference;&lt;/code&gt; if they are background images.&lt;/p&gt;
&lt;p&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://franklinta.com/2014/11/30/image-diffing-using-css/&quot; title=&quot;Direct link to featured article&quot;&gt;Direct Link to Article&lt;/a&gt; &amp;#8212; &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://css-tricks.com/image-diffing-in-css/&quot;&gt;Permalink&lt;/a&gt;&amp;#8230;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;small&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://css-tricks.com/image-diffing-in-css/&quot;&gt;Image Diffing in CSS&lt;/a&gt; is a post from &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://css-tricks.com&quot;&gt;CSS-Tricks&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">https://css-tricks.com/?p=209058</guid>
         <pubDate>Thu, 01 Oct 2015 17:36:39 +0000</pubDate>
         <content:encoded><![CDATA[<p>A bonafide CSS trick by Franklin Ta. Position the images on top of each other at 50% opacity and inverted colors. Or, as Bennett Feely pointed out, use <code>background-blend-mode: difference;</code> if they are background images.</p>
<p><a rel="nofollow" target="_blank" href="http://franklinta.com/2014/11/30/image-diffing-using-css/" title="Direct link to featured article">Direct Link to Article</a> &#8212; <a rel="nofollow" target="_blank" href="https://css-tricks.com/image-diffing-in-css/">Permalink</a></p><hr />
<p><small><a rel="nofollow" target="_blank" href="https://css-tricks.com/image-diffing-in-css/">Image Diffing in CSS</a> is a post from <a rel="nofollow" target="_blank" href="https://css-tricks.com">CSS-Tricks</a></small></p>]]></content:encoded>
         <category>Link</category>
      </item>
      <item>
         <title>28 Powerful Open Source CSS Frameworks &amp; Libraries</title>
         <link>http://webdesignledger.com/open-source-css-libs</link>
         <description>&lt;img width=&quot;610&quot; height=&quot;400&quot; src=&quot;http://webdesignledger.com/wp-content/uploads/2015/08/16-gumby-framework-homepage-css.jpg&quot; class=&quot;attachment-large wp-post-image&quot; alt=&quot;16-gumby-framework-homepage-css.jpg&quot; style=&quot;display:block;margin:auto;margin-bottom:5px;&quot;/&gt;&lt;p&gt;Web Developers who work smart are often building on top of pre-existing frameworks. Open source CSS libraries are not hard to find &amp;#8211; including many of the newer CSS3 effects. When structuring an HTML page you&amp;#8217;ll rely on CSS as the language of color, position, structure, and other components of the final layout. This gallery [&amp;#8230;]&lt;/p&gt;
&lt;p&gt;Read More at &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://webdesignledger.com/open-source-css-libs&quot;&gt;28 Powerful Open Source CSS Frameworks &amp;#038; Libraries&lt;/a&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://webdesignledger.com/?p=29293</guid>
         <pubDate>Thu, 01 Oct 2015 14:03:46 +0000</pubDate>
         <content:encoded><![CDATA[<img width="610" height="400" src="http://webdesignledger.com/wp-content/uploads/2015/08/16-gumby-framework-homepage-css.jpg" class="attachment-large wp-post-image" alt="16-gumby-framework-homepage-css.jpg" style="display:block;margin:auto;margin-bottom:5px;"/><p>Web Developers who work smart are often building on top of pre-existing frameworks. Open source CSS libraries are not hard to find &#8211; including many of the newer CSS3 effects. When structuring an HTML page you&#8217;ll rely on CSS as the language of color, position, structure, and other components of the final layout.<span id="more-29293"></span></p>
<p>This gallery includes 28 free open source frameworks you can try out when designing new projects. You&#8217;ll find a number of CSS grid systems along with extra goodies like CSS UI kits or transition libraries. It&#8217;s never been easier to learn how to build websites from scratch. Open source code is changing the way we structure projects and how much development time is required.</p>
<h2><a rel="nofollow" target="_blank" href="http://www.responsivegridsystem.com/">Responsive Grid System</a></h2>
<p><a rel="nofollow" target="_blank" href="http://www.responsivegridsystem.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/01-responsive-grid-framework-homepage.jpg" alt="css responsive grid system web design article"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.profoundgrid.com/">Profound Grid</a></h2>
<p><a rel="nofollow" target="_blank" href="http://www.profoundgrid.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/02-profound-grid-website-layout.jpg" alt="css profound grid framework homepage"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://responsive.gs/">Responsive.gs</a></h2>
<p><a rel="nofollow" target="_blank" href="http://responsive.gs/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/03-responsive-grid-system-css.jpg" alt="css responsive grid system homepage website"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://purecss.io/">Pure CSS</a></h2>
<p><a rel="nofollow" target="_blank" href="http://purecss.io/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/04-pure-css-library-homepage.jpg" alt="pure library css ui elements effects buttons"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://workless.ikreativ.com/">Workless</a></h2>
<p><a rel="nofollow" target="_blank" href="http://workless.ikreativ.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/05-workless-framework-homepage.jpg" alt="workless css framework library design"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://getbootstrap.com/">Twitter Bootstrap</a></h2>
<p><a rel="nofollow" target="_blank" href="http://getbootstrap.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/06-twitter-bootstrap-framework.jpg" alt="twitter bootstrap open source library css"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.getskeleton.com/">Skeleton</a></h2>
<p><a rel="nofollow" target="_blank" href="http://www.getskeleton.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/07-skeleton-boilerplate-design.jpg" alt="skeleton boilerplate css library framework"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://960.gs/">960 Grid System</a></h2>
<p><a rel="nofollow" target="_blank" href="http://960.gs/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/08-960-grid-system-css-library.jpg" alt="960px pixels grid system framework"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.columnal.com/">Columnal</a></h2>
<p><a rel="nofollow" target="_blank" href="http://www.columnal.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/09-columnal-homepage-columns-css.jpg" alt="columnal css library columns free open source"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.blueprintcss.org/">Blueprint</a></h2>
<p><a rel="nofollow" target="_blank" href="http://www.blueprintcss.org/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/10-blueprint-css-library-framework.jpg" alt="blueprint css library homepage layout"/></a></p>
<h2><a rel="nofollow" target="_blank" href="https://daneden.me/toast/">Toast</a></h2>
<p><a rel="nofollow" target="_blank" href="https://daneden.me/toast/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/11-toast-css-framework-homepage.jpg" alt="toast css framework homepage library"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://imperavi.com/kube/">Kube</a></h2>
<p><a rel="nofollow" target="_blank" href="http://imperavi.com/kube/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/12-kube-professional-css-framework.jpg" alt="kube professional css framework open source"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://topcoat.io/">Topcoat</a></h2>
<p><a rel="nofollow" target="_blank" href="http://topcoat.io/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/13-topcoat-css-clean-effective-design.jpg" alt="topcoat css framework clean webapps open source"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://ink.sapo.pt/">InK</a></h2>
<p><a rel="nofollow" target="_blank" href="http://ink.sapo.pt/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/14-ink-website-layout-homepage.jpg" alt="ink css interface kit website"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://daneden.github.io/animate.css/">Animate.css</a></h2>
<p><a rel="nofollow" target="_blank" href="http://daneden.github.io/animate.css/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/15-animate-css-design-framework-library.jpg" alt="css transition animate library freebie"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://gumbyframework.com/">Gumby</a></h2>
<p><a rel="nofollow" target="_blank" href="http://gumbyframework.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/16-gumby-framework-homepage-css.jpg" alt="gumby css framework homepage design"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.getuikit.com/">UIkit</a></h2>
<p><a rel="nofollow" target="_blank" href="http://www.getuikit.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/17-ui-kit-homepage-css-library.jpg" alt="css freebie ui kit homepage library"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.amazium.co.uk/">Amazium</a></h2>
<p><a rel="nofollow" target="_blank" href="http://www.amazium.co.uk/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/18-amazium-homepage-design-website.jpg" alt="amazium responsive css framework library"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.cascade-framework.com/">Cascade Framework</a></h2>
<p><a rel="nofollow" target="_blank" href="http://www.cascade-framework.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/19-cascade-framework-css-open-source.jpg" alt="css cascading styles library framework open source"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://printstylesheet.com/">Print.css</a></h2>
<p><a rel="nofollow" target="_blank" href="http://printstylesheet.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/20-print-css-homepage-library.jpg" alt="print css stylesheet open source free download"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://metroui.org.ua/">Metro UI CSS</a></h2>
<p><a rel="nofollow" target="_blank" href="http://metroui.org.ua/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/21-metro-ui-css-framework-design.jpg" alt="metro ui interface css library flat"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://tuktuk.tapquo.com/">Tuktuk</a></h2>
<p><a rel="nofollow" target="_blank" href="http://tuktuk.tapquo.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/22-tuktuk-css-framework-library.jpg" alt="tuktuk simple powerful css framework library"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://getclank.com/">Clank</a></h2>
<p><a rel="nofollow" target="_blank" href="http://getclank.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/23-clank-phone-tablet-design-framework.jpg" alt="clank mobile tablet css framework open source"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://weice.in/ivory/">Ivory</a></h2>
<p><a rel="nofollow" target="_blank" href="http://weice.in/ivory/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/24-ivory-framework-open-source.jpg" alt="css ivory framework open source web design"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://jeetframework.com/">Jeet Framework</a></h2>
<p><a rel="nofollow" target="_blank" href="http://jeetframework.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/25-jeet-responsive-grid-framework.jpg" alt="framework library css open source jeet design"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://www.baselinecss.com/">Baseline CSS</a></h2>
<p><a rel="nofollow" target="_blank" href="http://www.baselinecss.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/26-baseline-css-framework.jpg" alt="baseline css web design inspiration framework"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://flaminwork.com/">Flaminwork</a></h2>
<p><a rel="nofollow" target="_blank" href="http://flaminwork.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/27-flaminwork-css-web-framework.jpg" alt="flaminwork design css framework inspiration"/></a></p>
<h2><a rel="nofollow" target="_blank" href="http://foundation.zurb.com/">Foundation</a></h2>
<p><a rel="nofollow" target="_blank" href="http://foundation.zurb.com/"><img src="http://webdesignledger.com/wp-content/uploads/2015/08/28-foundation-framework-design-homepage.jpg" alt="css foundation zurb most advanced responsive frontend framework"/></a></p>
<p>Read More at <a rel="nofollow" target="_blank" href="http://webdesignledger.com/open-source-css-libs">28 Powerful Open Source CSS Frameworks &#038; Libraries</a></p>]]></content:encoded>
      </item>
      <item>
         <title>List of SVG Properties You Can Manipulate with CSS</title>
         <link>http://www.w3.org/TR/SVG/propidx.html</link>
         <description>&lt;p&gt;The strange thing about using CSS to style &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://developer.mozilla.org/en-US/docs/Web/SVG/Element&quot;&gt;SVG elements&lt;/a&gt; is that only certain properties can be used, depending on the element. For instance, you can set the &lt;code&gt;fill&lt;/code&gt; on a &lt;code&gt;&amp;#60;polygon&amp;#62;&lt;/code&gt;, but not the &lt;code&gt;points&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;The W3C has &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.w3.org/TR/SVG/propidx.html&quot;&gt;a list of properties&lt;/a&gt; that outlines which SVG properties can be manipulated by CSS.&lt;/p&gt;
&lt;p&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.w3.org/TR/SVG/propidx.html&quot; title=&quot;Direct link to featured article&quot;&gt;Direct Link to Article&lt;/a&gt; &amp;#8212; &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://css-tricks.com/list-of-svg-properties-you-can-manipulate-with-css/&quot;&gt;Permalink&lt;/a&gt;&amp;#8230;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;small&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://css-tricks.com/list-of-svg-properties-you-can-manipulate-with-css/&quot;&gt;List of SVG Properties You Can Manipulate with CSS&lt;/a&gt; is a post from &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://css-tricks.com&quot;&gt;CSS-Tricks&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">https://css-tricks.com/?p=208866</guid>
         <pubDate>Tue, 29 Sep 2015 13:06:56 +0000</pubDate>
         <content:encoded><![CDATA[<p>The strange thing about using CSS to style <a rel="nofollow" target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/SVG/Element">SVG elements</a> is that only certain properties can be used, depending on the element. For instance, you can set the <code>fill</code> on a <code>&lt;polygon&gt;</code>, but not the <code>points</code>.</p>
<p>The W3C has <a rel="nofollow" target="_blank" href="http://www.w3.org/TR/SVG/propidx.html">a list of properties</a> that outlines which SVG properties can be manipulated by CSS.</p>
<p><a rel="nofollow" target="_blank" href="http://www.w3.org/TR/SVG/propidx.html" title="Direct link to featured article">Direct Link to Article</a> &#8212; <a rel="nofollow" target="_blank" href="https://css-tricks.com/list-of-svg-properties-you-can-manipulate-with-css/">Permalink</a></p><hr />
<p><small><a rel="nofollow" target="_blank" href="https://css-tricks.com/list-of-svg-properties-you-can-manipulate-with-css/">List of SVG Properties You Can Manipulate with CSS</a> is a post from <a rel="nofollow" target="_blank" href="https://css-tricks.com">CSS-Tricks</a></small></p>]]></content:encoded>
         <category>Link</category>
      </item>
      <item>
         <title>ESLint: The Next-Generation JavaScript Linter</title>
         <link>http://www.smashingmagazine.com/2015/09/eslint-the-next-generation-javascript-linter/</link>
         <description>&lt;table width=&quot;650&quot;&gt;&lt;tr&gt;&lt;td width=&quot;650&quot;&gt;&lt;div style=&quot;width:650px;&quot;&gt;&lt;img src=&quot;http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;br /&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1&quot;&gt;&lt;img src=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&amp;nbsp;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2&quot;&gt;&lt;img src=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&amp;nbsp;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3&quot;&gt;&lt;img src=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;It was the summer of 2013 and I was working on a project for my employer, &lt;em&gt;Box&lt;/em&gt;. I had just finished wiring up &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://usejsdoc.org&quot;&gt;JSDoc&lt;/a&gt; as a nightly build using a plugin to detect &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://t3js.org&quot;&gt;T3&lt;/a&gt; patterns in our code and document them automatically. It occurred to me that these patterns might be easy to get wrong, and I started looking for a &lt;strong&gt;way to automatically detect incorrect patterns&lt;/strong&gt;. I immediately turned to &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://jshint.com&quot;&gt;JSHint&lt;/a&gt; because we were already using it and I thought it could &lt;strong&gt;support plugins&lt;/strong&gt;. Unfortunately, it could not.&lt;/p&gt;

&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.smashingmagazine.com/2015/09/eslint-the-next-generation-javascript-linter/&quot;&gt;&lt;img src=&quot;http://media.mediatemple.netdna-cdn.com/wp-content/uploads/2015/09/eslint-opt1.png&quot; alt=&quot;ESlint&quot; alt=&quot;ESLint: The Next-Generation JavaScript Linter&quot; width=&quot;500&quot; height=&quot;301&quot; title=&quot;ESLint: The Next-Generation JavaScript Linter&quot;/&gt;&lt;/a&gt; 

&lt;p&gt;Still, I couldn’t get the idea of a linter with pluggable runtime rules out of my head. I had just spent a bunch of time learning about &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://esprima.org&quot;&gt;Esprima&lt;/a&gt; and abstract syntax trees (ASTs), and I thought to myself, “It can’t be all that hard to create a pluggable JavaScript linter using an AST.” It was from those initial thoughts that &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://eslint.org&quot;&gt;ESLint&lt;/a&gt; was born.&lt;/p&gt;&lt;p&gt;The post &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.smashingmagazine.com/2015/09/eslint-the-next-generation-javascript-linter/&quot;&gt;ESLint: The Next-Generation JavaScript Linter&lt;/a&gt; appeared first on &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.smashingmagazine.com&quot;&gt;Smashing Magazine&lt;/a&gt;.&lt;/p&gt;</description>
         <guid isPermaLink="false">http://www.smashingmagazine.com/?p=225990</guid>
         <pubDate>Tue, 29 Sep 2015 10:58:56 +0000</pubDate>
      </item>
      <item>
         <title>Freebie: World Landmark Icons (AI, EPS, PDF, PNG and PSD)</title>
         <link>http://www.smashingmagazine.com/2015/09/free-world-landmark-icons/</link>
         <description>&lt;table width=&quot;650&quot;&gt;&lt;tr&gt;&lt;td width=&quot;650&quot;&gt;&lt;div style=&quot;width:650px;&quot;&gt;&lt;img src=&quot;http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;br /&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1&quot;&gt;&lt;img src=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&amp;nbsp;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2&quot;&gt;&lt;img src=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&amp;nbsp;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3&quot;&gt;&lt;img src=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;Today we’re happy to release a new Smashing freebie: &lt;strong&gt;18 lovely world landmark icons&lt;/strong&gt; such as the London Eye, the Eiffel Tower or the Empire State Building. The icons are detailed enough to show architectural elegance but without adding chaos. They're designed to work best in both digital and print media.&lt;/p&gt;

&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.smashingmagazine.com/2015/09/free-world-landmark-icons/&quot;&gt;&lt;img src=&quot;http://media.mediatemple.netdna-cdn.com/wp-content/uploads/2015/09/landmark-icons-excerpt1.jpg&quot; width=&quot;500&quot; height=&quot;334&quot; alt=&quot;Landmark Icons Excerpt&quot;/&gt;&lt;/a&gt; 

&lt;p&gt;Today we’re happy to release a new Smashing freebie: &lt;strong&gt;18 lovely world landmark icons&lt;/strong&gt; such as the London Eye, the Eiffel Tower or the Empire State Building. The icons are detailed enough to show architectural elegance but without adding chaos. They're designed to work best in both digital and print media.&lt;/p&gt;&lt;p&gt;The post &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.smashingmagazine.com/2015/09/free-world-landmark-icons/&quot;&gt;Freebie: World Landmark Icons (AI, EPS, PDF, PNG and PSD)&lt;/a&gt; appeared first on &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.smashingmagazine.com&quot;&gt;Smashing Magazine&lt;/a&gt;.&lt;/p&gt;</description>
         <guid isPermaLink="false">http://www.smashingmagazine.com/?p=227048</guid>
         <pubDate>Mon, 28 Sep 2015 12:57:53 +0000</pubDate>
      </item>
      <item>
         <title>Cheatsheet: Photoshop Keyboard Shortcuts</title>
         <link>http://feedproxy.google.com/~r/sixrevisions/~3/OhTJSqOGkWQ/</link>
         <description>&lt;p&gt;A cheatsheet showing keyboard shortcuts for important Adobe Photoshop CS6 commands.&lt;/p&gt;
&lt;p&gt;The post &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://sixrevisions.com/photoshop/photoshop-keyboard-shortcuts/&quot;&gt;Cheatsheet: Photoshop Keyboard Shortcuts&lt;/a&gt; appeared first on &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://sixrevisions.com&quot;&gt;Six Revisions&lt;/a&gt;.&lt;/p&gt;</description>
         <guid isPermaLink="false">http://sixrevisions.com/?p=8661</guid>
         <pubDate>Mon, 28 Sep 2015 10:00:58 +0000</pubDate>
         <content:encoded><![CDATA[<p>This useful cheatsheet shows the <strong>keyboard shortcuts</strong> for important Adobe Photoshop CS6 commands.</p>
<p><img src="http://cdn.sixrevisions.com/0561-01-photoshop-keyboard-shortcuts-small.png" width="640" height="495"></p>
<p><a rel="nofollow" target="_blank" href="http://cdn.sixrevisions.com/b/photoshop-keyboard-shortcuts/photoshop-keyboard-shortcuts.html"><strong>View Larger Version</strong></a></p>
<p><strong>Note:</strong> For Photoshop commands that are displayed in blue, such as &quot;Quit&quot;, &quot;Close&quot;, and &quot;Merge Layer&quot;, you must also press <code>Ctrl</code> on Windows or <code>Command</code> on Mac OS. For example, to issue the &quot;Quit&quot; command, press <code>Ctrl + Q</code> if you&#8217;re on Windows or <code>Command + Q</code> if you&#8217;re on Mac OS.</p>
<p>This excellent resource  is by ZeroLag. ZeroLag provided me with a special version of their existing <a rel="nofollow" target="_blank" href="http://www.zerolag.com/infographics/adobe-photoshop-cs6-shortcuts-cheatsheet/">Adobe Photoshop CS6 Shortcuts Cheatsheet</a>. The version I posted here doesn&#8217;t display their logo.</p>
<h2>Related Content</h2>
<ul>
<li><a rel="nofollow" target="_blank" href="http://sixrevisions.com/photoshop/70-excellent-photoshop-resources/">70 Excellent Photoshop Resources</a></li>
<li><a rel="nofollow" target="_blank" href="http://sixrevisions.com/graphics-design/10-excellent-open-source-and-free-alternatives-to-photoshop/">Open Source and Free Alternatives to Photoshop</a></li>
<li><a rel="nofollow" target="_blank" href="http://sixrevisions.com/tools/sketch-for-web-designers/">Why Sketch is Ideal for Web Designers</a></li>
</ul>
<p class="about-author"><img src="http://images.sixrevisions.com/authors/jacob_gube_small.jpg"><span class="author-bio-text"><strong>Jacob Gube</strong> is the founder of Six Revisions. He’s a front-end developer. Connect with him on <a rel="nofollow" target="_blank" href="http://twitter.com/sixrevisions">Twitter</a> and <a rel="nofollow" target="_blank" href="https://www.facebook.com/sixrevisions">Facebook</a>.</span></p>
<p>The post <a rel="nofollow" target="_blank" href="http://sixrevisions.com/photoshop/photoshop-keyboard-shortcuts/">Cheatsheet: Photoshop Keyboard Shortcuts</a> appeared first on <a rel="nofollow" target="_blank" href="http://sixrevisions.com">Six Revisions</a>.</p>
<div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/sixrevisions?a=OhTJSqOGkWQ:s6Bv9GjeHjk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sixrevisions?i=OhTJSqOGkWQ:s6Bv9GjeHjk:V_sGLiPBpWU" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/sixrevisions?a=OhTJSqOGkWQ:s6Bv9GjeHjk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sixrevisions?d=yIl2AUoC8zA" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/sixrevisions?a=OhTJSqOGkWQ:s6Bv9GjeHjk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sixrevisions?d=qj6IDK7rITs" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/sixrevisions?a=OhTJSqOGkWQ:s6Bv9GjeHjk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sixrevisions?i=OhTJSqOGkWQ:s6Bv9GjeHjk:gIN9vFwOqvQ" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/sixrevisions?a=OhTJSqOGkWQ:s6Bv9GjeHjk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/sixrevisions?d=7Q72WNTAKBA" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/sixrevisions/~4/OhTJSqOGkWQ" height="1" width="1" alt=""/>]]></content:encoded>
         <category>Photoshop</category>
      </item>
      <item>
         <title>Chrome, Firefox, Safari, Opera, Edge? Impressive Web Browser Alternatives</title>
         <link>http://www.smashingmagazine.com/2015/09/chrome-firefox-safari-opera-edge-impressive-web-browser-alternatives/</link>
         <description>&lt;table width=&quot;650&quot;&gt;&lt;tr&gt;&lt;td width=&quot;650&quot;&gt;&lt;div style=&quot;width:650px;&quot;&gt;&lt;img src=&quot;http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;br /&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1&quot;&gt;&lt;img src=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&amp;nbsp;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2&quot;&gt;&lt;img src=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&amp;nbsp;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3&quot;&gt;&lt;img src=&quot;http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3&quot; border=&quot;0&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;It’s 2015 and &lt;strong&gt;your choice of browser&lt;/strong&gt; has proven to be as important as your choice of operating system. Dedicated apps may be competing against browsers on mobile devices, but that is hardly the case in the desktop environment. On the contrary, each year more desktop browsers appear, and some of them can change the way you browse the Internet for the better.&lt;/p&gt;

&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.smashingmagazine.com/2015/09/chrome-firefox-safari-opera-edge-impressive-web-browser-alternatives/&quot;&gt;&lt;img src=&quot;http://media.mediatemple.netdna-cdn.com/wp-content/uploads/2015/07/22-vivaldi-opt-small.png&quot; alt=&quot;Impressive Web Browser Alternatives&quot; width=&quot;500&quot; height=&quot;300&quot; title=&quot;Impressive Web Browser Alternatives&quot;/&gt;&lt;/a&gt; 

&lt;p&gt;Google Chrome, Mozilla Firefox, Internet Explorer, Safari and Opera dominate the world’s desktop browser market. Whichever statistics you check (&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://www.netmarketshare.com/browser-market-share.aspx?qprid=2&amp;#38;qpcustomd=0&quot;&gt;NetMarketshare&lt;/a&gt;, &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://gs.statcounter.com/#browser-ww-monthly-201405-201505-bar&quot;&gt;StatCounter’s GlobalStats&lt;/a&gt; or &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.w3counter.com/globalstats.php&quot;&gt;W3Counter&lt;/a&gt;), you’ll notice that they often contradict each other in declaring which browser is leading the race. However, no matter which method is used to determine usage share, all sources agree that those five browsers do not own 100% of the world’s desktop browser usage. They may be the most popular, but &lt;strong&gt;they are not the only options&lt;/strong&gt; available for accessing the Internet. So, what about the remaining share?&lt;/p&gt;&lt;p&gt;The post &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.smashingmagazine.com/2015/09/chrome-firefox-safari-opera-edge-impressive-web-browser-alternatives/&quot;&gt;Chrome, Firefox, Safari, Opera, Edge? Impressive Web Browser Alternatives&lt;/a&gt; appeared first on &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://www.smashingmagazine.com&quot;&gt;Smashing Magazine&lt;/a&gt;.&lt;/p&gt;</description>
         <guid isPermaLink="false">http://www.smashingmagazine.com/?p=222198</guid>
         <pubDate>Wed, 23 Sep 2015 19:32:46 +0000</pubDate>
      </item>
      <item>
         <title>Can you smell it? Javascript is at a turning point.</title>
         <link>http://feedproxy.google.com/~r/position-absolute/nyJv/~3/c2S_tTid4W0/</link>
         <description>&lt;p&gt;Things are going fast in front-end, when I think my back about my 10 years careers, I would say the 6 first years were pretty calm, we had jquery &amp;#038; plugins, and were living a small life. But last 4&amp;#8230;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://www.position-absolute.com/?p=5200</guid>
         <pubDate>Mon, 14 Sep 2015 18:25:19 +0000</pubDate>
         <content:encoded><![CDATA[<p>Things are going fast in front-end, when I think my back about my 10 years careers, I would say the 6 first years were pretty calm, we had jquery &#038; plugins, and were living a small life. But last 4 years went really fast, always getting better and better tools to do, really, anything you want in javascript, you&#8217;re not bound only to the web anymore.</p>
<p>Still tools you picked up along the way you still can use them today. I&#8217;m a backbone/grunt guy, I did not get into any other framework bandwagon and until now my tools served me well.</p>
<p>The way I see it that&#8217;s all about to change, with ES6, ES7 and Babel, the language is about to be transformed drastically. With frameworks like Angular2, Aurora &#038; React taking advantages from the new language features and new front-end programming paradigm to better handle UI states, I feel that yet again we are leaving another era and the community will shift to new high.</p>
<p>Can you feel it? There&#8217;s something in the air and that&#8217;s not necessarily a bad thing, to the next 5 years!</p>
<img src="http://feeds.feedburner.com/~r/position-absolute/nyJv/~4/c2S_tTid4W0" height="1" width="1" alt=""/>]]></content:encoded>
         <category>Trends</category>
      </item>
      <item>
         <title>Infographic: 69 Web Design Tips</title>
         <link>http://feedproxy.google.com/~r/sixrevisions/~3/UdkIB_YagkI/</link>
         <description>&lt;p&gt;This infographic will remind you about the important web design do's and don'ts when creating websites.&lt;/p&gt;
&lt;p&gt;The post &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://sixrevisions.com/infographics/69-web-design-tips/&quot;&gt;Infographic: 69 Web Design Tips&lt;/a&gt; appeared first on &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://sixrevisions.com&quot;&gt;Six Revisions&lt;/a&gt;.&lt;/p&gt;</description>
         <guid isPermaLink="false">http://sixrevisions.com/?p=8623</guid>
         <pubDate>Mon, 24 Aug 2015 10:00:28 +0000</pubDate>
         <content:encoded><![CDATA[<p><em>This infographic was first published on <a rel="nofollow" target="_blank" href="https://psdtowp.net/website-design-tips.html">PSDtoWP.net</a>.</em></p>
<p>This infographic will remind you about the important web design do&#8217;s and don&#8217;ts when creating websites. There are tips in this infographic for every level of expertise and for every part of the website design and development process.</p>
<p><a rel="nofollow" class="button" target="_blank" href="http://cdn.sixrevisions.com/infographics/web-design-tips/index.html?v1.0.1">View Larger Version</a></p>
<p><img src="http://cdn.sixrevisions.com/0553-02-web-design-tips-infographic-small.png" width="640" height="5761" alt="Infographic: 69 Web Design Tips"></p>
<p><a rel="nofollow" class="button" target="_blank" href="http://cdn.sixrevisions.com/infographics/web-design-tips/index.html?v1.0.1">View Larger Version</a></p>
<h2>Related Content</h2>
<ul>
<li><a rel="nofollow" target="_blank" href="http://sixrevisions.com/infographics/what-are-websites-made-of-infographic/">What Are Websites Made Of? (Infographic)</a></li>
<li><a rel="nofollow" target="_blank" href="http://sixrevisions.com/infographics/mobile-web-infographic/">The Takeover of the Mobile Web (Infographic)</a></li>
<li><a rel="nofollow" target="_blank" href="http://sixrevisions.com/infographics/web-designers-vs-web-developers-infographic-remix/">Web Developers vs. Web Developers (Infographic)</a></li>
</ul>
<p class="about-author"><img src="http://cdn.sixrevisions.com/authors/bauke-roesink-small.jpg"><span class="author-bio-text"><strong>Bauke Roesink</strong> is the founder of <a rel="nofollow" target="_blank" href="https://psdtowp.net/website-design-tips.html">PSDtoWP.net</a>. He&#8217;s based in Groningen, the Netherlands. Follow him on Twitter: <a rel="nofollow" target="_blank" href="https://twitter.com/BRoesink">@BRoesink</a>.</span></p>
<p>The post <a rel="nofollow" target="_blank" href="http://sixrevisions.com/infographics/69-web-design-tips/">Infographic: 69 Web Design Tips</a> appeared first on <a rel="nofollow" target="_blank" href="http://sixrevisions.com">Six Revisions</a>.</p>
<div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/sixrevisions?a=UdkIB_YagkI:AnvTzX6L9Ok:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/sixrevisions?i=UdkIB_YagkI:AnvTzX6L9Ok:V_sGLiPBpWU" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/sixrevisions?a=UdkIB_YagkI:AnvTzX6L9Ok:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/sixrevisions?d=yIl2AUoC8zA" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/sixrevisions?a=UdkIB_YagkI:AnvTzX6L9Ok:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/sixrevisions?d=qj6IDK7rITs" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/sixrevisions?a=UdkIB_YagkI:AnvTzX6L9Ok:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/sixrevisions?i=UdkIB_YagkI:AnvTzX6L9Ok:gIN9vFwOqvQ" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.feedburner.com/~ff/sixrevisions?a=UdkIB_YagkI:AnvTzX6L9Ok:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/sixrevisions?d=7Q72WNTAKBA" border="0"></a>
</div><img src="http://feeds.feedburner.com/~r/sixrevisions/~4/UdkIB_YagkI" height="1" width="1" alt=""/>]]></content:encoded>
         <category>Infographics</category>
      </item>
   </channel>
</rss>
<!-- fe3.yql.bf1.yahoo.com compressed/chunked Thu Oct  1 21:18:40 UTC 2015 -->
