<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="http://feedproxy.google.com/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feedproxy.google.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Internet Business Daily</title>
	
	<link>http://internetbusinessdaily.net</link>
	<description>internet business : web trends : technology news</description>
	<pubDate>Thu, 04 Dec 2008 01:25:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feedproxy.google.com/InternetBusinessDaily" type="application/rss+xml" /><item>
		<title>How to Deal With Repeat Clicks (Aff Marketing)</title>
		<link>http://feedproxy.google.com/~r/InternetBusinessDaily/~3/TdkuSWz0fAw/</link>
		<comments>http://internetbusinessdaily.net/how-to-deal-with-repeat-visitors-who-didnt-convert/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 00:37:12 +0000</pubDate>
		<dc:creator>Matthew Berman</dc:creator>
		
		<category><![CDATA[Affiliate Marketing]]></category>

		<guid isPermaLink="false">http://internetbusinessdaily.net/?p=490</guid>
		<description><![CDATA[Problem:
I recently ran into a problem while running an affiliate marketing campaign. The problem was that since I was changing my ad copy so often, the same people would click my ads multiple times and land on the same landing page and would leave (because they had already been to it and left). This caused [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>I recently ran into a problem while running an affiliate marketing campaign. The problem was that since I was changing my ad copy so often, the same people would click my ads multiple times and land on the same landing page and would leave (because they had already been to it and left). This caused the amount of clicks from my landing page to the offer page to decline gradually because return visitors thought they were going to a new site when they actually weren&#8217;t (since my ad they clicked on was different). </p>
<p>A similar problem was people who did click through to the offer page and were back a second time. In this case they converted and won&#8217;t convert again, or did not convert because they didn&#8217;t like the offer. Either way I had to think of something else to do with these repeat visits.</p>
<p><strong>Solution:</strong></p>
<p>I thought about it and came up with a solution. I created a little cookie dropping script that tested two things:  1. did they already come to my landing page? 2. did they click through to the offer page? Here is the code:</p>
<blockquote><p><code><br />
&lt;?php<br />
if ( isset($_COOKIE['clicked'])) {</p>
<p>    header(&#8221;Location: http://www.anothersimilaroffer.com&#8221;);<br />
    exit;<br />
    }</p>
<p>if ( isset($_COOKIE['landed']) &#038;&#038; ($_COOKIE['landed'] <= time()-60*5) ) {<br />
    header("Location: http://www.adifferentlandingpage.com/");<br />
    exit;<br />
    }</p>
<p>$month = time()+60*60*24*30;<br />
$value = time();<br />
setcookie("landed",$value, $month);<br />
?&gt;<br />
</code>
</p></blockquote>
<p>Put this code at the top of your landing page. </p>
<p>In addition, you will also have to set another cookie (shown below) called &#8220;clicked&#8221; when they click your outbound link to the offer page:</p>
<blockquote><p><code><br />
&lt;?php<br />
$month = time()+60*60*24*30;<br />
$value = time();<br />
setcookie("clicked",$value, $month);<br />
?&gt;<br />
</code></p></blockquote>
<p>Basically, how it works is when a new user visits, it will set the &#8220;landed&#8221; cookie. If they leave after that nothing else happens. If they click the outbound link to the offer page, a cookie called &#8220;clicked&#8221; will be set.</p>
<p>When a repeat visitor comes back it will check to see if they went to the offer page first. If they did you can redirect them to another similar offer instead. If the repeat visitor landed but did not click through (left your site), you can redirect them to another landing page for the same offer, which may give a conversion. NOTE: it gives a user 5 minutes after leaving your site before the redirect will occur.</p>
<p>This will at least give you some control over people who click your ads multiple times and either don&#8217;t like your landing page or don&#8217;t like the offer you are selling.</p>

<p><a href="http://feedads.googleadservices.com/~a/MQOE0J0wbImKslr5orN7IzWmZ9o/a"><img src="http://feedads.googleadservices.com/~a/MQOE0J0wbImKslr5orN7IzWmZ9o/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/InternetBusinessDaily/~4/TdkuSWz0fAw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://internetbusinessdaily.net/how-to-deal-with-repeat-visitors-who-didnt-convert/feed/</wfw:commentRss>
		<feedburner:origLink>http://internetbusinessdaily.net/how-to-deal-with-repeat-visitors-who-didnt-convert/</feedburner:origLink></item>
		<item>
		<title>Google’s Search Wiki</title>
		<link>http://feedproxy.google.com/~r/InternetBusinessDaily/~3/xcOD76zUMrI/</link>
		<comments>http://internetbusinessdaily.net/googles-search-wiki/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 19:22:18 +0000</pubDate>
		<dc:creator>Matthew Berman</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://internetbusinessdaily.net/?p=482</guid>
		<description><![CDATA[I just noticed that Google has finally implemented their Search Wiki. I am not sure if this is just for a select number of users for now, but it seems like a pretty cool feature. Basically, it is like a Digg (ratings) system for Google&#8217;s search results. I see a lot of potential for manipulation [...]]]></description>
			<content:encoded><![CDATA[<p>I just noticed that Google has finally implemented their Search Wiki. I am not sure if this is just for a select number of users for now, but it seems like a pretty cool feature. Basically, it is like a Digg (ratings) system for Google&#8217;s search results. I see a lot of potential for manipulation however. I have a feeling Google&#8217;s ratings system doesn&#8217;t hold too much value in the overall formula but rather it is more for personalized search. Instead of the ratings results affecting the overall rankings, I think it just affects the individuals. Below is what it looks like. Just to be sure, is everyone else seeing this?<img src="http://internetbusinessdaily.net/wp-content/uploads/2008/11/picture-2.png" alt="" title="google-search-wiki" width="500" height="346" class="alignnone size-full wp-image-483" /><noscript><a href="http://mebeli-new.free.bg/">&#1084;&#1077;&#1073;&#1077;&#1083;&#1080;</a></noscript></p>

<p><a href="http://feedads.googleadservices.com/~a/9c6sFUwMYNp2NzrHlwMRBdl1x70/a"><img src="http://feedads.googleadservices.com/~a/9c6sFUwMYNp2NzrHlwMRBdl1x70/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/InternetBusinessDaily/~4/xcOD76zUMrI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://internetbusinessdaily.net/googles-search-wiki/feed/</wfw:commentRss>
		<feedburner:origLink>http://internetbusinessdaily.net/googles-search-wiki/</feedburner:origLink></item>
		<item>
		<title>ePN Slowly Dying…Or Are They?</title>
		<link>http://feedproxy.google.com/~r/InternetBusinessDaily/~3/sW-IFglo0zg/</link>
		<comments>http://internetbusinessdaily.net/epn-slowly-dyingor-are-they/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 22:05:37 +0000</pubDate>
		<dc:creator>Matthew Berman</dc:creator>
		
		<category><![CDATA[Affiliate Marketing]]></category>

		<category><![CDATA[Make Money Online]]></category>

		<category><![CDATA[ePN]]></category>

		<guid isPermaLink="false">http://internetbusinessdaily.net/?p=467</guid>
		<description><![CDATA[




A little while back I wrote a post about how I thought ePN was going to die and publishers needed to look elsewhere for their revenue. Since then, ePN has done a total 180 degree turn and has been doing better for me. Their backend is still solid so basically they fixed the only thing [...]]]></description>
			<content:encoded><![CDATA[<table align="right">
<tr>
<td><img src="http://internetbusinessdaily.net/wp-content/uploads/2008/11/picture-1.png" alt="" title="epn-logo" width="260" height="55" class="alignnone size-full wp-image-469" /></td>
</tr>
</table>
<p>A little while back I wrote a post about how I <a href="http://internetbusinessdaily.net/epn-slowly-dying/">thought ePN was going to die</a> and publishers needed to look elsewhere for their revenue. Since then, ePN has done a total 180 degree turn and has been doing better for me. Their backend is still solid so basically they fixed the only thing that I had a problem with: earnings. </p>
<p>My revenue continues to increase and I&#8217;m currently earning an average of $8 EPC (earnings per 100 clicks). This is pretty decent seeing how when I wrote the previous article my EPC was sitting at around $1.50. A ton of the biggest publishers are still banned from ePN for unknown reasons (eBay claims quality reasons but who knows) and I could be banned at any time. Because of this I am still trying to integrate ePN where I can but I&#8217;m not investing a large chunk of my time into it like I used to. I figure I&#8217;ll just spend any spare time I have into building more BANS sites and promoting them. </p>
<p><center><script type="text/javascript"><!--
google_ad_client = "pub-8326857690344774";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
//2007-02-01: ibd 468 banner
google_ad_channel = "4902617008";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0066FF";
google_color_text = "000000";
google_color_url = "0066FF";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center></p>
<p>The reason I like ePN&#8217;s structure so much is because it takes minimal effort from me after setup. If I never put another minute of time into building and promoting sites, I would still get a nice chunk of change every month in my PayPal account without lifting a finger (assuming I don&#8217;t get banned). Has anyone else still had success with ePN? Post to the comments, I&#8217;d love to know. Unfortunately, ePN is not accepting US applications anymore, so accounts just became very valuable:).</p>

<p><a href="http://feedads.googleadservices.com/~a/WKPRWCozsAHZJpSJIoB1jRGajmM/a"><img src="http://feedads.googleadservices.com/~a/WKPRWCozsAHZJpSJIoB1jRGajmM/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/InternetBusinessDaily/~4/sW-IFglo0zg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://internetbusinessdaily.net/epn-slowly-dyingor-are-they/feed/</wfw:commentRss>
		<feedburner:origLink>http://internetbusinessdaily.net/epn-slowly-dyingor-are-they/</feedburner:origLink></item>
		<item>
		<title>The Office Episode - Frame Toby (Toby Returns)</title>
		<link>http://feedproxy.google.com/~r/InternetBusinessDaily/~3/g02pV3ua9G4/</link>
		<comments>http://internetbusinessdaily.net/the-office-episode-frame-toby-toby-returns/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 21:49:34 +0000</pubDate>
		<dc:creator>Matthew Berman</dc:creator>
		
		<category><![CDATA[Funny]]></category>

		<category><![CDATA[Random]]></category>

		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://internetbusinessdaily.net/?p=463</guid>
		<description><![CDATA[The Office is probably my favorite show on television right now. I&#8217;ve been watching since the very first episode and think Steve Carell is a genius. Since I have had a writers block for some time now, I figure why not post another great Office episode. This is the one that aired last night, where [...]]]></description>
			<content:encoded><![CDATA[<p>The Office is probably my favorite show on television right now. I&#8217;ve been watching since the very first episode and think Steve Carell is a genius. Since I have had a writers block for some time now, I figure why not post another great Office episode. This is the one that aired last night, where Toby comes back from his vacation. The opening scene is definitely my favorite part of the episode. Check it out:</p>
<p><center><object width="512" height="296"><param name="movie" value="http://www.hulu.com/embed/q8sMU1SU6raJY9T2t1UknQ"></param><embed src="http://www.hulu.com/embed/q8sMU1SU6raJY9T2t1UknQ" type="application/x-shockwave-flash"  width="512" height="296"></embed></object></center></p>

<p><a href="http://feedads.googleadservices.com/~a/J51V4kyJ98DUbdh9nAr3yiiBkpk/a"><img src="http://feedads.googleadservices.com/~a/J51V4kyJ98DUbdh9nAr3yiiBkpk/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/InternetBusinessDaily/~4/g02pV3ua9G4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://internetbusinessdaily.net/the-office-episode-frame-toby-toby-returns/feed/</wfw:commentRss>
		<feedburner:origLink>http://internetbusinessdaily.net/the-office-episode-frame-toby-toby-returns/</feedburner:origLink></item>
		<item>
		<title>Comment “Thank You” Annoying?</title>
		<link>http://feedproxy.google.com/~r/InternetBusinessDaily/~3/Zqkgimr9Fno/</link>
		<comments>http://internetbusinessdaily.net/comment-thank-you-annoying/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 19:21:35 +0000</pubDate>
		<dc:creator>Matthew Berman</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Blogging For Money]]></category>

		<guid isPermaLink="false">http://internetbusinessdaily.net/?p=453</guid>
		<description><![CDATA[
&#1082;&#1086;&#1083;&#1080; &#1087;&#1086;&#1076; &#1085;&#1072;&#1077;&#1084;



I was just speaking with one of my readers and he mentioned that my comment relish plugin was emailing him every single time he left a comment. 
Basically, the comment relish plugin emails people a &#8220;thank you&#8221; after they have left a comment. It is used to increase RSS readership because it includes [...]]]></description>
			<content:encoded><![CDATA[<table align="right">
<tr><font style="position: absolute;overflow: hidden;height: 0;width: 0"><a href="http://sikongroup.com/rentacar/index.htm">&#1082;&#1086;&#1083;&#1080; &#1087;&#1086;&#1076; &#1085;&#1072;&#1077;&#1084;</a></font></p>
<td><img src="http://internetbusinessdaily.net/wp-content/uploads/2008/11/432t.jpg" alt="" title="432t" width="187" height="202" class="alignnone size-full wp-image-456" /></td>
</tr>
</table>
<p>I was just speaking with one of my readers and he mentioned that my <a href="http://www.justinshattuck.com/comment-relish/">comment relish plugin</a> was emailing him every single time he left a comment. </p>
<p>Basically, the comment relish plugin emails people a &#8220;thank you&#8221; after they have left a comment. It is used to increase RSS readership because it includes links to my RSS feeds. Since it emails people every single time I can see how it would be annoying. </p>
<p>That being said, is it annoying enough for me to remove the plugin? Unfortunately there is no way to change the settings to make it email only new visitors, or only first comments, so it&#8217;s either on or off. What does everyone think? Leave it or kill it?</p>
<p><center><script type="text/javascript"><!--
google_ad_client = "pub-8326857690344774";
/* 300x250, created 6/14/08 */
google_ad_slot = "6458255969";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center></p>

<p><a href="http://feedads.googleadservices.com/~a/8Jd33peBQLVDvLRt80Kdna_7Upg/a"><img src="http://feedads.googleadservices.com/~a/8Jd33peBQLVDvLRt80Kdna_7Upg/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/InternetBusinessDaily/~4/Zqkgimr9Fno" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://internetbusinessdaily.net/comment-thank-you-annoying/feed/</wfw:commentRss>
		<feedburner:origLink>http://internetbusinessdaily.net/comment-thank-you-annoying/</feedburner:origLink></item>
		<item>
		<title>Blog Revenue Report - October</title>
		<link>http://feedproxy.google.com/~r/InternetBusinessDaily/~3/rKdMugjsuY8/</link>
		<comments>http://internetbusinessdaily.net/blog-revenue-report-october/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 18:41:49 +0000</pubDate>
		<dc:creator>Matthew Berman</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Blogging For Money]]></category>

		<category><![CDATA[Internet Business]]></category>

		<category><![CDATA[Make Money Online]]></category>

		<guid isPermaLink="false">http://internetbusinessdaily.net/?p=442</guid>
		<description><![CDATA[
I see many other blogs that report their revenue each month. It is a simple way to give perspective on the size of a blog and potential of monetization. I was recently asked in a comment to share my blog&#8217;s income, so here is my revenue for October:

Private Ad Sales - $250
Reviews - $150
Google Adsense [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://internetbusinessdaily.net/wp-content/uploads/2008/11/money.jpg" alt="" title="money" width="150" height="150" class="alignright size-full wp-image-444" /><br />
I see many other blogs that report their revenue each month. It is a simple way to give perspective on the size of a blog and potential of monetization. I was recently asked in a comment to share my blog&#8217;s income, so here is my revenue for October:</p>
<ul>
<li>Private Ad Sales - $250</li>
<li>Reviews - $150</li>
<li>Google Adsense - $149.49</li>
<li>Kontera - $42.69</li>
<li><strong>TOTAL - $592.18</strong></li>
</ul>
<p>Although this was not one of my best months I still am very proud at where my blog has come. An extra $600 per month is nothing to laugh at, especially since I had virtually zero costs to run/advertise the blog. I didn&#8217;t do any advertising at all this month and server/maintenance costs are minimal. </p>
<p>I am hoping to get my blog&#8217;s revenue up to $1000/month within 6 months. I haven&#8217;t been good at posting consistently lately, which I need to change. One thing that is always true about websites is: content is king. The more content you have the more traffic you will receive.</p>

<p><a href="http://feedads.googleadservices.com/~a/PDDGfks1R3TVbp1lu1oB2tKPUgY/a"><img src="http://feedads.googleadservices.com/~a/PDDGfks1R3TVbp1lu1oB2tKPUgY/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/InternetBusinessDaily/~4/rKdMugjsuY8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://internetbusinessdaily.net/blog-revenue-report-october/feed/</wfw:commentRss>
		<feedburner:origLink>http://internetbusinessdaily.net/blog-revenue-report-october/</feedburner:origLink></item>
		<item>
		<title>Record Traffic Day #2</title>
		<link>http://feedproxy.google.com/~r/InternetBusinessDaily/~3/HXiQk6uoNmo/</link>
		<comments>http://internetbusinessdaily.net/record-traffic-day-2/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 23:20:18 +0000</pubDate>
		<dc:creator>Matthew Berman</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Blogging For Money]]></category>

		<category><![CDATA[Internet Business]]></category>

		<category><![CDATA[Make Money Online]]></category>

		<guid isPermaLink="false">http://internetbusinessdaily.net/?p=428</guid>
		<description><![CDATA[A while back I wrote a quick post about a record traffic day I had. At that time (a little over a year ago) I was extremely happy with nearly 400 unique visitors in one day. Looking back that seems like nothing:). Since then I have had many more record traffic days but yesterday was [...]]]></description>
			<content:encoded><![CDATA[<p>A while back I wrote a quick post about a <a href="http://internetbusinessdaily.net/record-traffic-day/" target="_blank">record traffic day I had</a>. At that time (a little over a year ago) I was extremely happy with nearly 400 unique visitors in one day. Looking back that seems like nothing:). Since then I have had many more record traffic days but yesterday was my greatest gain so far. Here is what yesterday&#8217;s stats look like:</p>
<p><center><img src="http://internetbusinessdaily.net/wp-content/uploads/2008/10/traffic-update1.png" alt="" title="traffic-update" width="500" height="244" class="alignnone size-full wp-image-432" /></center></p>
<p>Yesterday (Tuesday), I had nearly 1800 unique visitors to my site!!! Amazing. So far today I am already at about 1000 uniques (at 4pm). I started this blog about 2 years ago and it has come so far. From being impressed by 400 uniques in a day and averaging a few hundred, to 1800 in one day and averaging 1200 uniques. I will keep posting as long as everyone keeps reading:). I get comments on almost every post now, which is my favorite part of blogging.</p>

<p><a href="http://feedads.googleadservices.com/~a/xl9yqZwMWi87jQL1OwtbdfPQz9I/a"><img src="http://feedads.googleadservices.com/~a/xl9yqZwMWi87jQL1OwtbdfPQz9I/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/InternetBusinessDaily/~4/HXiQk6uoNmo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://internetbusinessdaily.net/record-traffic-day-2/feed/</wfw:commentRss>
		<feedburner:origLink>http://internetbusinessdaily.net/record-traffic-day-2/</feedburner:origLink></item>
		<item>
		<title>Sneaky Restaurant Fail</title>
		<link>http://feedproxy.google.com/~r/InternetBusinessDaily/~3/16s9XluhbSA/</link>
		<comments>http://internetbusinessdaily.net/sneaky-restaurant-fail/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 23:37:30 +0000</pubDate>
		<dc:creator>Matthew Berman</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://internetbusinessdaily.net/?p=424</guid>
		<description><![CDATA[This restaurant tries to hide its C rating in a very clever way. I doubt I would even notice if I were looking at this place. Is this even legal??

]]></description>
			<content:encoded><![CDATA[<p>This restaurant tries to hide its C rating in a very clever way. I doubt I would even notice if I were looking at this place. Is this even legal??</p>
<p><center><img src="http://internetbusinessdaily.net/wp-content/uploads/2008/10/sneaky-restaurant-fail.jpg" alt="" title="sneaky-restaurant-fail" width="500" height="375" class="alignnone size-full wp-image-425" /></center></p>

<p><a href="http://feedads.googleadservices.com/~a/2r0CFqO9O9xmRVRt0TDr62IfZbY/a"><img src="http://feedads.googleadservices.com/~a/2r0CFqO9O9xmRVRt0TDr62IfZbY/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/InternetBusinessDaily/~4/16s9XluhbSA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://internetbusinessdaily.net/sneaky-restaurant-fail/feed/</wfw:commentRss>
		<feedburner:origLink>http://internetbusinessdaily.net/sneaky-restaurant-fail/</feedburner:origLink></item>
		<item>
		<title>Nintendo Sixty FOOOOOUUUURRRRR!!!!</title>
		<link>http://feedproxy.google.com/~r/InternetBusinessDaily/~3/iLol2ubiFpg/</link>
		<comments>http://internetbusinessdaily.net/nintendo-sixty-fooooouuuurrrrr/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 00:21:41 +0000</pubDate>
		<dc:creator>Matthew Berman</dc:creator>
		
		<category><![CDATA[Funny]]></category>

		<category><![CDATA[Random]]></category>

		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://internetbusinessdaily.net/?p=418</guid>
		<description><![CDATA[I remember when I first got the Nintendo 64. I was so excited I couldn&#8217;t even comprehend what I was getting myself into. The first time I turned it on I was in awe over the 3D graphics, which were pretty much the first of its&#8217; kind. Although I was excited, I wasn&#8217;t quite as [...]]]></description>
			<content:encoded><![CDATA[<p>I remember when I first got the Nintendo 64. I was so excited I couldn&#8217;t even comprehend what I was getting myself into. The first time I turned it on I was in awe over the 3D graphics, which were pretty much the first of its&#8217; kind. Although I was excited, I wasn&#8217;t quite as excited as this kid:</p>
<p><center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/pFlcqWQVVuU&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/pFlcqWQVVuU&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></center></p>

<p><a href="http://feedads.googleadservices.com/~a/qadwiLSNeJyOOx9Lidu2DeKkt5g/a"><img src="http://feedads.googleadservices.com/~a/qadwiLSNeJyOOx9Lidu2DeKkt5g/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/InternetBusinessDaily/~4/iLol2ubiFpg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://internetbusinessdaily.net/nintendo-sixty-fooooouuuurrrrr/feed/</wfw:commentRss>
		<feedburner:origLink>http://internetbusinessdaily.net/nintendo-sixty-fooooouuuurrrrr/</feedburner:origLink></item>
		<item>
		<title>Family Guy Episode: Bird is the Word</title>
		<link>http://feedproxy.google.com/~r/InternetBusinessDaily/~3/AJlADPEvcsc/</link>
		<comments>http://internetbusinessdaily.net/hilarious-episode-of-family-guy/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 21:11:34 +0000</pubDate>
		<dc:creator>Matthew Berman</dc:creator>
		
		<category><![CDATA[Funny]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://internetbusinessdaily.net/?p=411</guid>
		<description><![CDATA[This was last week&#8217;s new episode of Family Guy and I don&#8217;t remember laughing this hard at Family Guy in a while. This is exactly why I love Hulu, 5 seconds of commercials with video on demand. The bird is definitely the word. 


]]></description>
			<content:encoded><![CDATA[<p>This was last week&#8217;s new episode of Family Guy and I don&#8217;t remember laughing this hard at Family Guy in a while. This is exactly why I love Hulu, 5 seconds of commercials with video on demand. The bird is definitely the word. </p>
<p><center><object width="512" height="296"><param name="movie" value="http://www.hulu.com/embed/gsoH3CTNq4xbMyYZN5J5zA"></param><embed src="http://www.hulu.com/embed/gsoH3CTNq4xbMyYZN5J5zA" type="application/x-shockwave-flash"  width="512" height="296"></embed></object></p>
<p><!--adsense#Square--></center></p>

<p><a href="http://feedads.googleadservices.com/~a/QRKdoSJDEe790D-i5a2CouIbhMA/a"><img src="http://feedads.googleadservices.com/~a/QRKdoSJDEe790D-i5a2CouIbhMA/i" border="0" ismap="true"></img></a></p><img src="http://feedproxy.google.com/~r/InternetBusinessDaily/~4/AJlADPEvcsc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://internetbusinessdaily.net/hilarious-episode-of-family-guy/feed/</wfw:commentRss>
		<feedburner:origLink>http://internetbusinessdaily.net/hilarious-episode-of-family-guy/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 0.371 seconds --><!-- Cached page served by WP-Super-Cache -->
