<?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>Tsukasa's ramblings &#187; Tsukasa</title>
	<atom:link href="http://blag.tsukasa.net.au/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blag.tsukasa.net.au</link>
	<description>Tech ramblings of Greg Darke, a University of Sydney student</description>
	<lastBuildDate>Fri, 28 May 2010 12:40:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Making the switch to xmonad (on ubuntu)</title>
		<link>http://blag.tsukasa.net.au/2010/03/03/making-the-switch-to-xmonad-on-ubuntu/</link>
		<comments>http://blag.tsukasa.net.au/2010/03/03/making-the-switch-to-xmonad-on-ubuntu/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 23:08:34 +0000</pubDate>
		<dc:creator>Tsukasa</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blag.tsukasa.net.au/?p=134</guid>
		<description><![CDATA[I have been using xmonad under unbuntu for nearly a year now (and have been VERY happy). I thought it was finally time that I share my method for configuring/setting up xmonad.
I run xmonad under gnome, this allows a lot of the magic of Ubuntu to continue working (such as network manager configuring wifi), and [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using xmonad under unbuntu for nearly a year now (and have been VERY happy). I thought it was finally time that I share my method for configuring/setting up xmonad.</p>
<p>I run xmonad under gnome, this allows a lot of the magic of Ubuntu to continue working (such as network manager configuring wifi), and helps keep the amount of manual configuration down to a minimum.</p>
<p><!-- more --></p>
<p>To get xmonad running do the following:</p>
<pre class="brush: bash; gutter: false;">
#!/bin/bash

# 1. Install the required packages
sudo aptitude install xmonad libghc6-xmonad-contrib-dev dmenu dzen2 fbpanel

# 2. Modify your gnome config so that it uses xmonad instead of the gnome window manager
echo 'export WINDOW_MANAGER=&quot;/usr/bin/xmonad&quot;' &gt; ~/.gnomerc
gconftool-2 --type string --set /desktop/gnome/session/required_components/windowmanager xmonad

# 3. Disable the gnome-panel
REQUIRED_COMPONENTS_LIST=&quot;$(gconftool-2 --get '/desktop/gnome/session/required_components_list')&quot;
REQUIRED_COMPONENTS_LIST=&quot;${REQUIRED_COMPONENTS_LIST/,panel/}&quot;
gconftool-2 --set --type list --list-type string '/desktop/gnome/session/required_components_list' &quot;${REQUIRED_COMPONENTS_LIST}&quot;

# 4. Stop nautilus from showing the desktop (icons only)
gconftool-2 --type boolean --set /apps/nautilus/preferences/show_desktop false

# 5. Install the xmonad config files and xsessionrc file
HG_REV=&quot;86dd222345d8&quot;
wget -O ~/.xprofile &quot;http://tsukasa.net.au/~hg/hgdotfiles-generic/raw-file/${HG_REV}/.xprofile&quot;
wget -O ~/.xsessionrc &quot;http://tsukasa.net.au/~hg/hgdotfiles-generic/raw-file/${HG_REV}/.xsessionrc&quot;
mkdir ~/.xmonad &amp;&amp;
wget -O ~/.xmonad/xmonad.hs &quot;http://tsukasa.net.au/~hg/hgdotfiles-generic/raw-file/${HG_REV}/.xmonad/xmonad.hs&quot;
</pre>
<p>Now all that is required is to log out and back in again (and pray my instructions work in your config ^^).</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.tsukasa.net.au/2010/03/03/making-the-switch-to-xmonad-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NCSS Python Golf</title>
		<link>http://blag.tsukasa.net.au/2010/01/03/ncss-python-golf/</link>
		<comments>http://blag.tsukasa.net.au/2010/01/03/ncss-python-golf/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 13:49:52 +0000</pubDate>
		<dc:creator>Tsukasa</dc:creator>
				<category><![CDATA[golf]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[NCSS]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[python golf]]></category>

		<guid isPermaLink="false">http://blag.tsukasa.net.au/?p=159</guid>
		<description><![CDATA[It is time again for me to run a Python Golf challenge&#8230; The aim? To write a python program that solves a problem in the least number of bytes (of source code).
The first of a few problems is:
Given a list of words on stdin (one per line), find the words that have the largest number [...]]]></description>
			<content:encoded><![CDATA[<p>It is time again for me to run a Python Golf challenge&#8230; The aim? To write a python program that solves a problem in the least number of bytes (of source code).</p>
<p>The first of a few problems is:</p>
<p>Given a list of words on stdin (one per line), find the words that have the largest number of <a href="http://en.wikipedia.org/wiki/Anagram">anagrams</a> in that list.</p>
<p>Print all of the words that have the meet the criteria of having the largest number anagrams (One per line, in alphabetical order).</p>
<p>This competition has now finished. The winner was Nick Cooper at 103 bytes, with the following awesome solution:</p>
<pre class="brush: python;">
import sys
s=sorted
o=s(sys.stdin)
r=map(s,o)
d=map(r.count,r)
for e,t in zip(o,d):print e*(max(d)==t),
</pre>
<p><!-- more --></p>
<p>Input:<br />
<code>caret<br />
crate<br />
react<br />
trace<br />
ester<br />
reset<br />
steer<br />
terse<br />
organ<br />
groan</code></p>
<p>Output:<br />
<code>caret<br />
crate<br />
ester<br />
react<br />
reset<br />
steer<br />
terse<br />
trace</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blag.tsukasa.net.au/2010/01/03/ncss-python-golf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Always discoverable on Android</title>
		<link>http://blag.tsukasa.net.au/2009/08/25/always-discoverable-on-android/</link>
		<comments>http://blag.tsukasa.net.au/2009/08/25/always-discoverable-on-android/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 13:42:31 +0000</pubDate>
		<dc:creator>Tsukasa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blag.tsukasa.net.au/?p=126</guid>
		<description><![CDATA[Something that is starting to annoy me about some of the newer smart phone operating system (I am looking at you iPhoneOS and Android) is that when you tick the box to make your phone discoverable by Bluetooth, it does not stay discoverable. Other operating systems give you an option to switch between hidden, temporally [...]]]></description>
			<content:encoded><![CDATA[<p>Something that is starting to annoy me about some of the newer smart phone operating system (I am looking at you iPhoneOS and Android) is that when you tick the box to make your phone discoverable by Bluetooth, it does not stay discoverable. Other operating systems give you an option to switch between hidden, temporally visible or always visible.</p>
<p>After a bit of hacking around on the my phone (a HTC Dream), I have discovered a way to make the Bluetooth stay discoverable. These instructions require adb (the Android Developer Bridge), an a (slightly) nonstandard rom. The reasoning behind requiring the non-standard rom, is that chown under android does weird things.</p>
<p><!-- more --!></p>
<p>Remember that this is done at your <em>own risk</em>.</p>
<pre class="brush: bash;">
adb remount
adb pull /system/etc/bluez/hcid.conf ./hcid.conf
sed -i'' -e 's/iscan disable/iscan enable/;s/pscan enable;/&amp;\n\n\t\#Make the device stay discoverable for ever\n\tdiscovto 0;/' hcid.conf
adb push hcid.conf /system/etc/bluez/hcid.conf
adb shell chmod 440 /system/etc/bluez/hcid.conf
adb shell busybox chown 1002.1002 /system/etc/bluez/hcid.conf
adb remount
rm -f hcid.conf

HCID_CONFIG=&quot;$(adb shell ls /data/misc/hcid/*/config | sed -e 's/\r//g')&quot;
adb pull &quot;$HCID_CONFIG&quot; hcid_config
sed -i'' -e 's/^discovto.*$/discovto 0/' hcid_config
adb push hcid_config &quot;$HCID_CONFIG&quot;
adb shell chmod 644 &quot;$HCID_CONFIG&quot;
adb shell busybox chown 1002.1002 &quot;$HCID_CONFIG&quot;
rm -f hcid_config
</pre>
<p>After all this is done&#8230; Don&#8217;t forget to power cycle the Bluetooth system (untick, then tick the box for Bluetooth).</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.tsukasa.net.au/2009/08/25/always-discoverable-on-android/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Setting up my old iBook G4</title>
		<link>http://blag.tsukasa.net.au/2009/07/16/setting-up-my-old-ibook-g4/</link>
		<comments>http://blag.tsukasa.net.au/2009/07/16/setting-up-my-old-ibook-g4/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 03:05:12 +0000</pubDate>
		<dc:creator>Tsukasa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[fink]]></category>
		<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://blag.tsukasa.net.au/?p=85</guid>
		<description><![CDATA[Now that I have moved, I have decided to reclaim my old iBook (which I was using as my router). With this decision, I thought it would be a good idea to keep track of what I had to do to get this machine to a state where I was happy with it (and thus [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I have moved, I have decided to reclaim my old iBook (which I was using as my router). With this decision, I thought it would be a good idea to keep track of what I had to do to get this machine to a state where I was happy with it (and thus a mac in general).</p>
<p>So, here it is, for those who are interested. You might even find a few things that you had not though of performing on your mac.<br />
<span id="more-85"></span><br />
Software installed:</p>
<ul>
<li><a href="http://iterm.sourceforge.net/download.shtml">iTerm</a> (latest svn build)</li>
<li><a href="http://www.finkproject.org/download/">fink</a> &#8211; with customizations</li>
<li><a href="http://xquartz.macosforge.org/trac/wiki/X112.3.3.2">XQuartz updates</a></li>
<li><a href="http://www.blacktree.com/">Quicksilver</a> &#8211; a very useful application launcher</li>
<li><a href="http://www.manytricks.com/witch/">Witch</a> &#8211; window switching on steroids</li>
<li><a href="http://andbit.net/psi_snapshots/mac/">Psi (Nightly snapshot)</a> &#8211; an excellent jabber client</a></li>
<li><a href="http://www.getfirefox.com/">Firefox</a></li>
</ul>
<h2>Fink customizations</h2>
<p>I have quite a few packages that I use that are not (yet) in the standard fink repos. This means I must remember to add my own custom ones to the mix.</p>
<p>The first step is to install mercurial:<br />
[sh]<br />
fink install mercurial-py26<br />
[/sh]</p>
<p>After this, you may clone the two custom repos that I use:<br />
[sh]<br />
cd /sw/fink<br />
hg clone http://tsukasa.net.au/~hg/fink_infos gregdarke<br />
hg clone http://delx.net.au/hg/finkinfos jamesbunton<br />
cd dists<br />
ln -s ../gregdarke<br />
ln -s ../jamesbunton<br />
[/sh]</p>
<p>After you have cloned these repos, you will need to update your <a href="http://www.finkproject.org/doc/users-guide/conf.php">fink.conf</a> file:<br />
[sh]<br />
sudo vim /sw/etc/fink.conf<br />
[/sh]<br />
Add &#8220;jamesbunton/main gregdarke/main&#8221; to end of the list for &#8216;Trees:&#8217;.<br />
Now you will need to update the packages list:<br />
[sh]<br />
fink index<br />
fink selfupdate<br />
fink update-all<br />
[/sh]</p>
<h2>Fink packages</h2>
<p>[sh]<br />
fink install mutt mplayer vim-nox screen git debfoster<br />
[/sh]</p>
<h2>Custom Compiles</h2>
<p>Since I like the new version of offlineimap (containing the patches for idle), I generally compile it from source. For this, you need to have a fink version of python installed (as the system python has a memory leak in ssl) and you must also have installed git.</p>
<p>I also like to have a fresh copy of iTerm, and thus grab that from source as well. This is a fairly easy install though:<br />
[sh]<br />
mkdir -p ~/Projects/software ~/Applications<br />
cd ~/Projects/software<br />
svn co https://iterm.svn.sourceforge.net/svnroot/iterm/trunk iterm<br />
cd iterm<br />
make Development<br />
mv build/Development/iTerm.app ~/Applications/<br />
[/sh]</p>
<h2>Enabling dual screen support</h2>
<p><em>Information taken from <a href="http://everything2.com/title/Monitor%2520spanning%2520with%2520an%2520iBook">the everything website</a>.</em></p>
<p>To enable support for dual monitors (ie, not mirroring), jump into open firmware:<br />
Hold command+option+o+f, then at the prompt, type:<br />
<code>" /" select-dev<br />
00000000 " graphic-options" get-my-property 2drop !<br />
mac-boot</code><br />
To make the above permanent, before typing mac-boot, press ctrl-c, then type the following:<br />
<code>nvstore<br />
setenv use-nvramrc? true<br />
reset-all</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blag.tsukasa.net.au/2009/07/16/setting-up-my-old-ibook-g4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reversing Latitude</title>
		<link>http://blag.tsukasa.net.au/2009/06/17/reversing-latitude/</link>
		<comments>http://blag.tsukasa.net.au/2009/06/17/reversing-latitude/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 01:10:11 +0000</pubDate>
		<dc:creator>Tsukasa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blag.tsukasa.net.au/?p=93</guid>
		<description><![CDATA[I have recently been playing around with the (relatively) new Google service named Latitude. This service may be either used from your mobile phone (including the Nokia S60 range) to allow you to see where your friends are located.
Something I have wanted to do with this service for a while is to use it to [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently been playing around with the (relatively) new Google service named <a href="http://google.com/latitude/">Latitude</a>. This service may be either used from your mobile phone (including the Nokia S60 range) to allow you to see where your friends are located.</p>
<p>Something I have wanted to do with this service for a while is to use it to keep track of where I have been. Recently Google released an <a href="http://googlegeodevelopers.blogspot.com/2009/05/build-on-top-of-your-public-latitude.html">API</a> to do this. The only problem with this is that your are required to change your privacy settings, effectively allowing everybody to know where you are.</p>
<p>This lead me on the quest to reverse engineer the data that the latitude iGoogle gadget uses to update itself. So far, I can parse the data into a set of lists once given a url to where the data is.</p>
<p>To obtain this url, you will need to use firebug to watch all of the requests made by the iGoogle page (with the latitude gadget loaded into that page) and look for the one that contains makeRequest. Copy this url, with all of it&#8217;s parameters to get access to the data.</p>
<p>I have written a small parsing library (in python) that will grab the data, and parse it out into the specified data structure. This library is available from my mercurial repository under the <a href="http://tsukasa.net.au/~hg/latitude">latitude project</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.tsukasa.net.au/2009/06/17/reversing-latitude/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Default email addresses for contacts in OSX</title>
		<link>http://blag.tsukasa.net.au/2009/04/16/default-email-addresses-for-contacts-in-osx/</link>
		<comments>http://blag.tsukasa.net.au/2009/04/16/default-email-addresses-for-contacts-in-osx/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 12:53:48 +0000</pubDate>
		<dc:creator>Tsukasa</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://blag.tsukasa.net.au/?p=83</guid>
		<description><![CDATA[Have you ever wondered how OSX decides what email address to use when you email a contact? A lot of the time, you get to choose, but there are times when the system decides for itself&#8230; Such as when you are using iCal to send out event invitations.
There is actually a way that the system [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wondered how OSX decides what email address to use when you email a contact? A lot of the time, you get to choose, but there are times when the system decides for itself&#8230; Such as when you are using iCal to send out event invitations.</p>
<p>There is actually a way that the system decides on which address to pick, and this is even a public API. The problem though, is that Address Book does not expose this interface to the user.</p>
<p>So, after some researching (to find the actual way this is implemented), I developed a small (command line) tool to change the default email address for a user. This tool, takes the form of a small python program, using the pyobjc bindings to the AddressBook framework.</p>
<p>The source code is avaliable from my repository in the stuff repository under the <a href="http://tsukasa.net.au/~hg/greg_stuff/file/b6b0e9bc226d/osx/addressbook/edit_default_address.py">osx/addressbook/edit_default_address.py</a> path.</p>
<p>You will also find in the same folder: a <a href="http://tsukasa.net.au/~hg/greg_stuff/file/b6b0e9bc226d/osx/addressbook/export_to_alias.py">script to create a mutt alias file from the system address book</a>, and a <a href="http://tsukasa.net.au/~hg/greg_stuff/file/b6b0e9bc226d/osx/addressbook/make_international.py">script to convert all of the phone numbers into the international format (from the Australian format)</a>.</p>
<p>These three programs form the basis of a good set of examples of the python objective-c bridge for the AddressBook format.</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.tsukasa.net.au/2009/04/16/default-email-addresses-for-contacts-in-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding fonts to linux</title>
		<link>http://blag.tsukasa.net.au/2009/04/07/adding-fonts-to-linux/</link>
		<comments>http://blag.tsukasa.net.au/2009/04/07/adding-fonts-to-linux/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 00:54:10 +0000</pubDate>
		<dc:creator>Tsukasa</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blag.tsukasa.net.au/?p=80</guid>
		<description><![CDATA[I have been complaining for the last few days about my the font that I have been using in my terminal, so I decided to actually do something about it.
What I didn&#8217;t know, was how to go about installing some nicer fonts. While talking to James about this, he suggested that I can just create [...]]]></description>
			<content:encoded><![CDATA[<p>I have been complaining for the last few days about my the font that I have been using in my terminal, so I decided to actually do something about it.<br />
What I didn&#8217;t know, was how to go about installing some nicer fonts. While talking to James about this, he suggested that I can just create a <code>~/.fonts</code> directory, and place the fonts in there. A great little piece of information, that I had no idea about.</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.tsukasa.net.au/2009/04/07/adding-fonts-to-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing audio on Ubuntu 8.10 for an iMac</title>
		<link>http://blag.tsukasa.net.au/2009/03/31/fixing-audio-on-ubuntu-810-for-an-imac/</link>
		<comments>http://blag.tsukasa.net.au/2009/03/31/fixing-audio-on-ubuntu-810-for-an-imac/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 01:52:08 +0000</pubDate>
		<dc:creator>Tsukasa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[imac]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://blag.tsukasa.net.au/2009/03/31/fixing-audio-on-ubuntu-810-for-an-imac/</guid>
		<description><![CDATA[I was having problems where the sound was crackly and quiet. So the fix seems to be reload the snd_hda_intel driver (kinda annoying&#8230; but at least it works)

sudo rmmod snd_hda_intel
sudo modprobe snd_hda_intel

]]></description>
			<content:encoded><![CDATA[<p>I was having problems where the sound was crackly and quiet. So the fix seems to be reload the snd_hda_intel driver (kinda annoying&#8230; but at least it works)</p>
<pre class="brush: bash;">
sudo rmmod snd_hda_intel
sudo modprobe snd_hda_intel
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blag.tsukasa.net.au/2009/03/31/fixing-audio-on-ubuntu-810-for-an-imac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making RSS less crap &#8211; Feed Fixer</title>
		<link>http://blag.tsukasa.net.au/2009/03/09/making-rss-less-crap-feed-fixer/</link>
		<comments>http://blag.tsukasa.net.au/2009/03/09/making-rss-less-crap-feed-fixer/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 03:28:18 +0000</pubDate>
		<dc:creator>Tsukasa</dc:creator>
				<category><![CDATA[python]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://blag.tsukasa.net.au/?p=71</guid>
		<description><![CDATA[As some people know, I read a lot of RSS feeds. I am currently subscribed to 69 separate feeds, and this number is slowly growing.
Something that I am starting to notice, is that quite a few websites/blogs don&#8217;t give you the whole story within the RSS feed. This is quite annoying, I read a lot [...]]]></description>
			<content:encoded><![CDATA[<p>As some people know, I read a lot of RSS feeds. I am currently subscribed to 69 separate feeds, and this number is slowly growing.</p>
<p>Something that I am starting to notice, is that quite a few websites/blogs don&#8217;t give you the whole story within the RSS feed. This is quite annoying, I read a lot of things while I am mobile (read with limited Internet connectivity), so clicking on each article&#8217;s link before I leave for the train is just annoying.</p>
<p>I have finally gotten around to creating a (web) service that will take these said feeds, and &#8216;fix&#8217; them. To do this, I take the RSS feed that is provided by the website/blog, and grab the full page that is linked from it. Then I run a <a href="http://www.w3.org/TR/xpath">xpath</a> query over this page and dump the result of it into the the output RSS feed.</p>
<p>You can grab the latest version of the service from it&#8217;s <a href="http://tsukasa.net.au/~hg/feed_fixer">development repository</a> at <a href="http://tsukasa.net.au/~hg/feed_fixer">http://tsukasa.net.au/~hg/feed_fixer</a>, or you may use my <a href="http://tsukasa.net.au/feed_fixer">installed version</a> at <a href="http://tsukasa.net.au/feed_fixer">http://tsukasa.net.au/feed_fixer</a>.</p>
<p>Remember that I am actually using this service, so <em>DO NOT</em> delete any of the entries that are there.</p>
<p>Some features that will be coming in a future version will be the ability to have &#8216;hidden&#8217; feeds (with a special key to gain access to the feed), the ability to add feeds requiring a password, the ability to add password protected trac feeds (as they decided to require user&#8217;s to have a cookie). Feature requests are welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.tsukasa.net.au/2009/03/09/making-rss-less-crap-feed-fixer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Stop Google.com Redirecting to Your Local Google « Techstatic.net</title>
		<link>http://blag.tsukasa.net.au/2009/03/09/stop-googlecom-redirecting-to-your-local-google-%c2%ab-techstaticnet/</link>
		<comments>http://blag.tsukasa.net.au/2009/03/09/stop-googlecom-redirecting-to-your-local-google-%c2%ab-techstaticnet/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 02:57:31 +0000</pubDate>
		<dc:creator>Tsukasa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blag.tsukasa.net.au/?p=68</guid>
		<description><![CDATA[I just discovered this little gem: Stop Google.com Redirecting to Your Local Google. Now, I am sure you would be asking why I would want to stop the redirection.
My answer is quite simple&#8230; Google has a bad habit of letting the &#8216;local&#8217; google page lag behind the US version, meaning things like latitude don&#8217;t work [...]]]></description>
			<content:encoded><![CDATA[<p>I just discovered this little gem: <a href='http://techstatic.wordpress.com/2009/03/01/stop-googlecom-redirecting-to-your-local-google-2/'>Stop Google.com Redirecting to Your Local Google</a>. Now, I am sure you would be asking why I would want to stop the redirection.</p>
<p>My answer is quite simple&#8230; Google has a bad habit of letting the &#8216;local&#8217; google page lag behind the US version, meaning things like latitude don&#8217;t work on google.com.au.</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.tsukasa.net.au/2009/03/09/stop-googlecom-redirecting-to-your-local-google-%c2%ab-techstaticnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
