<?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>Halcyon</title>
	<atom:link href="http://halcyon.net.nz/feed/" rel="self" type="application/rss+xml" />
	<link>http://halcyon.net.nz</link>
	<description></description>
	<lastBuildDate>Wed, 16 May 2012 10:16:00 +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>Disable Supernode in Skype</title>
		<link>http://halcyon.net.nz/2012/02/20/disable-supernode-in-skype/</link>
		<comments>http://halcyon.net.nz/2012/02/20/disable-supernode-in-skype/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 05:20:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://halcyon.net.nz/?p=1066</guid>
		<description><![CDATA[What is a Supernode? Skype uses peer-to-peer communications in order to allow users to find one another. Consequently, a small percentage of our users will hold a record reflecting the online presence of other users. When one user holds a &#8230; <a href="http://halcyon.net.nz/2012/02/20/disable-supernode-in-skype/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>What is a Supernode?</p>
<blockquote><p>Skype uses peer-to-peer communications in order to allow users to find one another. Consequently, a small percentage of our users will hold a record reflecting the online presence of other users. When one user holds a record concerning the presence of other users, the former is called a &#8220;supernode&#8221;, or directory node.</p>
<p>Even though the traffic sent to supernodes is negligible, some institutions are interested in preventing users on their network from becoming supernodes and, thereby, answering directory enquiries for other users.</p></blockquote>
<p>How can you avoid becoming a Supernode? <span id="more-1066"></span>According to the Skype website&#8230;</p>
<ul>
<li>Beginning with Skype 3.0, an explicit switch is provided in the registry settings to allow the disabling of supernode functionality.</li>
<li>Any computer hosted on a network that is behind a network address translation (NAT) device or restrictive firewall will disable supernode functionality.</li>
<li>Skype clients behind an HTTP or SOCKS5 proxy will not serve as supernodes.</li>
</ul>
<p>How to disable super functionality via the registry</p>
<p>Create a textfile called <code>fixskype.reg</code></p>
<p>Inside this file, paste the following four lines. Then save, right click this file and select Merge.<br />
<code><br />
Windows Registry Editor Version 5.00<br />
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Skype]<br />
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Skype\Phone]<br />
"DisableSupernode"=dword:00000001</code></p>
]]></content:encoded>
			<wfw:commentRss>http://halcyon.net.nz/2012/02/20/disable-supernode-in-skype/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful MySQL Shortcuts</title>
		<link>http://halcyon.net.nz/2012/02/20/useful-mysql-shortcuts/</link>
		<comments>http://halcyon.net.nz/2012/02/20/useful-mysql-shortcuts/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 05:01:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://halcyon.net.nz/?p=1251</guid>
		<description><![CDATA[A couple of things I currently do to speed up my day to day usage of MySQL&#8230; 1. I have a shortcut on the desktop that logs me straight into MySQL. This one is pretty easy, make a shortcut to &#8230; <a href="http://halcyon.net.nz/2012/02/20/useful-mysql-shortcuts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A couple of things I currently do to speed up my day to day usage of MySQL&#8230;</p>
<p>1. I have a shortcut on the desktop that logs me straight into MySQL. This one is pretty easy, make a shortcut to the mysql.exe on the desktop, then edit the shortcut and add the options for username and password. For example:<br />
<code><br />
"C:\program files\mysql\MySQL Server 5.5\bin\mysql.exe" -uusername -ppassword<br />
</code></p>
<p>2. I have to drop the database quite often, our system regenerates and loads a new one if its not there so for testing this is something I do often.</p>
<p>First, make a file called <code>drop.txt</code>.</p>
<p>Inside this, put the following:<br />
<code><br />
drop database mydatabase;<br />
</code></p>
<p>Secondly, create <code>drop.cmd</code> and inside, add this:<code></code></p>
<p><code>@echo off<br />
echo About to drop the database... Are you sure?<br />
pause<br />
"C:\Program Files\MySQL\MySQL Server 5.5\bin\mysql.exe" -uusername -ppassword &lt; c:\pathtodropdottext\drop.txt<br />
</code></p>
<p>The pause is there to give you a chance to abort. You could easily alter this setup to run other sql statements if you need to.</p>
]]></content:encoded>
			<wfw:commentRss>http://halcyon.net.nz/2012/02/20/useful-mysql-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Script to Restart IIS and MySQL</title>
		<link>http://halcyon.net.nz/2012/02/14/simple-script-to-restart-iis-and-mysql/</link>
		<comments>http://halcyon.net.nz/2012/02/14/simple-script-to-restart-iis-and-mysql/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 00:50:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://halcyon.net.nz/?p=1246</guid>
		<description><![CDATA[This is a quick way of restarting IIS and MySQL. Simply create a .bat file with the following text then run as Administrator&#8230; or create a shortcut to the batch file, edit the properties and select Run As Administrator from &#8230; <a href="http://halcyon.net.nz/2012/02/14/simple-script-to-restart-iis-and-mysql/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a quick way of restarting IIS and MySQL. Simply create a .bat file with the following text then run as Administrator&#8230; or create a shortcut to the batch file, edit the properties and select Run As Administrator from the advanced options.<br />
<code><br />
@echo off<br />
echo Restarting IIS...<br />
echo ======================================================<br />
net stop "W3SVC"<br />
net stop "MySQL"<br />
net start "MySQL"<br />
net start "W3SVC"<br />
echo ======================================================<br />
echo IIS Restarted<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://halcyon.net.nz/2012/02/14/simple-script-to-restart-iis-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find vmnetcfg.exe for vmware player 3.1.3</title>
		<link>http://halcyon.net.nz/2011/02/24/how-to-find-vmnetcfg-exe-for-vmware-player-3-1-3/</link>
		<comments>http://halcyon.net.nz/2011/02/24/how-to-find-vmnetcfg-exe-for-vmware-player-3-1-3/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 22:33:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://halcyon.net.nz/?p=1007</guid>
		<description><![CDATA[If you&#8217;re having trouble finding vmnetcfg.exe for vmware player 3.1.3, its because it seems like this file is not installed with this version. The good news is that it is included in the installer and all you need to do &#8230; <a href="http://halcyon.net.nz/2011/02/24/how-to-find-vmnetcfg-exe-for-vmware-player-3-1-3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re having trouble finding vmnetcfg.exe for vmware player 3.1.3, its because it seems like this file is not installed with this version. The good news is that it is included in the installer and all you need to do is extract it, copy it to the right place, then you can use it.</p>
<p>1. Run the installer with /e option. For example:</p>
<p><code>VMware-player-3.0.0-197124.exe /e .\extract</code></p>
<p>All contents will be extracted to &#8221;extract&#8221; folder.</p>
<p>2. Open &#8220;network.cab&#8221; and copy vmnetcfg.exe to your installation folder, typically &#8220;C:\Program Files\VMware\VMware Player\&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://halcyon.net.nz/2011/02/24/how-to-find-vmnetcfg-exe-for-vmware-player-3-1-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Audiobooks</title>
		<link>http://halcyon.net.nz/2007/04/30/free-audiobooks/</link>
		<comments>http://halcyon.net.nz/2007/04/30/free-audiobooks/#comments</comments>
		<pubDate>Mon, 30 Apr 2007 07:04:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fun Sites]]></category>

		<guid isPermaLink="false">http://halcyon.net.nz/2007/04/30/free-audiobooks/</guid>
		<description><![CDATA[The website Simply Audiobooks, who also sell and rent audio books, have a small selection of free audiobooks to download. These include &#8220;The Stolen White Elephant&#8221; by Mark Twain, Quotations of Mahatma Ghandi&#8221; Narrated by Michael Scott, The Art of &#8230; <a href="http://halcyon.net.nz/2007/04/30/free-audiobooks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The website <a href="http://www.simplyaudiobooks.com/Free_Audiobooks/dp/202/">Simply Audiobooks</a>, who also sell and rent audio books, have a small selection of free audiobooks to download.</p>
<p>These include &#8220;The Stolen White Elephant&#8221; by Mark Twain, Quotations of Mahatma Ghandi&#8221; Narrated by Michael Scott, The Art of War&#8221; by Sun Tzu, and others.</p>
<p>You can download these files for free and listen to them on your mp3 player, on your computer, or burn them to CD.</p>
<p><a href="http://www.simplyaudiobooks.com/Free_Audiobooks/dp/202/">http://www.simplyaudiobooks.com/Free_Audiobooks/dp/202/</a></p>
<p>Related Posts:<br />
<a href="http://halcyon.net.nz/2007/04/25/freecycle-get-stuff-for-free/">Freecycle (Get stuff for free!)</a><br />
<a href="http://halcyon.net.nz/2007/04/15/free-high-resolution-wallpapers/">Free High Resolution Wallpapers</a></p>
]]></content:encoded>
			<wfw:commentRss>http://halcyon.net.nz/2007/04/30/free-audiobooks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freecycle (Get stuff for free!)</title>
		<link>http://halcyon.net.nz/2007/04/25/freecycle-get-stuff-for-free/</link>
		<comments>http://halcyon.net.nz/2007/04/25/freecycle-get-stuff-for-free/#comments</comments>
		<pubDate>Tue, 24 Apr 2007 21:32:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fun Sites]]></category>

		<guid isPermaLink="false">http://halcyon.net.nz/2007/04/25/freecycle-get-stuff-for-free/</guid>
		<description><![CDATA[The Freecycle Network was started in May 2003 to promote waste reduction in Tucson&#8217;s downtown and help save desert landscape from being taken over by landfills. The Network provides individuals and non-profits an electronic forum to &#8220;recycle&#8221; unwanted items. One &#8230; <a href="http://halcyon.net.nz/2007/04/25/freecycle-get-stuff-for-free/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.freecycle.org/">Freecycle</a> Network was started in May 2003 to promote waste reduction in Tucson&#8217;s downtown and help save desert landscape from being taken over by landfills. The Network provides individuals and non-profits an electronic forum to &#8220;recycle&#8221; unwanted items. One person&#8217;s trash can truly be another&#8217;s treasure!</p>
<p>How does it work?<br />
When you want to find a new home for something &#8212; whether it&#8217;s a chair, a fax machine, piano, or an old door &#8212; you simply send an e-mail offering it to members of the local Freecycle group.</p>
<p>Or, maybe you&#8217;re looking to acquire something yourself. Simply respond to a member&#8217;s offer, and you just might get it. After that, it&#8217;s up to the giver to decide who receives the gift and to set up a pickup time for passing on the treasure.</p>
<p>Our main rule: Everything posted must be free, legal, and appropriate for all ages.</p>
<p>Check out Freecycle here: <a href="http://www.freecycle.org/">http://www.freecycle.org/</a></p>
<p>Or find a group near you and start &#8216;Freecycling&#8217;: <a href="http://www.freecycle.org/groups/">http://www.freecycle.org/groups/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://halcyon.net.nz/2007/04/25/freecycle-get-stuff-for-free/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>5min – Life Videopedia – 5 Minute How To Videos</title>
		<link>http://halcyon.net.nz/2007/04/21/5min-life-videopedia-5-minute-how-to-videos/</link>
		<comments>http://halcyon.net.nz/2007/04/21/5min-life-videopedia-5-minute-how-to-videos/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 21:10:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fun Sites]]></category>

		<guid isPermaLink="false">http://halcyon.net.nz/2007/04/21/5min-life-videopedia-5-minute-how-to-videos/</guid>
		<description><![CDATA[5min is a place to find short video solutions for any practical question and a forum for people wanting to share their knowledge. The vision behind 5min is a very simple one: any solution can be visually explained in no &#8230; <a href="http://halcyon.net.nz/2007/04/21/5min-life-videopedia-5-minute-how-to-videos/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.5min.com/">5min</a></strong> is a place to find short video solutions for any practical question and a forum for people wanting to share their knowledge.</p>
<blockquote><p>The vision behind 5min is a very simple one: any solution can be visually explained in no more than 5 minutes. Our aim is to create the first communal Life Videopedia allowing users from all over the globe to contribute their knowledge by sharing visual guides covering arts, business, fashion, sports, health, tech, food, and much more.</p></blockquote>
<p><a href="http://www.5min.com/">http://www.5min.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://halcyon.net.nz/2007/04/21/5min-life-videopedia-5-minute-how-to-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FineTune.com – Create Playlists And Listen To Free Music</title>
		<link>http://halcyon.net.nz/2007/04/19/finetunecom-create-playlists-and-listen-to-free-music/</link>
		<comments>http://halcyon.net.nz/2007/04/19/finetunecom-create-playlists-and-listen-to-free-music/#comments</comments>
		<pubDate>Thu, 19 Apr 2007 09:38:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fun Sites]]></category>

		<guid isPermaLink="false">http://halcyon.net.nz/2007/04/19/finetunecom-create-playlists-and-listen-to-free-music/</guid>
		<description><![CDATA[I&#8217;ve just been playing with finetune.com. This website allows you to pick an artist and they will build you a playlist featuring music by that artist and other related artists. You can then listen to that playlist and remove songs &#8230; <a href="http://halcyon.net.nz/2007/04/19/finetunecom-create-playlists-and-listen-to-free-music/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just been playing with <a href="http://www.finetune.com">finetune.com</a>. This website allows you to pick an artist and they will build you a playlist featuring music by that artist and other related artists. You can then listen to that playlist and remove songs you dont like and add others you do!</p>
<p>The artists include mainstream popular artists! So you can listen to pretty much any band you want. There have not been many artists I was unable to find.</p>
<p>Once you have made a playlist, you can share it with others. There is even a widget for your blog or myspace profile etc. And even better! They have a special page optimised for the Nintendo Wiis built in browser so you can instantly turn that into somewhat of a media center. I recently used this at a party we hosted and it worked great!</p>
<p><a href="http://www.finetune.com">www.finetune.com</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://halcyon.net.nz/2007/04/19/finetunecom-create-playlists-and-listen-to-free-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to bypass automated answering and get to a real human quickly</title>
		<link>http://halcyon.net.nz/2007/04/17/how-to-bypass-automated-answering-and-get-to-a-real-human-quickly/</link>
		<comments>http://halcyon.net.nz/2007/04/17/how-to-bypass-automated-answering-and-get-to-a-real-human-quickly/#comments</comments>
		<pubDate>Tue, 17 Apr 2007 09:26:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fun Sites]]></category>

		<guid isPermaLink="false">http://www.halcyon.net.nz/2007/04/17/how-to-bypass-automated-answering-and-get-to-a-real-human-quickly/</guid>
		<description><![CDATA[Are you sick of those annoying interactive voice response (IVR) systems that many companies use? &#8220;Press 1 for Customer Service, Press 2 for Sales,&#8221; as you navigate an increasingly frustrating maze of options in an effort to reach a human &#8230; <a href="http://halcyon.net.nz/2007/04/17/how-to-bypass-automated-answering-and-get-to-a-real-human-quickly/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Are you sick of those annoying interactive voice response (IVR) systems that many companies use? &#8220;Press 1 for Customer Service, Press 2 for Sales,&#8221; as you navigate an increasingly frustrating maze of options in an effort to reach a human being who can answer your question or process your sale.&#8221;</p>
<p><a href="http://ivrhacks.com/">ivrhacks.com</a> is a directory of shortcuts to IVR systems for companies around the world. These shortcuts allow you to exit this maze as quickly and as effortlessly as possible, taking you to a human operator.</p>
<p>Much of the shortcuts have been sourced from the various lists and databases that are scattered across the internet and others have been submitted by readers. The list covers many countries and new additions are welcomed.</p>
<p><a href="http://ivrhacks.com/">http://ivrhacks.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://halcyon.net.nz/2007/04/17/how-to-bypass-automated-answering-and-get-to-a-real-human-quickly/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Free High Resolution Wallpapers</title>
		<link>http://halcyon.net.nz/2007/04/15/free-high-resolution-wallpapers/</link>
		<comments>http://halcyon.net.nz/2007/04/15/free-high-resolution-wallpapers/#comments</comments>
		<pubDate>Sun, 15 Apr 2007 00:14:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fun Sites]]></category>

		<guid isPermaLink="false">http://www.halcyon.net.nz/2007/04/15/free-high-resolution-wallpapers/</guid>
		<description><![CDATA[InterfaceLIFT have a fantastic collection of high resolution wallpapers available for download. I suggest clicking on most downloaded or highest rated to see some of the best images there. This image by Chris Fenison is one of my favorites.]]></description>
			<content:encoded><![CDATA[<p><a href="http://interfacelift.com/wallpaper/index.php?sort=date">InterfaceLIFT</a> have a fantastic collection of high resolution wallpapers available for download. I suggest clicking on most downloaded or highest rated to see some of the best images there.</p>
<p><a href="http://interfacelift.com/wallpaper/details.php?id=572">This image</a> by <a href="http://interfacelift.com/wallpaper/artists.php?id=1251">Chris Fenison</a> is one of my favorites.</p>
<p><a href="http://interfacelift.com/wallpaper/details.php?id=572"><img style="width: 240px; height: 150px;" title="pacificcity" src="http://interfacelift.com/wallpaper_beta/previews/00572_pacificcity.jpg" alt="pacificcity" width="240" height="150" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://halcyon.net.nz/2007/04/15/free-high-resolution-wallpapers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

