<?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>dbe.cc</title>
	<atom:link href="http://www.dbe.cc/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.dbe.cc/wordpress</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 10 Sep 2011 06:37:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Super sexy mysql backups</title>
		<link>http://www.dbe.cc/wordpress/?p=45</link>
		<comments>http://www.dbe.cc/wordpress/?p=45#comments</comments>
		<pubDate>Fri, 09 Sep 2011 05:52:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dbe.cc/wordpress/?p=45</guid>
		<description><![CDATA[This will give you backups of all your mysql data, nicely versioned with git, securely stored in S3. There are plenty of guides out there on how git, and S3 work. There are less on how jgit works, but there &#8230; <a href="http://www.dbe.cc/wordpress/?p=45">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This will give you backups of all your mysql data, nicely versioned with git, securely stored in S3.</p>
<p>There are plenty of guides out there on how git, and S3 work. There are less on how jgit works, but there are still some around. This is just the bare bones to get you up and running as quickly as possible. If anything is unclear, hit me in the comments.</p>
<p>Download jgit.sh (http://www.eclipse.org/jgit/download/)<br />
<del>enable partner repository</del><br />
<del> sudo apt-get update</del><br />
<del> sudo apt-get install sun-java6-jre</del></p>
<p>edit:: jgit seems to work fine with the openjdk, and AWS has a kernel bug where installing the sun package on a t1.micro instance causes the machine to freak out. Only occurs in some availability zones. Had some fun figuring that out!</p>
<p>sudo apt-get install openjdk-6-jre-headless</p>
<p>vim ~/.jgit<br />
accesskey: ACCESSKEY<br />
secretkey: SECRETKEY</p>
<p>mkdir s3backup<br />
cd s3backup<br />
git init<br />
mysqldump DBNAME -u USERNAME -r dump.sql &#8211;skip-comments<br />
git add dump.sql<br />
git commit dump.sql -m &#8220;Initial commit&#8221;<br />
git remote add s3 amazon-s3://.jgit@BUCKETNAME/SOMEPROJECTNAME.git<br />
~/jgit.sh push s3</p>
<p>Cron script contents:</p>
<p>#!/bin/bash<br />
d=&#8221;`date`&#8221;<br />
cd /home/ubuntu/s3backup<br />
mysqldump DBNAME -u USERNAME -r dump.sql &#8211;skip-comments<br />
git commit cpanel.sql -m &#8220;$d&#8221;<br />
git gc<br />
~/jgit.sh push s3</p>
<p>To get data back:</p>
<p>~/jgit.sh clone amazon-s3://.jgit@BUCKETNAME/PROJECTNAME.git<br />
git log<br />
git reset &#8211;hard THEHASHIDOFYOURDATABASEBEFOREYOUMESSEDITUP</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbe.cc/wordpress/?feed=rss2&#038;p=45</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install NodeJS on a default Amazon EC2 instance</title>
		<link>http://www.dbe.cc/wordpress/?p=44</link>
		<comments>http://www.dbe.cc/wordpress/?p=44#comments</comments>
		<pubDate>Wed, 25 May 2011 05:36:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[NodeJS]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[nodejs]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.dbe.cc/wordpress/?p=44</guid>
		<description><![CDATA[There are a few guides to this floating around, but Amazon must have changed a few things about their default micro instances as all the ones I found are out of date. Even the instructions built into AWS about how &#8230; <a href="http://www.dbe.cc/wordpress/?p=44">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are a few guides to this floating around, but Amazon must have changed a few things about their default micro instances as all the ones I found are out of date. Even the instructions built into AWS about how to connect to your instance are out of date!</p>
<p>I assume you&#8217;ve got your instance set up in AWS, if not, go do that and then come back. There&#8217;s plenty of info out there.</p>
<p>Ssh into your instance. AWS tells you to use this command:</p>
<pre>ssh -i test.pem root@xxxx.compute-1.amazonaws.com</pre>
<p>However, logging in as root won&#8217;t work. You need:</p>
<pre>ssh -i ./test.pem ec2-user@xxxx.compute-1.amazonaws.com</pre>
<p>Now you need to install a few prerequisites.</p>
<pre>sudo yum install gcc-c++ openssl-devel make</pre>
<p>Now grab Node. This version is current as at 25-May-2011. Check <a title="Node JS Download Page" href="http://nodejs.org/#download">http://nodejs.org/#download</a> for changes</p>
<pre>wget http://nodejs.org/dist/node-v0.4.8.tar.gz</pre>
<p>Untar it</p>
<pre>tar -xvvf node-v0.4.8.tar.gz</pre>
<p>Change into the correct directory:</p>
<pre>cd node-v0.4.8</pre>
<p>Configure it:</p>
<pre>./configure</pre>
<p>Make it (on a micro instance, this will take exactly forever):</p>
<pre>make</pre>
<p>Install it</p>
<pre>sudo make install</pre>
<p>Job done!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbe.cc/wordpress/?feed=rss2&#038;p=44</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tomboy and KDE, making it happen</title>
		<link>http://www.dbe.cc/wordpress/?p=42</link>
		<comments>http://www.dbe.cc/wordpress/?p=42#comments</comments>
		<pubDate>Tue, 11 Aug 2009 06:17:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.dbe.cc/?p=37</guid>
		<description><![CDATA[I run Kubuntu Jaunty with KDE4 on my netbook. BasKet wasn&#8217;t doing it for me so I tried to get Tomboy happening. Problem was, it would abort with a SIGSEGV and complain about errors in mono any time I tried &#8230; <a href="http://www.dbe.cc/wordpress/?p=42">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I run Kubuntu Jaunty with KDE4 on my netbook. BasKet wasn&#8217;t doing it for me so I tried to get Tomboy happening. Problem was, it would abort with a SIGSEGV and complain about errors in mono any time I tried to run it. I couldn&#8217;t find anything out there that suggested a workaround, so I set about building a newer version than was in the repos from source. Couldn&#8217;t get that happening, but in my travels I installed the package gnome-doc-utils and BAM, it worked.</p>
<p>So, if you&#8217;re having issues with Tomboy refusing to start under KDE4, have a crack at:</p>
<p>sudo apt-get install gnome-doc-utils</p>
<p>Let me know in comments if it does the trick.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbe.cc/wordpress/?feed=rss2&#038;p=42</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Huawei e169 on linux. It can be done!</title>
		<link>http://www.dbe.cc/wordpress/?p=41</link>
		<comments>http://www.dbe.cc/wordpress/?p=41#comments</comments>
		<pubDate>Mon, 04 Aug 2008 14:56:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.dbe.cc/?p=36</guid>
		<description><![CDATA[::EDIT:: As mentioned in some comments below, these devices are now supported out of the box on newer versions of Ubuntu. After much buggering about, I finally got this *&#38;#$# Huawei e169 working. This method requires no mucking around in &#8230; <a href="http://www.dbe.cc/wordpress/?p=41">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>::EDIT:: As mentioned in some comments below, these devices are now supported out of the box on newer versions of Ubuntu.<br />
<br />
After much buggering about, I finally got this *&amp;#$# Huawei e169 working. This method requires no mucking around in the kernel, just the usb_modeswitch utility and wvdial. For reference, this was a unit supplied from Optus in Australia for their Optus Wireless Broadband service. It&#8217;s set up on an old laptop running Ubuntu 8.04, Hardy Heron. There&#8217;s no good guide out there for the e169 at the time of writing.First, grab usb_modeswitch from <a href="http://www.draisberghof.de/usb_modeswitch/" target="_blank">http://www.draisberghof.de/usb_modeswitch/</a>There&#8217;s nothing to install, you just need the compiled executable. There&#8217;s a config file, but I found it far simpler to just use command line arguments. The commands for the e169 need to be executed in order, and they&#8217;re as follows:<br />
<blockquote>./usb_modeswitch -v 0x12d1 -p 0&#215;1001 -d 1./usb_modeswitch -v 0x12d1 -p 0&#215;1001 -H 1</p></blockquote>
<p>Once that&#8217;s done, the device should be recognised and /dev/ttyUSB0 should be created. Yay!Now, you need to spend a second setting up /etc/wvdial.conf The below should be pretty universal:<br />
<blockquote>[Dialer Defaults]Phone = *99#Username = *Password = *New PPPD = yes</p></blockquote>
<p><strike>wvdial looks for a device at /dev/modem, but ours is at /dev/ttyUSB0. My somewhat hacky solution was</strike><br />
<blockquote><strike>sudo ln /dev/ttyUSB0 /dev/modem</strike>Jerome in the comments has suggested adding this section to the conf file instead of creating a link as above. It&#8217;s untested by me, but looks like it should work fine. It&#8217;s a much cleaner solution than the crossed out one above, too. Add it right at the beginning of the file.[Modem0]Modem = /dev/ttyUSB0If you use this solution (which you should) remove the &#8220;sudo ln&#8230;&#8221; lines from connect.sh.</p></blockquote>
<p>Now, just executing wvdial in a terminal should get you connected. It takes a little while, about 30 seconds I guess, but the important thing is that it works, and it&#8217;s pretty simple.Since this connection is on a laptop intended for my grandfather, who is a fairly new computer user, I wanted to make the connection automatic in order to simplify things. I put this script in /etc/init.d/ which worked a treat. http://dbe.cc/pub/connect.shDon&#8217;t forget to run sudo update-rc.d connect.sh defaultsThe script will need to be tweaked to include the location of the usb_modeswitch executable on your system. Unless your username happens to be brian and it&#8217;s in a directory called .huawei under your home folder. That&#8217;d be a pretty crazy coincidence though. If people are actually finding this post and using the script I&#8217;ll update it to be more user friendly. Naturally, if you don&#8217;t want it executing on boot, you can just save the script as an executable and run it (as root) when you please.Also:Because this connection doesn&#8217;t run through network-manager, it confuses firefox a little. All it means is that firefox starts itself in offline mode. You can just untick &#8220;Work offline&#8221; in the File menu. I solved it more permanently with instructions from here: <a href="http://ubuntuforums.org/showthread.php?t=767045">http://ubuntuforums.org/showthread.php?t=767045</a>It&#8217;s late, so if there&#8217;s anything I&#8217;ve missed or anything that&#8217;s unclear, please let me know in the comments. I&#8217;ll do my best to help out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbe.cc/wordpress/?feed=rss2&#038;p=41</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Openmoko</title>
		<link>http://www.dbe.cc/wordpress/?p=39</link>
		<comments>http://www.dbe.cc/wordpress/?p=39#comments</comments>
		<pubDate>Mon, 21 Jul 2008 15:02:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.dbe.cc/?p=35</guid>
		<description><![CDATA[It&#8217;s really, really paining me to watch the beating that the openmoko project is currently taking. I&#8217;ve been majorly into this idea for some time now, about half way through &#8217;07. FOSS is a brilliant thing, and it&#8217;s only a &#8230; <a href="http://www.dbe.cc/wordpress/?p=39">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s really, really paining me to watch the beating that the openmoko project is currently taking. I&#8217;ve been majorly into this idea for some time now, about half way through &#8217;07. FOSS is a brilliant thing, and it&#8217;s only a matter of time before the telecommunications industry wakes up to that. After all, Linux sprouted from Unix which sprouted from a telco.</p>
<p>Sadly, it looks like the openmoko team has set the effort back a fair ways. It&#8217;s been released before it was ready and Dave Fayram has pointed that out. I thought Dave gave a reasonably fair assesment. He doesn&#8217;t seem to have spent much time with the manual, but most users don&#8217;t. His review has unfortunately been leapt upon by every Apple fanboy out there and it&#8217;sgaining a life of it&#8217;s own.</p>
<p>I&#8217;m a rank outsider, no involvement in the project whatsoever aside from voraciously reading news about it for the past 12 months. Frankly, it seems that it&#8217;s been mismanaged by FIC. There has been a fair amount of disgruntlement coming from the developers working for the company. The fact that they switched from the original GTK platoform to the qtopia stack at the eleventh hour smacked of desperation.</p>
<p>This wouldn&#8217;t really bother me if it wasn&#8217;t for the fact that openmoko had gained so much media attention. So often you hear outlets talking about the triumverate of iPhone, Android and openmoko. Up until this week I&#8217;ve been really proud to see such a rabidly open source project be given that much airtime. It&#8217;s frustrating to now find out that they weren&#8217;t deserving of it.</p>
<p>I think those of us looking for an open source phone now need to turn towards the slightly-open-source-but-not-really Android, and hope like hell that something great comes out of Nokia&#8217;s plans for opening up Symbian.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbe.cc/wordpress/?feed=rss2&#038;p=39</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It Hath Begun.</title>
		<link>http://www.dbe.cc/wordpress/?p=38</link>
		<comments>http://www.dbe.cc/wordpress/?p=38#comments</comments>
		<pubDate>Fri, 11 Jul 2008 10:50:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.dbe.cc/?p=34</guid>
		<description><![CDATA[Fucking World Youth Day. I decided to go for a ride today to check out the local walking/riding trails around Willoughby leisure centre and see if there was any decent mountain biking to be had. There&#8217;s a whole bunch of &#8230; <a href="http://www.dbe.cc/wordpress/?p=38">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Fucking World Youth Day.</p>
<p>I decided to go for a ride today to check out the local walking/riding trails around Willoughby leisure centre and see if there was any decent mountain biking to be had. There&#8217;s a whole bunch of concreted paths down there that are shared between pedestrians and bikes.</p>
<p>I was riding down one path when I saw a police motorcycle coming the other way. I was confused, until I saw a bunch of people walking behind it, many in World Youth Day Staff outfits taking up the entire path.</p>
<p>I considered moving over to the left and trying to ride around them, but then realised I didn&#8217;t want to be &#8220;annoying&#8221;. I pulled off onto a grassy area by the side of the path to wait it out. As I sat on my bike I got a whole bunch of greasy looks from the police, presumably they were sizing me up wondering if I was going to be a nuisance.</p>
<p>All up, there were two police motorcycles, four more police on foot and about 10 WYD staff members. This was all for about 20 &#8211; 30 pilgrims, doing nothing more than walking along a fucking path in the suburbs. As I rode home, I saw another police car and two more bikes directing traffic, I presume they were there for the same group.</p>
<p>For starters, what a goddamned waste of police resources. Secondly, why the hell was I made to feel like a criminal in my own suburb for some freaking god-botherers? Why did none of them even make a token effort to move over and let me past? Why was I glared at for sitting on my bike and watching them pass? The whole &#8220;Do not look upon them for they are holier than thou&#8221; attitude shits me to no end.</p>
<p>It Hath Begun.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbe.cc/wordpress/?feed=rss2&#038;p=38</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ghosts and the Creative Commons license.</title>
		<link>http://www.dbe.cc/wordpress/?p=37</link>
		<comments>http://www.dbe.cc/wordpress/?p=37#comments</comments>
		<pubDate>Fri, 07 Mar 2008 00:56:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.dbe.cc/?p=33</guid>
		<description><![CDATA[Trent Reznor recently released the latest Nine Inch Nails album in a really, really interesting way. The confluence of marketing-geekery and copyleft-geekery that it represents tickled my fancy. While his decision to release several SKUs at various price-points is the &#8230; <a href="http://www.dbe.cc/wordpress/?p=37">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Trent Reznor recently released the latest <a href="http://ghosts.nin.com/main/" title="Ghosts I- IV" target="_blank">Nine Inch Nails album</a> in a really, really interesting way. The confluence of marketing-geekery and copyleft-geekery that it represents tickled my fancy.</p>
<p>While his decision to release several SKUs at various price-points is the best new-wave digital distribution technique I&#8217;ve seen to date, it&#8217;s his choice to license the work under a <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/" title="Creative Commons, Attribution, Non-Commercial, Sharealike" target="_blank">version</a> of the <a href="http://creativecommons.org/" title="Creative Commons" target="_blank">Creative Commons</a> license that I think is really interesting, and has been overlooked by a lot of the comment I&#8217;ve read.</p>
<p>Basically, you can do whatever you please with Ghosts I &#8211; IV provided you don&#8217;t sell it to anyone, provided you don&#8217;t pretend that you or someone other than the original artists created it, and provided that you keep the license intact if you remix it.</p>
<p>So, I could take the FLAC copy I just paid Trent for and stick it on The Pirate Bay perfectly legally.</p>
<p>I see this as a watershed moment for Creative Commons. This is the first mainstream use of the license that I&#8217;m aware of. If Trent makes money despite the fact that people can legally give the album to everyone they know, it will say a lot of profound things about the emerging marketplaces for creative works.</p>
<p>First and foremost, it will make the RIAA&#8217;s ceaseless lawsuits look a bit silly. They&#8217;re telling us that the entire reason the music industry&#8217;s profits are declining are because of sharing. And yet here&#8217;s an artist that has essentially given his work away for free, and yet by all reports he&#8217;s made $750k within a few days. Granted, he had to apply some novel thinking to do it. He had to be a little bit *gasp* creative!</p>
<p>Maybe the mainstream record labels could do the same. I&#8217;m not saying they should adopt Trent&#8217;s model completely (although they could do worse) but just to inject some bold, fresh, risky thinking into their own models.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbe.cc/wordpress/?feed=rss2&#038;p=37</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the default action of the power button in KDE 3/Kubuntu.</title>
		<link>http://www.dbe.cc/wordpress/?p=36</link>
		<comments>http://www.dbe.cc/wordpress/?p=36#comments</comments>
		<pubDate>Thu, 25 Oct 2007 10:45:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.dbe.cc/?page_id=32</guid>
		<description><![CDATA[When Gutsy came out recently I decided to make the switch from Gnome to KDE. Overall I like it, but there are some things that are driving me nuts. One of them is that there seems to be no way &#8230; <a href="http://www.dbe.cc/wordpress/?p=36">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When Gutsy came out recently I decided to make the switch from Gnome to KDE. Overall I like it, but there are some things that are driving me nuts. One of them is that there seems to be no way to change the default action of the power button on my laptop. This was easy to change in Gnome, but requires more trickery in KDE.</p>
<p>After a while of searching around in control panels and on Google, it became apparent that the answer I sought did not lay in a GUI. Thankfully, the acpi config files are very easy to edit.</p>
<p>All you need to do is go to /etc/acpi/events and find the file named powerbtn. It&#8217;s good practice to make a backup at this point. Copy the file to something like powerbtn.bak. Now click the handy &#8220;edit as root&#8221; button in Dolphin.</p>
<p>Alternately, if you&#8217;re comfortable in a terminal, it&#8217;s much simpler to just issue the following command:</p>
<blockquote><p>sudo cp /etc/acpi/events/powerbtn /etc/acpi/events/powerbtn.bak &amp;&amp; sudo kate /etc/acpi/events/powerbtn</p></blockquote>
<p>Once in there, find the line action=/etc/acpi/powerbtn.sh and change it to the following:</p>
<blockquote><p>action=/etc/acpi/hibernate.sh</p></blockquote>
<p>Save it and you&#8217;re done. You&#8217;ll need to restard acpid (or just reboot the whole os) before the change will take effect.</p>
<p>What this change does is, instead of telling the system to run the &#8220;ask the user what they want to do&#8221; script when the power button is pressed, it tells the system to run the &#8220;hibernate now&#8221; script when the button is pressed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbe.cc/wordpress/?feed=rss2&#038;p=36</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Motorcycle!</title>
		<link>http://www.dbe.cc/wordpress/?p=35</link>
		<comments>http://www.dbe.cc/wordpress/?p=35#comments</comments>
		<pubDate>Sun, 05 Aug 2007 14:36:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.dbe.cc/?p=30</guid>
		<description><![CDATA[I&#8217;ve been lax in posting about it, but a few weeks ago I finally bought my first motorbike. I&#8217;ve been moving towards this for years, but it hasn&#8217;t come together, mainly for reasons of money. I finally pulled the trigger &#8230; <a href="http://www.dbe.cc/wordpress/?p=35">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been lax in posting about it, but a few weeks ago I <em>finally</em> bought my first motorbike. I&#8217;ve been moving towards this for years, but it hasn&#8217;t come together, mainly for reasons of money. I finally pulled the trigger on a Sachs Madass 125. It&#8217;s a little bike, but it has a few main attributes.</p>
<ul>
<li>It&#8217;s cheap. $3500 on road.</li>
<li>It&#8217;s light, so it&#8217;s dead easy to ride and manouver.</li>
<li>The build quality is great. The frame has some really pretty welds.</li>
<li>It&#8217;s cheap.</li>
<li>The engine is a knock off of the Honda CT110 with a bigger head on it, so it&#8217;s pretty much bulletproof.</li>
<li>It looks awesome.</li>
<li>It&#8217;s cheap.</li>
</ul>
<p>I can definitely see myself picking up a bigger bike in the future (the Triumph Scrambler, Husqvarna SM610 and the Honda CB1300 spring to mind. Mmmmmm.) But while I&#8217;m at uni this little machine is great for getting me around.</p>
<p>I&#8217;m also having a hell of a lot of fun riding it. My skill levels are improving constantly, and I&#8217;m pushing myself harder and harder to get better. Also, I dragged off a bloke on a Suzuki Across on Saturday. Sure, he was a learner who seemed to be struggling really badly, but I beat him nonetheless.</p>
<p><a href="http://dbe.cc/pics/madass.jpg"><img src="http://dbe.cc/pics/madass.jpg" height="284" width="377" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbe.cc/wordpress/?feed=rss2&#038;p=35</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I want this phone.</title>
		<link>http://www.dbe.cc/wordpress/?p=34</link>
		<comments>http://www.dbe.cc/wordpress/?p=34#comments</comments>
		<pubDate>Sun, 29 Jul 2007 11:58:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://www.dbe.cc/?p=29</guid>
		<description><![CDATA[My technolust is raging for the Neo1973 from FIC and OpenMoko. It&#8217;s a Linux based smartphone with a retardedly high resolution screen, coming out in October. The developer version is already out (this isn&#8217;t vapourware), but it lacks a few &#8230; <a href="http://www.dbe.cc/wordpress/?p=34">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My technolust is <em>raging</em> for the Neo1973 from FIC and OpenMoko. It&#8217;s a Linux based smartphone with a retardedly high resolution screen, coming out in October. The developer version is already out (this isn&#8217;t vapourware), but it lacks a few features like WiFi.</p>
<p>I&#8217;m just really, really excited for a completely open phone. I&#8217;m currently using a Sony Ericsson k800i, which is a great phone, but it&#8217;s loaded with this goddamned Optus My Zoo Now java app that can&#8217;t be removed. The shortcut to it is located on the same softkey as the hang up button, meaning that if someone I&#8217;m talking to hangs up a call before I do, it loads. This wouldn&#8217;t be too much of a problem, except that it&#8217;s really, really poorly written and takes a good few minutes to load, during which time you can&#8217;t do anything else on the phone. If you try and kill it early, it usually crashes the phone. This is very frustrating behaviour.</p>
<p>Having a completely open phone will mean that crap like this doesn&#8217;t happen. Having a phone that runs on Linux will mean that I can use tools like cron. My dream is to have the phone set to automatically mirror smh.com.au/text every morning while it&#8217;s at home on my home WiFi network. That&#8217;s the main thing I use my data connection for anyway, and it doesn&#8217;t change throughout the day. I could have the entire newspaper sitting locally on my phone, loading lightning fast, and it wouldn&#8217;t cost me a cent. If I could get that set up the lack of UMTS wouldn&#8217;t even bother me.</p>
<p>Also, it would support SyncML meaning I could sync it up with whatever I please. No vendor lock-in like with ActiveSync, gah.</p>
<p>All in all, October is going to be a great month for geekery. Gutsy Gibbon drops and the consumer version of the Neo1973 is released to market. Glee!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbe.cc/wordpress/?feed=rss2&#038;p=34</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

