<?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>Laidback Nerd &#187; Freebies</title>
	<atom:link href="http://www.laidbacknerd.com/category/downloads/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.laidbacknerd.com</link>
	<description>Musings of a Perverted Mind</description>
	<lastBuildDate>Fri, 29 Jul 2011 01:01:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>MV: Automatic by Utada Hikaru</title>
		<link>http://www.laidbacknerd.com/mv-automatic-by-utada-hikaru/</link>
		<comments>http://www.laidbacknerd.com/mv-automatic-by-utada-hikaru/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 16:43:25 +0000</pubDate>
		<dc:creator>Jobee</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[hikki]]></category>
		<category><![CDATA[music video]]></category>
		<category><![CDATA[utada]]></category>
		<category><![CDATA[utada hikaru]]></category>

		<guid isPermaLink="false">http://www.laidbacknerd.com/?p=365</guid>
		<description><![CDATA[The very first song i heard by Hikki. I remember back then that people were dancing to this tune.
 

]]></description>
			<content:encoded><![CDATA[<p>The very first song i heard by Hikki. I remember back then that people were dancing to this tune.</p>
<p><iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/yJeXO8hGhtk" frameborder="0" allowFullScreen="true"> </iframe></p>
<p><img class="alignnone" src="http://img710.imageshack.us/img710/3096/automatic.png" alt="" width="400" height="330" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.laidbacknerd.com/mv-automatic-by-utada-hikaru/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java: MergeSort</title>
		<link>http://www.laidbacknerd.com/java-mergesort/</link>
		<comments>http://www.laidbacknerd.com/java-mergesort/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 16:19:30 +0000</pubDate>
		<dc:creator>Jobee</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[data structure]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[merge sort]]></category>
		<category><![CDATA[sort]]></category>

		<guid isPermaLink="false">http://www.laidbacknerd.com/?p=360</guid>
		<description><![CDATA[Fully functional but I still can&#8217;t quite understand the syntax. I know the logic but Java is new to me, so it needs a lot &#8230;]]></description>
			<content:encoded><![CDATA[<p>Fully functional but I still can&#8217;t quite understand the syntax. I know the logic but Java is new to me, so it needs a lot of debugging time ^_^</p>
<p>&#8212;-Beginning of Code&#8212;-</p>
<pre>import java.io.*;

public class MergeSortArray {
private long[] theArray;

private int nElems;

public MergeSortArray(int max) {
theArray = new long[max];
nElems = 0;
}

public void insert(long value) {
theArray[nElems] = value; // insert it
nElems++; // increment size
}

public void display() {
for (int j = 0; j &lt; nElems; j++)
System.out.print(theArray[j] + " ");
System.out.println("");
}

public void mergeSort() {
long[] workSpace = new long[nElems];
recMergeSort(workSpace, 0, nElems - 1);
}

private void recMergeSort(long[] workSpace, int lowerBound, int upperBound) {
if (lowerBound == upperBound) // if range is 1,
return; // no use sorting
else { // find midpoint
int mid = (lowerBound + upperBound) / 2;
// sort low half
recMergeSort(workSpace, lowerBound, mid);
// sort high half
recMergeSort(workSpace, mid + 1, upperBound);
// merge them
merge(workSpace, lowerBound, mid + 1, upperBound);
}
}

private void merge(long[] workSpace, int lowPtr, int highPtr, int upperBound) {
int j = 0; // workspace index
int lowerBound = lowPtr;
int mid = highPtr - 1;
int n = upperBound - lowerBound + 1; // # of items

while (lowPtr &lt;= mid &amp;&amp; highPtr &lt;= upperBound)
if (theArray[lowPtr] &lt; theArray[highPtr])
workSpace[j++] = theArray[lowPtr++];
else
workSpace[j++] = theArray[highPtr++];

while (lowPtr &lt;= mid)
workSpace[j++] = theArray[lowPtr++];

while (highPtr &lt;= upperBound)
workSpace[j++] = theArray[highPtr++];

for (j = 0; j &lt; n; j++)
theArray[lowerBound + j] = workSpace[j];
}

public static void main(String[] args) {
int maxSize = 100; // array size
MergeSortArray arr = new MergeSortArray(maxSize); // create the array

System.out.print("How many input? [1-100]: ");
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
Integer howMany = null;
try {
howMany = Integer.parseInt(br.readLine());
} catch (IOException e) {
System.out.println("Error!");
System.exit(1);
}
for(int i=1; i&lt;=howMany; i++){
System.out.print("Enter number " + i + ": ");
BufferedReader br1 = new BufferedReader(new InputStreamReader(System.in));
Integer iNum = null;
try {
iNum = Integer.parseInt(br1.readLine());
} catch (IOException err) {
System.out.println("Invalid Input!");
System.exit(1);
}
arr.insert(iNum);
}

arr.display();

arr.mergeSort();

arr.display();
}
}</pre>
<p>&#8212;-End of Code&#8212;-</p>
]]></content:encoded>
			<wfw:commentRss>http://www.laidbacknerd.com/java-mergesort/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MV: Hiling by Silent Sanctuary</title>
		<link>http://www.laidbacknerd.com/mv-hiling-by-silent-sanctuary/</link>
		<comments>http://www.laidbacknerd.com/mv-hiling-by-silent-sanctuary/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 01:59:31 +0000</pubDate>
		<dc:creator>Jobee</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[hiling]]></category>
		<category><![CDATA[music video]]></category>
		<category><![CDATA[silent sanctuary]]></category>

		<guid isPermaLink="false">http://www.laidbacknerd.com/?p=336</guid>
		<description><![CDATA[Great music video!
 
]]></description>
			<content:encoded><![CDATA[<p>Great music video!</p>
<p><iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/FXmyFtnrVww" frameborder="0" allowFullScreen="true"> </iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.laidbacknerd.com/mv-hiling-by-silent-sanctuary/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wonder Girls &#8211; Nobody</title>
		<link>http://www.laidbacknerd.com/wonder-girls-nobody/</link>
		<comments>http://www.laidbacknerd.com/wonder-girls-nobody/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 02:25:52 +0000</pubDate>
		<dc:creator>Jobee</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[kpop]]></category>
		<category><![CDATA[wonder girls]]></category>

		<guid isPermaLink="false">http://www.laidbacknerd.com/?p=291</guid>
		<description><![CDATA[Just wanna share my current favorite song! It&#8217;s from a korean girl group called Wonder Girls. Ang cute nila! Catchy song and dance steps! Kaka-LSS!
 &#8230;]]></description>
			<content:encoded><![CDATA[<p>Just wanna share my current favorite song! It&#8217;s from a korean girl group called Wonder Girls. Ang cute nila! Catchy song and dance steps! Kaka-LSS!</p>
<p><iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="344" src="http://www.youtube.com/embed/xaDwgaUA8hk" frameborder="0" allowFullScreen="true"> </iframe></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9465237470788147";
/* PostAd468x60 */
google_ad_slot = "8228961869";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.laidbacknerd.com/wonder-girls-nobody/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twilight Saga</title>
		<link>http://www.laidbacknerd.com/twilight-saga/</link>
		<comments>http://www.laidbacknerd.com/twilight-saga/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 06:24:08 +0000</pubDate>
		<dc:creator>Jobee</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[stephnie meyer]]></category>
		<category><![CDATA[twilight]]></category>

		<guid isPermaLink="false">http://pervertedmind.iblogger.org/?p=201</guid>
		<description><![CDATA[Twilight Saga E-Books:
If you really like the stories, then I suggest you buy the books. Also in Stephenie Meyer&#8217;s website, you can find the first &#8230;]]></description>
			<content:encoded><![CDATA[<p>Twilight Saga E-Books:</p>
<p>If you really like the stories, then I suggest you buy the books. Also in Stephenie Meyer&#8217;s website, you can find the first chapter of the fifth book in the saga. It is entitled &#8220;Midnight Sun&#8221;. <a title="Midnight Sun" href="http://www.stepheniemeyer.com/midnightsun.html" target="_blank">Click here to see the website</a></p>
<p>Click on the book covers to download the e-book:</p>
<div id="attachment_197" class="wp-caption aligncenter" style="width: 187px"><a href="http://www.mediafire.com/?kynnxvm2jmm" target="_blank"><img class="size-full wp-image-197" title="Twilight" src="http://laidbacknerd.com/wp-content/uploads/2008/12/twilight_book_cover.jpg" alt="Twilight Book Cover" width="177" height="236" /></a><p class="wp-caption-text">Twilight</p></div>
<div id="attachment_198" class="wp-caption aligncenter" style="width: 188px"><a href="http://rapidshare.com/files/177449494/Stephenie_Meyer_-_02_New_Moon.pdf.html" target="_blank"><img class="size-full wp-image-198" title="New Moon" src="http://laidbacknerd.com/wp-content/uploads/2008/12/new_moon_book_cover.jpg" alt="New Moon Book Cover" width="178" height="268" /></a><p class="wp-caption-text">New Moon</p></div>
<div id="attachment_199" class="wp-caption aligncenter" style="width: 191px"><a href="http://rapidshare.com/files/177451262/Stephenie_Meyer_-_03_Eclipse.pdf" target="_blank"><img class="size-full wp-image-199" title="Eclipse" src="http://laidbacknerd.com/wp-content/uploads/2008/12/eclipse_book_cover.jpg" alt="Eclipse Book Cover" width="181" height="272" /></a><p class="wp-caption-text">Eclipse</p></div>
<div id="attachment_200" class="wp-caption aligncenter" style="width: 195px"><a href="http://www.mediafire.com/?otn2zjqzdol" target="_blank"><img class="size-full wp-image-200" title="Breaking Dawn" src="http://laidbacknerd.com/wp-content/uploads/2008/12/breaking_dawn_book_cover.jpg" alt="Breaking Dawn" width="185" height="280" /></a><p class="wp-caption-text">Breaking Dawn</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.laidbacknerd.com/twilight-saga/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Table Tennis Game</title>
		<link>http://www.laidbacknerd.com/free-table-tennis-game/</link>
		<comments>http://www.laidbacknerd.com/free-table-tennis-game/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 12:45:18 +0000</pubDate>
		<dc:creator>Jobee</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[games]]></category>

		<guid isPermaLink="false">http://pervertedmind.iblogger.org/?p=156</guid>
		<description><![CDATA[When you have nothing to do you can spend your time playing this fun game. I play table tennis in real life so I wanted &#8230;]]></description>
			<content:encoded><![CDATA[<p>When you have nothing to do you can spend your time playing this fun game. I play table tennis in real life so I wanted to share this game. It has a real feeling of playing the game.</p>
<table style="border: 1px solid #cccccc; margin: 0pt 0pt 10px; background: #ffffff none repeat scroll 0% 0%; width: 244px;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="font-family:verdana; font-size:11px; color:#000; padding:5px 10px;"><a style="display:block; text-decoration:none;" href="http://www.miniclip.com/games/table-tennis-tournament/en/"><img style="margin-right:5px; border:0;" src="http://www.miniclip.com/images/icons/tabletennistrmtsmallicon.jpg" alt="Games at Miniclip.com - Table Tennis Tournament" width="70" height="59" align="left" /><br />
<strong style="color:#000; border:none; text-decoration:underline;">Table Tennis Tournament</strong><br />
</a></p>
<p style="margin:0; clear:none; text-decoration:none; color:#000;"><a style="display:block; text-decoration:none;" href="http://www.miniclip.com/games/table-tennis-tournament/en/">Amazingly realistic table tennis game!</a></p>
</td>
</tr>
<tr>
<td style="font-family:verdana; font-size:11px; padding:5px 10px; border-top:1px solid #ccc;"><a title="Games at Miniclip.com" href="http://www.miniclip.com/games/table-tennis-tournament/en/">Play this free game now!!</a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.laidbacknerd.com/free-table-tennis-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Utada Hikaru &#8211; Heart Station</title>
		<link>http://www.laidbacknerd.com/utada-hikaru-heart-station/</link>
		<comments>http://www.laidbacknerd.com/utada-hikaru-heart-station/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 05:19:36 +0000</pubDate>
		<dc:creator>Jobee</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[hikki]]></category>
		<category><![CDATA[j-pop]]></category>
		<category><![CDATA[utada hikaru]]></category>

		<guid isPermaLink="false">http://pervertedmind.iblogger.org/?p=131</guid>
		<description><![CDATA[DOWNLOAD MP3 FILE HERE

HEART STATION (romaji)
hada samui ame no hi
wake arige na futari
kuruma no naka wa rajio ga nagareteta
sayonara nante imi ga nai
mata itsuka aetara
suteki &#8230;]]></description>
			<content:encoded><![CDATA[<p><a title="Heart Station" href="http://www.mediafire.com/?zzhzztzdjxj" target="_blank">DOWNLOAD MP3 FILE HERE</a></p>
<p><object type="application/x-shockwave-flash" data="http://video.google.com/googleplayer.swf?docId=608348738621250797" width="425" height="350" wmode="transparent"><param name="movie" value="http://video.google.com/googleplayer.swf?docId=608348738621250797" /></object></p>
<p><strong>HEART STATION (romaji)</strong></p>
<p>hada samui ame no hi<br />
wake arige na futari<br />
kuruma no naka wa rajio ga nagareteta</p>
<p>sayonara nante imi ga nai<br />
mata itsuka aetara<br />
suteki to omoimasen ka?<br />
<span id="more-131"></span><br />
watashi no koe ga kikoetemasu ka?<br />
shinya ichiji no Heart Station<br />
chuuningu fuyou no daiaru<br />
himitsu no herutsu</p>
<p>kokoro no tenpa   todoitemasu ka?<br />
tsumibito tachi no Heart Station<br />
kamisama dake ga shitteiru<br />
I miss you</p>
<p>wasurenakya ikenai<br />
sou omou hodo ni   doushite<br />
ii omoide tachi bakari ga nokoru no?</p>
<p>hanareteite mo anata wa koko ni iru<br />
watashi no haato no mannaka</p>
<p>anata no koe ga kikoeta ki ga shita<br />
shinya ichiji no Heart Station<br />
itsumo dokoka de natteiru<br />
futatsu no parusu</p>
<p>kokoro no tenpa   todoitemasu ka?<br />
koibito tachi no Heart Station<br />
konya mo rikuesuto kitemasu<br />
I Love You</p>
<p>watashi no koe ga kikoetemasu ka?<br />
shinya ichiji no Heart Station<br />
ima mo bokura wo tsunaideru<br />
himitsu no herutsu</p>
<p>kokoro no tenpa   todoitemasu ka?<br />
tsumibito tachi no Heart Station<br />
kamisama dake ga shitteiru   himitsu</p>
<p><strong>HEART STATION (english)</strong><br />
Translated by: <a title="crystalise" href="http://crystal-ise.vox.com/" target="_blank">crystalise</a></p>
<p>On a day battered with unforgiving cold rain,<br />
There sits a couple who have reasoned everything out<br />
In a car that now relies on the radio to pierce the silence.</p>
<p>There is no meaning to goodbye,<br />
Because if we were to meet again someday,<br />
Wouldn’t that be just wonderful?</p>
<p>Were you able to hear my voice as I spoke?<br />
The Heart Station broadcasting at one o’clock in the dead of night<br />
Requires no tuning on the dial as it lies<br />
On a secret frequency.*</p>
<p>Were the radio waves of my heart able to reach you?<br />
It’s broadcasting from the Heart Station of sinners<br />
And only God knows<br />
How much I miss you.</p>
<p>I can’t go on without forgetting you,<br />
That’s how it seems at least&#8230; But why is it then<br />
That only all the good memories of us remain?</p>
<p>Without a doubt, though I’ve separated from you, you’re right here&#8230;<br />
Right here at the centre of my heart.</p>
<p>I felt like I heard your voice back there,<br />
Coming from the Heart Station that broadcasts at 1 in the night.<br />
Wherever I am, there always seems to be<br />
This beating of two pulses.</p>
<p>Were the radio signals of my heart able to get to you?<br />
It broadcasts from the Heart Station of lovers,<br />
And tonight’s requests also flood in with myriads of**<br />
“I Love You”.</p>
<p>This voice of mine, were you able to hear it?<br />
It’s broadcasting in the small hours of the night from that Heart Station&#8230;<br />
Even now, we are still connected<br />
On this secret frequency.</p>
<p>Were you able to receive these transmissions from my heart?<br />
They come from the Heart Station of sinners<br />
And only God knows&#8230;. this secret I keep.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.laidbacknerd.com/utada-hikaru-heart-station/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3C Color Picker</title>
		<link>http://www.laidbacknerd.com/3c-color-picker/</link>
		<comments>http://www.laidbacknerd.com/3c-color-picker/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 05:04:53 +0000</pubDate>
		<dc:creator>Jobee</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[warez]]></category>

		<guid isPermaLink="false">http://digitaltarlac.xtreemhost.com/?p=119</guid>
		<description><![CDATA[I&#8217;ve downloaded this nifty application years ago and now I couldn&#8217;t find any link to it in the web. It just a simple color picker &#8230;]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve downloaded this nifty application years ago and now I couldn&#8217;t find any link to it in the web. It just a simple color picker but quite useful.</p>
<p><a title="3C Color Picker" href="http://www.mediafire.com/?m2uzufinjwk" target="_blank">DOWNLOAD FILE HERE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.laidbacknerd.com/3c-color-picker/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Coco Lee &#8211; Magic Words</title>
		<link>http://www.laidbacknerd.com/coco-lee-magic-words/</link>
		<comments>http://www.laidbacknerd.com/coco-lee-magic-words/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 16:03:44 +0000</pubDate>
		<dc:creator>Jobee</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Coco Lee]]></category>
		<category><![CDATA[MP3]]></category>

		<guid isPermaLink="false">http://digitaltarlac.xtreemhost.com/?p=91</guid>
		<description><![CDATA[A song requested by ragamuffin :]
DOWNLOAD FILE HERE
]]></description>
			<content:encoded><![CDATA[<p>A song requested by ragamuffin :]</p>
<p><a title="Coco Lee - Magic Words" href="http://www.mediafire.com/?1jmql0hdmoa" target="_blank">DOWNLOAD FILE HERE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.laidbacknerd.com/coco-lee-magic-words/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MYMP &#8211; Nothing&#8217;s Gonna Stop Us Now</title>
		<link>http://www.laidbacknerd.com/mymp-nothings-gonna-stop-us-now/</link>
		<comments>http://www.laidbacknerd.com/mymp-nothings-gonna-stop-us-now/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 15:53:54 +0000</pubDate>
		<dc:creator>Jobee</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[MYMP]]></category>

		<guid isPermaLink="false">http://digitaltarlac.xtreemhost.com/?p=89</guid>
		<description><![CDATA[Another acoustic remake done by a great duo. They kinda remind me of Tuck &#38; Patti. :]
DOWNLOAD FILE HERE
]]></description>
			<content:encoded><![CDATA[<p>Another acoustic remake done by a great duo. They kinda remind me of Tuck &amp; Patti. :]</p>
<p><a title="MYMP - Nothing's Gonna Stop Us Now" href="http://www.mediafire.com/?t0juonwyteg" target="_blank">DOWNLOAD FILE HERE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.laidbacknerd.com/mymp-nothings-gonna-stop-us-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

