<?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>Where is Darran? &#187; How To</title>
	<atom:link href="http://whereisdarran.com/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://whereisdarran.com</link>
	<description>i'm somewhere around here</description>
	<lastBuildDate>Thu, 12 Jan 2012 01:31:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Working print_it.c for Sam’s Teach Yourself C Programming in 21 days</title>
		<link>http://whereisdarran.com/2011/01/working-print_it-c-for-sams-teach-yourself-c-programming-in-21-days/</link>
		<comments>http://whereisdarran.com/2011/01/working-print_it-c-for-sams-teach-yourself-c-programming-in-21-days/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 00:14:17 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://whereisdarran.com/?p=6885</guid>
		<description><![CDATA[It&#8217; s always awesome being blessed with incorrect code snippets in beginner programming books. Luckily, I have enough sexy house music to work through anything (thank you radio 1!). If you&#8217;re looking for a working print_it.c example, look no further! much thanks to: http://www.programmersheaven.com/mb/beginnercpp/367391/367391/newbie-programming-error/ &#8211; There are bunch of sites with code for print_it.c and [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217; s always awesome being blessed with incorrect code snippets in beginner programming books. Luckily, I have enough sexy house music to work through anything (thank you radio 1!). If you&#8217;re looking for a working print_it.c example, look no further!</p>
<p>much thanks to: <a href="http://www.programmersheaven.com/mb/beginnercpp/367391/367391/newbie-programming-error/">http://www.programmersheaven.com/mb/beginnercpp/367391/367391/newbie-programming-error/</a> &#8211; There are bunch of sites with code for print_it.c and programmersheaven.com was the only one that had working code.</p>
<p>code:</p>
<pre>/* print_it.c-- This program prints a listing with line numbers! */
#include &lt;stdlib.h&gt;
#include &lt;stdio.h&gt;
void do_heading(char *filename);
int line = 0, page = 0;
int main( int argv, char *argc[] )
{
char buffer[256];
FILE *fp;
if( argv &lt; 2)
{
fprintf(stderr, "\nProper Usage is: ");
fprintf(stderr, "\n\nprint_it filename.ext\n" );
return(1);
}
if (( fp = fopen( argc[1], "r" )) == NULL )
{
fprintf( stderr, "Error opening file, %s!", argc[1]);
return(1);
}
page = 0;
line = 1;
do_heading( argc[1]);
while( fgets( buffer, 256, fp ) != NULL )
{
if( line % 55 == 0 )
do_heading( argc[1] );
fprintf( stdout, "%4d:\t%s", line++, buffer );
}
fprintf( stdout, "\f" );
fclose(fp);
return 0;
}
void do_heading( char *filename )
{
page++;
if ( page &gt; 1)
fprintf( stdout, "\f" );
fprintf( stdout, "Page: %d, %s\n\n", page, filename );
}
/* print_it.c-- This program prints a listing with line numbers! */#include &lt;stdlib.h&gt;#include &lt;stdio.h&gt;
void do_heading(char *filename);
int line = 0, page = 0;
int main( int argv, char *argc[] ){char buffer[256];FILE *fp;
if( argv &lt; 2){fprintf(stderr, "\nProper Usage is: ");fprintf(stderr, "\n\nprint_it filename.ext\n" );return(1);}
if (( fp = fopen( argc[1], "r" )) == NULL ){fprintf( stderr, "Error opening file, %s!", argc[1]);return(1);}
page = 0;line = 1;do_heading( argc[1]);
while( fgets( buffer, 256, fp ) != NULL ){if( line % 55 == 0 )do_heading( argc[1] );
fprintf( stdout, "%4d:\t%s", line++, buffer );}
fprintf( stdout, "\f" );fclose(fp);return 0;}
void do_heading( char *filename ){page++;
if ( page &gt; 1)fprintf( stdout, "\f" );
fprintf( stdout, "Page: %d, %s\n\n", page, filename );}</pre>
<p>now all that&#8217;s left is:</p>
<p>gcc print_it.c -o print</p>
<p>./print print_it.c</p>
]]></content:encoded>
			<wfw:commentRss>http://whereisdarran.com/2011/01/working-print_it-c-for-sams-teach-yourself-c-programming-in-21-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Stream in High Quality with Effects to Justin.tv or ustream.tv on Ubuntu</title>
		<link>http://whereisdarran.com/2010/11/how-to-stream-in-high-quality-with-effects-to-justin-tv-or-ustream-tv-on-ubuntu/</link>
		<comments>http://whereisdarran.com/2010/11/how-to-stream-in-high-quality-with-effects-to-justin-tv-or-ustream-tv-on-ubuntu/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 01:39:44 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://whereisdarran.com/?p=5286</guid>
		<description><![CDATA[This is a down and dirty how-to. I found that streaming via WebcamStudio resulted in higher quality streams than streaming directly to justin.tv. This approach also opens up some options not present in the browser based streaming solution justin.tv offers. WebcamStudio is not included in the Ubuntu repositories so we will have to download it [...]]]></description>
			<content:encoded><![CDATA[<p>This is a down and dirty how-to. I found that streaming via WebcamStudio resulted in higher quality streams than streaming directly to justin.tv. This approach also opens up some options not present in the browser based streaming solution justin.tv offers. WebcamStudio is not included in the Ubuntu repositories so we will have to download it manually.</p>
<p>1. Download WebcamStudio from the creators site at <a href="http://www.ws4gl.org/">www.ws4gl.org</a>. This will eventually forward you to sourceforge. Grab the .deb file from here: <a href="http://sourceforge.net/projects/webcamstudio/files/">http://sourceforge.net/projects/webcamstudio/files/</a> <a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-37.png"><img class="aligncenter size-medium wp-image-5297" title="Screenshot-37" src="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-37-300x34.png" alt="" width="300" height="34" /></a></p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-37.png"></a> 2. Install the deb file by double clicking it. This will open up the Ubuntu deb installer. The deb installer is now included in the Ubuntu Software on newer releases. Click the install button. (Note: If you have Synaptic open, the installer will hang until Synaptic is closed. This is a bug in Ubuntu)</p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-38.png"><img class="aligncenter size-medium wp-image-5298" title="Screenshot-38" src="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-38-300x185.png" alt="" width="300" height="185" /></a></p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-38.png"></a> 3. WebcamStudio is installed on the Main Menu under the Sound and Video section. Click the WebcamStudio link to launch the app. You can also press Alt+F2 and type in webcamstudio.</p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-39.png"><img class="aligncenter size-medium wp-image-5300" title="Screenshot-39" src="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-39-300x178.png" alt="" width="300" height="178" /></a></p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-39.png"></a> 4. Once WebcamStudio launches you will need to select your webcam under devices. Double click your webcam.  <a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-40.png"></a></p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-40.png"><img class="aligncenter size-medium wp-image-5301" title="Screenshot-40" src="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-40-300x121.png" alt="" width="300" height="121" /></a></p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-40.png"></a>5. Everything else should be easy. Click the play button under the Source Layer section. To verify that your webcam is working, click the output menu on the menu bar and select Show Preview. This will open up a preview window.</p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-41.png"><img class="aligncenter size-medium wp-image-5302" title="Screenshot-41" src="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-41-300x148.png" alt="" width="300" height="148" /></a></p>
<p>6. As you can see the coloring is off. To fix this we are going to apply an effect by clicking the effect tab and selecting SwapRedBlue and then enabling the effect by clicking the move button.</p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-42.png"><img class="aligncenter size-medium wp-image-5303" title="Screenshot-42" src="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-42-300x147.png" alt="" width="300" height="147" /></a></p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-42.png"></a> 7. Now that everything is good we are going to go to justin.tv and login to our account. Click the Go Live! button in the top right and the select webcam. If you only have one video source available on your pc, the video feed from the webcam we previously configured should be displayed.</p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot.png"><img class="aligncenter size-medium wp-image-5615" title="Screenshot" src="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-300x151.png" alt="" width="300" height="151" /></a></p>
<p>8. Next, lets do something special with WebcamStudio. Select the Output menu on the WebcamStudio application and then select SinglePaint. This will open up another preview panel that has paint options. We can use this to paint anything on the video stream we would like. If you like these kind of things, make sure to check out the effects tab in WebcamStudio.</p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-1.png"><img class="aligncenter size-medium wp-image-5616" title="Screenshot-1" src="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-1-300x199.png" alt="" width="300" height="199" /></a></p>
<p>Please feel free to donate to <a href="http://www.ws4gl.org/">www.ws4gl.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://whereisdarran.com/2010/11/how-to-stream-in-high-quality-with-effects-to-justin-tv-or-ustream-tv-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to “fix” Bridged Networking in VirtualBox (Ubuntu 11.04 Host / Windows XP Client)</title>
		<link>http://whereisdarran.com/2010/11/how-to-fix-bridged-networking-in-virtualbox-ubuntu-11-04-host-windows-xp-client/</link>
		<comments>http://whereisdarran.com/2010/11/how-to-fix-bridged-networking-in-virtualbox-ubuntu-11-04-host-windows-xp-client/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 00:45:35 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://whereisdarran.com/?p=5256</guid>
		<description><![CDATA[Note: This is not a complete fix, but more of a hack to get internet working on client VM&#8217;s when bridged networking does not allow client VM&#8217;s to access the internet. After switching a Windows XP VM to bridged ethernet, the XP VM was no longer able to access the internet. I found a few [...]]]></description>
			<content:encoded><![CDATA[<p>Note: This is not a complete fix, but more of a hack to get internet working on client VM&#8217;s when bridged networking does not allow client VM&#8217;s to access the internet.</p>
<p>After switching a Windows XP VM to bridged ethernet, the XP VM was no longer able to access the internet. I found a few solutions to this problem and this one seems to be the easiest.</p>
<p>To fix the loss of internet when using a bridged adapter on Virtualbox, configure the VM to have both a NAT and Bridged ethernet adapter. (see the screenshots below). To do this select the VM (must be powered off), click the settings button and then navigate to the network section of the Settings wizard. Configure Adapter 1 to bridged and then enable and configure Adapter 2 to be NAT. Press OK to save the changes and then turn on the VM. Give it a few seconds for the resources to be provisioned. You should now have access to both local and internet resources from the VM.</p>
<p>The NAT interface will be used to connect to internet resources, while the bridged adapter will be used to connect to local resources. This allows you to RDP  or console into the VM from other computers on your local network and still have internet access on the VM.</p>
<p>Adapter 1 (Bridged)</p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-35.png"><img class="aligncenter size-medium wp-image-5258" title="Screenshot-35" src="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-35-300x234.png" alt="" width="300" height="234" /></a></p>
<p>Adapter 2 (NAT)</p>
<p><a href="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-36.png"><img class="aligncenter size-medium wp-image-5259" title="Screenshot-36" src="http://whereisdarran.com/wp-content/uploads/2010/11/Screenshot-36-300x234.png" alt="" width="300" height="234" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://whereisdarran.com/2010/11/how-to-fix-bridged-networking-in-virtualbox-ubuntu-11-04-host-windows-xp-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>me-tv, a great program to watch tv with on ubuntu linux</title>
		<link>http://whereisdarran.com/2010/09/me-tv-a-great-program-to-watch-tv-with-on-ubuntu-linux/</link>
		<comments>http://whereisdarran.com/2010/09/me-tv-a-great-program-to-watch-tv-with-on-ubuntu-linux/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 01:07:47 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://whereisdarran.com/?p=3168</guid>
		<description><![CDATA[There are quite a few programs for watching TV with on linux, but the best one I have found is me-tv! You can download me-tv from https://launchpad.net/me-tv/+download or via your distributions package manager. It makes scanning for channels, adding channels, watching TV, and recording shows a cinch. Big up to me-tv!]]></description>
			<content:encoded><![CDATA[<p>There are quite a few programs for watching TV with on linux, but the best one I have found is me-tv! You can download me-tv from <a href="https://launchpad.net/me-tv/+download">https://launchpad.net/me-tv/+download</a> or via your distributions package manager. It makes scanning for channels, adding channels, watching TV, and recording shows a cinch. Big up to me-tv!</p>
]]></content:encoded>
			<wfw:commentRss>http://whereisdarran.com/2010/09/me-tv-a-great-program-to-watch-tv-with-on-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Lightweight Browsers</title>
		<link>http://whereisdarran.com/2009/12/some-lightweight-browsers/</link>
		<comments>http://whereisdarran.com/2009/12/some-lightweight-browsers/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 06:32:28 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Chromium]]></category>
		<category><![CDATA[Dillo]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Lightweight Browsers]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Links2]]></category>

		<guid isPermaLink="false">http://whereisdarran.com/?p=1021</guid>
		<description><![CDATA[I have broadband at home, but sometimes during the travels I end up at a library, internet cafe, or public wifi spot that is unbearably slow. When I&#8217;m on the internet I want to see what I want to see and I want it now. To deal with this unbearable situation I have been exploring [...]]]></description>
			<content:encoded><![CDATA[<p>I have broadband at home, but sometimes during the travels I end up at a library, internet cafe, or public wifi spot that is unbearably slow. When I&#8217;m on the internet I want to see what I want to see and I want it now. To deal with this unbearable situation I have been exploring lightweight browser alternatives. In this quest I have found a few that are quite good, extremely fast, and even cross platform!</p>
<p>My favorite so far: <a title="http://links.twibright.com/" href="http://links.twibright.com/" target="_blank">Links2</a></p>
<p>Links2 is a new revision of Links that supports graphics! It is extremely fast, easy to use, and a great way to browse the internet without the clutter. Sites like Facebook will not load, but for reading the news it does really well! If you feel like you don&#8217;t need graphics, try just plain Links. It can be used from the terminal and is more than enough to enjoy the web experience.</p>
<p>Close, but no cigar: <a title="http://www.dillo.org/" href="http://www.dillo.org/" target="_blank">Dillo</a></p>
<p>Dillo is another lightweight alternative. Supporting tabbed browsing, Dillo is fast and lightweight, but for some reason lacks the charm of Links. It also seems to crash on my Ubuntu 9.10 install. A major downer.</p>
<p>For those that are feeling adventurous: <a title="http://my.opera.com/ariesptn/blog/2008/11/17/using-microemulator-to-run-opera-mini" href="http://my.opera.com/ariesptn/blog/2008/11/17/using-microemulator-to-run-opera-mini" target="_blank">Opera Mini beta 2 with Microemulator</a></p>
<p>Opera Mini is by far the best browser I have found in the mobile arena. Why not use it on the computer? If you don&#8217;t mind doing a little dirty work, you can get Opera Mini running on your desktop. It is not as fast as Links2 or Dillo, but the browsing experience is closer to what you would experience on Firefox, Chrome, or IE. Opera Mini is an impressive browser, and on a slow connection it makes a great Desktop browser. Opera Mini has a password manager and supports cookies! YUM!</p>
<p>Full fledged browser (not lightweight): <a title="http://en.wikipedia.org/wiki/Chromium_(web_browser)" href="http://en.wikipedia.org/wiki/Chromium_(web_browser)" target="_blank">Google Chrome</a></p>
<p>With the addition of Extensions to <a title="http://en.wikipedia.org/wiki/Chromium_(web_browser)" href="http://en.wikipedia.org/wiki/Chromium_(web_browser)" target="_blank">Google Chrome</a>, I have almost fully transitioned from Firefox to Chrome! If you haven&#8217;t tried it out yet, please do. You will most likely be thoroughly impressed with its&#8217; speed and generous real estate dedicated to browsing!</p>
]]></content:encoded>
			<wfw:commentRss>http://whereisdarran.com/2009/12/some-lightweight-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome with Extensions (Flashblock, Adblock+, Gmail Checker)</title>
		<link>http://whereisdarran.com/2009/12/google-chrome-with-extensions/</link>
		<comments>http://whereisdarran.com/2009/12/google-chrome-with-extensions/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 06:06:43 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Chromium]]></category>
		<category><![CDATA[Google Chrome]]></category>

		<guid isPermaLink="false">http://whereisdarran.com/?p=1016</guid>
		<description><![CDATA[I haven&#8217;t been keeping up with Chrome, but I recently did a search for blocking flash and found that both Flashblock and Adblock+ have been implemented in the latest developers release of Chrome 4.0+. Not only that, the boys that get into this stuff have been busy cooking up a whole bunch of other extensions [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t been keeping up with Chrome, but I recently did a search for blocking flash and found that both Flashblock and Adblock+ have been implemented in the latest developers release of Chrome 4.0+. Not only that, the boys that get into this stuff have been busy cooking up a whole bunch of other extensions that are quite handy including a Gmail Checker and a Facebook modifier. To get these extensions and others mosey on over to <a title="http://www.chromeextensions.org/" href="http://www.chromeextensions.org/" target="_blank">www.chromeextensions.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://whereisdarran.com/2009/12/google-chrome-with-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Turn Off the Button Lights on the Nokia 5800</title>
		<link>http://whereisdarran.com/2009/05/how-to-turn-off-the-button-lights-on-the-nokia-5800/</link>
		<comments>http://whereisdarran.com/2009/05/how-to-turn-off-the-button-lights-on-the-nokia-5800/#comments</comments>
		<pubDate>Fri, 15 May 2009 07:20:16 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[button lights]]></category>
		<category><![CDATA[lights]]></category>
		<category><![CDATA[nokia 5800]]></category>

		<guid isPermaLink="false">http://whereisdarran.com/?p=659</guid>
		<description><![CDATA[The light from the buttons on the Nokia 5800 can be distracting when watching movies. Fortunately, it is easy to turn off these buttons using a program called LightCtrl. Step 1 Download LightCtrl here. Step 2 The program is unsigned. You must get it signed to install it. You will need your IMEI to do [...]]]></description>
			<content:encoded><![CDATA[<p>The light from the buttons on the Nokia 5800 can be distracting when watching movies. Fortunately, it is easy to turn off these buttons using a program called LightCtrl.</p>
<h4>Step 1</h4>
<p style="padding-left: 30px;">Download LightCtrl <a title="http://handheld.softpedia.com/progDownload/LightCtrl-Download-72707.html" href="http://handheld.softpedia.com/progDownload/LightCtrl-Download-72707.html" target="_blank">here</a>.</p>
<h4>Step 2</h4>
<p style="padding-left: 30px;">The program is unsigned. You must get it signed to install it. You will need your IMEI to do this.</p>
<p style="padding-left: 30px;">Find your IMEI by typing *#06# on the touch keypad of the Nokia 5800.</p>
<p style="padding-left: 30px;">Using your IMEI, visit <a title="http://www.symbiansigned.com" href="http://www.symbiansigned.com" target="_blank">SymbianSigned.com</a> and get LightCtrl signed.</p>
<h4>Step 3</h4>
<p style="padding-left: 30px;">Transfer the signed LightCtrl file to your Nokia 5800.</p>
<h4>Step 4</h4>
<p style="padding-left: 30px;">Using the File Manager(Applications-&gt;File Manager), browse to the location of the LightCtrl file and install it.</p>
<h4>Step 5</h4>
<p style="padding-left: 30px;">Once installed, open the application and set the Primary Keyboard setting to &#8220;Light off&#8221;. DONE! In addition, I set the Primary Screen setting to &#8220;Control by System&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://whereisdarran.com/2009/05/how-to-turn-off-the-button-lights-on-the-nokia-5800/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ironman Australia 2009 Results &#8211; Surry Hills, NSW, Australia</title>
		<link>http://whereisdarran.com/2009/04/ironman-australia-2009-results-surry-hills-nsw-australia/</link>
		<comments>http://whereisdarran.com/2009/04/ironman-australia-2009-results-surry-hills-nsw-australia/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 01:04:29 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[Ironman]]></category>
		<category><![CDATA[Ironman Australia]]></category>
		<category><![CDATA[Results]]></category>

		<guid isPermaLink="false">http://whereisdarran.com/?p=554</guid>
		<description><![CDATA[Some people have found my site searching for Ironman Australia 2009 results. Here is a link to the results. http://ironman.com/events/ironman/australia/?show=tracker&#38;rid=185&#38;year=2009 The last name and first name search fields were transposed when I tried the athlete search.]]></description>
			<content:encoded><![CDATA[<p>Some people have found my site searching for Ironman Australia 2009 results. Here is a <a title="http://ironman.com/events/ironman/australia/?show=tracker&amp;rid=185&amp;year=2009" href="http://ironman.com/events/ironman/australia/?show=tracker&amp;rid=185&amp;year=2009" target="_blank">link</a> to the results.</p>
<p><a title="http://ironman.com/events/ironman/australia/?show=tracker&amp;rid=185&amp;year=2009" href="http://ironman.com/events/ironman/australia/?show=tracker&amp;rid=185&amp;year=2009">http://ironman.com/events/ironman/australia/?show=tracker&amp;rid=185&amp;year=2009</a></p>
<p>The last name and first name search fields were transposed when I tried the athlete search.</p>
]]></content:encoded>
			<wfw:commentRss>http://whereisdarran.com/2009/04/ironman-australia-2009-results-surry-hills-nsw-australia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three Ways to Use Your Computer to Help Others &#8211; Surry Hills, NSW, Australia</title>
		<link>http://whereisdarran.com/2009/03/three-ways-to-help/</link>
		<comments>http://whereisdarran.com/2009/03/three-ways-to-help/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 10:28:47 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[BitTorrent]]></category>
		<category><![CDATA[boinc]]></category>
		<category><![CDATA[distributed computing]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[tor]]></category>
		<category><![CDATA[torrents]]></category>

		<guid isPermaLink="false">http://whereisdarran.com/?p=345</guid>
		<description><![CDATA[Almost all of us has at least one computer that we are not fully utilizing. Most likely, the computer you are using right now is not being fully utilized. Why not share your resources to help others? Below are three ways that you can use your computer to help others. BOINC BOINC is a utility [...]]]></description>
			<content:encoded><![CDATA[<p>Almost all of us has at least one computer that we are not fully utilizing. Most likely, the computer you are using right now is not being fully utilized. Why not share your resources to help others? Below are three ways that you can use your computer to help others.</p>
<h1 style="text-align: left;"><a title="http://boinc.berkeley.edu/" href="http://boinc.berkeley.edu/" target="_blank">BOINC</a></h1>
<p>BOINC is a utility program that uses <a title="http://en.wikipedia.org/wiki/Distributed_computing" href="http://en.wikipedia.org/wiki/Distributed_computing" target="_blank">distributed computing</a> concepts to allow scientists to gain access to untapped computing resources. By freely obtaining additional resources, scientents are able to solve problems faster. An example of a BOINC project is the <a title="http://www.worldcommunitygrid.org" href="http://www.worldcommunitygrid.org" target="_blank">World Community Grid</a>:</p>
<p><a title="http://www.worldcommunitygrid.org/" href="http://www.worldcommunitygrid.org/" target="_blank">World Community Grid</a>:</p>
<p>From their website: &#8220;World Community Grid&#8217;s mission is to create the largest public computing grid benefiting humanity. Our work is built on the belief that technological innovation combined with visionary scientific research and large-scale volunteerism can change our world for the better. Our success depends on individuals &#8211; like you &#8211; collectively contributing their unused computer time to this not-for-profit endeavor.&#8221;</p>
<p>Two of the <a title="http://www.worldcommunitygrid.org/projects_showcase/viewResearch.do" href="http://www.worldcommunitygrid.org/projects_showcase/viewResearch.do" target="_blank">WCG&#8217;s projects</a>:</p>
<p><a title="http://cleanenergy.harvard.edu/" href="http://cleanenergy.harvard.edu/" target="_blank">Clean Energy</a>:</p>
<p>From their website: &#8220;The Clean Energy project uses computational chemistry and the willingness of people to help look for the best molecules possible for: organic photovoltaics to provide inexpensive solar cells, polymers for the membranes used in fuel cells for electricity generation, and how best to assemble the molecules to make those devices. By helping us search combinatorially among thousands of potential systems, you can contribute to this effort.&#8221;</p>
<p><a title="http://www.cs.toronto.edu/~juris/WCG/wcg-hcc.html" href="http://www.cs.toronto.edu/~juris/WCG/wcg-hcc.html" target="_blank">Help Conquer Cancer</a></p>
<p>From their website: &#8221;Our goal is to improve the results of protein X-Ray crystallography. Improving the protein crystallography pipeline will enable researchers to determine the structure of many cancer-related proteins faster.  This will lead to improving our understanding of the function of these proteins, and enable potential pharmaceutical interventions to treat this deadly disease.&#8221;<span style="border-collapse: separate; color: #000000; font-family: Helvetica; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><br />
</span></p>
<h2 style="text-align: left;">How to get started with BOINC?</h2>
<p>Getting started with BOINC is easy. To begin, <a title="http://boinc.berkeley.edu/download.php" href="http://boinc.berkeley.edu/download.php" target="_blank">download BOINC.</a></p>
<p>To install, Just double-click the file previously downloaded and continue through the prompts. To start using BOINC you need to attach to a project. To do this go to Tools-&gt;Attach to project&#8230; (Screen below)</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-409" title="attachproject" src="http://whereisdarran.com/wp-content/uploads/2009/02/attachproject.gif" alt="attachproject" width="413" height="194" /></p>
<p>Another screen pops up and you need to click Next.  A list of projects is given. I would recommend selecting the World Community Grid Project. Select the project and click Next. If you are a new user, you will need to visit the <a title="http://www.worldcommunitygrid.org/" href="http://www.worldcommunitygrid.org/" target="_blank">World Community Grid</a> site and create a new account by going <a title="http://www.worldcommunitygrid.org/reg/viewRegister.do" href="http://www.worldcommunitygrid.org/reg/viewRegister.do" target="_blank">here</a>. The process is simple and it will ask you to download the software again, but you don&#8217;t need to. You just need to enter in your registration details in the BOINC application here:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-410" title="boincaccountdetails" src="http://whereisdarran.com/wp-content/uploads/2009/02/boincaccountdetails.gif" alt="boincaccountdetails" width="448" height="326" /></p>
<p>If everything is successful, you will see the following screen and now be contributing to solving some of the worlds computational challenges! If you have a good deal of extra computing power you can join multiple projects and split your resources between them.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-413" title="attachsuccessful" src="http://whereisdarran.com/wp-content/uploads/2009/02/attachsuccessful.gif" alt="attachsuccessful" width="373" height="277" /></p>
<h1 style="text-align: left;"><a title="http://en.wikipedia.org/wiki/BitTorrent_(protocol)" href="http://en.wikipedia.org/wiki/BitTorrent_(protocol)" target="_blank">Share Torrents</a></h1>
<p>More often than not you hear about torrents in a negative light due to their popularity contributing to copyright infringement. However, torrents are just as an effective way to distribute legal digital materials. If you are on an unlimited internet connection or do not always use the bandwidth you purchase, you can donate unused bandwidth to help distribute files. This will cut costs for the entities creating the materials and most likely result in everyone getting what they want to download faster than they would otherwise. Sharing is caring.</p>
<h2 style="text-align: left;">How to get started sharing Torrents?</h2>
<p>To begin, you will need to download a BitTorrent client. A simple client to use is <a title="http://www.utorrent.com/" href="http://www.utorrent.com/" target="_blank">uTorrent</a>. A full featured client is <a title="http://azureus.sourceforge.net/" href="http://azureus.sourceforge.net/" target="_blank">Azureus</a>. uTorrent has come a long way, so I only use uTorrent now. Download uTorrent <a title="http://www.utorrent.com/download.php" href="http://www.utorrent.com/download.php" target="_blank">here</a>. Installation is straight-forward and there is a wizard that begins when you first start uTorrent. It is pretty good and you can normally just use the settings it determines. Since beginning this post, I have switched BitTorrent clients to <a title="http://deluge-torrent.org/" href="http://deluge-torrent.org/" target="_blank">Deluge</a>. Deluge is cross-platform and open source.</p>
<p>Now that you have installed a BitTorrent client, time to find some <a title="http://en.wikipedia.org/wiki/BitTorrent_(protocol)#Operation" href="http://en.wikipedia.org/wiki/BitTorrent_(protocol)#Operation" target="_blank">torrents</a>. If you are into music, a good place to find legal torrents to download, listen to, and share is <a title="http://www.jamendo.com/en/" href="http://www.jamendo.com/en/" target="_blank">www.jamendo.com</a>. A good place to start is the <a title="http://www.jamendo.com/en/albums" href="http://www.jamendo.com/en/albums" target="_blank">most popular albums of the week</a>. Click one of the albums and the next screen will have a link that says download. The first time you download a file it will ask you if you want to download it via Torrent. Select yes. If it does not, you will need to create a profile and under &#8220;Edit Preferences&#8221; select Torrent as your download format. See the screen below:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-431" title="downloadformatjamendo" src="http://whereisdarran.com/wp-content/uploads/2009/02/downloadformatjamendo.gif" alt="downloadformatjamendo" width="423" height="327" /></p>
<p>I also like to share images of <a title="http://www.ubuntu.com/" href="http://www.ubuntu.com/" target="_blank">Ubuntu</a>. Ubuntu is a free and open source operating system that is making linux easier to use for everyone. If you haven&#8217;t tried it yet, I recommend you do. Especially if you&#8217;ve tried nix before and become disgruntled. A list of Ubuntu torrents can be found <a title="http://www.ubuntu.com/getubuntu/downloadmirrors#bt" href="http://www.ubuntu.com/getubuntu/downloadmirrors#bt" target="_blank">here</a>. If you want to test drive Ubuntu without blowing away your current Operating System. <a title="http://wubi-installer.org/" href="http://wubi-installer.org/" target="_blank">Try Wubi</a>!</p>
<h1 style="text-align: left;"><a title="http://www.torproject.org/" href="http://www.torproject.org/" target="_blank">Tor</a> (<a title="http://en.wikipedia.org/wiki/Tor_(anonymity_network)" href="http://en.wikipedia.org/wiki/Tor_(anonymity_network)" target="_blank">wikipedia entry</a>)</h1>
<p>Without going into the nitty gritty, which is described on both of the links above, Tor is a way to help people interact with the internet in an anonymous manner. I have pasted <a title="https://www.torproject.org/torusers.html.en" href="https://www.torproject.org/torusers.html.en" target="_blank">a section</a> of the Tor website below to give you an idea of what people use Tor for:</p>
<h2 style="text-align: left;">Why Normal people use Tor</h2>
<ul>
<li><strong>They protect their privacy from unscrupulous marketers and identity thieves.</strong>Internet Service Providers (ISPs) <a href="http://seekingalpha.com/article/29449-compete-ceo-isps-sell-clickstreams-for-5-a-month">sell your Internet browsing records</a> to marketers or anyone else willing to pay for it. ISPs typically say that they anonymize the data by not providing personally identifiable information, but <a href="http://www.wired.com/politics/security/news/2006/08/71579?currentPage=all">this has proven incorrect</a>. A full record of every site you visit, the text of every search you perform, and potentially userid and even password information can still be part of this data. In addition to your ISP, the websites (<a href="http://www.google.com/privacy_faq.html">and search engines</a>) you visit have their own logs, containing the same or more information.</li>
<li><strong>They protect their communications from irresponsible corporations.</strong> All over the Internet, Tor is being recommended to people newly concerned about their privacy in the face of increasing breaches and betrayals of private data. From <a href="http://www.securityfocus.com/news/11048">lost backup tapes</a>, to <a href="http://www.nytimes.com/2006/08/09/technology/09aol.html?ex=1312776000&amp;en=f6f61949c6da4d38&amp;ei=5090">giving away the data to researchers</a>, your data is often not well protected by those you are supposed to trust to keep it safe.</li>
<li><strong>They protect their children online.</strong> You&#8217;ve told your kids they shouldn&#8217;t share personally identifying information online, but they may be sharing their location simply by not concealing their IP address. Increasingly, IP addresses can be <a href="http://whatismyipaddress.com/">literally mapped to a city or even street location</a>, and can <a href="http://whatsmyip.org/more/">reveal other information</a> about how you are connecting to the Internet. In the United States, the government is pushing to make this mapping increasingly precise.</li>
<li><strong>They research sensitive topics.</strong> There&#8217;s a wealth of information available online. But perhaps in your country, access to information on AIDS, birth control, <a href="http://www.cbsnews.com/stories/2002/12/03/tech/main531567.shtml">Tibetan culture</a>, or world religions is behind a national firewall</li>
</ul>
<h2 style="text-align: left;">How to get started with Tor?</h2>
<p style="text-align: left;">A tutorial for getting setup with Tor can be found on the Tor documentation page <a title="http://www.torproject.org/docs/tor-doc-windows.html.en" href="http://www.torproject.org/docs/tor-doc-windows.html.en" target="_blank">here</a>. Tor can get you into trouble if you are operating as an exit. Operating as a relay s the safest option.</p>
<h2 style="text-align: left;">Have Fun!</h2>
<p style="text-align: left;">Feel free to ask any questions you might have. For some reason, the rendering in the wordpress post editor and web browsers is completely different. I am working on getting this sorted out.</p>
]]></content:encoded>
			<wfw:commentRss>http://whereisdarran.com/2009/03/three-ways-to-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Modify Firefox Right-Click Options</title>
		<link>http://whereisdarran.com/2009/03/how-to-modify-firefox-right-click-options/</link>
		<comments>http://whereisdarran.com/2009/03/how-to-modify-firefox-right-click-options/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 11:25:13 +0000</pubDate>
		<dc:creator>Darran</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Modify]]></category>
		<category><![CDATA[Right-Click]]></category>

		<guid isPermaLink="false">http://whereisdarran.com/?p=472</guid>
		<description><![CDATA[Recently, I have been using Google Chrome for most of my web browsing needs, however, a zdnet article was published stating that a pre-release of Firefox(Minefield) was faster than Google Chrome. As I began testing out Minefield, I became annoyed with some of the right-click options that do not correspond with the Chrome right-click options. [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I have been using <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">Google Chrome</a> for most of my web browsing needs, however, a <a title="http://news.zdnet.com/2100-9595_22-272792.html" href="http://news.zdnet.com/2100-9595_22-272792.html" target="_blank">zdnet article</a> was published stating that a pre-release of Firefox(Minefield) was faster than Google Chrome. As I began testing out Minefield, I became annoyed with some of the right-click options that do not correspond with the Chrome right-click options. The solution to this problem is a Firefox add-on called <a title="https://addons.mozilla.org/en-US/firefox/addon/710" href="https://addons.mozilla.org/en-US/firefox/addon/710" target="_blank">Menu Editor</a>. To install you can click the Add to Firefox link on this <a title="https://addons.mozilla.org/en-US/firefox/addon/710" href="https://addons.mozilla.org/en-US/firefox/addon/710" target="_blank">page</a> or follow the steps below:</p>
<p>How to Install Menu Editor:</p>
<p>In Firefox go to the Tools Menu</p>
<p>-&gt; Click Add-Ons</p>
<p>&#8211;&gt;Select Get Add-Ons</p>
<p>&#8212;&gt;Search for Menu Editor</p>
<p>&#8212;-&gt;Click add to Firefox/Minefield</p>
<p>A restart of the browser is required. Once this is done you can modify your right-click menu by going to Tools-&gt;Add-Ons-&gt;Extensions-&gt;Menu Editor-&gt;Options</p>
<p>Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://whereisdarran.com/2009/03/how-to-modify-firefox-right-click-options/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

