<?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>Fantikerz &#187; Extras</title>
	<atom:link href="http://fantikerz.com/category/extras/feed/" rel="self" type="application/rss+xml" />
	<link>http://fantikerz.com</link>
	<description>blurbs on design, music, and games.</description>
	<lastBuildDate>Mon, 06 Sep 2010 05:57:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Redirect WordPress Posts from an Old Domain</title>
		<link>http://fantikerz.com/redirect-wordpress-posts-from-an-old-domain/</link>
		<comments>http://fantikerz.com/redirect-wordpress-posts-from-an-old-domain/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 17:13:14 +0000</pubDate>
		<dc:creator>Fantikerz</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Extras]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Refirection]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://fantikerz.com/?p=617</guid>
		<description><![CDATA[Recently I had a problem when I moved my blog from blog.fantikerz.com to fantikerz.com. I had far too many links on other sites that still looked like http://blog.fantikerz.com/?p=261, and wouldn’t redirect to the new blog’s location. I wouldn’t even know &#8230; <a href="http://fantikerz.com/redirect-wordpress-posts-from-an-old-domain/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-659 alignright" style="float: right;" title="Simple Code" src="http://fantikerz.com/wp-content/uploads/2009/08/2009-08-21_1015.png" alt="Simple Code" width="180" height="107" /></p>
<p>Recently I had a problem when I moved my blog from blog.fantikerz.com to fantikerz.com. I had far too many links on other sites that still looked like <span class="emp">http://blog.fantikerz.com/?p=261</span>, and wouldn’t redirect to the new blog’s location. I wouldn’t even know where to start if I had to change all of those.</p>
<p>Instead, I threw together a simple redirection script that I thought I’d just share in case anyone needed it. It’s nothing fancy at all, and stupid easy to set up. There are many ways of doing this, and in my opinion, this is the easiest.</p>
<p><span id="more-617"></span></p>
<p>This is explained in a way that even common folk who just want to move their blog will understand. Sorry if I insult your intelligence.</p>
<h3>1. Create a file called index.php</h3>
<p>Pop <strong>open notepad</strong>, go to <strong>File &gt; Save As…</strong>, set the <strong>filename as index.php</strong>, and then go directly below that and make sure to <strong>set Save As Type to All Files</strong>.</p>
<h3>2. Copy the script into the text editor</h3>
<pre><code>&lt;?php
	$post = $_GET["p"];
	$new = "http://newbloglocation.com";
	$string = $new . "?p=" . $post;

	echo "Redirecting to " . $string;
	header("Location: $string");
?&gt;
</code></pre>
<h3>3. Plug in your information</h3>
<p>This is easy. Just plug in your blog’s new address where <span class="emp">http://newbloglocation.com</span> is. Make sure to include the <span class="emp">http://</span>. If your blog was located in another directory, you’re also able to include it like so: <span class="emp">http://newbloglocation.com/blog/</span>. Otherwise, omit anything after the domain name.</p>
<h3>4. Presto, now save it and upload it to your server</h3>
<p>Do a quick <strong>CTRL+S</strong> to save and <strong>upload it via FTP</strong> to the root of where your old blog used to reside.</p>
<p>Now you’re done. That was easy!</p>
]]></content:encoded>
			<wfw:commentRss>http://fantikerz.com/redirect-wordpress-posts-from-an-old-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing Cloudy</title>
		<link>http://fantikerz.com/designing-cloudy/</link>
		<comments>http://fantikerz.com/designing-cloudy/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 12:50:22 +0000</pubDate>
		<dc:creator>Fantikerz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Extras]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[Cloudy]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blog.fantikerz.com/?p=268</guid>
		<description><![CDATA[I challenged myself to design a basic site in an hour or less while taking a screenshot every 10 seconds. At what ended up being 1 hour and 9 minutes, I missed my mark -  but only by a little &#8230; <a href="http://fantikerz.com/designing-cloudy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="alignright size-full wp-image-271" style="float: right;" title="2009-06-16_0516" src="http://fantikerz.com/wp-content/uploads/2009/06/2009-06-16_0516.png" alt="2009-06-16_0516" width="180" height="113" />I challenged myself to design a basic site in an hour or less while taking a screenshot every 10 seconds. At what ended up being 1 hour and 9 minutes, I missed my mark -  but only by a little bit. Overall, the end result is decent, but nothing spectacular. Given more time I would have probably refined the header section a bit more and spiced up the welcome area. Keeping in mind the time constraints, the simplicity and barrenness can be over looked, in my opinion. Look for the full size image after the jump.</p>
<p><span id="more-268"></span></p>
<h3 style="text-align: center;"><a href="http://www.youtube.com/watch?v=_n15wcyv9Jo&amp;fmt=22" target="_blank">Click for the Video</a></h3>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/_n15wcyv9Jo&amp;hl=en&amp;ap=%2526fmt%3D22&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="400" src="http://www.youtube.com/v/_n15wcyv9Jo&amp;hl=en&amp;ap=%2526fmt%3D22&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3 style="text-align: center;"><a href="http://fantikerz.com/wp-content/uploads/2009/06/design.jpg" target="_blank" rel="lightbox[268]">Click for Full Size Image (1200x1000)</a></h3>
</p>
<p style="text-align: center;"><a href="http://fantikerz.com/wp-content/uploads/2009/06/design.jpg" target="_blank" rel="lightbox[268]"><img class="size-large wp-image-272 alignnone" title="design" src="http://fantikerz.com/wp-content/uploads/2009/06/design-1024x853.jpg" alt="design" width="500" height="399" /></a></p>
<p>I would be lying if I said this wasn’t Twitter inspired. I initially started with an ugly black colour palette in mind but quickly swapped that for a clean, white and blue scheme. From there, I immediately thought of clouds — that’s where <a href="http://cloud-no9.deviantart.com/art/Cloud-Brushes-ver-1-54644659">cloud-no9’s brushes</a> came in handy. Admittedly, the placement of everything isn’t very original, but that’s alright.</p>
<p>I probably won’t end up converting the psd to xhtml, but if someone wants to, or just wants the psd, leave a comment and I’ll send it to you.</p>
<p>Hopefully, if I do another one of these videos, the end result will be much more interesting. It should be noted that I still consider myself an ametuer at web design.</p>
]]></content:encoded>
			<wfw:commentRss>http://fantikerz.com/designing-cloudy/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Things that Irk Me</title>
		<link>http://fantikerz.com/things-that-irk-me/</link>
		<comments>http://fantikerz.com/things-that-irk-me/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 03:35:31 +0000</pubDate>
		<dc:creator>Fantikerz</dc:creator>
				<category><![CDATA[Extras]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Annoying]]></category>
		<category><![CDATA[Ego]]></category>
		<category><![CDATA[Fool]]></category>
		<category><![CDATA[Irk]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Problem]]></category>

		<guid isPermaLink="false">http://blog.fantikerz.com/?p=243</guid>
		<description><![CDATA[Sitting here waiting for my Steam items to download (Mirrors Edge and Assassin’s Creed, thanks for asking), I began to ponder the phrases, words, and actions that are my pet peeves. I now present them in a neat, alphabetized list &#8230; <a href="http://fantikerz.com/things-that-irk-me/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sitting here waiting for my Steam items to download (Mirrors Edge and Assassin’s Creed, thanks for asking), I began to ponder <a href="http://www.flickr.com/photos/quinnanya/2058346033/"><img class="alignright size-full wp-image-245" style="float: right;" title="2058346033_25e28400bb" src="http://fantikerz.com/wp-content/uploads/2009/06/2058346033_25e28400bb.jpg" alt="2058346033_25e28400bb" width="180" height="127" /></a>the phrases, words, and actions that are my pet peeves. I now present them in a neat, alphabetized list that you may use as a reference when communicating with me.*</p>
<p>Just know that there’s not any particular reason for writing this, and you shouldn’t take anything seriously — unless you’re Anthony or George. There might even be some things that you agree with, but don’t be surprised if there isn’t. In all seriousness, this post is really self-centered and is mostly a joke.</p>
<p><span id="more-243"></span></p>
<ul>
<li><strong>Airplane or Aircraft</strong>
<ul>
<li>Honestly, I have no idea why this bugs me. I prefer using and hearing the word aircraft over airplane — maybe because I find the word airplane redundant. I mean, the plane insinuates flight, so therefore the word air is unnecessary. I like the word aeroplane, though.</li>
</ul>
</li>
<li><strong>Blueberries</strong>
<ul>
<li>These things don’t even taste that great. The only real delectable members of the berry family are the strawberry and the raspberry. I don’t even know what the differences between the blueberry and the huckleberry are. In my opinion, these useless fruits should be eradicated. They are taking up strawberry space.</li>
</ul>
</li>
<li><strong>People Who Post Pictures of Themselves with no Shirt Online</strong>
<ul>
<li>You know those douchebags that take pictures of themselves with their crappy 2MP camera phone their parents bought for them in front of their smeared bathroom mirrors with their sixpack barely visible under the blue fluorescent lights with various pointless effects added in emphasizing their “beastliness”? I hate them.</li>
</ul>
</li>
<li><strong>Pill Popping</strong>
<ul>
<li>Modern medicine has come a long way, but what did humans do before taking drugs became common? Working out? Using natural remedies? Resting? What are those?! It just bugs me that people have appeared to develop an independence on pills to make them feel better when there are even better remedies out there. Of course you still need medication, but it needs to be frowned upon when others take drugs for the sake of laziness.</li>
</ul>
</li>
<li><strong>Posting Your Personal Problems Online</strong>
<ul>
<li>I know I’m not alone on this. Doesn’t it suck when you’re having a nice day, decide to go on Facebook, and then see a deeply obscure but obviously depressive message? It can totally bog your day down. I understand the need to vent, but that’s what a diary (or wrists) are for.</li>
</ul>
</li>
<li><strong>Rapists</strong>
<ul>
<li>‘Nuff said.</li>
</ul>
</li>
<li><strong>Saying You can do More than you Really Can</strong>
<ul>
<li>So you want to look impressive? Then you might think it would be good to add 10 things you know shit none about to your resume. Even better, tell people that you can do those things and then proceed to show those people work that you jacked off a lowly artist on deviantArt! Boy, aren’t you impressive!</li>
</ul>
</li>
<li><strong>Those Who Put their Name on their License Plates</strong>
<ul>
<li>Are you too good for the random string of numbers and letters that the DMV gives you or do you just forget your name all the time? Quit being an egotistical fool because we don’t care what your name is.</li>
</ul>
</li>
<li><strong>Unnecessary Swearing</strong>
<ul>
<li>Sure, popping off an F bomb every now and then adds comical value, but you shouldn’t replace every other word with it. Swearing should either be used to prove a point, or add comical value to an otherwise stale point.</li>
</ul>
</li>
<li id="p9"><strong>Woefully Ignorant People</strong>
<ul>
<li>You want to show someone something, but they just dont get it and don’t care. This might even be something that you know they would like, but they still don’t care. You can choose to let it go or persist… you persist, if only for the reason that you know that you’ll be thinking of this for weeks if you don’t. Days later, they still don’t give a shit and you proceed to go to your next, more open-minded, employed friend and show him the thing you’ve been raving about. The person loves it and you become best friends, and the ignorant friend gets arrested for possession of a controlled substance. You need better friends.</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://fantikerz.com/things-that-irk-me/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google Suggestions</title>
		<link>http://fantikerz.com/google-suggestions/</link>
		<comments>http://fantikerz.com/google-suggestions/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 19:42:11 +0000</pubDate>
		<dc:creator>Fantikerz</dc:creator>
				<category><![CDATA[Extras]]></category>
		<category><![CDATA[Images]]></category>

		<guid isPermaLink="false">http://blog.fantikerz.com/?p=159</guid>
		<description><![CDATA[Alright, so I was trying to see if MSN was down by Googling “is msn down”, and some somewhat comical suggestions popped up when I punched in the first word. This sparked a short-lived Googling frenzy. Here are my highlights. &#8230; <a href="http://fantikerz.com/google-suggestions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-184" style="float: right;" title="google-logo" src="http://fantikerz.com/wp-content/uploads/2008/12/google-logo-300x119.jpg" alt="google-logo" width="180" height="73" /></p>
<p>Alright, so I was trying to see if MSN was down by Googling “is msn down”, and some somewhat comical suggestions popped up when I punched in the first word. This sparked a short-lived Googling frenzy. Here are my highlights.</p>
<p>I never found out if MSN was down..</p>
<p><span id="more-159"></span></p>

<a href='http://fantikerz.com/google-suggestions/picture-3/' title='Why...'><img width="150" height="150" src="http://fantikerz.com/wp-content/uploads/2008/12/picture-3-150x150.png" class="attachment-thumbnail" alt="Why..." title="Why..." /></a>
<a href='http://fantikerz.com/google-suggestions/picture-4/' title='How To...'><img width="150" height="150" src="http://fantikerz.com/wp-content/uploads/2008/12/picture-4-150x150.png" class="attachment-thumbnail" alt="How To..." title="How To..." /></a>
<a href='http://fantikerz.com/google-suggestions/picture-5/' title='To Ple...'><img width="150" height="150" src="http://fantikerz.com/wp-content/uploads/2008/12/picture-5-150x150.png" class="attachment-thumbnail" alt="To Ple..." title="To Ple..." /></a>
<a href='http://fantikerz.com/google-suggestions/picture-6/' title='Find...'><img width="150" height="150" src="http://fantikerz.com/wp-content/uploads/2008/12/picture-6-150x150.png" class="attachment-thumbnail" alt="Find..." title="Find..." /></a>
<a href='http://fantikerz.com/google-suggestions/picture-7/' title='How to Quit...'><img width="150" height="150" src="http://fantikerz.com/wp-content/uploads/2008/12/picture-7-150x150.png" class="attachment-thumbnail" alt="How to Quit..." title="How to Quit..." /></a>
<a href='http://fantikerz.com/google-suggestions/picture-8/' title='Is...'><img width="150" height="150" src="http://fantikerz.com/wp-content/uploads/2008/12/picture-8-150x150.png" class="attachment-thumbnail" alt="Is..." title="Is..." /></a>
<a href='http://fantikerz.com/google-suggestions/google-logo/' title='Google Logo'><img width="150" height="150" src="http://fantikerz.com/wp-content/uploads/2008/12/google-logo-150x150.jpg" class="attachment-thumbnail" alt="Google Logo" title="Google Logo" /></a>

]]></content:encoded>
			<wfw:commentRss>http://fantikerz.com/google-suggestions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>11 Catchy or Feel Good Songs</title>
		<link>http://fantikerz.com/11-catchy-or-feel-good-songs/</link>
		<comments>http://fantikerz.com/11-catchy-or-feel-good-songs/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 06:09:29 +0000</pubDate>
		<dc:creator>Fantikerz</dc:creator>
				<category><![CDATA[Extras]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Album]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[ATB]]></category>
		<category><![CDATA[Catchy]]></category>
		<category><![CDATA[Chicane]]></category>
		<category><![CDATA[David Guetta]]></category>
		<category><![CDATA[Dido]]></category>
		<category><![CDATA[Dima]]></category>
		<category><![CDATA[Favourites]]></category>
		<category><![CDATA[Feel Good]]></category>
		<category><![CDATA[Flunk]]></category>
		<category><![CDATA[Imogen Heap]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Jem]]></category>
		<category><![CDATA[Kaskade]]></category>
		<category><![CDATA[MGMT]]></category>
		<category><![CDATA[Rob Dougan]]></category>
		<category><![CDATA[They]]></category>
		<category><![CDATA[Tom Jones]]></category>
		<category><![CDATA[Zaho]]></category>

		<guid isPermaLink="false">http://blog.fantikerz.com/?p=128</guid>
		<description><![CDATA[All this post is about, is feel good , and catchy, songs. As a music junkie, I come across them quite often, and I even have a playlist of them on my iPod that’s 150-ish songs deep. What makes a &#8230; <a href="http://fantikerz.com/11-catchy-or-feel-good-songs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://fantikerz.com/wp-content/uploads/2008/08/musiccatalog_k_kaskade-in-the-moment_kaskade-in-the-moment.jpg" rel="lightbox[128]"><img class="alignright size-medium wp-image-137" style="float: right;" title="musiccatalog_k_kaskade-in-the-moment_kaskade-in-the-moment" src="http://fantikerz.com/wp-content/uploads/2008/08/musiccatalog_k_kaskade-in-the-moment_kaskade-in-the-moment.jpg" alt="" width="180" height="180" /></a></p>
<p style="text-align: left;">All this post is about, is feel good , and catchy, songs. As a music junkie, I come across them quite often, and I even have a playlist of them on my iPod that’s 150-ish songs deep.</p>
<p style="text-align: left;">What makes a song catchy? A nice beat, of course, with sometimes clever lyrics. The same thing goes for the feel good songs, which will probably have some more meaningful lyrics.</p>
<p style="text-align: left;">I figured some of you might enjoy some songs on this Saturday morning. Here are some of the better ones, after the break…</p>
<p style="text-align: left;"><span id="more-128"></span></p>
<p style="text-align: left;">
<h3 style="text-align: left;"><strong>1. Imogen Heap — Goodnight and Go</strong> — Pop</h3>
<p style="text-align: left;">This really is a dictionary definition of a “feel good song”, in my opinion. Imogen is bloody talented.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550px" height="300px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/qutKFVLj2A8&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550px" height="300px" src="http://www.youtube.com/v/qutKFVLj2A8&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3 style="text-align: left;"><strong>2. David Guetta — Delirious</strong> — Pop / Dance</h3>
<p style="text-align: left;">David Guetta always churns out great songs that would fit best at a party. There is a build up to the chorus in this song, which makes a great impact when this is turned up loud.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550px" height="300px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/riaHhTdg1dE&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550px" height="300px" src="http://www.youtube.com/v/riaHhTdg1dE&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3 style="text-align: left;"><strong>3. MGMT — Time to Pretend</strong> — Alternative</h3>
<p style="text-align: left;">When I heard this a while ago, I knew I had heard it before. I had heard it from the movie 21 (a great movie), and listening to the lyrics is almost a story in itself.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550px" height="300px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/f9GH-yvPHSY&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550px" height="300px" src="http://www.youtube.com/v/f9GH-yvPHSY&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3 style="text-align: left;"><strong>4. ATB — Let You Go</strong> — Dance / Trance</h3>
<p style="text-align: left;">This is another song with great lyrics. “I’ve been running like a sentence” — priceless!!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550px" height="300px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/TL-UC6fxt_s&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550px" height="300px" src="http://www.youtube.com/v/TL-UC6fxt_s&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3 style="text-align: left;"><strong>5. Chicane — Stoned in Love ft. Tom Jones</strong> — Dance / Trance</h3>
<p style="text-align: left;">This is one of those songs that, for me, seem to impact you best in the morning. This track deserved MUCH more recognition than it’s gotten. Tom Jones is a beast.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550px" height="300px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/yaDwNKM8Fso&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550px" height="300px" src="http://www.youtube.com/v/yaDwNKM8Fso&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3 style="text-align: left;"><strong>6. Jem — They</strong> — Pop</h3>
<p style="text-align: left;">I hear that this song is supposedly a tribute to Cinderella (that’s where the bum baa da bit comes from). I think it’s more of a tribute f***ing catchy music.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550px" height="300px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/bFaee49YjMw&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550px" height="300px" src="http://www.youtube.com/v/bFaee49YjMw&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3 style="text-align: left;"><strong>7. Kaskade — Sweet Love</strong> — Trance / Dance</h3>
<p style="text-align: left;">Yes, this is another song that’s in the same class as Stoned in Love, that’s above. In addition, this is a great night time song. Just close your eyes and listen to the beat.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550px" height="300px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/BAiuux4EzvI&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550px" height="300px" src="http://www.youtube.com/v/BAiuux4EzvI&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3 style="text-align: left;"><strong>8. Flunk — Blue Monday </strong>- Indie</h3>
<p style="text-align: left;">Here’s another, slow paced, version of the song Blue Monday, by New Order. You know, that old classic with plenty of base? Yeah, that’s the one. But you know, I really like this version a lot more…</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550px" height="300px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/JDCVYbrWn9Q&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550px" height="300px" src="http://www.youtube.com/v/JDCVYbrWn9Q&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3 style="text-align: left;"><strong>9. Dido — Here With Me</strong> — Pop / Lounge</h3>
<p style="text-align: left;">Not sure why I included this… but you can’t deny that it’s somewhat catchy.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550px" height="300px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/scdm5il-hC4&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550px" height="300px" src="http://www.youtube.com/v/scdm5il-hC4&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3 style="text-align: left;"><strong>10. Zaho — Dima</strong> — French Pop / Rap</h3>
<p style="text-align: left;">You don’t need to understand what she’s saying to like the song.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550px" height="300px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/eDfKzg-4HVo&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550px" height="300px" src="http://www.youtube.com/v/eDfKzg-4HVo&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3 style="text-align: left;"><strong>11. Rob Dougan — Clubbed to Death</strong> — Instrumental / Soundtrack</h3>
<p style="text-align: left;">This one comes from the Blade Trinity soundtrack, and it is a good instrumental. I would throw it up there with Requiem for a Dream.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550px" height="300px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/_YCGtT_FRYg&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550px" height="300px" src="http://www.youtube.com/v/_YCGtT_FRYg&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I tried to choose songs that [normal] people probably don’t already have on their iPods and stuff, yet. This post took a nice two hours to put together, so I can only hope you found something you liked.</p>
]]></content:encoded>
			<wfw:commentRss>http://fantikerz.com/11-catchy-or-feel-good-songs/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Coldplay</title>
		<link>http://fantikerz.com/coldplay/</link>
		<comments>http://fantikerz.com/coldplay/#comments</comments>
		<pubDate>Tue, 13 May 2008 00:33:08 +0000</pubDate>
		<dc:creator>Fantikerz</dc:creator>
				<category><![CDATA[Extras]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Band]]></category>
		<category><![CDATA[Clocks]]></category>
		<category><![CDATA[Coldplay]]></category>
		<category><![CDATA[Favorite]]></category>
		<category><![CDATA[Viva la Vida]]></category>

		<guid isPermaLink="false">http://blog.fantikerz.com/?p=106</guid>
		<description><![CDATA[I’ve finally found my new favorite band, Coldplay. I’ve liked their music for a while, just not this much until recently. With their 4th album to be released soon, it’s hard to believe they’ve made so many great songs. Their &#8230; <a href="http://fantikerz.com/coldplay/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I’ve finally found my new favorite band, Coldplay. I’ve liked their music for a while, just not this much until <a href="http://fantikerz.com/wp-content/uploads/2008/05/viva-la-vida.jpg" rel="lightbox[106]"><img class="alignright size-full wp-image-107" style="float: right;" title="viva-la-vida" src="http://fantikerz.com/wp-content/uploads/2008/05/viva-la-vida.jpg" alt="" width="200" height="200" /></a>recently. With their 4th album to be released soon, it’s hard to believe they’ve made so many great songs. Their music is light hearted, deep, and all entangled within an awesome beat… most of the time</p>
<p>I’ve pre ordered their new album, Viva la Vida which promises to be promising.</p>
<p>Of course you’d never want to take my word on something, so take a listen to some tracks (including their latest one) for yourself, after the break.</p>
<p><span id="more-106"></span></p>
<p style="text-align: center;">
<p style="text-align: center;">Their newest song, <strong>Viva la Vida</strong><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="30" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="dewplayer" /><param name="bgcolor" value="FFFFFF" /><param name="align" value="middle" /><param name="src" value="http://forum.frequencebonheur.fr//dewplayer.swf?son=http://fantikerz.com/wp-content/uploads/2008/05/coldplay-viva-la-vida.mp3&amp;autostart=0&amp;bgcolor=FFFFFF" /><embed type="application/x-shockwave-flash" width="300" height="30" src="http://forum.frequencebonheur.fr//dewplayer.swf?son=http://fantikerz.com/wp-content/uploads/2008/05/coldplay-viva-la-vida.mp3&amp;autostart=0&amp;bgcolor=FFFFFF" align="middle" bgcolor="FFFFFF" name="dewplayer"></embed></object>
</p>
<p style="text-align: center;">
<p style="text-align: center;">One of my favorite tracks, <strong>Clocks</strong><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="30" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="dewplayer" /><param name="bgcolor" value="FFFFFF" /><param name="align" value="middle" /><param name="src" value="http://forum.frequencebonheur.fr//dewplayer.swf?son=http://fantikerz.com/wp-content/uploads/2008/05/coldplay-clocks.mp3&amp;autostart=0&amp;bgcolor=FFFFFF" /><embed type="application/x-shockwave-flash" width="300" height="30" src="http://forum.frequencebonheur.fr//dewplayer.swf?son=http://fantikerz.com/wp-content/uploads/2008/05/coldplay-clocks.mp3&amp;autostart=0&amp;bgcolor=FFFFFF" align="middle" bgcolor="FFFFFF" name="dewplayer"></embed></object>
</p>
<p style="text-align: left;">So, what do you think of their music?</p>
]]></content:encoded>
			<wfw:commentRss>http://fantikerz.com/coldplay/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>RuneScape Gathering 2008: Aftermath</title>
		<link>http://fantikerz.com/runescape-gathering-2008-aftermath/</link>
		<comments>http://fantikerz.com/runescape-gathering-2008-aftermath/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 02:56:11 +0000</pubDate>
		<dc:creator>Fantikerz</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Extras]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Videos]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Gathering]]></category>
		<category><![CDATA[Ice Mountain]]></category>
		<category><![CDATA[RuneScape]]></category>
		<category><![CDATA[TehNoobShow]]></category>
		<category><![CDATA[TheUnforgiving]]></category>

		<guid isPermaLink="false">http://blog.fantikerz.com/?p=100</guid>
		<description><![CDATA[It’s over… and apparently it was a success. Billions (not really) of people showed up, and enjoyed themselves… for the most part. Worlds 126 and 127 filled up completely, hours before the event even started. I personally hung out with &#8230; <a href="http://fantikerz.com/runescape-gathering-2008-aftermath/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">It’s over… and apparently it was a success. <em>Billions </em>(not really) of people showed up, and enjoyed <a href="http://fantikerz.com/wp-content/uploads/2008/04/ice-mountain.jpg" rel="lightbox[100]"><img class="alignnone size-full wp-image-101 alignright" style="float: right;" title="ice-mountain" src="http://fantikerz.com/wp-content/uploads/2008/04/ice-mountain.jpg" alt="Ice Mountain" width="205" height="139" /></a>themselves… for the most part. Worlds 126 and 127 filled up completely, hours before the event even started.</p>
<p style="text-align: justify;"><img class="alignleft" style="float: left;" src="http://images.fantikerz.com/main.php?g2_view=core.DownloadItem&amp;g2_itemId=399&amp;g2_serialNumber=5" alt="" width="53" height="133" /> I personally hung out with Regicidal1 for a while, and we went over to Clan Wars and lost multiple times. I pwned with my Mith stuff… But hey, who cares about me?</p>
<p style="text-align: justify;">Videos and pictures after the break.</p>
<p style="text-align: justify;">
<p style="text-align: justify;"><span id="more-100"></span></p>
<p align="center"><strong>Runescape 2008 Gathering</strong></p>
<p align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="373" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/xN5DUFnFLOk&amp;hl=en&amp;color1=0x006699&amp;color2=0x54abd6&amp;border=1" /><embed type="application/x-shockwave-flash" width="425" height="373" src="http://www.youtube.com/v/xN5DUFnFLOk&amp;hl=en&amp;color1=0x006699&amp;color2=0x54abd6&amp;border=1" wmode="transparent"></embed></object>
</p>
<p align="center">Video by TheUnforgiving</p>
<p align="center">
<p style="text-align: left;">Here are some pictures I took in the short while I was there.</p>
<p style="text-align: center;"><strong>Ice Mountain</strong></p>
<p style="text-align: center;"><img src="http://images.fantikerz.com/main.php?g2_view=core.DownloadItem&amp;g2_itemId=402&amp;g2_serialNumber=5" alt="" width="513" height="336" /></p>
<p style="text-align: center;"><img src="http://images.fantikerz.com/main.php?g2_view=core.DownloadItem&amp;g2_itemId=401&amp;g2_serialNumber=5" alt="" width="515" height="335" /></p>
<p style="text-align: center;"><img src="http://images.fantikerz.com/main.php?g2_view=core.DownloadItem&amp;g2_itemId=400&amp;g2_serialNumber=5" alt="" width="513" height="335" /></p>
<p style="text-align: center;">
<p style="text-align: center;"><strong>Clan Wars</strong></p>
<p style="text-align: center;"><img src="http://images.fantikerz.com/main.php?g2_view=core.DownloadItem&amp;g2_itemId=398&amp;g2_serialNumber=5" alt="" width="516" height="339" /></p>
<p style="text-align: center;"><img src="http://images.fantikerz.com/main.php?g2_view=core.DownloadItem&amp;g2_itemId=397&amp;g2_serialNumber=5" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://fantikerz.com/runescape-gathering-2008-aftermath/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
