<?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"
	>

<channel>
	<title>Noiz Waves</title>
	<atom:link href="http://www.noizwaves.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.noizwaves.com</link>
	<description>It’s time to make some waves and be heard</description>
	<pubDate>Sat, 09 Aug 2008 08:27:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Things NOT to say to a potential employer</title>
		<link>http://www.noizwaves.com/2008-08-09/things-not-to-say-to-a-potential-employer.html</link>
		<comments>http://www.noizwaves.com/2008-08-09/things-not-to-say-to-a-potential-employer.html#comments</comments>
		<pubDate>Sat, 09 Aug 2008 08:27:15 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.noizwaves.com/?p=87</guid>
		<description><![CDATA[
&#8220;I&#8217;ve sent my resume out to a few companies, so if i don&#8217;t hear back from them, I&#8217;ll sent it to you&#8221;.

A note: NO ONE wants sloppy seconds!
]]></description>
			<content:encoded><![CDATA[<ol>
<li>&#8220;I&#8217;ve sent my resume out to a few companies, so if i don&#8217;t hear back from them, I&#8217;ll sent it to you&#8221;.</li>
</ol>
<p>A note: NO ONE wants sloppy seconds!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noizwaves.com/2008-08-09/things-not-to-say-to-a-potential-employer.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>My New Heroes</title>
		<link>http://www.noizwaves.com/2008-07-01/my-new-heroes.html</link>
		<comments>http://www.noizwaves.com/2008-07-01/my-new-heroes.html#comments</comments>
		<pubDate>Tue, 01 Jul 2008 04:26:42 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.noizwaves.com/?p=86</guid>
		<description><![CDATA[http://fastra.ua.ac.be/en/index.html
What a beast! It puts our single 8800 GTX machine to shame. I want one!!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://fastra.ua.ac.be/en/index.html" target="_blank">http://fastra.ua.ac.be/en/index.html</a></p>
<p>What a beast! It puts our single 8800 GTX machine to shame. I want one!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noizwaves.com/2008-07-01/my-new-heroes.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to Use Constant Memory in CUDA</title>
		<link>http://www.noizwaves.com/2008-06-22/how-to-use-constant-memory-in-cuda.html</link>
		<comments>http://www.noizwaves.com/2008-06-22/how-to-use-constant-memory-in-cuda.html#comments</comments>
		<pubDate>Sun, 22 Jun 2008 14:34:36 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.noizwaves.com/?p=85</guid>
		<description><![CDATA[So the other day I wanted to store a lookup table in constant memory because of its decent sized cache (compared to global memory with no cache). After trying to get it working, I just could not get the syntax correct. At first there was no speed up at all, so the global memory must [...]]]></description>
			<content:encoded><![CDATA[<p>So the other day I wanted to store a lookup table in constant memory because of its decent sized cache (compared to global memory with no cache). After trying to get it working, I just could not get the syntax correct. At first there was no speed up at all, so the global memory must have been incorrectly used. Eventually I stumbled across a code sample that used the constant memory in the way I wanted to, and got my code using constant memory correctly! Heres how I did it:</p>
<p><strong>Step 1: Global declaration (ie. not inside a function) of the constant array</strong><br />
extern __constant__ int d_nLookup[1&lt;&lt;13];</p>
<p><strong>Step 2: Copy the data to the constant memory in a host running function</strong><br />
CUDA_SAFE_CALL(cudaMemcpyToSymbol(d_nlookup, h_nlookup, 1&lt;&lt;13 * sizeof(int), 0, cudaMemcpyHostToDevice));</p>
<p><strong>Step 3: Use array in __device__ or __global__ functions directly (no need to pass array reference as a parameter)</strong><br />
fTemp += d_idata[d_nLookup[i]]; // use only loop map</p>
<p>As the array is defined as extern, it can be referenced in any __device__ or __global__ function without needing a reference to be passed to the function. Unfortunately, the size of the array has to be set at compile time (although I didn&#8217;t try dynamic allocation, it might just work). It&#8217;s important to note the use of cudaMemcpyToSymbol instead of cudaMemcpy; this fact was not emphasized anywhere and really had me stumped! Also, there is no need to cudaMalloc or cudaFree constant memory.</p>
<p>I suspect that the constant memory is simply a wrapped up version of 1D texturing. The constant memory array is used inside a loop, so theoretically with a hit and miss cache setup the first call to each position of the array should be a miss (meaning global memory latency). However this is not the case, so I suspect the compiler has detected the usage and fills up the 8KB cache on the first call.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noizwaves.com/2008-06-22/how-to-use-constant-memory-in-cuda.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>VNC and SSH on Win Mo 6 (Dopod C730)</title>
		<link>http://www.noizwaves.com/2008-06-08/vnc-and-ssh-on-win-mo-6-dopod-c730.html</link>
		<comments>http://www.noizwaves.com/2008-06-08/vnc-and-ssh-on-win-mo-6-dopod-c730.html#comments</comments>
		<pubDate>Sun, 08 Jun 2008 09:15:46 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[Dopod C730]]></category>

		<category><![CDATA[mobile ssh]]></category>

		<category><![CDATA[mobile vnc]]></category>

		<category><![CDATA[win mo 6]]></category>

		<category><![CDATA[Windows Mobile 6]]></category>

		<guid isPermaLink="false">http://www.noizwaves.com/?p=82</guid>
		<description><![CDATA[A few months ago we organised some new phones for us developers so that we could be more contactable in case of an emergency. So we got the phones, but they never really saved the day when problems arose. We couldn&#8217;t do remote access, read encrypted emails, or do anything useful. Instead, the phone became [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago we organised some new phones for us developers so that we could be more contactable in case of an emergency. So we got the phones, but they never really saved the day when problems arose. We couldn&#8217;t do remote access, read encrypted emails, or do anything useful. Instead, the phone became a broadband modem, which required access to a laptop; hardy something you want carry every time you leave the house!</p>
<p>So we&#8217;ve been casually looking around for <strong>VNC and SSH</strong> clients for the Dopod C730 (which runs <strong>Windows Mobile 6 Standard</strong>). All the clients I&#8217;ve tried so far haven&#8217;t installed, or had incorrect key mappings and were entirely useless on Win Mo 6. I was starting to lose hope of ever using the phone for its intended purpose. But now that the semester is over at uni, I thought i&#8217;de put in a decent days worth looking for apps that worked. After a few hours of looking, I stumbled across some really useful programs, that actually run perfectly in Win Mo 6&#8230;</p>
<p><a title="LogMeIn Hamachi Mobile" href="https://secure.logmein.com/labs.asp" target="_blank">LogMeIn Hamachi Mobile</a></p>
<p>Hamachi is an easy to use and secure VPN. With it, you create and join a virtual network, and all traffic is encrypted. Very neat! Using Hamachi, you can access computers/services behind firewalls, NAT and with no need for port forwarding. Hamachi installed from a .cab file, and no additional tweaks were required. Hamachi is <strong>free</strong> to use to.</p>
<p>Hamachi will connect over Wifi or 3G/EDGE/GPRS, so its very flexible.</p>
<p><a title="MidpSSH" href="http://www.xk72.com/midpssh/" target="_blank">MidpSSH Mobile SSH Client</a></p>
<p>MidpSSH is a <strong>free</strong> Java-based SSH client. All key bindings work as expected, colours work and the text is actually readable. I&#8217;de recommend changing the default font, unless you can read miniscule glyphs. It can be changed by <em>Settings &gt; Fonts &gt; Font Size</em> (LCD 5&#215;9 is my preference).</p>
<p><a href="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-11.png"><img class="alignnone size-medium wp-image-83" title="picture-11" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-11-300x231.png" alt="SSH on Windows Mobile 6 (please excuse the blurry photo!)" width="300" height="231" /></a></p>
<p>As the app is Java, the interface is a little clunky to use; entering text takes a few additional button clicks each time (to access the text field, enter it, end the text, OK it, and move on). By default, Java applications won&#8217;t have access to the Hamachi network interface, but this is easily changed in the Java Apps launcher by going <em>Menu &gt; Settings (7) &gt; Choose Network (4) &gt; Hamachi Network</em>.</p>
<p><a title="VNC+ link" href="http://www.shapeservices.com/en/products/details.php?product=vnc&amp;platform=s60v3" target="_blank">VNC Plus (VNC+)</a></p>
<p>VNC+ is (another) brilliant Java-based app that provides VNC client functionality. With it, you can connect to a computer running a VNC server and control it remotely. VNC+ provides all the functionality of a desktop client, but in a mobile setting. It behaves just as you&#8217;d expect it to. No clunky scrolling or slow refreshing like other clients I tried. It&#8217;s a true miracle app that will no doubt come in very handy. It is well worth the $19.95, and comes with a <strong>free 7 day demo</strong>. VNC+ also provides efficient zooming, which loads the screen at the correct level detail. After connecting with the server, navigating around the whole screen is painless. This program is just so awesome!</p>
<p><a href="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-21.png"><img class="alignnone size-medium wp-image-84" title="picture-21" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-21-300x188.png" alt="VNC on Windows Mobile 6" width="300" height="188" /></a></p>
<p>Like MidpSSH, if you are accessing a computer over Hamachi, the Hamachi network must be assigned to Java. Otherwise, just bind Java to the Internet. I did have to manually bind the function keys to their appropriate functions in the program. This was done in Menu &gt; Setup &gt; Assign Keys, where I bound Select to my middle button, Menu to left soft key and Enter to right soft key.</p>
<p>With these apps installed on my phone, I can confidently leave my laptop at home and still be able to tackle any issues that flare up. Now thats mobilty!</p>
<p><strong>Update</strong>: Discovered that VNC+ doesn&#8217;t recognise the letters from the 10 digit keys (numbers are transmitted regardless of whether Fn key is pressed or not. This makes it really hard to type text into the VNC session.</p>
<p>Update 2: Discovered the &#8220;Send text&#8221; menu option in VNC+. It allows for any text to be sent. Just need to get backspace working, then I&#8217;m all set.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noizwaves.com/2008-06-08/vnc-and-ssh-on-win-mo-6-dopod-c730.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Rewatching Lost (in Front Row)</title>
		<link>http://www.noizwaves.com/2008-06-07/rewatching-lost-in-front-row.html</link>
		<comments>http://www.noizwaves.com/2008-06-07/rewatching-lost-in-front-row.html#comments</comments>
		<pubDate>Sat, 07 Jun 2008 13:17:44 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Lost]]></category>

		<guid isPermaLink="false">http://www.noizwaves.com/?p=71</guid>
		<description><![CDATA[So I decided it was time to begin the long haul task of watching Lost from the beginning. Recently I&#8217;ve been watching the latest episode with some friends, and really getting into the analysis of each episode, nutting out theories, and asking and answering questions. There is such a wealth of hidden detail in each [...]]]></description>
			<content:encoded><![CDATA[<p>So I decided it was time to begin the long haul task of watching Lost from the beginning. Recently I&#8217;ve been watching the latest episode with some friends, and really getting into the analysis of each episode, nutting out theories, and asking and answering questions. There is such a <a title="Lostpedia" href="http://www.lostpedia.com" target="_blank">wealth of hidden detail</a> in each episode, its very easy to miss first time around. Last night I watched the first 3 episodes, and it reminded me just how good the show is.</p>
<p>A couple of things I picked up on during the first 3 episodes (potential spoiler alert ahead):</p>
<ol>
<li>In season 1 episode 3, <strong>6 </strong>survivors hike into the jungle to get a better signal on the transceiver, but <strong>lie</strong> upon returning to camp about what happened. In season 4, we learn that <strong>6</strong> survivors (<a title="Oceanic Six on lostpedia" href="http://www.lostpedia.com/wiki/Oceanic_6" target="_blank">The Oceanic Six</a>) make it off the island and decide to <strong>lie</strong> about what happened. Strange, but worth noting.</li>
<li>The pilot of the plane is played by <a title="Greg Grunberg on wikipedia" href="http://en.wikipedia.org/wiki/Greg_Grunberg" target="_blank">Greg Grunberg</a> (who plays Matt Parkman in Heroes). Pity he didn&#8217;t use his telepathy to get them rescued <img src='http://www.noizwaves.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br />
<img class="alignnone size-medium wp-image-72" title="picture-8" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-8-300x271.png" alt="Greg Grunberg as Matt Parkman in Heroes" width="300" height="271" /> <img class="alignnone size-medium wp-image-73" title="picture-4" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-4-291x300.png" alt="Greg Brunberg as the Pilot in Lost" width="291" height="300" /></li>
</ol>
<p>I use <a title="VLC media player for OS X" href="http://www.videolan.org/vlc/download-macosx.html" target="_blank">VLC</a> to play all of the TV I watch. Because of this, I&#8217;ve been missing out on a lot of the shine that Front Row has to offer. One of the mean reasons for not using Front Row is it&#8217;s inability to play DivX/XviD encoded .avi files&#8230;</p>
<p>Enter <a title="Perian homepage" href="http://www.perian.org/" target="_blank">Perian</a>. Perian is a <strong>free, open source</strong> plug-in for QuickTime that enables Divx/Xvid/many more encoded videos to be played in QuickTime and Front row.<br />
<img class="alignnone size-medium wp-image-80" title="picture-9" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-9-300x185.png" alt="Front Row without preview" width="300" height="185" /> vs <img class="alignnone size-medium wp-image-81" title="picture-10" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-10-300x186.png" alt="Front Row with preview" width="300" height="186" /></p>
<p>In addition to adding DivX support to Front Row/QuickTime, installing Perian came with some unexpected surprises:</p>
<ol>
<li>OS X can produce thumbnails for .avi files in Finder. No more ugly icons!<br />
<img class="alignnone size-medium wp-image-74" title="picture-5" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-5-300x169.png" alt="Icons without previews" width="300" height="169" />vs <img class="alignnone size-medium wp-image-75" title="picture-1" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-1-300x167.png" alt="Icons with previews" width="300" height="167" /></li>
<li>Cover Flow uses these thumbnails too, and looks awesome.<br />
<img class="alignnone size-medium wp-image-76" title="picture-6" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-6-300x173.png" alt="Cover Flow without previews" width="300" height="173" /> vs <img class="alignnone size-medium wp-image-77" title="picture-2" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-2-300x179.png" alt="Cover Flow with previews" width="300" height="179" /><a href="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-2.png"><br />
</a></li>
<li>Quick Look now plays the .avi files.<br />
<img class="alignnone size-medium wp-image-78" title="picture-7" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-7-300x194.png" alt="Quick Look without preview" width="300" height="194" /> vs <img class="alignnone size-medium wp-image-79" title="picture-3" src="http://www.noizwaves.com/wp-content/uploads/2008/06/picture-3-300x196.png" alt="Quick Look with previews" width="300" height="196" /></li>
</ol>
<p>Much better. Now all thats required is a big HD LCD TV to really show off Front Row.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noizwaves.com/2008-06-07/rewatching-lost-in-front-row.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Outlook freezes with 100% CPU when printing</title>
		<link>http://www.noizwaves.com/2008-05-12/outlook-freezes-with-100-cpu-when-printing.html</link>
		<comments>http://www.noizwaves.com/2008-05-12/outlook-freezes-with-100-cpu-when-printing.html#comments</comments>
		<pubDate>Mon, 12 May 2008 15:30:48 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[2003]]></category>

		<category><![CDATA[freeze]]></category>

		<category><![CDATA[Outlook]]></category>

		<category><![CDATA[printing]]></category>

		<category><![CDATA[quick view plus]]></category>

		<guid isPermaLink="false">http://www.noizwaves.com/?p=69</guid>
		<description><![CDATA[Encountered this bug today at work, and it kept me stumped for (too many) hours! The symptoms where that Microsoft Outlook 2003 would freeze when printing an e-mail, showing the unresponsive &#8220;Printing&#8230;&#8221; status dialog in the middle of the screen. Now that Outlook was frozen, any new e-mails that were opened would spawn a new [...]]]></description>
			<content:encoded><![CDATA[<p>Encountered this bug today at work, and it kept me stumped for (too many) hours! The symptoms where that Microsoft Outlook 2003 would freeze when printing an e-mail, showing the unresponsive &#8220;Printing&#8230;&#8221; status dialog in the middle of the screen. Now that Outlook was frozen, any new e-mails that were opened would spawn a new OUTLOOK.EXE process and wait for the busy process to finish.</p>
<p>After terminating the busy process,  all the e-mails would open immediately! Major pain in the a-hole. It turns out that <strong>Quick View Plus</strong> had installed an addon into Outlook which made printing a bit screwy. Disabling it was easy; from Outlooks main window, <em>Tools &gt; Options &gt; Other &gt; Advanced Options &gt; Add-in Manager</em>, and uncheck the Quick View Plus add-in. Save those settings and restart Outlook.</p>
<p>Update: If restarting Outlook doesn&#8217;t work, try ending via Task Manager any OUTLOOK.EXE and OLADDIN.EXE processes that may be running, then starting Outlook again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noizwaves.com/2008-05-12/outlook-freezes-with-100-cpu-when-printing.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Noiz Waves now a .com!</title>
		<link>http://www.noizwaves.com/2008-05-04/noiz-waves-now-a-com.html</link>
		<comments>http://www.noizwaves.com/2008-05-04/noiz-waves-now-a-com.html#comments</comments>
		<pubDate>Sun, 04 May 2008 15:00:44 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://noizwaves.bur.st/2008-05-04/noiz-waves-now-a-com.html</guid>
		<description><![CDATA[So I felt like I needed to buy a new toy/gadget/thing to play with the other day. After looking around, nothing took my fancy. Somehow the idea of buying a domain + web hosting popped into my mind. After a few days of mulling over the idea, I just bought a domain  .
In due [...]]]></description>
			<content:encoded><![CDATA[<p>So I felt like I needed to buy a new toy/gadget/thing to play with the other day. After looking around, nothing took my fancy. Somehow the idea of buying a domain + web hosting popped into my mind. After a few days of mulling over the idea, I just bought a domain <img src='http://www.noizwaves.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>In due course, <a title="Noiz Waves" href="http://www.noizwaves.com" target="_blank">www.noizwaves.com</a> will likely replace the current <a title="Noiz Waves" href="http://noizwaves.bur.st" target="_blank">noizwaves.bur.st</a> URL for this site.I&#8217;m undecided whether the blog should hold the www sub-domain or its own special blog sub-domain. Heck, maybe it can have both!</p>
<p>I used <a title="DreamHost" href="http://www.dreamhost.com" target="_blank">DreamHost</a> for the web hosting. After looking around at a few places, this one seemed good. A friend also recommended them for their ease of use and excellent customer support. The hosting gives me lots of sub-domains and e-mail addresses, and private domain registration.</p>
<p>Right now I&#8217;m looking forward to making some regular posts about my recent activities. Life has been unbelievably busy over the last 4 months it&#8217;s crazy! A regular outlet is just what I need.</p>
<p><strong>Update</strong>: <a href="http://www.noizwaves.com" target="_blank">www.noizwaves.com</a> is now 100% operational!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noizwaves.com/2008-05-04/noiz-waves-now-a-com.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Missing URL in BibTex Bibliography</title>
		<link>http://www.noizwaves.com/2008-03-16/missing-url-in-bibtex-bibliography.html</link>
		<comments>http://www.noizwaves.com/2008-03-16/missing-url-in-bibtex-bibliography.html#comments</comments>
		<pubDate>Sun, 16 Mar 2008 15:11:09 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Development]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[OS X Hints]]></category>

		<guid isPermaLink="false">http://noizwaves.bur.st/2008-03-16/missing-url-in-bibtex-bibliography.html</guid>
		<description><![CDATA[This is some stupid thing that cost me several hours of tinkering tonight. By default, URLs and last access time/date are not part of any style in LaTeX. How freaking ancient is that?!!?!
So heres a fix. Its been tested under OS X 10.5, so it should work for anyone running Linux too.

Download urlbst from http://nxg.me.uk/dist/urlbst/. [...]]]></description>
			<content:encoded><![CDATA[<p>This is some stupid thing that cost me several hours of tinkering tonight. By default, URLs and last access time/date are not part of any style in LaTeX. How freaking ancient is that?!!?!</p>
<p>So heres a fix. Its been tested under OS X 10.5, so it should work for anyone running Linux too.</p>
<ol>
<li>Download urlbst from <a href="http://nxg.me.uk/dist/urlbst/" target="_blank">http://nxg.me.uk/dist/urlbst/</a>. For me the current version is <a href="http://nxg.me.uk/dist/urlbst/urlbst-0.6.tar.gz">0.6</a>.</li>
<li>Extract the archive anywhere, just so happened to be my Downloads folder.</li>
<li>Open a terminal window, and navigate to the newly created directly. For me it was ~/Downloads/urlbst-0.6/</li>
<li>Run &#8216;./configure&#8217; without the &#8216; and &#8216;</li>
<li>I have to use the acm bibliography style, so i will be playing around with acm.bst</li>
<li>Run &#8217;sudo mv /usr/local/texlive/2007/texmf-dist/bibtex/bst/base/acm.bst /usr/local/texlive/2007/texmf-dist/bibtex/bst/base/oldacm.bst&#8217;. This moves the original style file to a safe place.</li>
<li>Run &#8216;./urlbst /usr/local/texlive/2007/texmf-dist/bibtex/bst/base/acm.bst newacm.bst&#8217;. This adds the URL information to the style.</li>
<li>Run &#8217;sudo cp newacm.bst /usr/local/texlive/2007/texmf-dist/bibtex/bst/base/acm.bst. This moves the new style file to a directly where LaTeX can find it.</li>
</ol>
<p>Now all your webpages and sources with online references &amp; cite dates will look right! Woot! Sleepy time now!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noizwaves.com/2008-03-16/missing-url-in-bibtex-bibliography.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Bluetooth mouse in Ubuntu 7.10</title>
		<link>http://www.noizwaves.com/2008-01-25/bluetooth-mouse-in-ubuntu-710.html</link>
		<comments>http://www.noizwaves.com/2008-01-25/bluetooth-mouse-in-ubuntu-710.html#comments</comments>
		<pubDate>Fri, 25 Jan 2008 08:18:18 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://noizwaves.bur.st/2008-01-25/bluetooth-mouse-in-ubuntu-710.html</guid>
		<description><![CDATA[Excellent guide that worked for me here.
]]></description>
			<content:encoded><![CDATA[<p>Excellent guide that worked for me <a href="https://help.ubuntu.com/community/BluetoothMouse" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noizwaves.com/2008-01-25/bluetooth-mouse-in-ubuntu-710.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Own Piece of Engrish</title>
		<link>http://www.noizwaves.com/2007-12-29/own-piece-of-engrish.html</link>
		<comments>http://www.noizwaves.com/2007-12-29/own-piece-of-engrish.html#comments</comments>
		<pubDate>Sat, 29 Dec 2007 09:17:00 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
		
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://noizwaves.bur.st/2007-12-29/own-piece-of-engrish.html</guid>
		<description><![CDATA[Ever since the purchase of the MacBook Pro i&#8217;ve been keen to invest in some kind of external cooling mechanism. Spending a short amount of time at full load causes the fans to spin wildly and internal temperatures to skyrocket! Clearly external cooling would help, and I thought eBay had saved the day&#8230;
however sadly I [...]]]></description>
			<content:encoded><![CDATA[<p>Ever since the purchase of the MacBook Pro i&#8217;ve been keen to invest in some kind of external cooling mechanism. Spending a short amount of time at full load causes the fans to spin wildly and internal temperatures to skyrocket! Clearly external cooling would help, and I thought eBay had saved the day&#8230;</p>
<p><span id="more-64"></span>however sadly I was mistaken. The USB powered notebook cooler (made in China of course, surprise surprise) made absolutely no difference to internal temperatures or fan speeds. In fact, the temperatures seem to go up slightly!</p>
<p>When performing certain tasks, such as video encoding, heavy computation, virtualisation and (probably) gaming, CPU and GPU usage will peak, sometimes continually during the whole task. This is very effective are producing heat, and the MacBook Pro isn&#8217;t designed for efficient heat removal at all! The two little fans towards the back of the main logic board spin fast, make a lot of noise, and push minimal air our of the back.</p>
<p>As a result, after a couple of minutes at full load, temperatures can reach 80 degrees Celsius and fan speeds ~ 4500 rpm (a lot higher than the 2000 at idle). This is not at all suitable, especially as the need to run many virtual machines at once as well as heavy calculations will increase as I get stuck into my Honours project. Something needed to be done, so it first time to see if anything could be done&#8230;</p>
<p>After executing some homemade proof-of-concepts (jacking MBP up on some pegs and using an old PC fan underneath), it became obvious that external cooling was effective. Temperatures dropped significantly, and internal fan speed and noise decreased. Excellent, something can be done!</p>
<p>Instead of jumping straight into DIY&#8217;ing a cooling dock, I checked out the coolers available on eBay. This one caught my eye</p>
<p><img src="http://www.noizwaves.com/wp-content/uploads/2007/12/picture-1.png" alt="Notebook cooler" /></p>
<p>and it only cost AU$13 all up. Not a bad buy; making one would certainly cost more than $13.  It only took about a week for it to arrive (credit card and PayPal is much much quicker than bank account direct debit and PayPal) and its unboxing was keenly photographed.</p>
<p><img src="http://www.noizwaves.com/wp-content/uploads/2007/12/picture-2.png" alt="Unboxed notebook cooler" /></p>
<p>The design of this 2.0 Watt air blowing beast is what impressed me most and made me buy it. Unfortunately, upon plugging it in, its good design appeared to be superficial, as in operating, it was a piece of shit.</p>
<p><img src="http://www.noizwaves.com/wp-content/uploads/2007/12/picture-3.png" alt="MBP on notebook cooler" /></p>
<p>Anyone who has played with a red hot MBP will know the gentle stream of hot air that spills out the back just below the screen hinge. Now, this hot air is being vacuumed into the notebook cooler! Whats worse, this hot air is then blown across the bottom of the case. This stream of air would be aimed towards the center of the case as well, which is not the hottest part. The case is hottest at the top, right where the notebook rests on the cooler&#8217;s rubber stoppers :S</p>
<p>Fearing the notebook would quickly melt onto the cooler and form a Frankenbook Pro, the cooler was quickly removed from operation, never to be used for cooling MBP again.</p>
<p>Am I suprised at the poor quality of the product? No, not really. For AU$2.99 plus $10 postage, what did I expect? Oh well, at least I learnt from someone elses mistakes, which will be important when designing and building my own cooling station.</p>
<p>The exercise wasn&#8217;t a total loss either. Reading the rear of the cooler&#8217;s packaging reveals a few classic gems of <a href="www.engrish.com" target="_blank">engrish</a>. This piece is almost frameable. Makes me laugh every time I read it.</p>
<p><img src="http://www.noizwaves.com/wp-content/uploads/2007/12/picture-43.png" alt="Classic engrish" /></p>
<p>Classic!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noizwaves.com/2007-12-29/own-piece-of-engrish.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
