<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Adam Kinney - Design Developer</title>
	<atom:link href="http://adamkinney.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://adamkinney.com/blog</link>
	<description>Making designs move using HTML5, Windows Phone and Windows 8.</description>
	<lastBuildDate>Wed, 16 May 2012 20:10:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on No Alert in WinJS! Use console or MessageDialog instead by wloescher</title>
		<link>http://adamkinney.com/blog/2011/12/05/no-alert-in-winjs-use-console-or-messagedialog-instead/comment-page-1/#comment-4827</link>
		<dc:creator>wloescher</dc:creator>
		<pubDate>Wed, 16 May 2012 20:10:47 +0000</pubDate>
		<guid isPermaLink="false">http://adamkinney.com/blog/?p=1238#comment-4827</guid>
		<description>And if you just can&#039;t break the habit, just declare this function in a global JavaScript file (e.g. default.js):
function alert(content, title) {
    var messageDialog = new Windows.UI.Popups.MessageDialog(content, title);
    messageDialog.showAsync();
}</description>
		<content:encoded><![CDATA[<p>And if you just can&#8217;t break the habit, just declare this function in a global JavaScript file (e.g. default.js):<br />
function alert(content, title) {<br />
    var messageDialog = new Windows.UI.Popups.MessageDialog(content, title);<br />
    messageDialog.showAsync();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on List of US States in JavaScript object notation by Adam Kinney</title>
		<link>http://adamkinney.com/blog/2012/04/25/list-of-us-states-in-javascript-object-notation/comment-page-1/#comment-4807</link>
		<dc:creator>Adam Kinney</dc:creator>
		<pubDate>Wed, 09 May 2012 17:20:47 +0000</pubDate>
		<guid isPermaLink="false">http://adamkinney.com/blog/?p=1332#comment-4807</guid>
		<description>Oh nice, thanks for sharing Michael!</description>
		<content:encoded><![CDATA[<p>Oh nice, thanks for sharing Michael!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on List of US States in JavaScript object notation by Michael Shafrir</title>
		<link>http://adamkinney.com/blog/2012/04/25/list-of-us-states-in-javascript-object-notation/comment-page-1/#comment-4806</link>
		<dc:creator>Michael Shafrir</dc:creator>
		<pubDate>Wed, 09 May 2012 17:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://adamkinney.com/blog/?p=1332#comment-4806</guid>
		<description>Thanks for this! By the way, the name for Guam shows up as &quot;GUAM GU&quot;. I think it should just be &quot;GUAM&quot;.

I created a Gist for two more forms of the states list
- titlecase form (first letter of every word is uppercase, remaining letters lowercase)
- dictionary form (using &lt;cite&gt;donovan&#039;s&lt;/cite&gt; suggestion)

https://gist.github.com/2646763</description>
		<content:encoded><![CDATA[<p>Thanks for this! By the way, the name for Guam shows up as &#8220;GUAM GU&#8221;. I think it should just be &#8220;GUAM&#8221;.</p>
<p>I created a Gist for two more forms of the states list<br />
- titlecase form (first letter of every word is uppercase, remaining letters lowercase)<br />
- dictionary form (using <cite>donovan&#8217;s</cite> suggestion)</p>
<p><a href="https://gist.github.com/2646763" >https://gist.github.com/2646763</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on List of US States in JavaScript object notation by Adam Kinney</title>
		<link>http://adamkinney.com/blog/2012/04/25/list-of-us-states-in-javascript-object-notation/comment-page-1/#comment-4752</link>
		<dc:creator>Adam Kinney</dc:creator>
		<pubDate>Thu, 26 Apr 2012 01:37:40 +0000</pubDate>
		<guid isPermaLink="false">http://adamkinney.com/blog/?p=1332#comment-4752</guid>
		<description>Hmm, surprised I didn&#039;t find that one. Guess my searching skills were sub par at the time.

For comparison purposes I wanted either all lowercase or all uppercase, the USPS site had all caps so that&#039;s what I ended up with.

My main use case here was to be able to find the abbreviation based on the state name.</description>
		<content:encoded><![CDATA[<p>Hmm, surprised I didn&#8217;t find that one. Guess my searching skills were sub par at the time.</p>
<p>For comparison purposes I wanted either all lowercase or all uppercase, the USPS site had all caps so that&#8217;s what I ended up with.</p>
<p>My main use case here was to be able to find the abbreviation based on the state name.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on List of US States in JavaScript object notation by James Manning</title>
		<link>http://adamkinney.com/blog/2012/04/25/list-of-us-states-in-javascript-object-notation/comment-page-1/#comment-4751</link>
		<dc:creator>James Manning</dc:creator>
		<pubDate>Thu, 26 Apr 2012 01:18:08 +0000</pubDate>
		<guid isPermaLink="false">http://adamkinney.com/blog/?p=1332#comment-4751</guid>
		<description>The all-caps names are making my eyes bleed! :)

FWIW, a quick google search turns up this (not-all-caps) version :)  It seems to be redundant with name and label, though (at least spot-checking a few)

http://bugs.dojotoolkit.org/attachment/ticket/7273/states.json</description>
		<content:encoded><![CDATA[<p>The all-caps names are making my eyes bleed! <img src='http://adamkinney.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>FWIW, a quick google search turns up this (not-all-caps) version <img src='http://adamkinney.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   It seems to be redundant with name and label, though (at least spot-checking a few)</p>
<p><a href="http://bugs.dojotoolkit.org/attachment/ticket/7273/states.json" >http://bugs.dojotoolkit.org/attachment/ticket/7273/states.json</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on List of US States in JavaScript object notation by Adam Kinney</title>
		<link>http://adamkinney.com/blog/2012/04/25/list-of-us-states-in-javascript-object-notation/comment-page-1/#comment-4746</link>
		<dc:creator>Adam Kinney</dc:creator>
		<pubDate>Wed, 25 Apr 2012 18:13:39 +0000</pubDate>
		<guid isPermaLink="false">http://adamkinney.com/blog/?p=1332#comment-4746</guid>
		<description>Yep, that&#039;s true. I should have mentioned I am just using this as a static array in my project, I&#039;m not passing it through a service.</description>
		<content:encoded><![CDATA[<p>Yep, that&#8217;s true. I should have mentioned I am just using this as a static array in my project, I&#8217;m not passing it through a service.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on List of US States in JavaScript object notation by Jon</title>
		<link>http://adamkinney.com/blog/2012/04/25/list-of-us-states-in-javascript-object-notation/comment-page-1/#comment-4743</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Wed, 25 Apr 2012 17:28:32 +0000</pubDate>
		<guid isPermaLink="false">http://adamkinney.com/blog/?p=1332#comment-4743</guid>
		<description>Shouldnt the keys be in quotes to be valid json?</description>
		<content:encoded><![CDATA[<p>Shouldnt the keys be in quotes to be valid json?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on List of US States in JavaScript object notation by donavon</title>
		<link>http://adamkinney.com/blog/2012/04/25/list-of-us-states-in-javascript-object-notation/comment-page-1/#comment-4740</link>
		<dc:creator>donavon</dc:creator>
		<pubDate>Wed, 25 Apr 2012 15:04:21 +0000</pubDate>
		<guid isPermaLink="false">http://adamkinney.com/blog/?p=1332#comment-4740</guid>
		<description>Depending on what you are looking for, you may want the object keyed off of abbreviation:
&lt;code&gt;
var states = {};
usStates.forEach(function(s){states[s.abbreviation]=s.name});
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Depending on what you are looking for, you may want the object keyed off of abbreviation:<br />
<code><br />
var states = {};<br />
usStates.forEach(function(s){states[s.abbreviation]=s.name});<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows 8 AppBarButtonStyles enumerated and visualized by Adam Kinney</title>
		<link>http://adamkinney.com/blog/2012/03/05/windows-8-appbarbuttonstyles-enumerated-and-visualized/comment-page-1/#comment-4697</link>
		<dc:creator>Adam Kinney</dc:creator>
		<pubDate>Mon, 16 Apr 2012 17:36:23 +0000</pubDate>
		<guid isPermaLink="false">http://adamkinney.com/blog/?p=1295#comment-4697</guid>
		<description>You change the text by changing the &quot;label&quot; property:

&lt;button data-win-options=&quot;{ label:&#039;New Name&#039; }&quot; &gt;&lt;/button&gt;</description>
		<content:encoded><![CDATA[<p>You change the text by changing the &#8220;label&#8221; property:</p>
<p>&lt;button data-win-options=&#8221;{ label:&#8217;New Name&#8217; }&#8221; &gt;&lt;/button&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows 8 AppBarButtonStyles enumerated and visualized by Kroltan Bahuman</title>
		<link>http://adamkinney.com/blog/2012/03/05/windows-8-appbarbuttonstyles-enumerated-and-visualized/comment-page-1/#comment-4692</link>
		<dc:creator>Kroltan Bahuman</dc:creator>
		<pubDate>Sat, 14 Apr 2012 14:31:56 +0000</pubDate>
		<guid isPermaLink="false">http://adamkinney.com/blog/?p=1295#comment-4692</guid>
		<description>How can I change the text under the buttons?</description>
		<content:encoded><![CDATA[<p>How can I change the text under the buttons?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

