<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Coredump</title>
	
	<link>http://iandexter.net</link>
	<description>Hi, I'm Ian, and this is my blog. Here, I mostly rant and rave about life and technology, and how it affects me at work, at play, and in anything in-between.</description>
	<lastBuildDate>Mon, 21 Sep 2009 22:06:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<geo:lat>15.493733</geo:lat><geo:long>120.97585</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc-sa/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Coredump" type="application/rss+xml" /><feedburner:emailServiceId>Coredump</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Fix for Picasa 3 Linux login problem</title>
		<link>http://feedproxy.google.com/~r/Coredump/~3/W5fmAB_is04/fix-for-picasa-3-linux-login-problem</link>
		<comments>http://iandexter.net/952/fix-for-picasa-3-linux-login-problem#comments</comments>
		<pubDate>Mon, 21 Sep 2009 04:50:58 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[picasa]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=952</guid>
		<description><![CDATA[(Update: Just realized that this isn&#8217;t a fix but a workaround. The fix would be for Google to bundle the working Wine binaries. (Then again, they most likely use the stable release, while Fedora uses the current development one. Oh well&#8230;))
Picasa 3 for Linux has this niggling* problem: you can&#8217;t log on to Picasa Web. [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/952/fix-for-picasa-3-linux-login-problem">Fix for Picasa 3 Linux login problem</a> by Ian Dexter R Marquez</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p>(<strong>Update</strong>: Just realized that this isn&#8217;t a fix but a <strong>workaround</strong>. The fix would be for Google to bundle the working Wine binaries. (Then again, they most likely use the stable release, while Fedora uses the current development one. Oh well&#8230;))</p>
<p><a href="http://picasa.google.com/linux/">Picasa 3 for Linux</a> has this niggling* problem: you can&#8217;t log on to Picasa Web. It appears that a Wine static binary bundled with it <a href="http://www.mail-archive.com/google-labs-picasa-for-linux@googlegroups.com/msg01520.html">does not work well with Fedora</a>. </p>
<p><small>* &#8220;Niggling&#8221;, that is, if you consider not being able to sync your photos with Picasa a minor one.</small></p>
<p>The solution was to overwrite the offending binary with one from the &#8220;blessed&#8221; Wine package for Fedora. It presupposes that you have Wine already installed, which I don&#8217;t.</p>
<p>So, I went through it in a run-about way: get the binary file and replace the bundled one. </p>
<p>Fedora&#8217;s package manager, <code>yum</code>, doesn&#8217;t let you just download a package without installing it. Good thing there&#8217;s this little plugin called <code>yum-downloadonly</code> that let&#8217;s you do just that.</p>
<p>Install the plugin, then grab the Wine package.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># yum install yum-downloadonly</span>
<span style="color: #666666; font-style: italic;"># yum install wine --download-only</span></pre></div></div>

<p>The package (specifically, <code>wine-core</code>, is placed in <code>/var/cache/yum/updates/packages/</code>. Use <code>rpm2cpio</code> to extract the file.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># mkdir /tmp/wine &amp;&amp; cd /tmp/wine</span>
<span style="color: #666666; font-style: italic;"># cp /var/cache/yum/updates/packages/wine-core-1.1.29-1.fc11.i586.rpm .</span>
<span style="color: #666666; font-style: italic;"># rpm2cpio wine-core-1.1.29-1.fc11.i586.rpm | cpio -idmv</span>
<span style="color: #666666; font-style: italic;"># find . -name 'wininet*'</span></pre></div></div>

<p>Install Picasa from <a href="http://www.google.com/linuxrepositories/testrepo.html">Google&#8217;s test repository</a>. Replace the bundled binary.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># yum install picasa</span>
<span style="color: #666666; font-style: italic;"># cd /opt/google/picasa/3.0/</span>
<span style="color: #666666; font-style: italic;"># find . -name 'wininet*' </span>
<span style="color: #666666; font-style: italic;"># cp ./wine/lib/wine/wininet.dll.so ~/.</span>
<span style="color: #666666; font-style: italic;"># cp /tmp/wine/usr/lib/wine/wininet.dll.so wine/lib/wine/wininet.dll.so</span></pre></div></div>

<p>Picasa for Linux will now be able to log you in.</p>
<p><img src="http://static.iandexter.net/blog/images/picasa-3-linux.jpg" alt="Picasa 3 for Linux" /></p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/952/fix-for-picasa-3-linux-login-problem">Fix for Picasa 3 Linux login problem</a> by Ian Dexter R Marquez</small></p></p>


<p><strong>Read more:</strong></p><ul><li><a href='http://iandexter.net/871/fedora-11-upgrade-notes' rel='bookmark' title='Permanent Link: Fedora 11 upgrade notes'>Fedora 11 upgrade notes</a></li><li><a href='http://iandexter.net/948/chromium-on-fedora' rel='bookmark' title='Permanent Link: Chromium on Fedora'>Chromium on Fedora</a></li><li><a href='http://iandexter.net/753/upgrade-updates' rel='bookmark' title='Permanent Link: Upgrade, updates'>Upgrade, updates</a></li><li><a href='http://iandexter.net/497/qotd-good-riddance' rel='bookmark' title='Permanent Link: QOTD: &#8216;good riddance&#8217;?'>QOTD: &#8216;good riddance&#8217;?</a></li><li><a href='http://iandexter.net/769/music-on-fedora' rel='bookmark' title='Permanent Link: Music on Fedora'>Music on Fedora</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Coredump?a=W5fmAB_is04:qnj6rdgsjME:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Coredump?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=W5fmAB_is04:qnj6rdgsjME:97Rr2qAlQ8w"><img src="http://feeds.feedburner.com/~ff/Coredump?d=97Rr2qAlQ8w" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=W5fmAB_is04:qnj6rdgsjME:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Coredump?i=W5fmAB_is04:qnj6rdgsjME:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=W5fmAB_is04:qnj6rdgsjME:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Coredump?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Coredump/~4/W5fmAB_is04" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/952/fix-for-picasa-3-linux-login-problem/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://iandexter.net/952/fix-for-picasa-3-linux-login-problem</feedburner:origLink></item>
		<item>
		<title>Get Twitter timeline from the CLI</title>
		<link>http://feedproxy.google.com/~r/Coredump/~3/iZvnHf9lzKg/get-twitter-timeline-from-the-cli</link>
		<comments>http://iandexter.net/950/get-twitter-timeline-from-the-cli#comments</comments>
		<pubDate>Wed, 09 Sep 2009 07:58:11 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=950</guid>
		<description><![CDATA[We already know how to update Twitter from the command line. To get your and your friends&#8217; timeline from the CLI, use the following one-liner:

curl -u username --silent &#34;https://twitter.com/statuses/friends_timeline.rss&#34; &#124; perl -ne 'print &#34;$2\n&#34; if /&#60; (description)&#62;(.*)&#60; \/\1&#62;/;'

Using the same method, you can also get unread Gmail inbox messages (via commandlinefu.com).
Posted on Coredump - Work, [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/950/get-twitter-timeline-from-the-cli">Get Twitter timeline from the CLI</a> by Ian Dexter R Marquez</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p>We already know how to <a href="http://iandexter.net/513/twitter-updates-via-cli">update Twitter from the command line</a>. To get your and your friends&#8217; timeline from the CLI, use the following one-liner:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">curl <span style="color: #660033;">-u</span> username <span style="color: #660033;">--silent</span> <span style="color: #ff0000;">&quot;https://twitter.com/statuses/friends_timeline.rss&quot;</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">perl</span> <span style="color: #660033;">-ne</span> <span style="color: #ff0000;">'print &quot;$2\n&quot; if /&lt; (description)&gt;(.*)&lt; \/\1&gt;/;'</span></pre></div></div>

<p>Using the same method, you can also get unread Gmail inbox messages (via <a href="http://www.commandlinefu.com/commands/view/3386/check-your-unread-gmail-from-the-command-line">commandlinefu.com</a>).</p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/950/get-twitter-timeline-from-the-cli">Get Twitter timeline from the CLI</a> by Ian Dexter R Marquez</small></p></p>


<p><strong>Read more:</strong></p><ul><li><a href='http://iandexter.net/513/twitter-updates-via-cli' rel='bookmark' title='Permanent Link: Twitter updates, via CLI'>Twitter updates, via CLI</a></li><li><a href='http://iandexter.net/492/cli-shortcuts-7' rel='bookmark' title='Permanent Link: CLI shortcuts, 7'>CLI shortcuts, 7</a></li><li><a href='http://iandexter.net/472/writing-a-custom-init-script' rel='bookmark' title='Permanent Link: Writing a custom init script'>Writing a custom init script</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Coredump?a=iZvnHf9lzKg:hXtAdhLDS7Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Coredump?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=iZvnHf9lzKg:hXtAdhLDS7Y:97Rr2qAlQ8w"><img src="http://feeds.feedburner.com/~ff/Coredump?d=97Rr2qAlQ8w" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=iZvnHf9lzKg:hXtAdhLDS7Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Coredump?i=iZvnHf9lzKg:hXtAdhLDS7Y:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=iZvnHf9lzKg:hXtAdhLDS7Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Coredump?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Coredump/~4/iZvnHf9lzKg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/950/get-twitter-timeline-from-the-cli/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://iandexter.net/950/get-twitter-timeline-from-the-cli</feedburner:origLink></item>
		<item>
		<title>Chromium on Fedora</title>
		<link>http://feedproxy.google.com/~r/Coredump/~3/oQb2Ffo8c_E/chromium-on-fedora</link>
		<comments>http://iandexter.net/948/chromium-on-fedora#comments</comments>
		<pubDate>Tue, 08 Sep 2009 12:44:15 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[chromium]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=948</guid>
		<description><![CDATA[I finally have Chromium on Fedora 11, thanks to Fedora developer, Tom &#8220;spot&#8221; Callaway&#8217;s dev repo.
In /etc/yum.repos.d/chromium.repo:

&#91;chromium&#93;
name=Chromium Test Packages
baseurl=http://spot.fedorapeople.org/chromium/F$releasever/
enabled=1
gpgcheck=0

And it was just a matter of doing:

yum install chromium

I CAN HAZ CHROMIUM!

My launcher specifies the following:

--enable-plugins --enable-user-scripts --enable-extensions

so this build now supports plugins (it adopted the Mozilla Firefox plugins, like Flash and the Citrix ICA client [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/948/chromium-on-fedora">Chromium on Fedora</a> by Ian Dexter R Marquez</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p>I finally have <a href="http://code.google.com/chromium/">Chromium</a> on Fedora 11, thanks to Fedora developer, <a href="https://fedoraproject.org/wiki/TomCallaway">Tom &#8220;spot&#8221; Callaway</a>&#8217;s <a href="http://spot.fedorapeople.org/chromium/">dev repo</a>.</p>
<p>In <code>/etc/yum.repos.d/chromium.repo</code>:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>chromium<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #007800;">name</span>=Chromium Test Packages
<span style="color: #007800;">baseurl</span>=http:<span style="color: #000000; font-weight: bold;">//</span>spot.fedorapeople.org<span style="color: #000000; font-weight: bold;">/</span>chromium<span style="color: #000000; font-weight: bold;">/</span>F<span style="color: #007800;">$releasever</span><span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #007800;">enabled</span>=<span style="color: #000000;">1</span>
<span style="color: #007800;">gpgcheck</span>=<span style="color: #000000;">0</span></pre></div></div>

<p>And it was just a matter of doing:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> chromium</pre></div></div>

<p>I CAN HAZ CHROMIUM!</p>
<p><img src="http://static.iandexter.net/blog/images/chromium-linux.jpg" alt="Chromium Linux build for Fedora" /></p>
<p>My launcher specifies the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #660033;">--enable-plugins</span> <span style="color: #660033;">--enable-user-scripts</span> <span style="color: #660033;">--enable-extensions</span></pre></div></div>

<p>so this build now supports plugins (it adopted the Mozilla Firefox plugins, like Flash and the Citrix ICA client &#8211; YouTube works!), and extensions (I installed <a href="http://www.adsweep.org">AdSweep</a>). I haven&#8217;t tried Greasemonkey user scripts yet.</p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/948/chromium-on-fedora">Chromium on Fedora</a> by Ian Dexter R Marquez</small></p></p>


<p><strong>Read more:</strong></p><ul><li><a href='http://iandexter.net/871/fedora-11-upgrade-notes' rel='bookmark' title='Permanent Link: Fedora 11 upgrade notes'>Fedora 11 upgrade notes</a></li><li><a href='http://iandexter.net/753/upgrade-updates' rel='bookmark' title='Permanent Link: Upgrade, updates'>Upgrade, updates</a></li><li><a href='http://iandexter.net/769/music-on-fedora' rel='bookmark' title='Permanent Link: Music on Fedora'>Music on Fedora</a></li><li><a href='http://iandexter.net/952/fix-for-picasa-3-linux-login-problem' rel='bookmark' title='Permanent Link: Fix for Picasa 3 Linux login problem'>Fix for Picasa 3 Linux login problem</a></li><li><a href='http://iandexter.net/763/klaatu-barada-nikto' rel='bookmark' title='Permanent Link: &#8216;Klaatu barada nikto!&#8217;'>&#8216;Klaatu barada nikto!&#8217;</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Coredump?a=oQb2Ffo8c_E:ruzZAZ2He0g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Coredump?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=oQb2Ffo8c_E:ruzZAZ2He0g:97Rr2qAlQ8w"><img src="http://feeds.feedburner.com/~ff/Coredump?d=97Rr2qAlQ8w" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=oQb2Ffo8c_E:ruzZAZ2He0g:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Coredump?i=oQb2Ffo8c_E:ruzZAZ2He0g:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=oQb2Ffo8c_E:ruzZAZ2He0g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Coredump?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Coredump/~4/oQb2Ffo8c_E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/948/chromium-on-fedora/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://iandexter.net/948/chromium-on-fedora</feedburner:origLink></item>
		<item>
		<title>Best workstation setup, evar</title>
		<link>http://feedproxy.google.com/~r/Coredump/~3/18PAeDUJfg4/best-workstation-setup-evar</link>
		<comments>http://iandexter.net/947/best-workstation-setup-evar#comments</comments>
		<pubDate>Mon, 07 Sep 2009 06:31:04 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[space]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=947</guid>
		<description><![CDATA[
 Part of the STS-128 mission day 7 highlights aboard the International Space Station.
I want one!  
Posted on Coredump - Work, play, and everything in-between.. Follow me on Twitter here. View the rest of my stream at public static void.Best workstation setup, evar by Ian Dexter R Marquez
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/947/best-workstation-setup-evar">Best workstation setup, evar</a> by Ian Dexter R Marquez</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p><object width="500" height="315"><param name="movie" value="http://www.youtube-nocookie.com/v/YmANfNBN2JY&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1&#038;start=125"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/YmANfNBN2JY&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1&#038;start=125" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="315"></embed></object><br />
<small> Part of the <a href="http://www.nasa.gov/mission_pages/shuttle/shuttlemissions/sts128/">STS-128 mission</a> day 7 highlights aboard the International Space Station.</small></p>
<p>I want one! <img src='http://iandexter.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/947/best-workstation-setup-evar">Best workstation setup, evar</a> by Ian Dexter R Marquez</small></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Coredump?a=18PAeDUJfg4:faOWYrbdGBY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Coredump?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=18PAeDUJfg4:faOWYrbdGBY:97Rr2qAlQ8w"><img src="http://feeds.feedburner.com/~ff/Coredump?d=97Rr2qAlQ8w" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=18PAeDUJfg4:faOWYrbdGBY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Coredump?i=18PAeDUJfg4:faOWYrbdGBY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=18PAeDUJfg4:faOWYrbdGBY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Coredump?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Coredump/~4/18PAeDUJfg4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/947/best-workstation-setup-evar/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://iandexter.net/947/best-workstation-setup-evar</feedburner:origLink></item>
		<item>
		<title>Book on random digits</title>
		<link>http://feedproxy.google.com/~r/Coredump/~3/0Do4N78dKQM/book-on-random-digits</link>
		<comments>http://iandexter.net/945/book-on-random-digits#comments</comments>
		<pubDate>Thu, 20 Aug 2009 13:01:29 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=945</guid>
		<description><![CDATA[
At this point, things are moving with so much momentum that nothing short of slamming the book shut could stop this epic expectation-confounding march. &#8230; This book is a memorable read. It defies anticipation.
Posted on Coredump - Work, play, and everything in-between.. Follow me on Twitter here. View the rest of my stream at public [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/945/book-on-random-digits">Book on random digits</a> by Ian Dexter R Marquez</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p><object width="500" height="315"><param name="movie" value="http://www.youtube.com/v/0y8Wa10Lm7c&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/0y8Wa10Lm7c&#038;hl=en&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="315"></embed></object></p>
<blockquote><p>At this point, things are moving with so much momentum that nothing short of slamming the book shut could stop this epic expectation-confounding march. &#8230; This book is a memorable read. It defies anticipation.</p></blockquote>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/945/book-on-random-digits">Book on random digits</a> by Ian Dexter R Marquez</small></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Coredump?a=0Do4N78dKQM:qKbuFKAHqxE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Coredump?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=0Do4N78dKQM:qKbuFKAHqxE:97Rr2qAlQ8w"><img src="http://feeds.feedburner.com/~ff/Coredump?d=97Rr2qAlQ8w" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=0Do4N78dKQM:qKbuFKAHqxE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Coredump?i=0Do4N78dKQM:qKbuFKAHqxE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=0Do4N78dKQM:qKbuFKAHqxE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Coredump?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Coredump/~4/0Do4N78dKQM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/945/book-on-random-digits/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://iandexter.net/945/book-on-random-digits</feedburner:origLink></item>
		<item>
		<title>Multiple (Firefox) personalities</title>
		<link>http://feedproxy.google.com/~r/Coredump/~3/vwoDgfH8Mls/multiple-firefox-personalities</link>
		<comments>http://iandexter.net/944/multiple-firefox-personalities#comments</comments>
		<pubDate>Tue, 18 Aug 2009 01:43:52 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=944</guid>
		<description><![CDATA[Er&#8230; profiles, I mean.  
I use Firefox add-ons for the occasional web development tasks. (Too bad, not all my favorite extensions are available in the workplace&#8217;s &#8220;blessed&#8221; add-ons repository, but I can live with what&#8217;s in there.) Sometimes, though, having too many add-ons slows down the browsing experience, specially for times when you just [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/944/multiple-firefox-personalities">Multiple (Firefox) personalities</a> by Ian Dexter R Marquez</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p>Er&#8230; profiles, I mean. <img src='http://iandexter.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>I use Firefox add-ons for the occasional web development tasks. (Too bad, not all my favorite extensions are available in the workplace&#8217;s &#8220;blessed&#8221; add-ons repository, but I can live with what&#8217;s in there.) Sometimes, though, having too many add-ons slows down the browsing experience, specially for times when you just need to browse stuff and not much else.</p>
<p>The solution: create separate profiles for &#8220;normal&#8221; browsing and for web development (&#8221;debug&#8221; mode). Using <a href="http://support.mozilla.com/en-US/kb/Managing+profiles">Profile Manager</a>, I created two profiles: &#8220;normal&#8221; and &#8220;debug&#8221;. </p>
<p><a href="http://static.iandexter.net/blog/images/firefox-profile-manager.jpg" rel="lightbox[944]"><img src="http://static.iandexter.net/blog/images/firefox-profile-manager.jpg" alt="Create two profiles in Firefox." /></a></p>
<p>Any Firefox instance can be launched by using the <code>-ProfileManager</code> switch. I also use <code>-no-remote</code> so a new instance &mdash; not a new window &mdash; is opened every time.</p>
<p><a href="http://static.iandexter.net/blog/images/firefox-launcher.jpg" rel="lightbox[944]"><img src="http://static.iandexter.net/blog/images/firefox-launcher.jpg" alt="Launcher properties for Firefox" width="500" height="207" /> </a></p>
<p>I load up the &#8220;debug&#8221; instance with all the add-ons I require: among them, Web Developer, Firebug and Greasemonkey are the most important.</p>
<p><a href="http://static.iandexter.net/blog/images/firefox-addons.jpg" rel="lightbox[944]"><img src="http://static.iandexter.net/blog/images/firefox-addons.jpg" alt="Load up the debug mode with nifty add-ons." width="500" height="765" /></a></p>
<p>To differentiate debug mode from the normal-browsing instance, I would have to change the window title. For this, I loaded the <a href="https://addons.mozilla.org/en-US/firefox/addon/6543">Nightly Tester Tools</a> add-on, which allows me to tweak the window title, among other things.</p>
<p><a href="http://static.iandexter.net/blog/images/firefox-nightly-tester.jpg" rel="lightbox[944]"><br />
<img src="http://static.iandexter.net/blog/images/firefox-nightly-tester.jpg" alt="Tweak the window title with the Nightly Tester Tools add-on." width="500" height="455" /></a></p>
<p>(I used the following string for the window title:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #800000;">${DefaultTitle}</span> <span style="color: #800000;">${Version}</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>Build <span style="color: #800000;">${AppBuildID}</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> - <span style="color: #800000;">${Profile}</span></pre></div></div>

<p>Other variables are available in <strong>Menu > Tools > Nightly Tester Tools > Options</strong>.)</p>
<p><a href="http://static.iandexter.net/blog/images/firefox-debug-mode.jpg" rel="lightbox[944]"><img src="http://static.iandexter.net/blog/images/firefox-debug-mode.jpg" alt="Firefox debug mode" width="500" height="560" /></a></p>
<p>I can then open both modes side by side:</p>
<p><a href="http://static.iandexter.net/blog/images/firefox-modes.jpg" rel="lightbox[944]"><img src="http://static.iandexter.net/blog/images/firefox-modes.jpg" alt="Firefox dual personality" width="500" height="313" /></a></p>
<p><strong>Update</strong>: Now that <a href="http://getpersonas.com">Personas</a> are available, I&#8217;ve opted to use different ones for my normal (Firefox Robot) and debug (Carbon Fox) modes.</p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/944/multiple-firefox-personalities">Multiple (Firefox) personalities</a> by Ian Dexter R Marquez</small></p></p>


<p><strong>Read more:</strong></p><ul><li><a href='http://iandexter.net/763/klaatu-barada-nikto' rel='bookmark' title='Permanent Link: &#8216;Klaatu barada nikto!&#8217;'>&#8216;Klaatu barada nikto!&#8217;</a></li><li><a href='http://iandexter.net/481/firefox-3-to-support-offline-apps' rel='bookmark' title='Permanent Link: Firefox 3 to support offline apps'>Firefox 3 to support offline apps</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Coredump?a=vwoDgfH8Mls:mP8QZbgJKxA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Coredump?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=vwoDgfH8Mls:mP8QZbgJKxA:97Rr2qAlQ8w"><img src="http://feeds.feedburner.com/~ff/Coredump?d=97Rr2qAlQ8w" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=vwoDgfH8Mls:mP8QZbgJKxA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Coredump?i=vwoDgfH8Mls:mP8QZbgJKxA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=vwoDgfH8Mls:mP8QZbgJKxA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Coredump?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Coredump/~4/vwoDgfH8Mls" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/944/multiple-firefox-personalities/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://iandexter.net/944/multiple-firefox-personalities</feedburner:origLink></item>
		<item>
		<title>SSH on the Nokia E63</title>
		<link>http://feedproxy.google.com/~r/Coredump/~3/HB_vRvCQUGk/ssh-on-the-nokia-e63</link>
		<comments>http://iandexter.net/892/ssh-on-the-nokia-e63#comments</comments>
		<pubDate>Sun, 09 Aug 2009 01:41:00 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[e63]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=892</guid>
		<description><![CDATA[I just got a Nokia E63, a long-awaited replacement for a support phone from work. It&#8217;s not as advanced as, say, a Nokia E71 or a Blackberry in terms of business-related features, but it would do quite well for my purposes. 
(My philosophy in mobile phones is that so long as I can connect &#8212; [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/892/ssh-on-the-nokia-e63">SSH on the Nokia E63</a> by Ian Dexter R Marquez</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p>I just got a <a href="http://www.nokia.com.ph/find-products/products/nokia-e63">Nokia E63</a>, a long-awaited replacement for a support phone from work. It&#8217;s not as advanced as, say, a Nokia E71 or a Blackberry in terms of business-related features, but it would do quite well for my purposes. </p>
<p>(My philosophy in mobile phones is that so long as I can connect &mdash; through voice, SMS or WiFi &mdash; I&#8217;m cool with it. <img src='http://iandexter.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>The QWERTY pad is a sweet spot for the E63: soft enough so you won&#8217;t develop calluses, yet with enough toughness for tactile feedback. I&#8217;m more interested in the apps I can place in the phone, though. </p>
<p><img src="http://static.iandexter.net/blog/images/screen000001.jpg" alt="My apps on the E63" /><br />
<small>The apps I loaded on the E63</small></p>
<p>For starters, I downloaded Opera Mini &mdash; the <a href="http://en.wikipedia.org/wiki/Web_Browser_for_S60">WebKit-based Nokia Mini Map Browser</a> bundled with the phone just wasn&#8217;t up to size with what I planned for it.</p>
<p>I then downloaded <a href="http://www.google.com/mobile">Google mobile apps</a>. The E series comes with email integration, but I&#8217;ve grown to love the Gmail mobile client. </p>
<p>The kicker, though, is <a href="http://s2putty.sourceforge.net/">S2 puTTY</a>, the S60 port for the nifty puTTY secure shell client. Hey, I&#8217;m a command-line zealot: I&#8217;d much rather get things done on the CLI, if tools exist; and accessing a shell through a mobile phone is a geek&#8217;s dream. </p>
<p>Just like its desktop equivalent, S2 puTTY worked as advertised. Setting it up is similar to what we&#8217;re accustomed to. I opted not to add my SSH private key so I don&#8217;t have to worry about adding weak link in the security chain. </p>
<p><img src="http://static.iandexter.net/blog/images/screen000003.jpg" alt="screen session using the S2 puTTY client" /><br />
<small><code>screen</code> session using the S2 puTTY client</small></p>
<p>I was able to log in to my Linux boxes, even going as far as accessing the <code>screen</code> sessions. As expected, scroll-back sucked, then again, nothing&#8217;s sweeter than using <code>mutt</code> from a phone. Heh.</p>
<p><img src="http://static.iandexter.net/blog/images/screen000004.jpg" alt="Using mutt on the E63" /><br />
<small>Geek dream: Using <code>mutt</code> on the E63</small></p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/892/ssh-on-the-nokia-e63">SSH on the Nokia E63</a> by Ian Dexter R Marquez</small></p></p>


<p><strong>Read more:</strong></p><ul><li><a href='http://iandexter.net/660/using-screen' rel='bookmark' title='Permanent Link: Using screen'>Using screen</a></li><li><a href='http://iandexter.net/727/run-x-apps-on-windows' rel='bookmark' title='Permanent Link: Run X apps on Windows'>Run X apps on Windows</a></li><li><a href='http://iandexter.net/578/playing-with-the-eee' rel='bookmark' title='Permanent Link: Playing with the eee'>Playing with the eee</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Coredump?a=HB_vRvCQUGk:qiTD9eSSl9k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Coredump?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=HB_vRvCQUGk:qiTD9eSSl9k:97Rr2qAlQ8w"><img src="http://feeds.feedburner.com/~ff/Coredump?d=97Rr2qAlQ8w" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=HB_vRvCQUGk:qiTD9eSSl9k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Coredump?i=HB_vRvCQUGk:qiTD9eSSl9k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=HB_vRvCQUGk:qiTD9eSSl9k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Coredump?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Coredump/~4/HB_vRvCQUGk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/892/ssh-on-the-nokia-e63/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://iandexter.net/892/ssh-on-the-nokia-e63</feedburner:origLink></item>
		<item>
		<title>‘Sa Aking mga Kababata’</title>
		<link>http://feedproxy.google.com/~r/Coredump/~3/LNT3PV3WZ8c/sa-aking-mga-kabata</link>
		<comments>http://iandexter.net/885/sa-aking-mga-kabata#comments</comments>
		<pubDate>Fri, 24 Jul 2009 15:07:30 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[In-between]]></category>
		<category><![CDATA[gab]]></category>
		<category><![CDATA[poetry]]></category>
		<category><![CDATA[school]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=885</guid>
		<description><![CDATA[Peng called me a few days ago to tell me that kuya Gab has decided on what he would do for a class recitation. The teacher wanted them to show their talent, so Gab said he wanted to show his classmates origami.
That&#8217;s right, he wanted to demonstrate how to fold paper. 
Well, there&#8217;s nothing wrong [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/885/sa-aking-mga-kabata">&#8216;Sa Aking mga Kababata&#8217;</a> by Ian Dexter R Marquez</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p>Peng called me a few days ago to tell me that kuya Gab has decided on what he would do for a class recitation. The teacher wanted them to show their talent, so Gab said he wanted to show his classmates origami.</p>
<p>That&#8217;s right, he wanted to demonstrate how to fold paper. </p>
<p>Well, there&#8217;s nothing wrong about that &mdash; our son&#8217;s got talent, and he&#8217;s shown genuine interest in origami ever since I<a href="http://iandexter.net/866/origami"> bought a pack of origami paper for him and Julian</a>. But folding paper in front of the class doesn&#8217;t sound much of a talent. (So much for being encouraging parents.)</p>
<p>Anyway, I told Peng that we should just &#8220;suggest&#8221; other alternatives to Gab: he can sing, dance, even do a speech, or demo a Taekwondo form. But, no, he had made up his mind. We supported him all the way, of course. </p>
<p>Tonight, however, was the turning point. As he sat in front of the PC searching for origami patterns, we broached the idea of reciting a poem. He was adamant. He would rather not show anything in class, he said. </p>
<p>&#8220;Okay, how about this?&#8221; I asked. &#8220;You can recite Jose Rizal&#8217;s &#8216;Sa Aking mga Kababata&#8217;.&#8221;</p>
<p>&#8220;Rizal wrote it when he was eight years old!&#8221; I added. </p>
<p>*ding* Something lit up in Gab&#8217;s head. He loved the idea. (He&#8217;s turning eight in a month, by the way.) A quick Google search led us to the poem, which he read and loved right away. What can I say, our son has taste. </p>
<p>&#8220;I like to write poems like him,&#8221; he mused. Great kid.</p>
<p><a href="http://commons.wikimedia.org/wiki/File:Rizal-11.jpg" rel="lightbox[885]"><img src="http://upload.wikimedia.org/wikipedia/commons/4/41/Rizal-11.jpg" alt="Rizal at 11 [Credit: joserizal.ph]" /></a><br />
<small>Jose Rizal at 11 years old. (Public domain photo, Credit: joserizal.ph)</small></p>
<p>Rizal&#8217;s poem, which he wrote it in 1869, when he was eight years old, shows the martyr&#8217;s astute sensitivity and ingrained love for the motherland at such a young age. </p>
<blockquote><p>
Kapagka ang baya&#8217;y sadyang umiibig<br />
Sa kanyang salitang kaloob ng langit,<br />
Sanglang kalayaan nasa ring masapit<br />
Katulad ng ibong nasa himpapawid.</p>
<p>Pagka&#8217;t ang salita&#8217;y isang kahatulan<br />
Sa bayan, sa nayo&#8217;t mga kaharian,<br />
At ang isang tao&#8217;y katulad, kabagay<br />
Ng alin mang likha noong kalayaan.</p>
<p>Ang hindi magmahal sa kanyang salita<br />
Mahigit sa hayop at malansang isda,<br />
Kaya ang marapat pagyamaning kusa<br />
Na tulad sa inang tunay na nagpala.</p>
<p>Ang wikang Tagalog tulad din sa Latin<br />
Sa Ingles, Kastila at salitang anghel,<br />
Sapagka&#8217;t ang Poong maalam tumingin<br />
Ang siyang naggawad, nagbigay sa atin.</p>
<p>Ang salita nati&#8217;y huwad din sa iba<br />
Na may alfabeto at sariling letra,<br />
Na kaya nawala&#8217;y dinatnan ng sigwa<br />
Ang lunday sa lawa noong dakong una.</p></blockquote>
<p><small>Text from <a href="http://joserizal1.tripod.com/id4.html">Rizal: Sa Ispatlayt</a></small></p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/885/sa-aking-mga-kabata">&#8216;Sa Aking mga Kababata&#8217;</a> by Ian Dexter R Marquez</small></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Coredump?a=LNT3PV3WZ8c:qTKBSMw-cPQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Coredump?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=LNT3PV3WZ8c:qTKBSMw-cPQ:97Rr2qAlQ8w"><img src="http://feeds.feedburner.com/~ff/Coredump?d=97Rr2qAlQ8w" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=LNT3PV3WZ8c:qTKBSMw-cPQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Coredump?i=LNT3PV3WZ8c:qTKBSMw-cPQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=LNT3PV3WZ8c:qTKBSMw-cPQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Coredump?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Coredump/~4/LNT3PV3WZ8c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/885/sa-aking-mga-kabata/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://iandexter.net/885/sa-aking-mga-kabata</feedburner:origLink></item>
		<item>
		<title>Report complaints to the TXTPOWER Action Center</title>
		<link>http://feedproxy.google.com/~r/Coredump/~3/2EnfZarkJtM/report-complaints-to-the-txtpower-action-center</link>
		<comments>http://iandexter.net/878/report-complaints-to-the-txtpower-action-center#comments</comments>
		<pubDate>Thu, 09 Jul 2009 08:18:10 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[In-between]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=878</guid>
		<description><![CDATA[
(Spread the message. Get the banner here.)
Posted on Coredump - Work, play, and everything in-between.. Follow me on Twitter here. View the rest of my stream at public static void.Report complaints to the TXTPOWER Action Center by Ian Dexter R Marquez
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/878/report-complaints-to-the-txtpower-action-center">Report complaints to the TXTPOWER Action Center</a> by Ian Dexter R Marquez</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://cp-union.com/txtpowercenter"><img src="http://farm4.static.flickr.com/3534/3703702062_1f92312c0f.jpg" alt="TXTPOWER Action Center" /></a></p>
<p>(Spread the message. <a href="http://www.txtpower.org/#/news/report-your-complaints-to-the-txtpower-action-center">Get the banner here.</a>)</p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/878/report-complaints-to-the-txtpower-action-center">Report complaints to the TXTPOWER Action Center</a> by Ian Dexter R Marquez</small></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Coredump?a=2EnfZarkJtM:jiTTCqojAV8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Coredump?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=2EnfZarkJtM:jiTTCqojAV8:97Rr2qAlQ8w"><img src="http://feeds.feedburner.com/~ff/Coredump?d=97Rr2qAlQ8w" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=2EnfZarkJtM:jiTTCqojAV8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Coredump?i=2EnfZarkJtM:jiTTCqojAV8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=2EnfZarkJtM:jiTTCqojAV8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Coredump?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Coredump/~4/2EnfZarkJtM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/878/report-complaints-to-the-txtpower-action-center/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://iandexter.net/878/report-complaints-to-the-txtpower-action-center</feedburner:origLink></item>
		<item>
		<title>Redirect subdirectory to subdomain</title>
		<link>http://feedproxy.google.com/~r/Coredump/~3/UXUJpCqZ3mc/redirect-subdirectory-to-subdomain</link>
		<comments>http://iandexter.net/875/redirect-subdirectory-to-subdomain#comments</comments>
		<pubDate>Wed, 08 Jul 2009 15:15:47 +0000</pubDate>
		<dc:creator>Ian Dexter</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://iandexter.net/?p=875</guid>
		<description><![CDATA[Just a quick note, lest I forget this. To redirect a subdirectory to a subdomain using .htaccess, use the following:

&#60;ifmodule mod_rewrite.c&#62;
RewriteEngine On
RewriteBase /
RewriteRule ^subdirectory&#40;.*&#41;$ http://subdomain.domain.tld$1 &#91;R=301,L&#93;
&#60;/ifmodule&#62;

(Note the 301 permanent redirect.) The regular expression is greedy, but it takes care of the trailing slashes &#8212; just in case. *shrugs*
Posted on Coredump - Work, play, and everything [...]<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/875/redirect-subdirectory-to-subdomain">Redirect subdirectory to subdomain</a> by Ian Dexter R Marquez</small></p></p>
]]></description>
			<content:encoded><![CDATA[<p>Just a quick note, lest I forget this. To redirect a subdirectory to a subdomain using <code>.htaccess</code>, use the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;</span>ifmodule mod_rewrite.c<span style="color: #000000; font-weight: bold;">&gt;</span>
RewriteEngine On
RewriteBase <span style="color: #000000; font-weight: bold;">/</span>
RewriteRule ^subdirectory<span style="color: #7a0874; font-weight: bold;">&#40;</span>.<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>$ http:<span style="color: #000000; font-weight: bold;">//</span>subdomain.domain.tld$<span style="color: #000000;">1</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #007800;">R</span>=<span style="color: #000000;">301</span>,L<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">&lt;/</span>ifmodule<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>(Note the <code>301</code> permanent redirect.) The regular expression is greedy, but it takes care of the trailing slashes &mdash; just in case. *shrugs*</p>
<p><p><small>Posted on <strong><a href="http://iandexter.net">Coredump - Work, play, and everything in-between.</a></strong>. 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>.<br /><a href="http://iandexter.net/875/redirect-subdirectory-to-subdomain">Redirect subdirectory to subdomain</a> by Ian Dexter R Marquez</small></p></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Coredump?a=UXUJpCqZ3mc:Nmkq9n86Egw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Coredump?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=UXUJpCqZ3mc:Nmkq9n86Egw:97Rr2qAlQ8w"><img src="http://feeds.feedburner.com/~ff/Coredump?d=97Rr2qAlQ8w" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=UXUJpCqZ3mc:Nmkq9n86Egw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Coredump?i=UXUJpCqZ3mc:Nmkq9n86Egw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Coredump?a=UXUJpCqZ3mc:Nmkq9n86Egw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Coredump?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Coredump/~4/UXUJpCqZ3mc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://iandexter.net/875/redirect-subdirectory-to-subdomain/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://iandexter.net/875/redirect-subdirectory-to-subdomain</feedburner:origLink></item>
	</channel>
</rss>
