<?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>Endogenous - CaiLog &#187; How-To</title>
	<atom:link href="http://en.dogeno.us/cat/diy-space/feed/" rel="self" type="application/rss+xml" />
	<link>http://en.dogeno.us</link>
	<description>thoughts about life and science, blogged by Liang Cai &#124; cail.cn</description>
	<lastBuildDate>Mon, 06 Feb 2012 16:01:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Performance Best Practices for Web Developers - Even Faster Web Sites</title>
		<link>http://en.dogeno.us/2011/11/performance-best-practices-for-web-developers-even-faster-web-sites/</link>
		<comments>http://en.dogeno.us/2011/11/performance-best-practices-for-web-developers-even-faster-web-sites/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 14:30:23 +0000</pubDate>
		<dc:creator>cail.cn</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[listen]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[other]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://en.dogeno.us/?p=7824</guid>
		<description><![CDATA[Last time I was able to listen to Steve's talk in #wordcamp SF&#160;[&#8230;]]]></description>
			<content:encoded><![CDATA[<p>Last time I was able to listen to Steve's talk in <a href="http://en.dogeno.us/2009/05/wordcamp-san-francisco-2009-recap/">#wordcamp SF</a>, and learnt a lot</p>
<p><img src="http://en.dogeno.us/wp-content/uploads/2011/11/e60fe_.jpg" alt="" title="e60fe_" width="400" height="526" class="alignnone size-full wp-image-7825" /><br />
Finally, I got chance to read his book, and below are things I learnt this time.</p>
<ul>
<li>All rely on Ajax not good; not to send all data to client using Ajax (need django template list)</li>
<li>Split one javascript into two, one required before onLoad, the other delay loading and processing</li>
<li>old Google Analytics uses document.write Script Tag to asynchronically load javascript, which was blocking the subsequence DOM loading; now, it uses Script DOM Element</li>
<li>fast inline script execute by setTimeout(init, 0), slow inline script execute by onLoad</li>
<li>inline script should before CSS, or after all other resources</li>
<li>any global javascript variable used more than twice should define a local variable; any javascript object property used more than twice should define a local variable</li>
<li>in javascript for loop, -- is faster than ++</li>
<li>simultaneously request more than 2 resources from the same domain will introduce request competetion</li>
<li>css selector: ID > class > type > adjacent > child > descendant > universal</li>
</ul>
<p>KEEP LEARNING EVERYDAY</p>

<hr /><p>&copy;&nbsp;2012&nbsp;<a href="http://en.dogeno.us">Endogenous - CaiLog</a>. blogged by cail.cn - 35cd076bdd09fcbdfe7ca24eb8f93900</p>

	Tags: <a href="http://en.dogeno.us/tag/all/" title="all" rel="tag">all</a>, <a href="http://en.dogeno.us/tag/book/" title="book" rel="tag">book</a>, <a href="http://en.dogeno.us/tag/css/" title="css" rel="tag">css</a>, <a href="http://en.dogeno.us/tag/google/" title="google" rel="tag">google</a>, <a href="http://en.dogeno.us/tag/javascript/" title="javascript" rel="tag">javascript</a>, <a href="http://en.dogeno.us/tag/listen/" title="listen" rel="tag">listen</a>, <a href="http://en.dogeno.us/tag/local/" title="local" rel="tag">local</a>, <a href="http://en.dogeno.us/tag/me/" title="me" rel="tag">me</a>, <a href="http://en.dogeno.us/tag/other/" title="other" rel="tag">other</a>, <a href="http://en.dogeno.us/tag/web/" title="web" rel="tag">web</a><br />
]]></content:encoded>
			<wfw:commentRss>http://en.dogeno.us/2011/11/performance-best-practices-for-web-developers-even-faster-web-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix &quot;Signature does not match&quot; error, when POST to douban</title>
		<link>http://en.dogeno.us/2011/11/7820/</link>
		<comments>http://en.dogeno.us/2011/11/7820/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 05:38:15 +0000</pubDate>
		<dc:creator>cail.cn</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[nature]]></category>
		<category><![CDATA[plan]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://en.dogeno.us/?p=7820</guid>
		<description><![CDATA[Sometime, Google just don't work; you have to dive deep into&#160;[&#8230;]]]></description>
			<content:encoded><![CDATA[<p><em>Sometime, Google just don't work; you have to dive deep into the sample code.</em></p>
<p>The error I had is to send POST requests to <a href="http://www.douban.com/">douban</a></p>
<blockquote><div class="inblockquote">
<p>Signature does not match. Expected: xxxx</p>
</div>
</blockquote>
<p>All the GET requests are working (obviously my tokens are correct), but not POST.</p>
<p>All search results are suggesting that <strong>douban</strong> doesn't implant the correct OAuth 1.0, but that's not the case!<br />
There is one sentence in the manual</p>
<blockquote><div class="inblockquote">
<p>
进行POST、PUT、DELETE请求时，豆瓣暂时不支持使用在url中或者post form中传递OAuth参数。因此你只能选择在header中传递OAuth参数。
</p>
</div>
</blockquote>
<p>It does emphasize to put authorization code in the header, but also indicates that douban doesn't support form</p>
<pre><code>'Content-Type': 'application/x-www-form-urlencoded'</code></pre>
<p>which is a default in <a href="https://github.com/simplegeo/python-oauth2">python oauth2 library</a></p>
<p>The fix is easy, just indicate the <strong>Content-Type</strong>. There is no need to tweak the oauth2, nor to try to match it suggested basestring (that was what I did and was completely a waste of time, because I made perfect match basestring, but still no luck). <em>Until...</em></p>
<pre><code>headers = request.to_header()
headers['Content-Type'] = 'application/atom+xml; charset=utf-8'</code></pre>
<p><img src="http://en.dogeno.us/wp-content/uploads/2011/11/douban1.jpeg" alt="" title="douban1" width="300" height="225" class="alignnone size-full wp-image-7822" /><br />
<img src="http://en.dogeno.us/wp-content/uploads/2011/11/lg_main_a7.png" alt="" title="lg_main_a7" width="144" height="29" class="alignnone size-full wp-image-7821" /></p>

<hr /><p>&copy;&nbsp;2012&nbsp;<a href="http://en.dogeno.us">Endogenous - CaiLog</a>. blogged by cail.cn - 35cd076bdd09fcbdfe7ca24eb8f93900</p>

	Tags: <a href="http://en.dogeno.us/tag/all/" title="all" rel="tag">all</a>, <a href="http://en.dogeno.us/tag/application/" title="application" rel="tag">application</a>, <a href="http://en.dogeno.us/tag/google/" title="google" rel="tag">google</a>, <a href="http://en.dogeno.us/tag/me/" title="me" rel="tag">me</a>, <a href="http://en.dogeno.us/tag/nature/" title="nature" rel="tag">nature</a>, <a href="http://en.dogeno.us/tag/plan/" title="plan" rel="tag">plan</a>, <a href="http://en.dogeno.us/tag/work/" title="work" rel="tag">work</a><br />
]]></content:encoded>
			<wfw:commentRss>http://en.dogeno.us/2011/11/7820/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Mail, Contact and Calendar on iPhone with iCloud, and real time syncing</title>
		<link>http://en.dogeno.us/2011/11/google-mail-contact-and-calendar-on-iphone-with-icloud-and-real-time-syncing/</link>
		<comments>http://en.dogeno.us/2011/11/google-mail-contact-and-calendar-on-iphone-with-icloud-and-real-time-syncing/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 19:31:54 +0000</pubDate>
		<dc:creator>cail.cn</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[other]]></category>

		<guid isPermaLink="false">http://en.dogeno.us/?p=7808</guid>
		<description><![CDATA[iCould is good. But, I still find the services from Google ar&#160;[&#8230;]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.dogeno.us/wp-content/uploads/2011/11/Screen-shot-2011-11-23-at-11.16.43-AM.png" target="blank" rel="shadowbox"><img src="http://en.dogeno.us/wp-content/uploads/2011/11/Screen-shot-2011-11-23-at-11.16.43-AM.png" alt="Screen shot 2011-11-23 at 11.16.43 AM.png" border="0" width="452" height="281" /></a><br />
iCould is good. But, I still find the services from Google are better.<br />
But, how to get <strong>Google Mail, Contact and Calendar</strong> on to iPhone with iCloud enabled?</p>
<p><a href="http://www.google.com/support/forum/p/gmail/thread?tid=0610650f9bcb357f&#038;hl=en">IT CAN BE DONE!</a></p>
<p>1. Add your gmail account as a <strong>GMAIL</strong> account in iPhone which will enable the mail and calendar syncing</p>
<p>2. Again, second time, add your gmail account into iPhone, but as an <strong>EXCHANGE</strong> account, with <strong>m.google.com</strong> as server, empty domain, full email address as user name, and disable mail and calendar. Google's exchange will sync the contact to your phone! <em>WOW</em> Why not use exchange to handle all three? As stated in the original discussion</p>
<blockquote><div class="inblockquote">
<p>From what I understand, using Exchange to sync gmail and calendar is battery inefficient compared to using the Gmail account type. So, that's why I think it's better to use the two different account types. Otherwise, one could just use the Exchange account type and not mess with the Gmail account type. Feel free to correct me if I'm wrong on any of that!
</p>
</div>
</blockquote>
<p>There is one drawback. What you will find in your iPhone contact is that there are two groups, one from iCloud, which is a mirror of things in Mac Address Book; the other from Google. If view them all, you will see many duplicates. <em>Oh well, at least have to stay that way for now...</em></p>

<hr /><p>&copy;&nbsp;2012&nbsp;<a href="http://en.dogeno.us">Endogenous - CaiLog</a>. blogged by cail.cn - 35cd076bdd09fcbdfe7ca24eb8f93900</p>

	Tags: <a href="http://en.dogeno.us/tag/all/" title="all" rel="tag">all</a>, <a href="http://en.dogeno.us/tag/book/" title="book" rel="tag">book</a>, <a href="http://en.dogeno.us/tag/google/" title="google" rel="tag">google</a>, <a href="http://en.dogeno.us/tag/iphone/" title="iphone" rel="tag">iphone</a>, <a href="http://en.dogeno.us/tag/me/" title="me" rel="tag">me</a>, <a href="http://en.dogeno.us/tag/other/" title="other" rel="tag">other</a><br />
]]></content:encoded>
			<wfw:commentRss>http://en.dogeno.us/2011/11/google-mail-contact-and-calendar-on-iphone-with-icloud-and-real-time-syncing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross domain request, just not work in IE reliably</title>
		<link>http://en.dogeno.us/2011/11/cross-domain-request-just-not-work-in-ie-reliably/</link>
		<comments>http://en.dogeno.us/2011/11/cross-domain-request-just-not-work-in-ie-reliably/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 03:58:08 +0000</pubDate>
		<dc:creator>cail.cn</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[sex]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://en.dogeno.us/?p=7798</guid>
		<description><![CDATA[It is very sad!
Below is my code. The server has " Access-Cont&#160;[&#8230;]]]></description>
			<content:encoded><![CDATA[<p><em>It is very sad!</em><br />
Below is my code. The server has " Access-Control-Allow-Origin: * " in its head.</p>
<pre><code>var xdr = new XDomainRequest();
if (xdr) {
  xdr.open('get', url);
  xdr.onload = function () {
    var xml = $.parseXML(xdr.responseText);
    do_something_with(xml);
  };
  xdr.onerror = function () { alert('bug in IE: fail to load'); }
  xdr.ontimeout = function () { alert('bug in IE: time out'); }
  xdr.send();
} else {
  alert('bug in IE: fail to start');
}</code></pre>
<p><img src="http://en.dogeno.us/wp-content/uploads/2011/11/ie_sucks_300.jpg" alt="" title="ie_sucks_300" width="300" height="270" class="alignnone size-full wp-image-7799" /></p>

<hr /><p>&copy;&nbsp;2012&nbsp;<a href="http://en.dogeno.us">Endogenous - CaiLog</a>. blogged by cail.cn - 35cd076bdd09fcbdfe7ca24eb8f93900</p>

	Tags: <a href="http://en.dogeno.us/tag/all/" title="all" rel="tag">all</a>, <a href="http://en.dogeno.us/tag/art/" title="art" rel="tag">art</a>, <a href="http://en.dogeno.us/tag/fun/" title="fun" rel="tag">fun</a>, <a href="http://en.dogeno.us/tag/me/" title="me" rel="tag">me</a>, <a href="http://en.dogeno.us/tag/sex/" title="sex" rel="tag">sex</a>, <a href="http://en.dogeno.us/tag/work/" title="work" rel="tag">work</a><br />
]]></content:encoded>
			<wfw:commentRss>http://en.dogeno.us/2011/11/cross-domain-request-just-not-work-in-ie-reliably/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phone number to call when porting to ATT</title>
		<link>http://en.dogeno.us/2011/11/phone-number-to-call-when-porting-to-att/</link>
		<comments>http://en.dogeno.us/2011/11/phone-number-to-call-when-porting-to-att/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 19:50:14 +0000</pubDate>
		<dc:creator>cail.cn</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[people]]></category>

		<guid isPermaLink="false">http://en.dogeno.us/?p=7795</guid>
		<description><![CDATA[Because the thing above, I have to switch my carrier from Pag&#160;[&#8230;]]]></description>
			<content:encoded><![CDATA[<p><img src="http://en.dogeno.us/wp-content/uploads/2011/11/2011-11-06_11-45-32.png" alt="" title="2011-11-06_11-45-32" width="367" height="440" class="alignnone size-full wp-image-7796" /><br />
Because the thing above, I have to switch my carrier from PagePlus to ATT.<br />
And I went through a lot of waiting time and couple phone calls to make it done.<br />
Here are they: 18003310500 - 18668027560 - 18663190749.</p>
<p>If you just want to port, the middle phone number is what you need.<br />
<strong>1 866 802 7560</strong> - people over the line was very helpful!</p>

<hr /><p>&copy;&nbsp;2012&nbsp;<a href="http://en.dogeno.us">Endogenous - CaiLog</a>. blogged by cail.cn - 35cd076bdd09fcbdfe7ca24eb8f93900</p>

	Tags: <a href="http://en.dogeno.us/tag/all/" title="all" rel="tag">all</a>, <a href="http://en.dogeno.us/tag/me/" title="me" rel="tag">me</a>, <a href="http://en.dogeno.us/tag/people/" title="people" rel="tag">people</a><br />
]]></content:encoded>
			<wfw:commentRss>http://en.dogeno.us/2011/11/phone-number-to-call-when-porting-to-att/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shrink an Amazon EBS root volume with minimal instance downtime</title>
		<link>http://en.dogeno.us/2011/10/shrink-an-amazon-ebs-root-volume-with-minimal-instance-downtime/</link>
		<comments>http://en.dogeno.us/2011/10/shrink-an-amazon-ebs-root-volume-with-minimal-instance-downtime/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 22:15:29 +0000</pubDate>
		<dc:creator>cail.cn</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[running]]></category>

		<guid isPermaLink="false">http://en.dogeno.us/?p=7775</guid>
		<description><![CDATA[Although my migration attempt cross different regions fai&#160;[&#8230;]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.dogeno.us/wp-content/uploads/2011/10/AWS_LOGO_CMYK.png"><img src="http://en.dogeno.us/wp-content/uploads/2011/10/AWS_LOGO_CMYK-452x164.png" alt="" title="AWS_LOGO_CMYK" width="452" height="164" class="alignnone size-medium wp-image-7781" /></a></p>
<p>Although <a href="http://en.dogeno.us/2011/10/this-blog-is-now-on-amazon-ec2/">my migration attempt</a> cross different regions failed,<br />
I successfully shrink the os volume from 8G to 4G. Here is how:</p>
<ol>
<li>snapshot the running os volume</li>
<li>create a new volume use the snapshot, and attach to /dev/big</li>
<li>create an empty volume with smaller size, and attach to /dev/small</li>
<li>operate on the big volume
<pre><code>e2fsck -f /dev/big

resize2fs -M -p /dev/big
# the command above shrink the volume</code></pre>
</li>
<li>mirror the content from the big to the small volume
<pre><code>dd if=/dev/big ibs=16M of=/dev/small obs=16M count=128
# count needs to be adjusted; mine was 415315 4k block, which was about 101 16M block

resize2fs -p /dev/small
# the command above expand the volume to full space

e2fsck -f /dev/small</code></pre>
</li>
<li>stop the running instance, replace the os volume with the small and all set</li>
</ol>

<hr /><p>&copy;&nbsp;2012&nbsp;<a href="http://en.dogeno.us">Endogenous - CaiLog</a>. blogged by cail.cn - 35cd076bdd09fcbdfe7ca24eb8f93900</p>

	Tags: <a href="http://en.dogeno.us/tag/all/" title="all" rel="tag">all</a>, <a href="http://en.dogeno.us/tag/me/" title="me" rel="tag">me</a>, <a href="http://en.dogeno.us/tag/running/" title="running" rel="tag">running</a><br />
]]></content:encoded>
			<wfw:commentRss>http://en.dogeno.us/2011/10/shrink-an-amazon-ebs-root-volume-with-minimal-instance-downtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix error #15 This method must be called with an app access_token - facebook</title>
		<link>http://en.dogeno.us/2011/09/fix-error-15-this-method-must-be-called-with-an-app-access_token-facebook/</link>
		<comments>http://en.dogeno.us/2011/09/fix-error-15-this-method-must-be-called-with-an-app-access_token-facebook/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 01:28:14 +0000</pubDate>
		<dc:creator>cail.cn</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://en.dogeno.us/?p=7769</guid>
		<description><![CDATA[Facebook updated their Open Graph couple days ago, and it wa&#160;[&#8230;]]]></description>
			<content:encoded><![CDATA[<p>Facebook updated their Open Graph couple days ago, and it was very exciting.<br />
<img src="http://en.dogeno.us/wp-content/uploads/2011/09/304210_10150289654465798_11204705797_7686030_5016164_n.jpg" alt="" title="304210_10150289654465798_11204705797_7686030_5016164_n" width="180" height="248" class="alignnone size-full wp-image-7771" /><br />
Details about it can be found at <a href="http://www.livestream.com/f8live">www.livestream.com/f8live</a> and <a href="https://www.facebook.com/f8">www.facebook.com/f8</a>.</p>
<p>While I was updating "the Paper Link" for it to adapt to a more social way for reading biomedical paper, I had the following error</p>
<pre><code>{"error":{"message":"(#15) This method must be called with an app access_token.","type":"OAuthException"}}</code></pre>
<p>Google and search Stackoverfolow didn't help. The issues listed are all about failure in OAuth. I know my oauth2 is working, since I can still post to the WALL. And, it was working until I started tweaking Web App setting at <a href="http://developers.facebook.com">developers.facebook.com</a></p>
<p>...</p>
<p>Finally, I got the reason. <strong>One checkbox!</strong> <em>Use User Token, but not App Token.</em> I regret I didn't read those [?] help carefully. Oh well~~<br />
<img src="http://en.dogeno.us/wp-content/uploads/2011/09/2011-09-24_18-04-31.png" alt="" title="2011-09-24_18-04-31" width="343" height="188" class="alignnone size-full wp-image-7770" /></p>
<pre><code>Requires App Token to Publish:
Most action types should use a user token. Use and distribute the app token sparingly.</code></pre>

<hr /><p>&copy;&nbsp;2012&nbsp;<a href="http://en.dogeno.us">Endogenous - CaiLog</a>. blogged by cail.cn - 35cd076bdd09fcbdfe7ca24eb8f93900</p>

	Tags: <a href="http://en.dogeno.us/tag/all/" title="all" rel="tag">all</a>, <a href="http://en.dogeno.us/tag/art/" title="art" rel="tag">art</a>, <a href="http://en.dogeno.us/tag/book/" title="book" rel="tag">book</a>, <a href="http://en.dogeno.us/tag/facebook/" title="facebook" rel="tag">facebook</a>, <a href="http://en.dogeno.us/tag/google/" title="google" rel="tag">google</a>, <a href="http://en.dogeno.us/tag/link/" title="link" rel="tag">link</a>, <a href="http://en.dogeno.us/tag/me/" title="me" rel="tag">me</a>, <a href="http://en.dogeno.us/tag/social/" title="social" rel="tag">social</a>, <a href="http://en.dogeno.us/tag/web/" title="web" rel="tag">web</a>, <a href="http://en.dogeno.us/tag/work/" title="work" rel="tag">work</a><br />
]]></content:encoded>
			<wfw:commentRss>http://en.dogeno.us/2011/09/fix-error-15-this-method-must-be-called-with-an-app-access_token-facebook/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

