<?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>Coredump &#187; tumblog</title>
	<atom:link href="http://iandexter.net/tag/tumblog/feed" rel="self" type="application/rss+xml" />
	<link>http://iandexter.net</link>
	<description>Work, play, and everything in-between</description>
	<lastBuildDate>Sun, 20 Jun 2010 00:42:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Redirecting WordPress feeds to Feedburner</title>
		<link>http://iandexter.net/954/redirecting-wordpress-feeds-to-feedburner</link>
		<comments>http://iandexter.net/954/redirecting-wordpress-feeds-to-feedburner#comments</comments>
		<pubDate>Sun, 29 Nov 2009 17:24:55 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tumblog]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=954</guid>
		<description><![CDATA[(Hello. It&#8217;s been a while since my last post. I mostly post on Twitter, Facebook and identi.ca now. I also maintain two &#8220;mini-blogs&#8221; on Tumblr and Posterous. My two loyal readers should head over there, follow my social network accounts, or subscribe to my aggregator. *hint, hint* Anyway&#8230;) I&#8217;ve been meaning to fold in posts [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between</a></strong>, under a <a href="http://creativecommons.org/licenses/by-nc/3.0/">Creative Commons BY-NC license</a>. Original article: <a href="http://iandexter.net/954/redirecting-wordpress-feeds-to-feedburner">Redirecting WordPress feeds to Feedburner</a> by Ian Dexter R Marquez<br />Follow me on Twitter <a href="http://twitter.com/iandexter">here</a>. View the rest of my stream at <a href="http://iandexter.com">public static void</a>.</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p>(Hello. It&#8217;s been a while since my last post. I mostly post on <a href="http://twitter.com/iandexter">Twitter</a>, <a href="http://www.facebook.com/iandexter">Facebook</a> and <a href="http://identi.ca/iandexter">identi.ca</a> now. I also maintain two &#8220;mini-blogs&#8221; on <a href="http://tumblog.iandexter.com/">Tumblr</a> and <a href="http://posts.iandexter.com/">Posterous</a>. My two loyal readers should head over there, follow my social network accounts, or subscribe to <a href="http://feeds.iandexter.net/tumblog">my aggregator</a>. *<strong>hint, hint</strong>* <img src='http://iandexter.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Anyway&#8230;)</p>
<p>I&#8217;ve been meaning to fold in posts from my two mini-blogs to Coredump, but exclude them in the feeds, since I plan on adding them to my aggregated <a href="http://iandexter.com">lifestream</a>. I still haven&#8217;t found a good solution short of adding a new category (I don&#8217;t like cluttering my too-many categories {all three of them!}) or mucking around with WordPress&#8217; <code>add_filter</code> in <code>functions.php</code> (which will likely get lost when I update WP). So I ended up focusing on the feed itself.</p>
<p>I&#8217;ve already set up a <a href="http://feeds.iandexter.net/Coredump">Feedburner feed</a> long ago, when it was still *just* Feedburner and hadn&#8217;t been eaten up by the Borg^H^H^H^HGoogle. I can add the feed URL as a <code>link</code> meta in the header, but that&#8217;s not portable. So, after researching on the web for solutions, I&#8217;ve found a much simpler (and more elegant) one: use <code>.htaccess</code>.</p>
<p>The trick is to get the web server to redirect requests for the WordPress feed URI to the specified Feedburner URL, like so:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">RewriteCond <span style="color: #000000; font-weight: bold;">%</span><span style="color: #7a0874; font-weight: bold;">&#123;</span>HTTP_USER_AGENT<span style="color: #7a0874; font-weight: bold;">&#125;</span> <span style="color: #000000; font-weight: bold;">!</span>^.<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>FeedBurner<span style="color: #000000; font-weight: bold;">|</span>FeedValidator<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>NC<span style="color: #7a0874; font-weight: bold;">&#93;</span>
RewriteRule ^feed<span style="color: #000000; font-weight: bold;">/</span>?.<span style="color: #000000; font-weight: bold;">*</span>$ http:<span style="color: #000000; font-weight: bold;">//</span>feeds.iandexter.net<span style="color: #000000; font-weight: bold;">/</span>Coredump <span style="color: #7a0874; font-weight: bold;">&#91;</span>L,NC,<span style="color: #007800;">R</span>=<span style="color: #000000;">302</span><span style="color: #7a0874; font-weight: bold;">&#93;</span></pre></div></div>

<p>We also want to exclude requests from Feedburner itself, of course, and use HTTP code <code>302</code> (temporary redirect) so we can change the target URI later on.</p>
<p>To test:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ curl <span style="color: #660033;">-I</span> http:<span style="color: #000000; font-weight: bold;">//</span>iandexter.net<span style="color: #000000; font-weight: bold;">/</span>feed
HTTP<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">1.1</span> <span style="color: #000000;">302</span> Found
Date: Sun, <span style="color: #000000;">29</span> Nov <span style="color: #000000;">2009</span> <span style="color: #000000;">16</span>:<span style="color: #000000;">57</span>:<span style="color: #000000;">22</span> GMT
Server: Apache
Location: http:<span style="color: #000000; font-weight: bold;">//</span>feeds.iandexter.net<span style="color: #000000; font-weight: bold;">/</span>Coredump
Vary: Accept-Encoding
Content-Type: text<span style="color: #000000; font-weight: bold;">/</span>html; <span style="color: #007800;">charset</span>=iso-<span style="color: #000000;">8859</span>-<span style="color: #000000;">1</span></pre></div></div>

<p>Try it for yourself, or better yet, <strong><a href="http://feeds.iandexter.net/Coredump">subscribe to my feed</a></strong>. <img src='http://iandexter.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between</a></strong>, under a <a href="http://creativecommons.org/licenses/by-nc/3.0/">Creative Commons BY-NC license</a>. Original article: <a href="http://iandexter.net/954/redirecting-wordpress-feeds-to-feedburner">Redirecting WordPress feeds to Feedburner</a> by Ian Dexter R Marquez<br />Follow me on Twitter <a href="http://twitter.com/iandexter">here</a>. View the rest of my stream at <a href="http://iandexter.com">public static void</a>.</small></p></p>


<p><strong>Read more:</strong></p><ul><li><a href='http://iandexter.net/597/twitter-status-rss-broken' rel='bookmark' title='Permanent Link: Twitter status RSS broken?'>Twitter status RSS broken?</a></li>
<li><a href='http://iandexter.net/581/wordpress-admin-phone-interface' rel='bookmark' title='Permanent Link: WordPress admin phone interface'>WordPress admin phone interface</a></li>
<li><a href='http://iandexter.net/456/blog-reboot-done' rel='bookmark' title='Permanent Link: Blog reboot done'>Blog reboot done</a></li>
<li><a href='http://iandexter.net/226/new-from-gmail-web-clips' rel='bookmark' title='Permanent Link: New from GMail: &#8216;Web clips&#8217;'>New from GMail: &#8216;Web clips&#8217;</a></li>
<li><a href='http://iandexter.net/63/the-pinoy-farmers-internet-has-rss' rel='bookmark' title='Permanent Link: The Pinoy Farmers&#8217; Internet has RSS'>The Pinoy Farmers&#8217; Internet has RSS</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/954/redirecting-wordpress-feeds-to-feedburner/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter status RSS broken?</title>
		<link>http://iandexter.net/597/twitter-status-rss-broken</link>
		<comments>http://iandexter.net/597/twitter-status-rss-broken#comments</comments>
		<pubDate>Sun, 03 Aug 2008 21:20:31 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[pipes]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[tumblog]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=597</guid>
		<description><![CDATA[I just noticed that my Twitter timeline RSS is not being displayed in my tumblog, so I went back to Yahoo! Pipes to sniff around. It appears that the Twitter feed is not coming up valid (or Pipes could not parse it). (Update: The Twitter feed is valid, according to the W3C, but the Feedburner [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between</a></strong>, under a <a href="http://creativecommons.org/licenses/by-nc/3.0/">Creative Commons BY-NC license</a>. Original article: <a href="http://iandexter.net/597/twitter-status-rss-broken">Twitter status RSS broken?</a> by Ian Dexter R Marquez<br />Follow me on Twitter <a href="http://twitter.com/iandexter">here</a>. View the rest of my stream at <a href="http://iandexter.com">public static void</a>.</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p>I just noticed that <a href="http://twitter.com/statuses/user_timeline/1571151.rss">my Twitter timeline RSS</a> is not being displayed in <a href="http://iandexter.com">my tumblog</a>, so I went back to <a href="http://pipes.yahoo.com/iandexter">Yahoo! Pipes</a> to sniff around. It appears that the Twitter feed is not coming up valid (or Pipes could not parse it). </p>
<p>(<strong>Update</strong>: <a href="http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Ftwitter.com%2Fstatuses%2Fuser_timeline%2F1571151.rss">The Twitter feed is valid</a>, according to the W3C, but <a href="http://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Ffeeds.feedburner.com%2Fiandexter%2Ftwitter">the Feedburner one is not</a>. Oookay, so Pipes accepts an invalid feed, but not a valid one?)</p>
<p>As a workaround, I plugged in the feed through Feedburner and fed the <a href="http://feeds.feedburner.com/iandexter/twitter">Feedburner RSS</a> back to my Pipe, et voila! <a href="http://iandexter.net/tag/tumblog">my tumblog</a> is back to normal.</p>
<p><strong>In related tumblog news</strong>, <a href="http://del.icio.us">popular social bookmarking site, del.icio.us,</a> has been rebranded as, plainly, <a href="http://delicious.com">delicious.com</a>. The old URI still works &#8212; I like it better than the boring new one (love the new layout though, much cleaner and faster), which lacks the, er, whimsy-ness of the old domain &#8212; but just to be sure, I upgraded the link to the <a href="http://delicious.com/iandexter">new feed</a>.</p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between</a></strong>, under a <a href="http://creativecommons.org/licenses/by-nc/3.0/">Creative Commons BY-NC license</a>. Original article: <a href="http://iandexter.net/597/twitter-status-rss-broken">Twitter status RSS broken?</a> by Ian Dexter R Marquez<br />Follow me on Twitter <a href="http://twitter.com/iandexter">here</a>. View the rest of my stream at <a href="http://iandexter.com">public static void</a>.</small></p></p>


<p><strong>Read more:</strong></p><ul><li><a href='http://iandexter.net/567/tumblog' rel='bookmark' title='Permanent Link: Tumblog'>Tumblog</a></li>
<li><a href='http://iandexter.net/954/redirecting-wordpress-feeds-to-feedburner' rel='bookmark' title='Permanent Link: Redirecting WordPress feeds to Feedburner'>Redirecting WordPress feeds to Feedburner</a></li>
<li><a href='http://iandexter.net/588/revisiting-my-tumblog' rel='bookmark' title='Permanent Link: Revisiting my tumblog'>Revisiting my tumblog</a></li>
<li><a href='http://iandexter.net/63/the-pinoy-farmers-internet-has-rss' rel='bookmark' title='Permanent Link: The Pinoy Farmers&#8217; Internet has RSS'>The Pinoy Farmers&#8217; Internet has RSS</a></li>
<li><a href='http://iandexter.net/950/get-twitter-timeline-from-the-cli' rel='bookmark' title='Permanent Link: Get Twitter timeline from the CLI'>Get Twitter timeline from the CLI</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/597/twitter-status-rss-broken/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Revisiting my tumblog</title>
		<link>http://iandexter.net/588/revisiting-my-tumblog</link>
		<comments>http://iandexter.net/588/revisiting-my-tumblog#comments</comments>
		<pubDate>Sun, 13 Apr 2008 18:40:15 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[pipes]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[tumblog]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=588</guid>
		<description><![CDATA[I&#8217;ve made several improvements to my tumblog. Previously, I merely plugged in the RSS output from Yahoo! Pipes to Feedburner, and served up the content using Buzzboost. Using techniques from Cristiano Betta&#8217;s lifestream and elsewhere, I simplified and modularized the Yahoo! Pipes mashup. I then used the pipe&#8217;s JSON output and styled it with some [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between</a></strong>, under a <a href="http://creativecommons.org/licenses/by-nc/3.0/">Creative Commons BY-NC license</a>. Original article: <a href="http://iandexter.net/588/revisiting-my-tumblog">Revisiting my tumblog</a> by Ian Dexter R Marquez<br />Follow me on Twitter <a href="http://twitter.com/iandexter">here</a>. View the rest of my stream at <a href="http://iandexter.com">public static void</a>.</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve made several improvements to my <a href="http://iandexter.com">tumblog</a>. </p>
<p><a href="http://iandexter.net/567/tumblog">Previously</a>, I merely plugged in the RSS output from Yahoo! Pipes to Feedburner, and served up the content using Buzzboost. Using techniques from <a href="http://cristianobetta.com/lifestream/">Cristiano Betta&#8217;s lifestream</a> <a href="http://www.h4x3d.com/my-lifestream-secret-lifted-wordpress-lifestream-plugin-code/">and</a> <a href="http://www.pixelgraphix.de/weblog/artikel/lifestream-diy/">elsewhere</a>, I simplified and modularized the <a href="http://pipes.yahoo.com/iandexter/tumblog">Yahoo! Pipes mashup</a>.</p>
<p>I then used the pipe&#8217;s JSON output and styled it with some simple CSS. I didn&#8217;t want too much dependence on other JavaScript libraries so I used native code as much as possible, except for dynamically loading the JSON object from Pipes (for which I used the JSONscriptRequest class). I&#8217;m still having trouble getting the logic of reloading the content asynchronously: for now, I simply destroy the child element containing the tumblog items and rewrite everything &#8212; expensive, I know. </p>
<p>I&#8217;ve also been thinking of creating a Google Gadget out of this, but the iGoogle API&#8217;s FetchFeedAsJSON method is somewhat limited. I may have to use my current approach of dynamically creating a JSON script request into the gadget.</p>
<p>Well, without too much fanfare, the code is <a href="http://iandexter.com/s/js/tumblog.js">over here</a>, and <a href="http://iandexter.com">the tumblog is right here</a>.</p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between</a></strong>, under a <a href="http://creativecommons.org/licenses/by-nc/3.0/">Creative Commons BY-NC license</a>. Original article: <a href="http://iandexter.net/588/revisiting-my-tumblog">Revisiting my tumblog</a> by Ian Dexter R Marquez<br />Follow me on Twitter <a href="http://twitter.com/iandexter">here</a>. View the rest of my stream at <a href="http://iandexter.com">public static void</a>.</small></p></p>


<p><strong>Read more:</strong></p><ul><li><a href='http://iandexter.net/567/tumblog' rel='bookmark' title='Permanent Link: Tumblog'>Tumblog</a></li>
<li><a href='http://iandexter.net/597/twitter-status-rss-broken' rel='bookmark' title='Permanent Link: Twitter status RSS broken?'>Twitter status RSS broken?</a></li>
<li><a href='http://iandexter.net/222/roll-your-own-delicious-link-roll' rel='bookmark' title='Permanent Link: Roll your own del.icio.us link roll'>Roll your own del.icio.us link roll</a></li>
<li><a href='http://iandexter.net/229/yummy' rel='bookmark' title='Permanent Link: Yummy?'>Yummy?</a></li>
<li><a href='http://iandexter.net/850/delicious-linkroll-revised' rel='bookmark' title='Permanent Link: Delicious linkroll, revised'>Delicious linkroll, revised</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/588/revisiting-my-tumblog/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tumblog</title>
		<link>http://iandexter.net/567/tumblog</link>
		<comments>http://iandexter.net/567/tumblog#comments</comments>
		<pubDate>Sun, 04 Nov 2007 14:47:39 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[pipes]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[tumblog]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://iandexter.net/567/tumblog</guid>
		<description><![CDATA[I know, it&#8217;s supposed to be a tumblelog, but what the heck. I was able to squeeze out one for another domain I maintain: iandexter.com. It was supposed to be for side projects, but since I&#8217;m neck-deep in work, I decided to make it a launch pad for my &#8220;presence&#8221; in the internet. But why [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between</a></strong>, under a <a href="http://creativecommons.org/licenses/by-nc/3.0/">Creative Commons BY-NC license</a>. Original article: <a href="http://iandexter.net/567/tumblog">Tumblog</a> by Ian Dexter R Marquez<br />Follow me on Twitter <a href="http://twitter.com/iandexter">here</a>. View the rest of my stream at <a href="http://iandexter.com">public static void</a>.</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p>I know, it&#8217;s supposed to be a <a href="http://en.wikipedia.org/wiki/Tumblog">tumblelog</a>, but what the heck. I was able to squeeze out one for another domain I maintain: <a href="http://iandexter.com">iandexter.com</a>. </p>
<p>It was supposed to be for side projects, but since I&#8217;m neck-deep in work, I decided to make it a launch pad for my &#8220;presence&#8221; in the internet. But why stop there? So I decided to aggregate all that content, using <a href="http://pipes.yahoo.com/pipes/pipe.info?_id=0E20jZe82xGihfP3E2_cUw">Yahoo! Pipes</a>:</p>
<p><img src="http://static.iandexter.net/blog/images/267-1-pipes.jpg" alt="Aggregating presence" /></p>
<p>Plunk the resulting RSS to Feedburner, and use BuzzBoost to put out HTML:</p>
<p><img src="http://static.iandexter.net/blog/images/265-1-buzzboost.jpg" alt="BuzzBoost" /></p>
<p>Then, voila! <a href="http://iandexter.com">My very own tumblog</a>. </p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between</a></strong>, under a <a href="http://creativecommons.org/licenses/by-nc/3.0/">Creative Commons BY-NC license</a>. Original article: <a href="http://iandexter.net/567/tumblog">Tumblog</a> by Ian Dexter R Marquez<br />Follow me on Twitter <a href="http://twitter.com/iandexter">here</a>. View the rest of my stream at <a href="http://iandexter.com">public static void</a>.</small></p></p>


<p><strong>Read more:</strong></p><ul><li><a href='http://iandexter.net/588/revisiting-my-tumblog' rel='bookmark' title='Permanent Link: Revisiting my tumblog'>Revisiting my tumblog</a></li>
<li><a href='http://iandexter.net/597/twitter-status-rss-broken' rel='bookmark' title='Permanent Link: Twitter status RSS broken?'>Twitter status RSS broken?</a></li>
<li><a href='http://iandexter.net/954/redirecting-wordpress-feeds-to-feedburner' rel='bookmark' title='Permanent Link: Redirecting WordPress feeds to Feedburner'>Redirecting WordPress feeds to Feedburner</a></li>
<li><a href='http://iandexter.net/309/pinoy-tech-scene-opml' rel='bookmark' title='Permanent Link: Pinoy Tech Scene OPML'>Pinoy Tech Scene OPML</a></li>
<li><a href='http://iandexter.net/563/reportage-on-the-glorietta-blast' rel='bookmark' title='Permanent Link: Reportage on the Glorietta blast'>Reportage on the Glorietta blast</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/567/tumblog/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
