<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Jason Melgoza</title>
  <id>http://127.0.0.1</id>
  <updated>2011-12-02</updated>
  <author>
    <name>Jason Melgoza</name>
  </author>
  <entry>
    <title>It's Clear</title>
    <link rel="alternate" href="http://127.0.0.1/2012/02/22/its-clear/"/>
    <id>http://127.0.0.1/2012/02/22/its-clear/</id>
    <published>2012-02-22</published>
    <updated>2012-02-22</updated>
    <author>
      <name>Jason Melgoza</name>
    </author>
    <summary type="html">&lt;p&gt;This app has earned a top spot on my iPhone home screen. Slick design, simple to use, and great pinch and zoom responsiveness &amp;ndash; and it&amp;rsquo;s just a todo app.&lt;/p&gt;

&lt;p&gt;4 stars.&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;This app has earned a top spot on my iPhone home screen. Slick design, simple to use, and great pinch and zoom responsiveness &amp;ndash; and it&amp;rsquo;s just a todo app.&lt;/p&gt;

&lt;p&gt;4 stars.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Prime Burger</title>
    <link rel="alternate" href="http://127.0.0.1/2012/02/17/prime-burger/"/>
    <id>http://127.0.0.1/2012/02/17/prime-burger/</id>
    <published>2012-02-17</published>
    <updated>2012-02-17</updated>
    <author>
      <name>Jason Melgoza</name>
    </author>
    <summary type="html">&lt;p&gt;A Midtown Manhattan Burger joint &amp;ndash; unchanged since the 1960s.&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;A Midtown Manhattan Burger joint &amp;ndash; unchanged since the 1960s.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Anchor CMS</title>
    <link rel="alternate" href="http://127.0.0.1/2012/02/12/anchor-cms/"/>
    <id>http://127.0.0.1/2012/02/12/anchor-cms/</id>
    <published>2012-02-12</published>
    <updated>2012-02-12</updated>
    <author>
      <name>Jason Melgoza</name>
    </author>
    <summary type="html">&lt;p&gt;Looking for a new light-weight, well designed, open source blogging solution? Take a look at Anchor.&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;Looking for a new light-weight, well designed, open source blogging solution? Take a look at Anchor.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>CSS3 Selectors</title>
    <link rel="alternate" href="http://127.0.0.1/2012/02/07/css3-selectors/"/>
    <id>http://127.0.0.1/2012/02/07/css3-selectors/</id>
    <published>2012-02-07</published>
    <updated>2012-02-07</updated>
    <author>
      <name>Jason Melgoza</name>
    </author>
    <summary type="html">&lt;p&gt;When taking a close look at the markup from &lt;a href="http://twitter.github.com/bootstrap/"&gt;Twitter&amp;rsquo;s Bootstrap&lt;/a&gt; (an amazing project by the way) I came across this little nugget.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[class*="span"] {
  float: left;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Which targets this little stub of HTML.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;div class="span3"&amp;gt;
 ...
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;My initial re-action was &amp;ldquo;What the Hell &amp;ndash; &lt;strong&gt;span&lt;/strong&gt; does not equal &lt;strong&gt;span3&lt;/strong&gt;!&amp;rdquo;, but after calming down I did little digging and I&amp;rsquo;m now pleased to learned something new about CSS &amp;ndash; and that is CSS3 Attribute Selectors.&lt;/p&gt;

&lt;p&gt;Put best by this &lt;a href="http://reference.sitepoint.com/css/css3attributeselectors" title="CSS3 Attribute Selectors"&gt;SitePoint reference article&lt;/a&gt;.&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;[CSS3 Attribute Selectors] give us the ability to make partial matches to attribute values&amp;mdash;we can match strings at the start, end, or anywhere within an attribute value.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Here&amp;rsquo;s a sample of these three CSS definitions:&lt;/p&gt;

&lt;p&gt;To target a selector that &lt;strong&gt;starts&lt;/strong&gt; with the value &amp;ldquo;span&amp;rdquo; use the following&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[class^="span"]
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;For a selector that &lt;strong&gt;ends&lt;/strong&gt; with &amp;ldquo;span&amp;rdquo; use&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[class$="span"]
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;and for a selector that just plain &lt;strong&gt;contains&lt;/strong&gt; &amp;ldquo;span&amp;rdquo;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[class*="span"]
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Now if you like to get little creative with your stylesheets (and who doesn&amp;rsquo;t &amp;ndash; really?) then the benefits here are clear. With this we can target a large range of elements, such as grid columns, with less CSS.&lt;/p&gt;

&lt;p&gt;Like more on the subject? Here&amp;rsquo;s a 2006 post from Roger Johansson&amp;rsquo;s &lt;a href="http://www.456bereastreet.com/archive/200601/css_3_selectors_explained/" title="CSS 3 selectors explained"&gt;456 Berea St&lt;/a&gt; with a larger list of selectors.&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;When taking a close look at the markup from &lt;a href="http://twitter.github.com/bootstrap/"&gt;Twitter&amp;rsquo;s Bootstrap&lt;/a&gt; (an amazing project by the way) I came across this little nugget.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[class*="span"] {
  float: left;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Which targets this little stub of HTML.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;div class="span3"&amp;gt;
 ...
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;My initial re-action was &amp;ldquo;What the Hell &amp;ndash; &lt;strong&gt;span&lt;/strong&gt; does not equal &lt;strong&gt;span3&lt;/strong&gt;!&amp;rdquo;, but after calming down I did little digging and I&amp;rsquo;m now pleased to learned something new about CSS &amp;ndash; and that is CSS3 Attribute Selectors.&lt;/p&gt;

&lt;p&gt;Put best by this &lt;a href="http://reference.sitepoint.com/css/css3attributeselectors" title="CSS3 Attribute Selectors"&gt;SitePoint reference article&lt;/a&gt;.&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;[CSS3 Attribute Selectors] give us the ability to make partial matches to attribute values&amp;mdash;we can match strings at the start, end, or anywhere within an attribute value.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Here&amp;rsquo;s a sample of these three CSS definitions:&lt;/p&gt;

&lt;p&gt;To target a selector that &lt;strong&gt;starts&lt;/strong&gt; with the value &amp;ldquo;span&amp;rdquo; use the following&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[class^="span"]
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;For a selector that &lt;strong&gt;ends&lt;/strong&gt; with &amp;ldquo;span&amp;rdquo; use&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[class$="span"]
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;and for a selector that just plain &lt;strong&gt;contains&lt;/strong&gt; &amp;ldquo;span&amp;rdquo;&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;[class*="span"]
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Now if you like to get little creative with your stylesheets (and who doesn&amp;rsquo;t &amp;ndash; really?) then the benefits here are clear. With this we can target a large range of elements, such as grid columns, with less CSS.&lt;/p&gt;

&lt;p&gt;Like more on the subject? Here&amp;rsquo;s a 2006 post from Roger Johansson&amp;rsquo;s &lt;a href="http://www.456bereastreet.com/archive/200601/css_3_selectors_explained/" title="CSS 3 selectors explained"&gt;456 Berea St&lt;/a&gt; with a larger list of selectors.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Ridiculous and Pointless</title>
    <link rel="alternate" href="http://127.0.0.1/2012/02/02/ridiculous-and-pointless/"/>
    <id>http://127.0.0.1/2012/02/02/ridiculous-and-pointless/</id>
    <published>2012-02-02</published>
    <updated>2012-02-02</updated>
    <author>
      <name>Jason Melgoza</name>
    </author>
    <summary type="html">&lt;blockquote&gt;&lt;p&gt;In 2005, the bad-boy artist was commissioned to paint murals at the first corporate headquarters of Facebook. As payment, he was offered the choice of cash or shares of Facebook stock. Although he said the very idea of Facebook seemed &amp;ldquo;ridiculous and pointless&amp;rdquo; at the time, he chose the stock.&lt;/p&gt;

&lt;p&gt;He chose wisely.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;f&amp;mdash;&amp;ndash; ya he did.&lt;/p&gt;
</summary>
    <content type="html">&lt;blockquote&gt;&lt;p&gt;In 2005, the bad-boy artist was commissioned to paint murals at the first corporate headquarters of Facebook. As payment, he was offered the choice of cash or shares of Facebook stock. Although he said the very idea of Facebook seemed &amp;ldquo;ridiculous and pointless&amp;rdquo; at the time, he chose the stock.&lt;/p&gt;

&lt;p&gt;He chose wisely.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;f&amp;mdash;&amp;ndash; ya he did.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Wow</title>
    <link rel="alternate" href="http://127.0.0.1/2012/01/24/wow/"/>
    <id>http://127.0.0.1/2012/01/24/wow/</id>
    <published>2012-01-24</published>
    <updated>2012-01-24</updated>
    <author>
      <name>Jason Melgoza</name>
    </author>
    <summary type="html">&lt;blockquote class="twitter-tweet"&gt;&lt;p&gt;Apple's profits ($13 billion) exceeded Google's entire revenue ($10.6 billion).&lt;/p&gt;&amp;mdash; Farhad Manjoo (@fmanjoo) &lt;a href="https://twitter.com/fmanjoo/status/161932440737296386" data-datetime="2012-01-24T22:04:37+00:00"&gt;January 24, 2012&lt;/a&gt;&lt;/blockquote&gt;


&lt;script src="//platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;

</summary>
    <content type="html">&lt;blockquote class="twitter-tweet"&gt;&lt;p&gt;Apple's profits ($13 billion) exceeded Google's entire revenue ($10.6 billion).&lt;/p&gt;&amp;mdash; Farhad Manjoo (@fmanjoo) &lt;a href="https://twitter.com/fmanjoo/status/161932440737296386" data-datetime="2012-01-24T22:04:37+00:00"&gt;January 24, 2012&lt;/a&gt;&lt;/blockquote&gt;


&lt;script src="//platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;

</content>
  </entry>
  <entry>
    <title>Wilson Miner - When We Build</title>
    <link rel="alternate" href="http://127.0.0.1/2012/01/23/wilson-miner-when-we-build/"/>
    <id>http://127.0.0.1/2012/01/23/wilson-miner-when-we-build/</id>
    <published>2012-01-23</published>
    <updated>2012-01-23</updated>
    <author>
      <name>Jason Melgoza</name>
    </author>
    <summary type="html">&lt;p&gt;A gem of a talk.&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;A gem of a talk.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Fine Goods Market</title>
    <link rel="alternate" href="http://127.0.0.1/2012/01/11/fine-goods-market/"/>
    <id>http://127.0.0.1/2012/01/11/fine-goods-market/</id>
    <published>2012-01-11</published>
    <updated>2012-01-11</updated>
    <author>
      <name>Jason Melgoza</name>
    </author>
    <summary type="html">&lt;p&gt;An exceptional little store, by designer &lt;a href="https://twitter.com/#!/rogie"&gt;Rogie King&lt;/a&gt;, featuring T-Shirts and other Web/UI goodies.&lt;/p&gt;

&lt;p&gt;Fine indeed.&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;An exceptional little store, by designer &lt;a href="https://twitter.com/#!/rogie"&gt;Rogie King&lt;/a&gt;, featuring T-Shirts and other Web/UI goodies.&lt;/p&gt;

&lt;p&gt;Fine indeed.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Flex Slider</title>
    <link rel="alternate" href="http://127.0.0.1/2012/01/03/flex-slider/"/>
    <id>http://127.0.0.1/2012/01/03/flex-slider/</id>
    <published>2012-01-03</published>
    <updated>2012-01-03</updated>
    <author>
      <name>Jason Melgoza</name>
    </author>
    <summary type="html">&lt;p&gt;A well-documented jQuery slider to add to your &amp;ldquo;responsive&amp;rdquo; tool kit.&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;A well-documented jQuery slider to add to your &amp;ldquo;responsive&amp;rdquo; tool kit.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Happy</title>
    <link rel="alternate" href="http://127.0.0.1/2011/12/31/happy/"/>
    <id>http://127.0.0.1/2011/12/31/happy/</id>
    <published>2011-12-31</published>
    <updated>2011-12-31</updated>
    <author>
      <name>Jason Melgoza</name>
    </author>
    <summary type="html">&lt;p&gt;Here&amp;rsquo;s a few things, in no particular order, that made 2011 special to me.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I saw my son play t-ball and soccer for the first time.&lt;/li&gt;
&lt;li&gt;Took the family to DisneyLand.&lt;/li&gt;
&lt;li&gt;Collaborated on some cool projects at &lt;a href="http://www.ucmerced.edu/"&gt;UC Merced&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Read these &lt;a href="http://www.abookapart.com/"&gt;books&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Purchased some new &lt;a href="http://itunes.apple.com/us/album/el-camino/id475545948?ls=1"&gt;music&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;My youngest is out of diapers (Woo!).&lt;/li&gt;
&lt;li&gt;The 49ers made the &lt;a href="http://www.nytimes.com/2011/12/05/sports/football/49ers-clinch-division-with-time-to-spare.html?pagewanted=all"&gt;playoffs&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;And best of all, I enjoyed this wild ride with my beautiful wife.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Happy New Year.&lt;/p&gt;
</summary>
    <content type="html">&lt;p&gt;Here&amp;rsquo;s a few things, in no particular order, that made 2011 special to me.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I saw my son play t-ball and soccer for the first time.&lt;/li&gt;
&lt;li&gt;Took the family to DisneyLand.&lt;/li&gt;
&lt;li&gt;Collaborated on some cool projects at &lt;a href="http://www.ucmerced.edu/"&gt;UC Merced&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Read these &lt;a href="http://www.abookapart.com/"&gt;books&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Purchased some new &lt;a href="http://itunes.apple.com/us/album/el-camino/id475545948?ls=1"&gt;music&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;My youngest is out of diapers (Woo!).&lt;/li&gt;
&lt;li&gt;The 49ers made the &lt;a href="http://www.nytimes.com/2011/12/05/sports/football/49ers-clinch-division-with-time-to-spare.html?pagewanted=all"&gt;playoffs&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;And best of all, I enjoyed this wild ride with my beautiful wife.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Happy New Year.&lt;/p&gt;
</content>
  </entry>
</feed>

