<?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>1WiseOwl Blog</title>
	<atom:link href="http://www.1wiseowl.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.1wiseowl.com/blog</link>
	<description>Trusted ways to help make your first dollar online</description>
	<lastBuildDate>Wed, 20 May 2009 15:52:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Watch for New Beginnings!</title>
		<link>http://www.1wiseowl.com/blog/make-money-online/watch-for-new-beginnings/</link>
		<comments>http://www.1wiseowl.com/blog/make-money-online/watch-for-new-beginnings/#comments</comments>
		<pubDate>Wed, 20 May 2009 15:52:41 +0000</pubDate>
		<dc:creator>Ken Scovill</dc:creator>
				<category><![CDATA[Make Money Online]]></category>

		<guid isPermaLink="false">http://www.1wiseowl.com/blog/?p=11</guid>
		<description><![CDATA[

I have to admit that there are 2 areas of my marketing that I have neglected and am very disappointed in:  adding new value to this blog and taking better care of my newsletter subscribers.  I have also recently moved this blog and its associated stores to a different web host so I apologize that I [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>I have to admit that there are 2 areas of my marketing that I have neglected and am very disappointed in:  adding new value to this blog and taking better care of my newsletter subscribers.  I have also recently moved this blog and its associated stores to a different web host so I apologize that I haven&#8217;t yet got all of my links back up and working.</p>
<p>I will be focusing the next week on bringing everything back up to the quality that matches the rest of my endeavors and, along with it, I plan on narrowing the focus of the information here to affiliate marketing and affiliate networks along with my ongoing website creation information.</p>
<p>So be on the lookout for some important changes and a bit of a new direction with fresh energy and focus!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1wiseowl.com/blog/make-money-online/watch-for-new-beginnings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to code your site to display the current date</title>
		<link>http://www.1wiseowl.com/blog/tips/how-to-code-your-site-to-display-the-current-date/</link>
		<comments>http://www.1wiseowl.com/blog/tips/how-to-code-your-site-to-display-the-current-date/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 15:35:53 +0000</pubDate>
		<dc:creator>Ken Scovill</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.1wiseowl.com/blog/tips/how-to-code-your-site-to-display-the-current-date/</guid>
		<description><![CDATA[

I see this question come up quite a bit in the forums, so I thought I would post the answer here for folks to use.
There are a couple of different ways that you can place an autodate script in your website code, with javascript or php coding.You can use a few lines of JavaScript which [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>I see this question come up quite a bit in the forums, so I thought I would post the answer here for folks to use.</p>
<p><span id="msg" class="spnMessageText"><font size="2">There are a couple of different ways that you can place an autodate script in your website code, with javascript or php coding.</font></span><span id="msg" class="spnMessageText"><font size="2">You can use a few lines of JavaScript which picks up the date information from the visitor&#8217;s computer and displays it on the web page. Here&#8217;s the full javascript version if you want to copy it:</font></span><span id="msg" class="spnMessageText"><font size="2">&lt;script language=&#8221;JavaScript&#8221;&gt;<br />
&lt;!&#8211;<br />
var days=new Array(8);<br />
days[1] = &#8220;Sun&#8221;;<br />
days[2] = &#8220;Mon&#8221;;<br />
days[3] = &#8220;Tue&#8221;;<br />
days[4] = &#8220;Wed&#8221;;<br />
days[5] = &#8220;Thu&#8221;;<br />
days[6] = &#8220;Fri&#8221;;<br />
days[7] = &#8220;Sat&#8221;;<br />
var months=new Array(13);<br />
months[1] = &#8220;Jan&#8221;;<br />
months[2] = &#8220;Feb&#8221;;<br />
months[3] = &#8220;Mar&#8221;;<br />
months[4] = &#8220;Apr&#8221;;<br />
months[5] = &#8220;May&#8221;;<br />
months[6] = &#8220;Jun&#8221;;<br />
months[7] = &#8220;Jul&#8221;;<br />
months[8]= &#8220;Aug&#8221;;<br />
months[9] = &#8220;Sep&#8221;;<br />
months[10] = &#8220;Oct&#8221;;<br />
months[11] = &#8220;Nov&#8221;;<br />
months[12] = &#8220;Dec&#8221;;<br />
var dateObj=new Date()<br />
var wday=days[dateObj.getDay() + 1]<br />
var lmonth=months[dateObj.getMonth() + 1]<br />
var date=dateObj.getDate()<br />
var year=dateObj.getYear()<br />
if (year &gt;= 100 &amp;&amp; year &lt;= 1999)<br />
{year=year + 1900}<br />
else<br />
{year=year}<br />
document.write(wday + &#8220;, &#8221; + date+ &#8221; &#8221; + lmonth + &#8221; &#8221; + year)<br />
// &#8211;&gt;<br />
&lt;/script&gt;</p>
<p>If you want to put in the full word for &#8220;Mon&#8221; or &#8220;Jan&#8221;, you just need to change the wording in the script. Just place this script in where the &#8216;date&#8217; would normally show up.</p>
<p></font></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.1wiseowl.com/blog/tips/how-to-code-your-site-to-display-the-current-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First rant&#8230;</title>
		<link>http://www.1wiseowl.com/blog/make-money-online/first-rant/</link>
		<comments>http://www.1wiseowl.com/blog/make-money-online/first-rant/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 22:48:54 +0000</pubDate>
		<dc:creator>Ken Scovill</dc:creator>
				<category><![CDATA[Make Money Online]]></category>

		<guid isPermaLink="false">http://www.1wiseowl.com/blog/first-rant/</guid>
		<description><![CDATA[

Breathe&#8230;..
Really&#8230; Take a breath from all the big ticket launches that keep pounding your inbox&#8230;For a long time I jumped from the next big thing to the next big thing&#8230; always with poor results for me&#8230; good results for the gurus.
Then one day&#8230; out of necessity I just stopped believing all the hype and focused [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p><font size="2"><span style="font-size: 10pt; font-family: Georgia">Breathe&#8230;..</span></font></p>
<p><font size="2"><span style="font-size: 10pt; font-family: Georgia"></span><span style="font-family: Georgia"></span><span style="font-size: 10pt; font-family: Georgia">Really&#8230; Take a breath from all the big ticket launches that </span><span style="font-family: Georgia"></span><span style="font-size: 10pt; font-family: Georgia">keep pounding your inbox&#8230;</span><span style="font-size: 10pt; font-family: Georgia">For a long time I jumped from the next big thing to the next big </span><span style="font-size: 10pt; font-family: Georgia">thing&#8230; always with poor results for me&#8230; good results for the </span><span style="font-size: 10pt; font-family: Georgia">gurus.</span></font></p>
<p><font size="2"><span style="font-size: 10pt; font-family: Georgia"></span><span style="font-size: 10pt; font-family: Georgia">Then one day&#8230; out of necessity I just stopped believing all </span><span style="font-size: 10pt; font-family: Georgia">the hype and focused on my own success&#8230; and it has paid off </span><span style="font-size: 10pt; font-family: Georgia">ever since.</span></font></p>
<p><font size="2"><span style="font-size: 10pt; font-family: Georgia"></span><span style="font-size: 10pt; font-family: Georgia">I don&#8217;t want to get all mushy on you, but that next $997, $497,</span><span style="font-size: 10pt; font-family: Georgia">$97 isn&#8217;t going to get you any closer to success than any $9.97 </span><span style="font-size: 10pt; font-family: Georgia">product is.</span><span style="font-size: 10pt; font-family: Georgia">So really.. take a breath&#8230; and relax&#8230;</span><span style="font-size: 10pt; font-family: Georgia">&#8230; and realize the only way to make money online is YOUR WAY!  </span><span style="font-size: 10pt; font-family: Georgia">You cannot go from zero to seven figures with the blink of an </span><span style="font-size: 10pt; font-family: Georgia">eye&#8230; or the reading of an ebook&#8230; or by watching/going to a </span><span style="font-size: 10pt; font-family: Georgia">seminar&#8230;</span><span style="font-size: 10pt; font-family: Georgia">Is it just me.. or is there some serious disconnect between </span><span style="font-size: 10pt; font-family: Georgia">marketers selling their wares and the subscribers they so covet </span><span style="font-size: 10pt; font-family: Georgia">on </span><span style="font-size: 10pt; font-family: Georgia">their lists?</span></font></p>
<p><font size="2"><span style="font-size: 10pt; font-family: Georgia"></span><span style="font-size: 10pt; font-family: Georgia">All I&#8217;m saying is that you need to make 3 figures.. or even 2 </span><span style="font-size: 10pt; font-family: Georgia">figures before you make any more&#8230;</span></font></p>
<p><font size="2"><span style="font-size: 10pt; font-family: Georgia"></span><span style="font-size: 10pt; font-family: Georgia">The only ones making the seven figures are the product owner and </span><span style="font-size: 10pt; font-family: Georgia">his &#8220;special&#8221; jv group&#8230; [ie] good old boy network&#8230;</span><span style="font-size: 10pt; font-family: Georgia">where does that leave you&#8230; well that&#8217;s really in your hands&#8230;</span><span style="font-size: 10pt; font-family: Georgia">no one elses&#8230;</span><span style="font-size: 10pt; font-family: Georgia">There is no secret code&#8230; only hard work&#8230; you know like in </span><span style="font-size: 10pt; font-family: Georgia">the REAL world</span><span style="font-size: 10pt; font-family: Georgia">&#8230; </span></font></p>
<p><font size="2"><span style="font-size: 10pt; font-family: Georgia">and on a different topic&#8230; all the month long prelaunches are </span><span style="font-size: 10pt; font-family: Georgia">becoming old and monotonous&#8230;</span></font></p>
<p><font size="2"><span style="font-size: 10pt; font-family: Georgia"></span><span style="font-size: 10pt; font-family: Georgia">Final thought here:</span><span style="font-size: 10pt; font-family: Georgia">You are the author of your circumstance.</span></font></p>
<p><font size="2"><span style="font-size: 10pt; font-family: Georgia"></span><span style="font-size: 10pt; font-family: Georgia">If you have no idea what I was talking about&#8230; Good For You!</span></font></p>
<p><font size="2"><span style="font-size: 10pt; font-family: Georgia">_________________________________________________________</span></font></p>
<p><font size="2">Temporarily copied from David Bullock who I couldn&#8217;t agree with more.</font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.1wiseowl.com/blog/make-money-online/first-rant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome!</title>
		<link>http://www.1wiseowl.com/blog/purpose/welcome/</link>
		<comments>http://www.1wiseowl.com/blog/purpose/welcome/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 01:46:52 +0000</pubDate>
		<dc:creator>Ken Scovill</dc:creator>
				<category><![CDATA[Purpose]]></category>

		<guid isPermaLink="false">http://www.1wiseowl.com/blog/welcome/</guid>
		<description><![CDATA[

Welcome to 1WiseOwl.com.  My name is Ken Scovill and it has always been my dream to work from home and make a decent living solely off of the internet.  After a year of researching and studying numerous info-products on the subject with very little results, I have finally come to the realization that it is time to [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Welcome to 1WiseOwl.com.  My name is Ken Scovill and it has always been my dream to work from home and make a decent living solely off of the internet.  After a year of researching and studying numerous info-products on the subject with very little results, I have finally come to the realization that it is time to take ACTION and put what I have learned to use.  With that in mind, it is my goal to make this blog a valuable resource for visitors on various ways to turn this &#8216;information overload&#8217; into your very first $$ online.  Stay tuned for more</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1wiseowl.com/blog/purpose/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
