<?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>State Of The Bart</title>
	<atom:link href="http://stateofthebart.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://stateofthebart.com</link>
	<description></description>
	<lastBuildDate>Tue, 20 Nov 2012 01:46:28 +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>That&#8217;s a loaded question</title>
		<link>http://stateofthebart.com/2012/11/19/thats-a-loaded-question/</link>
		<comments>http://stateofthebart.com/2012/11/19/thats-a-loaded-question/#comments</comments>
		<pubDate>Tue, 20 Nov 2012 01:45:56 +0000</pubDate>
		<dc:creator>bartram</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[User Experience]]></category>

		<guid isPermaLink="false">http://stateofthebart.com/?p=104</guid>
		<description><![CDATA[A friend asked me this, for a class project: As an official UX Expert, how important is it that sites are created to reach a range of audiences? Of course, I had to be disagreeable: &#8211; I can&#8217;t say that it&#8217;s always necessary to make your work accessible to everyone. One of the first steps [...]]]></description>
			<content:encoded><![CDATA[<p>A friend asked me this, for a class project:</p>
<blockquote><p>As an official UX Expert, how important is it that sites are created to reach a range of audiences?</p></blockquote>
<p>Of course, I had to be disagreeable:<br />
&#8211;<br />
I can&#8217;t say that it&#8217;s always necessary to make your work accessible to everyone. One of the first steps in our design process is identifying who the users of the product will be. Sometimes your focus is so narrow, that you can eliminate large segments of society. If you&#8217;re designing a heads-up display for a fifth generation fighter jet, you can ignore users who are under 5&#8217;4&#8243; and don&#8217;t have perfect vision.  Or you may be the manufacturer of geriatric telephones, the ones with buttons so large you can mash them with a broom stick. If that&#8217;s what you&#8217;re selling, you&#8217;ve already selected your audience. There&#8217;s no benefit to printing the numbers both large and small on the keypad. That phone may be universally usable, but not universally desirable.</p>
<p>While &#8220;Universal Design&#8221; is a lofty goal, projects often have constraints that make it unattainable. Sometimes we can use the device or platform as a throttle for our imagination. If we&#8217;re developing a product that requires some kind of geolocation input, or a camera, or two-way radio voice communication, it&#8217;s an easy decision to build it as a smartphone application. But with that choice, we&#8217;ve eliminated users without digital connections (i.e. people who don&#8217;t have fingers). Small screens exclude some users with vision difficulties.</p>
<p>Of course, there are always solutions for these problems. We could implement voice recognition, or eyeball tracking, or speech synthesis. But say this is a small project, with a small budget. You make it accessible to 90% of likely adopters, and you try to reach 90% of whoever&#8217;s left in version 2, etc.</p>
<p> The 90% (that figure is not meant to be a factual statement) guideline is useful, unless you&#8217;re legally obligated to make your product accessible, like if you are a public university, in which case, it&#8217;s easy, because there are laws that you follow. Or your product is so widely used that that remaining 10% could be millions of users, and they&#8217;ll tell you what they want, like Netflix titling their entire instant streaming library in the next few years.</p>
<p>Universal Design is really a matter of eating your vegetables. Follow the rules. For a website, put &#8220;skip to&#8221; links at the top, use the right header tags, add in ARIA elements. Test it with a screen reader. Simulate how it looks to people with different types of color blindness. If it&#8217;s video, add in closed captions.  For most designers, its a challenge to understand how normal users use your work, much less people with difficulties that they haven&#8217;t experienced, or can&#8217;t experience. Closing your eyes isn&#8217;t the same as being blind from birth. Empathy is important here. Unless you&#8217;ve got an amazing, earth-moving solution to the challenges that these users face, follow the rules, and give them what they expect.</p>
]]></content:encoded>
			<wfw:commentRss>http://stateofthebart.com/2012/11/19/thats-a-loaded-question/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rotate transform with CSS3 and scrolling</title>
		<link>http://stateofthebart.com/2011/11/18/rotate-transform-with-css3-and-scrolling/</link>
		<comments>http://stateofthebart.com/2011/11/18/rotate-transform-with-css3-and-scrolling/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 19:31:43 +0000</pubDate>
		<dc:creator>bartram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://stateofthebart.com/?p=85</guid>
		<description><![CDATA[Set the &#8216;overflow&#8217; of rotating elements (that use &#8216;transform: rotate(xdeg);&#8217;) to &#8216;hidden&#8217;. Using Chrome (15.0.874.121) today, I discovered that doing a rotation transform in an element that is scrolling will monkey around with the dimensions of the scrollpane.  In my example, I have a small 10&#215;10 icon that rotate, inside an element that overflows: .container [...]]]></description>
			<content:encoded><![CDATA[<p>Set the &#8216;overflow&#8217; of rotating elements (that use &#8216;transform: rotate(xdeg);&#8217;) to &#8216;hidden&#8217;.</p>
<p>Using Chrome (15.0.874.121) today, I discovered that doing a rotation transform in an element that is scrolling will monkey around with the dimensions of the scrollpane.  In my example, I have a small 10&#215;10 icon that rotate, inside an element that overflows:</p>
<pre>.container {
    overflow-y: scroll;
}
.container .icon {
    width: 10px;
    height: 10px;
}
.container .icon.active {
    -webkit-transform: rotate(90deg);
}</pre>
<p>When the icon rotates, the container will scroll for nearly twice the apparent height of the content. Web Inspector doesn&#8217;t give any clues here. Setting the icon&#8217;s &#8216;overflow&#8217; property to &#8216;hidden&#8217; eliminates the container&#8217;s strange scrolling behavior.</p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://stateofthebart.com/2011/11/18/rotate-transform-with-css3-and-scrolling/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Web Inspector to tweak CSS</title>
		<link>http://stateofthebart.com/2011/07/06/using-web-inspector-to-tweak-css/</link>
		<comments>http://stateofthebart.com/2011/07/06/using-web-inspector-to-tweak-css/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 03:23:41 +0000</pubDate>
		<dc:creator>bartram</dc:creator>
				<category><![CDATA[Chrome]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Q&A]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://stateofthebart.com/?p=66</guid>
		<description><![CDATA[If you&#8217;re using a WordPress theme, or are &#8220;fixing&#8221; someone else&#8217;s website, it can be tough to figure out how an existing stylesheet works.  But thanks to Web Inspector, a tool built in to WebKit based browsers like Safari and Chrome, you can view exactly which combination of CSS properties define the behavior of an [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using a WordPress theme, or are &#8220;fixing&#8221; someone else&#8217;s website, it can be tough to figure out how an existing stylesheet works.  But thanks to Web Inspector, a tool built in to WebKit based browsers like Safari and Chrome, you can view exactly which combination of CSS properties define the behavior of an element.</p>
<p>So say you think there is too much space between the paragraphs in your blog post.  Right click on one of them, and select &#8220;Inspect Element&#8221; from the popup menu.  You should see a window pop up with all the code for the page in a collapsed view.</p>
<div id="attachment_68" class="wp-caption aligncenter" style="width: 310px"><a href="http://stateofthebart.com/wordpress/wp-content/uploads/2011/07/Screen-shot-2011-07-06-at-11.00.07-PM.png"><img class="size-medium wp-image-68" title="Screen shot 2011-07-06 at 11.00.07 PM" src="http://stateofthebart.com/wordpress/wp-content/uploads/2011/07/Screen-shot-2011-07-06-at-11.00.07-PM-300x199.png" alt="" width="300" height="199" /></a><p class="wp-caption-text">Web Inspector code view</p></div>
<p>Hovering over one of the tags in the inspector with your cursor will highlight that element in the browser, and show the dimensions of the box.  Light blue is padding, and dark blue is margin.</p>
<div id="attachment_69" class="wp-caption aligncenter" style="width: 310px"><a href="http://stateofthebart.com/wordpress/wp-content/uploads/2011/07/Screen-shot-2011-07-06-at-11.03.19-PM.png"><img class="size-medium wp-image-69" title="Screen shot 2011-07-06 at 11.03.19 PM" src="http://stateofthebart.com/wordpress/wp-content/uploads/2011/07/Screen-shot-2011-07-06-at-11.03.19-PM-300x152.png" alt="" width="300" height="152" /></a><p class="wp-caption-text">A visual representation of the element&#39;s dimensions, including padding and margin.</p></div>
<p>Clicking on the tag in Web Inspector also displays all of the CSS properties for that element, and what selectors were used for each one. This should give you a good idea where to start fiddling with your code to adjust the spacing.</p>
<div id="attachment_70" class="wp-caption aligncenter" style="width: 310px"><a href="http://stateofthebart.com/wordpress/wp-content/uploads/2011/07/Screen-shot-2011-07-06-at-11.05.53-PM.png"><img class="size-medium wp-image-70" title="Screen shot 2011-07-06 at 11.05.53 PM" src="http://stateofthebart.com/wordpress/wp-content/uploads/2011/07/Screen-shot-2011-07-06-at-11.05.53-PM-300x245.png" alt="" width="300" height="245" /></a><p class="wp-caption-text">The CSS selectors and properties for the highlighted element.</p></div>
<p>In this example, I can see that there are twenty pixels of padding at the top and ten pixels of padding at the bottom of each paragraph element. The paragraphs also have a bottom margin of 20px.</p>
<p>In WordPress, you can edit your stylesheet directly from the admin area.  Click on &#8220;Appearance&#8221; from the left-hand menu, and then select &#8220;Editor.&#8221; The first page that comes up should be the contents of style.css for your theme.  Search for the selector that you want to change (i.e. &#8220;#content .entry-content p&#8221;), edit the CSS, and click &#8220;Save File.&#8221;</p>
<p>A note about when to use margins and when to use padding: margins define the space between elements, and padding defines the space between an element and its border. For spacing between paragraphs, I prefer to use the margin property separate each section, as I want to put space <em>between</em> the paragraphs, not inside each one. Top and bottom margins also have<a href="http://reference.sitepoint.com/css/collapsingmargins"> some special rules</a>; if one block element has a bottom margin, and the next block element has a top margin, the margins collapse and amount of space is the greater of the two. This is especially useful when separating blocks of different font sizes and line heights (like a header and a paragraph), where it might be desirable to have a little more space after the first element, but not too much. This behavior can lead to confusion when dealing with floating elements, or margins at the very top of the page.</p>
<p><em>Have web design questions? Tweet me <a href="http://twitter.com/bartramnason">@bartramnason</a>, and I&#8217;ll do my best to answer.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://stateofthebart.com/2011/07/06/using-web-inspector-to-tweak-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Every pixel is sacred</title>
		<link>http://stateofthebart.com/2011/05/23/every-pixel-is-sacred/</link>
		<comments>http://stateofthebart.com/2011/05/23/every-pixel-is-sacred/#comments</comments>
		<pubDate>Mon, 23 May 2011 17:43:02 +0000</pubDate>
		<dc:creator>bartram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[annoying]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://stateofthebart.com/?p=45</guid>
		<description><![CDATA[Chrome UX team, stop trying to be so clever. The render area in any web browser should be inviolate.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve seen a couple of articles on <a href="http://arstechnica.com/open-source/news/2011/05/mozilla-follows-chrome-with-hidden-navigation-bar-experiment.ars">browsers trying to get rid of the navigation bar</a>. I understand the intent- give sites as much real estate as possible, and eliminate elements that can be a distraction for the user. Chrome is leading the way with this design pattern, with it&#8217;s integrated tab and title bar, and its elusive status bar.  When a page is loading, or the user hovers over a link, the status bar appears in the bottom left corner, covering whatever content is there.</p>
<div id="attachment_48" class="wp-caption aligncenter" style="width: 565px"><a href="http://stateofthebart.com/wordpress/wp-content/uploads/2011/05/Screen-shot-2011-05-23-at-1.23.39-PM.png"><img class="size-full wp-image-48" title="Chrome status bar" src="http://stateofthebart.com/wordpress/wp-content/uploads/2011/05/Screen-shot-2011-05-23-at-1.23.39-PM.png" alt="Chrome status bar" width="555" height="58" /></a><p class="wp-caption-text">Peek a boo, I can&#39;t see you.</p></div>
<p>If you move your mouse to that area, the status bar shifts down and outside of the window. If the window is full screen, the status bar will jump to the right side of the page.  When hovering over links, the URL in the status bar will often be truncated, implying that Chrome doesn&#8217;t really care if you read it, it&#8217;s only displaying a status bar because it&#8217;s <em>expected</em> to display a status bar. Similarly, Chrome provides a page search box in the top right corner, blocking whatever content the site may have there.</p>
<div id="attachment_47" class="wp-caption aligncenter" style="width: 410px"><a href="http://stateofthebart.com/wordpress/wp-content/uploads/2011/05/Screen-shot-2011-05-23-at-1.10.03-PM1.png"><img class="size-full wp-image-47" title="chrome-search-box" src="http://stateofthebart.com/wordpress/wp-content/uploads/2011/05/Screen-shot-2011-05-23-at-1.10.03-PM1.png" alt="Chrome 11 search box" width="400" height="168" /></a><p class="wp-caption-text">Chrome&#39;s search box overlaps a table&#39;s sticky header.</p></div>
<p>With web applications, I often try to design for whole screen.  The motivation is the same inside the browser window as outside: reduce clutter, and maximize the amount of information that can be displayed. This is especially important when dealing with smaller displays (of which there are two distinct, and rapidly diverging groups- smartphone/tablet users, and legacy corporate users, like point of sale terminals, running Windows 98 on 14&#8243; or 15&#8243; CRT displays. <a href="http://www.w3schools.com/browsers/browsers_display.asp">One estimate</a> shows 13% of users have a maximum resolution of 1024&#215;768, as of January 2011). The corners of the display are high value real estate, where one typically finds links for account info, logout, or help sections.  The tops and the bottoms of the browser window are also often used for sticky content like table headers and session status information (&#8220;You have 12 items in your shopping cart&#8221;).</p>
<div id="attachment_49" class="wp-caption aligncenter" style="width: 445px"><a href="http://stateofthebart.com/wordpress/wp-content/uploads/2011/05/Screen-shot-2011-05-23-at-1.28.55-PM.png"><img class="size-full wp-image-49" title="Screen shot 2011-05-23 at 1.28.55 PM" src="http://stateofthebart.com/wordpress/wp-content/uploads/2011/05/Screen-shot-2011-05-23-at-1.28.55-PM.png" alt="Status bar overlapping browser window." width="435" height="76" /></a><p class="wp-caption-text">Chrome, chrome, go away.</p></div>
<p>In these admittedly edge (ha!) use cases, Chrome&#8217;s UI behavior is either/or- you can either view the webpage, or interactwith the browser itself, but not both at the same time. A full width status bar, like Firefox, Safari and Internet Explorer use, always allows the user to scroll to the bottom of the page.  Firefox also puts its search box at the bottom of the window, while Safari puts its at the top.  However, neither one intersects with actual web page content.</p>
<p>So Google, the intent is admirable, but stop trying to be so clever.  The render area in any web browser should be inviolate.  Don&#8217;t cover up my content.</p>
<p>(If you want to sing along, the verse continues: &#8220;Every pixel is sacred, every pixel is great. If any pixel is wasted, Tufte gets quite irate.&#8221; Via <a href="http://korrespondence.blogspot.com/2011/03/mobile-webapps-and-jquery-mobile.html">this guy</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://stateofthebart.com/2011/05/23/every-pixel-is-sacred/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Redacted</title>
		<link>http://stateofthebart.com/2011/02/20/redacted/</link>
		<comments>http://stateofthebart.com/2011/02/20/redacted/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 02:42:44 +0000</pubDate>
		<dc:creator>bartram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[time management]]></category>

		<guid isPermaLink="false">http://stateofthebart.com/?p=33</guid>
		<description><![CDATA[I wrote a Chrome plugin that blocks everything Palin. It&#8217;s been a huge time saver.]]></description>
			<content:encoded><![CDATA[<div id="attachment_34" class="wp-caption alignright" style="width: 269px"><a href="http://stateofthebart.com/wordpress/wp-content/uploads/2011/02/palin-redacted.png"><img class="size-full wp-image-34 " title="palin-redacted" src="http://stateofthebart.com/wordpress/wp-content/uploads/2011/02/palin-redacted.png" alt="" width="259" height="457" /></a><p class="wp-caption-text">On a need to know basis.</p></div>
<p>I wrote a Chrome plugin that blocks everything Palin. It&#8217;s been a huge time saver.</p>
]]></content:encoded>
			<wfw:commentRss>http://stateofthebart.com/2011/02/20/redacted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating faux-buttons with CSS</title>
		<link>http://stateofthebart.com/2011/02/16/creating-faux-buttons-with-css/</link>
		<comments>http://stateofthebart.com/2011/02/16/creating-faux-buttons-with-css/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 17:36:12 +0000</pubDate>
		<dc:creator>bartram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[browser compatibility]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://stateofthebart.com/?p=27</guid>
		<description><![CDATA[Fixing the box model quirk with input elements in modern browsers.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying to simplify the way I do my buttons.  The <a href="http://www.filamentgroup.com/lab/update_styling_the_button_element_with_css_sliding_doors_now_with_image_spr/">sliding doors</a> method is starting to seem like overkill, since <a href="http://www.css3.info/preview/border-image/">border-image</a> is available in CSS3. Until that standard becomes ubiquitous, I&#8217;d like to keep things simple, by just using a background image and a border.  Recently, I created a style like this:</p>
<pre>
.button {
  background: url(../images/button.png) 0px 0px no-repeat;
  line-height: 20px;
  height: 20px;
  padding: 0 0.5em;
  border: solid 1px #BFDDEA;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
</pre>
<p>The background and the border work nicely together, and I can add hover states and active states to make the UI feel responsive. However, I ran into a problem using the .button class on &lt;a&gt; elements vs &lt;button&gt; elements- the heights don&#8217;t match:</p>
<div id="attachment_28" class="wp-caption alignnone" style="width: 206px"><a href="http://stateofthebart.com/wordpress/wp-content/uploads/2011/02/Screen-shot-2011-02-16-at-11.54.34-AM.png"><img class="size-full wp-image-28" title="Screen shot 2011-02-16 at 11.54.34 AM" src="http://stateofthebart.com/wordpress/wp-content/uploads/2011/02/Screen-shot-2011-02-16-at-11.54.34-AM.png" alt="Different button sizes" width="196" height="37" /></a><p class="wp-caption-text">Different button sizes with the same CSS but different HTML elements.</p></div>
<p>After some research, I discovered that &lt;button&gt; doesn&#8217;t use the <strong>content box model</strong> that we all know and endure. In Chrome, Safari, Firefox and Internet Explorer, the dimensions of the &lt;button&gt; element are calculated using the <strong>border box model</strong>- the total height of the button is the height specified in the CSS–padding and borders go <em>inside</em> the element. QuirksMode has a good overview of the different <a href="http://www.quirksmode.org/css/box.html">box models</a>.</p>
<p>To make the &lt;button&gt; behave in modern browsers, switch the box model with the &#8220;box-sizing&#8221; CSS property. Of course, every browser has it&#8217;s own implementation, so the actual code is:</p>
<pre>
.button {
  &hellip;
}
button.button {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
}
</pre>
<p>-ms-box-sizing is only supported by Internet Explorer 8, so buttons won&#8217;t be sized correctly in IE6 or IE7. Tough luck.</p>
<p>One more thing–to fix Firefox&#8217;s invisible border on input elements, add:</p>
<pre>
button.button::-moz-focus-inner {
  border: none;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://stateofthebart.com/2011/02/16/creating-faux-buttons-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In which I coin a new word</title>
		<link>http://stateofthebart.com/2010/12/23/in-which-i-coin-a-new-word/</link>
		<comments>http://stateofthebart.com/2010/12/23/in-which-i-coin-a-new-word/#comments</comments>
		<pubDate>Fri, 24 Dec 2010 02:37:18 +0000</pubDate>
		<dc:creator>bartram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Cr-48]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[new words]]></category>

		<guid isPermaLink="false">http://stateofthebart.com/?p=22</guid>
		<description><![CDATA[With some amount of begging, I received a Cr-48 in the mail just the other day- Google&#8217;s new laptop that comes with a web browser and not much else. It&#8217;s a pretty slick piece of hardware, all black and rubbery, fairly light, and no stickers or logos. It&#8217;s not available in stores, so I was [...]]]></description>
			<content:encoded><![CDATA[<p>With some amount of begging, I received a Cr-48 in the mail just the other day- Google&#8217;s new laptop that comes with a web browser and not much else. It&#8217;s a pretty slick piece of hardware, all black and rubbery, fairly light, and no stickers or logos. It&#8217;s not available in stores, so I was hoping to draw some attention, and maybe some web-ster jealousy at the coffee shop this evening, but the clientele seemed to interested in their conversations with other human beings to notice my new technology obsession. Losers.</p>
<p>G&#8217;s stated objective with this pilot program is to see how people use the device, and I&#8217;d hate to seem ungrateful by keeping my opinions to myself. First thought:</p>
<p><strong>You have to be OCD to store everything in the cloud.</strong></p>
<p>Passwords are my weakness. By switching to another computer, I lose access to all those yummy web services that I have created super secure, impossible to remember passwords for.</p>
<p><strong>It sucks if you lose your internet connection.</strong></p>
<p>The power flickered out at Octane, which reset their WiFi network, which caused me to lose the email I was composing in Gmail.</p>
<p>These two are mostly growing pains. I&#8217;ll get the passwords saved on the new goodness, and Google has been so generous as to include two <em>years</em> of (limited) Verizon 3G internet access- I just hadn&#8217;t set it up yet when the lights went off. But there is still flow chart my mind will have to execute when I leave my domicile- novelty won&#8217;t be enough to choose the Cr-48 over the other two laptops at my disposal time after time.</p>
<p>This permalink for this post was originally /2010/12/23/hitler/, for reasons which I choose to keep to myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://stateofthebart.com/2010/12/23/in-which-i-coin-a-new-word/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great idea #43</title>
		<link>http://stateofthebart.com/2010/09/28/great-idea-43/</link>
		<comments>http://stateofthebart.com/2010/09/28/great-idea-43/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 05:23:14 +0000</pubDate>
		<dc:creator>bartram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Great idea]]></category>

		<guid isPermaLink="false">http://stateofthebart.com/?p=19</guid>
		<description><![CDATA[Telephone speed dating. Like telephone, the game. Not on the telephone. In a group. Maybe you go with a friend. But instead of talking about yourself, you try to woo with other people&#8217;s stories. Maybe this idea needs more thought.]]></description>
			<content:encoded><![CDATA[<p>Telephone speed dating. Like telephone, the game. Not on the telephone. In a group. Maybe you go with a friend. But instead of talking about yourself, you try to woo with other people&#8217;s stories.</p>
<p>Maybe this idea needs more thought.</p>
]]></content:encoded>
			<wfw:commentRss>http://stateofthebart.com/2010/09/28/great-idea-43/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t even give it away</title>
		<link>http://stateofthebart.com/2010/09/25/cant-even-give-it-away/</link>
		<comments>http://stateofthebart.com/2010/09/25/cant-even-give-it-away/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 22:19:22 +0000</pubDate>
		<dc:creator>bartram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[just a thought]]></category>

		<guid isPermaLink="false">http://stateofthebart.com/?p=11</guid>
		<description><![CDATA[A neighbor is moving, and she offered me her encyclopedia set.  It took me a beat to remember what that is, and a little longer to remember the physical requirements of owning such an item.  We received a hand-me-down Encyclopedia Britannica when I was a kid.  It came in a nice wooden chest, and was [...]]]></description>
			<content:encoded><![CDATA[<p>A neighbor is moving, and she offered me her encyclopedia set.  It took me a beat to remember what that is, and a little longer to remember the physical requirements of owning such an item.  We received a hand-me-down Encyclopedia Britannica when I was a kid.  It came in a nice wooden chest, and was firmly set in the cold war.  Not only is it obsolesced by the Internet, it doesn&#8217;t even understand the concept.  For a body of knowledge, that&#8217;s a significant failing.</p>
<p>Say you&#8217;re flush with cash, and want to buy something nice for your living space.  The <a href="http://www.britannicastore.com/The-Encyclopaedia-Britannica-2010-Copyright/invt/printset10">latest, greatest Encyclopedia Britannica (revised in summer 2009) will cost you $1349.</a> But then you do some research, and learn that an iPad and two years of data comes in at about $100 less. Or you can get a Kindle for a couple hundred bucks, spend all your time reading Wikipedia, and use the rest of the money to buy drugs. Or whatever. It&#8217;s your money.</p>
<p>Of course, Encyclopedia Britannica&#8217;s entry for skateboarding was written Tony Hawk.</p>
]]></content:encoded>
			<wfw:commentRss>http://stateofthebart.com/2010/09/25/cant-even-give-it-away/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Shiny new toys</title>
		<link>http://stateofthebart.com/2010/09/16/shiny-new-toys/</link>
		<comments>http://stateofthebart.com/2010/09/16/shiny-new-toys/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 04:13:46 +0000</pubDate>
		<dc:creator>bartram</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[DSLR]]></category>
		<category><![CDATA[Nikon]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://stateofthebart.com/?p=7</guid>
		<description><![CDATA[It knocked my socks off when I saw what Vincent Laforet et al. could do with the first generation of digital cameras shooting video.  That technology allowed creative flexibility that was out of reach of most camcorders- extensive lens selections, better low-light capabilities, more fine grained exposure and color balance control, all in a smaller [...]]]></description>
			<content:encoded><![CDATA[<p>It knocked my socks off when I saw what <a href="http://vimeo.com/7152063">Vincent Laforet</a> et al. could do with the first generation of digital cameras shooting video.  That technology allowed creative flexibility that was out of reach of most camcorders- extensive lens selections, better low-light capabilities, more fine grained exposure and color balance control, all in a smaller package more familiar to photographers.  I&#8217;ve been itching to get my hands on one of these cameras for a while, but the horse I rode in on, Nikon, has moved slowly in this area.  I had a brief flirtation with a D300s, but the video felt like an after-thought- rolling shutter that made me sick to my stomach, and a clips that could be no more than five minutes long.  I used it for a couple of weeks, and then put it on eBay.</p>
<p>Today, Nikon officially announced the D7000.  Ignore, for a minute, the bewildering naming scheme.  The specs seem decent.  The <a href="http://www.youtube.com/watch?v=UNKtFkX29IE">video quality</a> isn&#8217;t bad.  The price point is impressive (I paid about the same amount for a film camera in college).  It&#8217;s a compromise.  This camera was designed to fill a spot in a corporation&#8217;s product line-up, not be too good or too bad so as to hurt sales of other products, and to be easily replaceable in a year or two.  It is the hallmark of planned obsolescence.</p>
<p>Digital camera makers must be acutely aware of the durability of their products.  Increasing the megapixel count is no longer enough to entice upgraders.  They add new features, like video, but try not to get too far ahead of the curve, with limited support for sound recording.  The companies are entitled to make their own decisions about what to offer customers; if I don&#8217;t like their selection, I can take my business elsewhere.  However, it&#8217;s disappointing to me to see Nikon pull their punches.</p>
<p>I&#8217;m eager to shoot more video, so this shiny new toy might wind up in my camera bag, despite it&#8217;s shortcomings.  The best camera is the one you have.</p>
]]></content:encoded>
			<wfw:commentRss>http://stateofthebart.com/2010/09/16/shiny-new-toys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
