<?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 mtrpcic.net</title>
	<atom:link href="http://mtrpcic.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mtrpcic.net</link>
	<description>Writing software since 1932</description>
	<lastBuildDate>Sat, 04 Feb 2012 16:31:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
	<item>
		<title>Comment on Hashbang URIs &#8211; They&#8217;re not as bad as you think; really. by t.cretin</title>
		<link>http://mtrpcic.net/2011/02/fragment-uris-theyre-not-as-bad-as-you-think-really/#comment-168</link>
		<dc:creator>t.cretin</dc:creator>
		<pubDate>Sat, 04 Feb 2012 16:31:42 +0000</pubDate>
		<guid isPermaLink="false">http://mtrpcic.net/?p=59#comment-168</guid>
		<description>The reality is that businesses want more responsive websites. Developers are forced to create hacks that support these objectives. Your choice is to name call the &quot;elitists&quot; and not accept this new reality, or you can be part of the solution and improve the technology so we don&#039;t have to use hacky hashbangs. It&#039;s simple supply and demand. Who&#039;s the real elitist here?</description>
		<content:encoded><![CDATA[<p>The reality is that businesses want more responsive websites. Developers are forced to create hacks that support these objectives. Your choice is to name call the &#8220;elitists&#8221; and not accept this new reality, or you can be part of the solution and improve the technology so we don&#8217;t have to use hacky hashbangs. It&#8217;s simple supply and demand. Who&#8217;s the real elitist here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hashbang URIs &#8211; They&#8217;re not as bad as you think; really. by Josh Powell</title>
		<link>http://mtrpcic.net/2011/02/fragment-uris-theyre-not-as-bad-as-you-think-really/#comment-167</link>
		<dc:creator>Josh Powell</dc:creator>
		<pubDate>Mon, 30 Jan 2012 18:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://mtrpcic.net/?p=59#comment-167</guid>
		<description>Actually, the way Google does this allows an incredible power for developing and crawling websites.  Have users interact with this:

http://foo.com/#!/some/page

But when a spider crawls the site use this:
http://foo.com/?_escaped_fragment=/some/page

and have the page serve up a straight up html implementation optimized view showing whatever SEO code you want.</description>
		<content:encoded><![CDATA[<p>Actually, the way Google does this allows an incredible power for developing and crawling websites.  Have users interact with this:</p>
<p><a href="http://foo.com/#" rel="nofollow">http://foo.com/#</a>!/some/page</p>
<p>But when a spider crawls the site use this:<br />
<a href="http://foo.com/?_escaped_fragment=/some/page" rel="nofollow">http://foo.com/?_escaped_fragment=/some/page</a></p>
<p>and have the page serve up a straight up html implementation optimized view showing whatever SEO code you want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hashbang URIs &#8211; They&#8217;re not as bad as you think; really. by Tobias</title>
		<link>http://mtrpcic.net/2011/02/fragment-uris-theyre-not-as-bad-as-you-think-really/#comment-153</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Sat, 14 Jan 2012 22:14:47 +0000</pubDate>
		<guid isPermaLink="false">http://mtrpcic.net/?p=59#comment-153</guid>
		<description>Cscheid and jack, you are both half wrong... because, there is not necessarily a second round trip if the content is already loaded and only reframed by the javascript that manages it, like TiddlyWiki would.</description>
		<content:encoded><![CDATA[<p>Cscheid and jack, you are both half wrong&#8230; because, there is not necessarily a second round trip if the content is already loaded and only reframed by the javascript that manages it, like TiddlyWiki would.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hashbang URIs &#8211; They&#8217;re not as bad as you think; really. by Thomas Wrobel</title>
		<link>http://mtrpcic.net/2011/02/fragment-uris-theyre-not-as-bad-as-you-think-really/#comment-148</link>
		<dc:creator>Thomas Wrobel</dc:creator>
		<pubDate>Fri, 23 Sep 2011 18:59:52 +0000</pubDate>
		<guid isPermaLink="false">http://mtrpcic.net/?p=59#comment-148</guid>
		<description>Hashbangs (#!) and (_escaped_fragment_) are specificly about supplying search engines with static versions of the page, and allowing the search engine to understand the equilvence of the #! links and the static content.

The end user should -never-see the &quot;escaped_fragment&quot; url, so the idea its messy is not really relievant. It could be _sussage_ for all it matters, its just a string to identify that what follows is a...umm...escaped fragment.

History tokens/fragments by themselfs, meanwhile, are a perfectly fine way to exchange and store states without needing cookies or servers to know what your looking at.  
If you really need universal links in your app that work even for people without javascript, then you can do it....but your app would need to supply a &quot;?=&quot; style link, which could be auto-converted to a # when people have javascript on.

Honestly though, the idea of somehow the net was &quot;better&quot; before apps like GoogleMaps or Gmail is just nuts.

Streaming data makes a lot of sense for many different use&#039;s, and HTML as a layout/presentation layer can work just dandy with data being streamed too it.

&quot;Which means I have to program code in order to get on the effing web?&quot;

No, it doesnt. I dont even know what you mean by that statement.</description>
		<content:encoded><![CDATA[<p>Hashbangs (#!) and (_escaped_fragment_) are specificly about supplying search engines with static versions of the page, and allowing the search engine to understand the equilvence of the #! links and the static content.</p>
<p>The end user should -never-see the &#8220;escaped_fragment&#8221; url, so the idea its messy is not really relievant. It could be _sussage_ for all it matters, its just a string to identify that what follows is a&#8230;umm&#8230;escaped fragment.</p>
<p>History tokens/fragments by themselfs, meanwhile, are a perfectly fine way to exchange and store states without needing cookies or servers to know what your looking at.<br />
If you really need universal links in your app that work even for people without javascript, then you can do it&#8230;.but your app would need to supply a &#8220;?=&#8221; style link, which could be auto-converted to a # when people have javascript on.</p>
<p>Honestly though, the idea of somehow the net was &#8220;better&#8221; before apps like GoogleMaps or Gmail is just nuts.</p>
<p>Streaming data makes a lot of sense for many different use&#8217;s, and HTML as a layout/presentation layer can work just dandy with data being streamed too it.</p>
<p>&#8220;Which means I have to program code in order to get on the effing web?&#8221;</p>
<p>No, it doesnt. I dont even know what you mean by that statement.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hashbang URIs &#8211; They&#8217;re not as bad as you think; really. by Stu Sklinar</title>
		<link>http://mtrpcic.net/2011/02/fragment-uris-theyre-not-as-bad-as-you-think-really/#comment-145</link>
		<dc:creator>Stu Sklinar</dc:creator>
		<pubDate>Mon, 05 Sep 2011 17:28:25 +0000</pubDate>
		<guid isPermaLink="false">http://mtrpcic.net/?p=59#comment-145</guid>
		<description>@PaulZ nobody said it was better... like everything there is a time and a place for everything...


Im in the middle of making a internal Html5 ipad app, that HAS to have that app feel. using hashbang urls with PathJS allows us to dynamically load content. without moving away from the page, giving that app feel our client wants.

The links also preserve state too - yes its two requests- but the main page is loaded then the hash handled. it being internal, we don&#039;t worry too much as the multiple requests ...</description>
		<content:encoded><![CDATA[<p>@PaulZ nobody said it was better&#8230; like everything there is a time and a place for everything&#8230;</p>
<p>Im in the middle of making a internal Html5 ipad app, that HAS to have that app feel. using hashbang urls with PathJS allows us to dynamically load content. without moving away from the page, giving that app feel our client wants.</p>
<p>The links also preserve state too &#8211; yes its two requests- but the main page is loaded then the hash handled. it being internal, we don&#8217;t worry too much as the multiple requests &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hashbang URIs &#8211; They&#8217;re not as bad as you think; really. by Jack</title>
		<link>http://mtrpcic.net/2011/02/fragment-uris-theyre-not-as-bad-as-you-think-really/#comment-124</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Tue, 02 Aug 2011 16:25:52 +0000</pubDate>
		<guid isPermaLink="false">http://mtrpcic.net/?p=59#comment-124</guid>
		<description>The hash portion of a URL is NOT sent to the server, ergo cschneid is right ;-)</description>
		<content:encoded><![CDATA[<p>The hash portion of a URL is NOT sent to the server, ergo cschneid is right <img src='http://mtrpcic.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PathJS and HTML5 History &#8211; A Match Made in Heaven by mike</title>
		<link>http://mtrpcic.net/2011/07/pathjs-and-html5-history-a-match-made-in-heaven/#comment-122</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Mon, 25 Jul 2011 03:14:46 +0000</pubDate>
		<guid isPermaLink="false">http://mtrpcic.net/?p=84#comment-122</guid>
		<description>By default, it will not fall back to hashtags if HTML5 isn&#039;t supported.  This is because some users of the library don&#039;t &lt;strong&gt;want&lt;/strong&gt; that functionality.  Many users may want to use PathJS and the HTML5 API for simply client0side routing that adds nice transitions to their site, but won&#039;t break for users without JavaScript.  If you want PathJS to fall back to hashtags if HTML5 isn&#039;t supported, you need to write two sets of routes, one with a hashtag, and one without.  Each set of routes should be defined within a method.  Upon page load, simply check if the HTML5 History API is supported, and call the appropriate method to define your desired routes.  I&#039;ll look into adding this as a feature in a future update.</description>
		<content:encoded><![CDATA[<p>By default, it will not fall back to hashtags if HTML5 isn&#8217;t supported.  This is because some users of the library don&#8217;t <strong>want</strong> that functionality.  Many users may want to use PathJS and the HTML5 API for simply client0side routing that adds nice transitions to their site, but won&#8217;t break for users without JavaScript.  If you want PathJS to fall back to hashtags if HTML5 isn&#8217;t supported, you need to write two sets of routes, one with a hashtag, and one without.  Each set of routes should be defined within a method.  Upon page load, simply check if the HTML5 History API is supported, and call the appropriate method to define your desired routes.  I&#8217;ll look into adding this as a feature in a future update.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PathJS and HTML5 History &#8211; A Match Made in Heaven by Kevin</title>
		<link>http://mtrpcic.net/2011/07/pathjs-and-html5-history-a-match-made-in-heaven/#comment-121</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Mon, 25 Jul 2011 02:48:51 +0000</pubDate>
		<guid isPermaLink="false">http://mtrpcic.net/?p=84#comment-121</guid>
		<description>Will path fallback to hashbang if html5 isn&#039;t supported?</description>
		<content:encoded><![CDATA[<p>Will path fallback to hashbang if html5 isn&#8217;t supported?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hashbang URIs &#8211; They&#8217;re not as bad as you think; really. by Was sind &#8220;Hash-Bang&#8221; (#!) URLs und worum geht es da? &#124; Code-Inside Blog</title>
		<link>http://mtrpcic.net/2011/02/fragment-uris-theyre-not-as-bad-as-you-think-really/#comment-120</link>
		<dc:creator>Was sind &#8220;Hash-Bang&#8221; (#!) URLs und worum geht es da? &#124; Code-Inside Blog</dc:creator>
		<pubDate>Sun, 24 Jul 2011 22:35:03 +0000</pubDate>
		<guid isPermaLink="false">http://mtrpcic.net/?p=59#comment-120</guid>
		<description>[...] gab vor einiger Zeit eine Diskussion ob diese Art der URLs gut oder schlecht sind, allerdings ist die Rettung in [...]</description>
		<content:encoded><![CDATA[<p>[...] gab vor einiger Zeit eine Diskussion ob diese Art der URLs gut oder schlecht sind, allerdings ist die Rettung in [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hashbang URIs &#8211; They&#8217;re not as bad as you think; really. by Bookmarks for 24th-25th February 2011 &#124; Sumit Paul-Choudhury</title>
		<link>http://mtrpcic.net/2011/02/fragment-uris-theyre-not-as-bad-as-you-think-really/#comment-119</link>
		<dc:creator>Bookmarks for 24th-25th February 2011 &#124; Sumit Paul-Choudhury</dc:creator>
		<pubDate>Fri, 15 Jul 2011 07:53:30 +0000</pubDate>
		<guid isPermaLink="false">http://mtrpcic.net/?p=59#comment-119</guid>
		<description>[...] Hashbang URIs – They’re not as bad as you think; really. &#8211; #! ! [...]</description>
		<content:encoded><![CDATA[<p>[...] Hashbang URIs – They’re not as bad as you think; really. &#8211; #! ! [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

