<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.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:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>How To Make Money Blogging by Creating Free Content for the World with Blogs</title>
	
	<link>http://zedomax.biz/blog</link>
	<description>Insider Guerilla Internet Marketing</description>
	<lastBuildDate>Thu, 04 Mar 2010 22:13:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/zedomaxbizblog" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="zedomaxbizblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">zedomaxbizblog</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Wordpress Hack – How to Insert Ads in the Middle of Your Content!</title>
		<link>http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/</link>
		<comments>http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 22:03:43 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Advertisements]]></category>
		<category><![CDATA[Blog DIY]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[insert ads]]></category>
		<category><![CDATA[middle of content]]></category>
		<category><![CDATA[wordpress-hack]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1113</guid>
		<description><![CDATA[The other day I showed you my latest Adsense heat map that I have been working on for 3+ years.  Mind you, that&#8217;s the only way I can give back to the community of bloggers.  It&#8217;s not going to help me in the least bit because I will have more competition but I [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I showed you my latest <a href="http://zedomax.biz/blog/make-money-online/adsense-cpc-optimized-placement-heat-map/" >Adsense heat map</a> that I have been working on for 3+ years.  Mind you, that&#8217;s the only way I can give back to the community of bloggers.  It&#8217;s not going to help me in the least bit because I will have more competition but I feel that it&#8217;s important to give back.  <a href="http://zedomax.biz/blog/great-entrepreneurs/do-you-believe-in-karma-you-should/" >Karma I call it.</a></p>
<p>Anyways, here&#8217;s how to insert ads after 1-3 sentences after your content. (Or you can change the $tcount>=1 values to something like $tcount>=3 if you want to show ads after more sentences.)</p>
<p>You can even show additional ads at the bottom of your content if your blog post is a long blog post versus short.  </p>
<p>Here&#8217;s the code that will let you insert ads at different places in your content.</p>
<p>You need to replace <strong><?php the_content(); ?></strong> in your <strong>single.php</strong> file (usually) with the following code:</p>
<p><a href="http://zedomax.biz/code/middle.txt" target="_blank" >See here for the code</a></p>
<p>The above code will print your first Adsense block after the first <strong>HTML tag p</strong>, which is usually a paragraph block or 1-3 sentences.  </p>
<p>There&#8217;s also an option to print a second Adsense block after 4 <strong>p</strong>s for longer blog posts.  This ad block won&#8217;t show unless your blog post is super long.  I don&#8217;t really use the second Adsense block much.  You can also change the $tcount>=4 to something like $count>=2 if you want your second Adsense block to show after the 2nd
<p> block.</p>
<p>There&#8217;s also many ways to customize this code such as detecting images.  For example, I used additional code to detect whether there&#8217;s an image in the very beginning of the post.  If that&#8217;s the case, I will want to show the ads under the image because I think it looks better as far as web design/usability goes.  I can have that code up too if more of you guys want it.</p>
<p>Here&#8217;s some additional <strong>div</strong> tips for styling your Adsense ads.</p>
<p>If you want to wrap to the right for 336&#215;280 ads:</p>
<pre name="code" class="php">
<div style="width:336px;height:280px;float:right;padding: 9px 0 9px 9px;">
Replace this line with Adsense code here
</div>
</pre>
<p>If you want to wrap to the left for 336&#215;280 ads:</p>
<pre name="code" class="php">
<div style="width:336px;height:280px;float:left; 9px 9px 9px 0;">
Replace this line with Adsense code here
</div>
</pre>
<p>If you want to just display ads without wrap, with Adsense left aligned:</p>
<pre name="code" class="php">
<div style="clear:both;"></div>

Replace this line with Adsense code here
<div style="clear:both;"></div>
</pre>
<p>If you want to just display ads without wrap, with Adsense center aligned:</p>
<pre name="code" class="php">
<div style="clear:both;"></div>

<center>
Replace this line with Adsense code here
</center>
<div style="clear:both;"></div>
</pre>
<p>In general, I find that wrapping your Adsense around text can be good for CTR plus look great with your overall site design.</p>
<p>At other times, I find that Adsense aligned-left with no text wrapping (with white space on the right) gets a lot better CTR.</p>
<p>Just test the different locations to see what works best for your niche.</p>
<p>Instead of putting the ad after the content, it&#8217;s simply common sense they will perform better if you put it within the context of your content and higher up on your blog post.</p>
<p>The amount of CTR increase skyrockets plus why not?</p>
<p>Of course, just make sure the overall site design and user experience are still maintained, no one wants to read ad-plastered blogs, even though I am on the very edge.  </p>
<p>Enjoy and don&#8217;t forget to share the code with other Wordpress bloggers out there!</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" >Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/adsense/" title="AdSense" rel="tag">AdSense</a>, <a href="http://zedomax.biz/blog/category/advertisements/" title="Advertisements" rel="tag">Advertisements</a>, <a href="http://zedomax.biz/blog/category/blog-diy/" title="Blog DIY" rel="tag">Blog DIY</a>, <a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/tag/insert-ads/" title="insert ads" rel="tag">insert ads</a>, <a href="http://zedomax.biz/blog/category/make-money-online/" title="Make Money Online" rel="tag">Make Money Online</a>, <a href="http://zedomax.biz/blog/tag/middle-of-content/" title="middle of content" rel="tag">middle of content</a>, <a href="http://zedomax.biz/blog/tag/wordpress-hack/" title="wordpress-hack" rel="tag">wordpress-hack</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" title="Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner! (March 1, 2010)">Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a> </li>
	<li><a href="http://zedomax.biz/blog/twitter/twitter-diy-how-to-use-twitter-more-effectively/" title="Twitter DIY &#8211; How to Use Twitter More Effectively! (September 28, 2009)">Twitter DIY &#8211; How to Use Twitter More Effectively!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/step-by-step-money-making-guide-part-5-auctionads/" title="Step-by-Step Money Making Guide &#8211; Part 5 &#8211; AuctionAds (September 25, 2007)">Step-by-Step Money Making Guide &#8211; Part 5 &#8211; AuctionAds</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" title="Radical Business &#8211; How to Burn Bridges in Business! (October 19, 2009)">Radical Business &#8211; How to Burn Bridges in Business!</a> </li>
	<li><a href="http://zedomax.biz/blog/adwords/how-to-write-better-adwords-ads/" title="How to Write Better Adwords Ads! (November 4, 2009)">How to Write Better Adwords Ads!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=6mtjIc5QTA4:M34Ybubn_90:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=6mtjIc5QTA4:M34Ybubn_90:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=6mtjIc5QTA4:M34Ybubn_90:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=6mtjIc5QTA4:M34Ybubn_90:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=6mtjIc5QTA4:M34Ybubn_90:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=6mtjIc5QTA4:M34Ybubn_90:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Greed Will Kill You!</title>
		<link>http://zedomax.biz/blog/inspirational/greed-will-kill-you/</link>
		<comments>http://zedomax.biz/blog/inspirational/greed-will-kill-you/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 08:07:56 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[greed will kill you]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1109</guid>
		<description><![CDATA[There&#8217;s a saying in Korean that a fish cannot eat more than he can digest.
This is true of humans too.   If you force yourself to eat more than you can digest, you can simply die.
In life and business, this is also true.  Greed is one of human&#8217;s worst traits and flaws.  But you can beat [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a saying in Korean that a fish cannot eat more than he can digest.</p>
<p>This is true of humans too.   If you force yourself to eat more than you can digest, you can simply <em>die</em>.</p>
<p>In life and business, this is also true.  Greed is one of human&#8217;s worst traits and flaws.  But you can beat greed with <a href="http://zedomax.biz/blog/inspirational/the-power-of-will/" >your will power.</a></p>
<p>Here&#8217;s some thoughts on <strong><em>how to not be greedy</em></strong>:</p>
<ul>
<li>Learn to &#8220;catch&#8221; yourself when you know something is too good to be true.</li>
<li>Don&#8217;t be shady.  I know, as simple as it sounds, <em>don&#8217;t be shady.</em> No one likes shady people.</li>
<li><strong>Money isn&#8217;t everything.</strong> Money is only result of your passions.  Of course, money can come from greed too but it won&#8217;t last as long as money coming from your passions.</li>
<li><strong>Be true and honest to yourself and resist temptations.</strong> I am not a philosopher nor am I religious but I have learned my ways to be true and honest to myself.   When you can truly be honest to yourself, you will feel at total peace.</li>
<li>Be real, don&#8217;t be fake.  <strong>Don&#8217;t pretend you are someone else and just be yourself.</strong></li>
</ul>
<h2>Greed can come in many forms throughout one&#8217;s life such as school grades, winning at sports, girls, money, and more.  Just remember that when you get too greedy and cheat or lie, you are really only cheating or lying to thyself.</h2>
<p><strong>Remember, happiness doesn&#8217;t come from money, it lives inside you. </strong> You can be happy anytime you want to be.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/inspirational/greed-will-kill-you/" >Greed Will Kill You!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/greed-will-kill-you/" title="greed will kill you" rel="tag">greed will kill you</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=zdUWmqWX-fo:VxYokILjTg8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=zdUWmqWX-fo:VxYokILjTg8:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=zdUWmqWX-fo:VxYokILjTg8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=zdUWmqWX-fo:VxYokILjTg8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=zdUWmqWX-fo:VxYokILjTg8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=zdUWmqWX-fo:VxYokILjTg8:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/inspirational/greed-will-kill-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do you Believe in Karma?  You Should!</title>
		<link>http://zedomax.biz/blog/great-entrepreneurs/do-you-believe-in-karma-you-should/</link>
		<comments>http://zedomax.biz/blog/great-entrepreneurs/do-you-believe-in-karma-you-should/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 07:03:48 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Great Entrepreneurs]]></category>
		<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[believe in karma]]></category>
		<category><![CDATA[karma]]></category>
		<category><![CDATA[newton's law]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1102</guid>
		<description><![CDATA[One of the things I have learned in my lifetime is karma.
What exactly is karma?
Karma is very similar to science, like Newton&#8217;s law of motion.
Newton&#8217;s law says that for every action, there&#8217;s an equal and opposite reaction.
Same is true for karma, anything you do in your lifetime, I believe will have an equal and opposite [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things I have learned in my lifetime is <em>karma</em>.</p>
<h2>What exactly is karma?</h2>
<p>Karma is very similar to science, like <a target="_blank" href="http://en.wikipedia.org/wiki/Newton%27s_laws_of_motion" >Newton&#8217;s law of motion</a>.</p>
<p>Newton&#8217;s law says that <strong>for every action, there&#8217;s an equal and opposite reaction.</strong></p>
<p>Same is true for karma, anything you do in your lifetime, I believe will have an equal and opposite reaction.</p>
<p>Now, this can be negative or positive.  But whatever you do, it will come back to make you happy or haunt you.</p>
<p>I won&#8217;t mention what has happened to me recently other than one of the companies I have worked with for the past couple years have <em>screwed me</em>.  Now, there&#8217;s no reason for me to sue these guys because <em>I believe in karma</em>.  For whatever they screwed me on, they are gonna get screwed as much.  I don&#8217;t know how that would happen but I have seen karma throughout all my life.</p>
<p>I will give you a real life example of karma.  Back in college, one of my friends used to love to steal stuff.  He would practically steal anything, from people&#8217;s cars, from 7/11, and etc&#8230;etc&#8230;</p>
<p>But the funniest thing was, <em>he would have the worst luck of anyone I have ever seen.</em> Either one day his car gets randomly broken into or he &#8220;loses&#8221; his wallet.   I was there to witness what was happening and I can tell you, it wasn&#8217;t god, it was simply <em>karma</em>.</p>
<p>Karma is probably one of the strongest forces in the universe.  I don&#8217;t know how it works but it works.</p>
<p>So, next time you try to steal someone&#8217;s stuff, whatever it is, don&#8217;t, as it will come back to haunt you.</p>
<p><em><strong>There are many times in life when you are given a chance to succeed at the sacrifice of others.</strong></em> These are moments when you need to make an honest decision.  If you don&#8217;t, it could potentially ruin you life later.</p>
<p>For example, you&#8217;ve heard of the story where people found millions of dollars that fell out of a money truck but returned it rightfully to the bank.  Those our my heroes, people who make a difference in our society.</p>
<p>Think of all the people who won lottery, most of them end up bankrupt with a life worse than before!</p>
<p>Instead, just be an honest person.  Being an honest person means that you are honest to yourself, you don&#8217;t have to prove anything to anyone else.</p>
<p>If you can learn what karma is, you will forever be granted by its rewards while those who don&#8217;t, will ultimately thrown to the bottom of society for wrongdoings.</p>
<p>Karma doesn&#8217;t care about your secrets, <em>it knows your secrets</em>.</p>
<p>For example, let&#8217;s say there&#8217;s a criminal who got away with 10 million dollars from various different bank accounts.  No one could catch him.   But you know who is going to catch up with him?  That&#8217;s right, <em>karma</em>.</p>
<p>Let me tell you another story why I haven&#8217;t stole anything in my life since I was 7.</p>
<p>When I was 7 years old growing up in the city streets of South Korea, I used to steal toys from my local toy store and run home with my &#8220;buddies&#8221;.   Well, I didn&#8217;t think twice about stealing because all my friends were doing it.</p>
<p>Something happened though after that.  I started stealing some chump change from my dad&#8217;s work dress clothes when he was at work.  One day, I tried to steal some money again from my dad but my dad caught me.  He knew I had been doing it for weeks.  And although it was like maybe just a couple dollars I stole, it was a lot of money for a 7 year old.   My dad beat me really hard with some rather large wooden baseball bats, it hurt really bad.  In Korea 20+ years back, there&#8217;s no laws on adults beating on their children, it was quite the norm.</p>
<p>But I look back now and I am really thankful to my dad for beating me up.  Really, if he hadn&#8217;t done that, I would probably still be stealing.   Of course, I don&#8217;t think hitting children is a right thing to do but I don&#8217;t blame my dad for that, I thank him.</p>
<p>My dad is one of the honest people I know and he has been a business leader for thousands of people over in Asia.  Let&#8217;s just say he&#8217;s like leader of a Mafia and many people in Asia respect him for what he does, he has even been featured on Forbes and New York Times before.</p>
<p>I am not boasting my dad is this and that, I am just saying he is the most honest person I have ever met in my life and because of that, he&#8217;s always been someone I look up to and he has had a lot of luck and success due to his honest character.  <strong>I find that the most honest people are the most successful people in business.</strong></p>
<p>Of course, you need to be smart too, just being honest won&#8217;t you get anywhere.</p>
<h2>Karma, learn it, use it, and always, <em>stand up for your rights</em>, let your voice be heard,</h2>
<h2>this is why I blog.</h2>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/great-entrepreneurs/do-you-believe-in-karma-you-should/" >Do you Believe in Karma?  You Should!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/believe-in-karma/" title="believe in karma" rel="tag">believe in karma</a>, <a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/category/great-entrepreneurs/" title="Great Entrepreneurs" rel="tag">Great Entrepreneurs</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/tag/karma/" title="karma" rel="tag">karma</a>, <a href="http://zedomax.biz/blog/tag/newtons-law/" title="newton&#039;s law" rel="tag">newton&#039;s law</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=t2S6-xx_b8k:XFw7JTGK10k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=t2S6-xx_b8k:XFw7JTGK10k:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=t2S6-xx_b8k:XFw7JTGK10k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=t2S6-xx_b8k:XFw7JTGK10k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=t2S6-xx_b8k:XFw7JTGK10k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=t2S6-xx_b8k:XFw7JTGK10k:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/great-entrepreneurs/do-you-believe-in-karma-you-should/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Android and iPhone Apps for Hootsuite Available Now!</title>
		<link>http://zedomax.biz/blog/twitter/android-and-iphone-apps-for-hootsuite-available-now/</link>
		<comments>http://zedomax.biz/blog/twitter/android-and-iphone-apps-for-hootsuite-available-now/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 21:44:26 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[android app]]></category>
		<category><![CDATA[available]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[hootsuite]]></category>
		<category><![CDATA[iphone app]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1098</guid>
		<description><![CDATA[

Finally, HootSuite, one of my favorite Twitter apps that I use mainly for scheduling some of my tweets, has their iPhone AND Android app available for free suddenly.  I haven&#8217;t used it but it&#8217;s going to be exciting as my Seesmic on Nexus One currently doesn&#8217;t have all the cool features of HootSuite, which integrates [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/img/aHR0cDovL2hvb3RzdWl0ZS5zMy5hbWF6b25hd3MuY29tLzctMTIvaW1hZ2VzL3N0YXRpYy9hbmRyb2lkL2FuZHJvaWRfYXJyYXkuanBn" alt="https://hootsuite.s3.amazonaws.com/7-12/images/static/android/android_array.jpg" width="420" height="216" /></p>
<p><img src="/img/aHR0cDovL2hvb3RzdWl0ZS5zMy5hbWF6b25hd3MuY29tLzctMTIvaW1hZ2VzL3N0YXRpYy9pcGhvbmUvaXBob25lX2FycmF5LmpwZw==" alt="https://hootsuite.s3.amazonaws.com/7-12/images/static/iphone/iphone_array.jpg" width="399" height="206" /></p>
<p>Finally, HootSuite, one of my favorite Twitter apps that I use mainly for scheduling some of my tweets, has their iPhone AND Android app available for free suddenly.  I haven&#8217;t used it but it&#8217;s going to be exciting as my Seesmic on Nexus One currently doesn&#8217;t have all the cool features of HootSuite, which integrates click stats for shortened URLs plus much more.</p>
<blockquote><p>
Simple, elegant and powerful, HootSuite for Android and iPhone are available in full featured versions (allowing unlimted accounts and statistics tracking) and Lite versions at no cost &#8211; yes, gratis, put your checkbook away &#8211; free. We knew you&#8217;d like that. Visit the Android Market and Apple App Store to click your choice.</p></blockquote>
<p>You can get the HootSuite for Android probably by searching in the Android market and similar for iPhones.</p>
<p><a target="_blank" href="http://hootsuite.com/android" >Read more about HootSuite Android app here</a></p>
<p><a target="_blank" href="http://hootsuite.com/iphone" >Read more about HootSuite iPhone app here</a></p>
<p>P.S.  This is a <em>really</em> good news for me as I have been wondering why I couldn&#8217;t use Hootsuite on my smartphone, I am so glad they decided to launch both of them today!</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/twitter/android-and-iphone-apps-for-hootsuite-available-now/" >Android and iPhone Apps for Hootsuite Available Now!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/android-app/" title="android app" rel="tag">android app</a>, <a href="http://zedomax.biz/blog/tag/available/" title="available" rel="tag">available</a>, <a href="http://zedomax.biz/blog/tag/download/" title="download" rel="tag">download</a>, <a href="http://zedomax.biz/blog/tag/hootsuite/" title="hootsuite" rel="tag">hootsuite</a>, <a href="http://zedomax.biz/blog/tag/iphone-app/" title="iphone app" rel="tag">iphone app</a>, <a href="http://zedomax.biz/blog/category/twitter/" title="Twitter" rel="tag">Twitter</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=E3qY97nhl50:YB5KNUAMOeQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=E3qY97nhl50:YB5KNUAMOeQ:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=E3qY97nhl50:YB5KNUAMOeQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=E3qY97nhl50:YB5KNUAMOeQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=E3qY97nhl50:YB5KNUAMOeQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=E3qY97nhl50:YB5KNUAMOeQ:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/twitter/android-and-iphone-apps-for-hootsuite-available-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Show Adsense Ads Only to Search Traffic! (and less annoying to your regular readers)</title>
		<link>http://zedomax.biz/blog/make-money-online/how-to-show-adsense-ads-only-to-search-traffic-and-less-annoying-to-your-regular-readers/</link>
		<comments>http://zedomax.biz/blog/make-money-online/how-to-show-adsense-ads-only-to-search-traffic-and-less-annoying-to-your-regular-readers/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 10:31:10 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Advertisements]]></category>
		<category><![CDATA[Blog DIY]]></category>
		<category><![CDATA[Blog Training]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[PPC]]></category>
		<category><![CDATA[Webmaster Hack]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[only to search traffic]]></category>
		<category><![CDATA[show adsense]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1087</guid>
		<description><![CDATA[Over the years, I&#8217;ve realized showing ads to only search traffic is a pretty good idea, especially if you don&#8217;t want to bombard your regular readers with a whole bunch of ads.
You can also not show ads to image traffic as they don&#8217;t convert well most of the time.
But let me give you a simple [...]]]></description>
			<content:encoded><![CDATA[<p>Over the years, I&#8217;ve realized showing ads to only search traffic is a pretty good idea, especially if you don&#8217;t want to bombard your regular readers with a whole bunch of ads.</p>
<p>You can also not show ads to image traffic as they don&#8217;t convert well most of the time.</p>
<p>But let me give you a simple javascript example that uses cookies to only show Adsense ads to your search engine visitors coming from either Google, Yahoo, Bing, Ask, or MSN.  You can easily add more search engines if you want to by modifying the code.</p>
<p>Another thing I am doing is to show ads for about 60 seconds using cookies until they expire. (after visitors enter the site from a search engine)  I think that is a good feature to implement.  You don&#8217;t want to show ads just to the landing page to your search engine traffic, you want to keep showing it while they browse other parts of your site because search engine visitors are most likely to be interested/click on ads.  </p>
<p>Now that we got the theory/concept out of the way, let me show you how to make your Adsense ads behave so they don&#8217;t annoy the hell out of their readers.</p>
<p>This can be great for either sites that are performing poorly (low CTRs, mostly image traffic) or quality sites you don&#8217;t want to bombard with ads.  I don&#8217;t use this for my main site Zedomax.com but I use it for my other sites where my web traffic is high but my CTR is low.  <strong>Using this code, I was able to bring the CTR up on those high-trafficked sites while improving regular user experience by showing ads only to search traffic visitors.</strong></p>
<h2>First Code</h2>
<p>Put this code somewhere in your header file.</p>
<pre name="code" class="js">
<script type='text/javascript'>
var ref = document.referrer;
//you can add more URLs to not show ads, for example you want to block Google and Yahoo images traffic but show to any other Google and Yahoo traffic in 
var se = new Array('images.google.','images.yahoo.');
//you can add more search engines below, just follow the same format!
var se2 = new Array('.google.','.yahoo.','.bing.','.ask.','.msn.');
for (var i = 0; i <= se.length-1; i++) {
        if (ref.indexOf(se[i])!== -1) {
                var expiry = new Date ();
                expiry.setTime(expiry.getTime() + 60000);
                document.cookie = "sevisitor=1; expires=" + expiry.toGMTString() + "; path=/; ";
        }
}
</script>
</pre>
<h2>Second Code</h2>
<p>Put this code where you are going to show the ad:</p>
<pre name="code" class="js">
<script type='text/javascript'>
var results = document.cookie.match ( '(^|;) ?sevisitor=([^;]*)(;|$)' );

if(results) {
 if (results[2] == 1) {
//if traffic from images.google.com or images.yahoo.com do nothing
//or you can show CPM ads or whatever you want to do.
 }
}else {

   var results2 = document.cookie.match ( '(^|;) ?sevisitor2=([^;]*)(;|$)' );
    if(results2) {
    if (results2[2] == 1) {
  //if traffic coming from google.com ,yahoo.com ,msn.com, bing.com, or ask.com
  //IMPORTANT: replace pub-xxxxxxxxxxxxx with your publisher id!
 //   Also replace yyyyyyyy with your google_ad_slot

var gstring="<script type=\"text/javascript\"><!--\n";
gstring+="google_ad_client = \"pub-xxxxxxxxxxxxxxxx\"\n";
gstring+="google_ad_slot = \"yyyyyyyyyyy\";\n";
gstring+="google_ad_width = 336;\n";
gstring+="google_ad_height = 280;\n";
gstring+="//-->\n";
gstring+="<\/script>\n";
gstring+="<script type=\"text/javascript\"\n";
gstring+="src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">\n";
gstring+="<\/script>\n";
document.write(gstring);
     }
     }
}
</script>
</pre>
<h2>First Code Explained</h2>
<p>Let me explain the code a bit.  Basically the first part of the code will save a cookie to the user's computer if they come from image search or regular search.   The cookie is set to expire in 60 seconds so that there's enough time for your Adsense ad exposure while search engine visitors are visiting your site and ads don't show after those 60 seconds to not annoy your new visitors so much.  But you can change the value to shorter/longer if you want to.</p>
<p>This first code should be in your header file such as header.php so you can detect where your visitors are coming from, no matter which page they enter from.</p>
<h2>Second Code Explained</h2>
<p>The second code is the actual adsense code written in javascript, you will have to replace the <strong>google_ad_client</strong> and <strong>google_ad_slot</strong> value with yours.  Change the <strong>pub-xxxxxxxxxx</strong> and <strong>yyyyyyyyy</strong> to the one you see when you generate your Adsense code.  Don't touch the quote characters as that will mess it up, copy exactly and only change the variables I told you to change!</p>
<h2>Does my code change the Adsense code and violate ToS?</h2>
<p>No, my code doesn't change the Adsense code at all, it just translates it into javascript.  The actual output code is exactly the same as code provided from Google.  You can actually use PHP to do the same but the reason I use javascript is because my blogs use Wordpress Super Cache, which caches the PHP code.  When PHP code is cached, it will cache the detection function also.  In essence, PHP code used with Super Cache won't work because it will stay on the last PHP if statement.</p>
<p>In short, javascript works well along most platforms because it's processed in real-time by the browser.  So that is why I used javascript here.</p>
<h2>What you can get from this?</h2>
<p>If you are reluctant to put more ads on your website, you can use this code to only show ads to search engine traffic.  That way, you don't drive away your loyal readers.  </p>
<p>For sites with low Adsense CTRs, it might be a good idea to show ads to only search traffic as your CTR will skyrocket if you do.  Poor CTRs can be mostly from lack of content or image search traffic, both which don't convert well into overall revenue.  <strong>Especially for those of you who get a lot of traffic, having low CTR can be bad, as it can lower your overall Adsense earnings due saturating overall CTRs.</strong></p>
<h2>Credits</h2>
<p>I didn't create this code all myself, I built on top of the <a target="_blank" href="http://www.scratch99.com/2008/09/avoid-smart-pricing-show-adsense-only-to-search-engine-visitors/" >code created by Stephen Cronin over at Scratch99.com.</a>  Thanks for the code Stephen.  </p>
<p>What I added is the additional cookie code plus expiration so your ads stay around for a minute before disappearing.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/make-money-online/how-to-show-adsense-ads-only-to-search-traffic-and-less-annoying-to-your-regular-readers/" >How to Show Adsense Ads Only to Search Traffic! (and less annoying to your regular readers)</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/adsense/" title="AdSense" rel="tag">AdSense</a>, <a href="http://zedomax.biz/blog/category/advertisements/" title="Advertisements" rel="tag">Advertisements</a>, <a href="http://zedomax.biz/blog/category/blog-diy/" title="Blog DIY" rel="tag">Blog DIY</a>, <a href="http://zedomax.biz/blog/category/blog-training/" title="Blog Training" rel="tag">Blog Training</a>, <a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/category/make-money-online/" title="Make Money Online" rel="tag">Make Money Online</a>, <a href="http://zedomax.biz/blog/category/marketing/" title="marketing" rel="tag">marketing</a>, <a href="http://zedomax.biz/blog/tag/only-to-search-traffic/" title="only to search traffic" rel="tag">only to search traffic</a>, <a href="http://zedomax.biz/blog/category/marketing/ppc-marketing/" title="PPC" rel="tag">PPC</a>, <a href="http://zedomax.biz/blog/tag/show-adsense/" title="show adsense" rel="tag">show adsense</a>, <a href="http://zedomax.biz/blog/category/webmaster-hack/" title="Webmaster Hack" rel="tag">Webmaster Hack</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" title="Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner! (March 1, 2010)">Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a> </li>
	<li><a href="http://zedomax.biz/blog/twitter/twitter-diy-how-to-use-twitter-more-effectively/" title="Twitter DIY &#8211; How to Use Twitter More Effectively! (September 28, 2009)">Twitter DIY &#8211; How to Use Twitter More Effectively!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" title="Radical Business &#8211; How to Burn Bridges in Business! (October 19, 2009)">Radical Business &#8211; How to Burn Bridges in Business!</a> </li>
	<li><a href="http://zedomax.biz/blog/adwords/how-to-write-better-adwords-ads/" title="How to Write Better Adwords Ads! (November 4, 2009)">How to Write Better Adwords Ads!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=rWbq4F_mgbg:d-EC6ce-mO4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=rWbq4F_mgbg:d-EC6ce-mO4:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=rWbq4F_mgbg:d-EC6ce-mO4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=rWbq4F_mgbg:d-EC6ce-mO4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=rWbq4F_mgbg:d-EC6ce-mO4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=rWbq4F_mgbg:d-EC6ce-mO4:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/make-money-online/how-to-show-adsense-ads-only-to-search-traffic-and-less-annoying-to-your-regular-readers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Hack – How to Invite All Your Friends to your Fan Page in One Click!</title>
		<link>http://zedomax.biz/blog/generating-buzz/facebook-hack-how-to-invite-all-your-friends-to-your-fan-page-in-one-click/</link>
		<comments>http://zedomax.biz/blog/generating-buzz/facebook-hack-how-to-invite-all-your-friends-to-your-fan-page-in-one-click/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 01:39:08 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blog DIY]]></category>
		<category><![CDATA[Generating BUZZ]]></category>
		<category><![CDATA[Viral Marketing]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[facebook fan page]]></category>
		<category><![CDATA[facebook hack]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[invite all your friends]]></category>
		<category><![CDATA[javascript hack]]></category>
		<category><![CDATA[one click]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1085</guid>
		<description><![CDATA[I just noticed John Chow has posted a great Facebook hack that can let you invite all your friends to your new fan page in just one single click using some javascript code.
Go to your page and click the “Suggest to friends” link.
You will get a popup box with a list of your friends that [...]]]></description>
			<content:encoded><![CDATA[<p>I just noticed John Chow has posted a great Facebook hack that can let you invite all your friends to your new fan page in just one single click using some javascript code.</p>
<p>Go to your page and click the “Suggest to friends” link.</p>
<p>You will get a popup box with a list of your friends that you need to select manually.  Simply copy and paste the following javascript code onto your URL box and it will select all your friends.</p>
<p><code><br />
javascript:elms=document.getElementById(‘friends’).getElementsByTagName(‘li’);for(var fid in elms){if(typeof elms[fid] === ‘object’){fs.click(elms[fid]);}}<br />
</code><br />
Cool hack!</p>
<p><a target="_blank" href="http://www.johnchow.com/how-to-make-your-facebook-fan-page-go-viral-invite-all-friends/" >via johnchow</a></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/generating-buzz/facebook-hack-how-to-invite-all-your-friends-to-your-fan-page-in-one-click/" >Facebook Hack &#8211; How to Invite All Your Friends to your Fan Page in One Click!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/blog-diy/" title="Blog DIY" rel="tag">Blog DIY</a>, <a href="http://zedomax.biz/blog/tag/facebook-fan-page/" title="facebook fan page" rel="tag">facebook fan page</a>, <a href="http://zedomax.biz/blog/tag/facebook-hack/" title="facebook hack" rel="tag">facebook hack</a>, <a href="http://zedomax.biz/blog/category/generating-buzz/" title="Generating BUZZ" rel="tag">Generating BUZZ</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/tag/invite-all-your-friends/" title="invite all your friends" rel="tag">invite all your friends</a>, <a href="http://zedomax.biz/blog/tag/javascript-hack/" title="javascript hack" rel="tag">javascript hack</a>, <a href="http://zedomax.biz/blog/category/marketing/" title="marketing" rel="tag">marketing</a>, <a href="http://zedomax.biz/blog/tag/one-click/" title="one click" rel="tag">one click</a>, <a href="http://zedomax.biz/blog/category/marketing/viral-marketing-marketing/" title="Viral Marketing" rel="tag">Viral Marketing</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" title="Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner! (March 1, 2010)">Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a> </li>
	<li><a href="http://zedomax.biz/blog/twitter/twitter-diy-how-to-use-twitter-more-effectively/" title="Twitter DIY &#8211; How to Use Twitter More Effectively! (September 28, 2009)">Twitter DIY &#8211; How to Use Twitter More Effectively!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" title="Radical Business &#8211; How to Burn Bridges in Business! (October 19, 2009)">Radical Business &#8211; How to Burn Bridges in Business!</a> </li>
	<li><a href="http://zedomax.biz/blog/adwords/how-to-write-better-adwords-ads/" title="How to Write Better Adwords Ads! (November 4, 2009)">How to Write Better Adwords Ads!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=cNHYu7kpntI:XFx2HpP8Nus:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=cNHYu7kpntI:XFx2HpP8Nus:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=cNHYu7kpntI:XFx2HpP8Nus:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=cNHYu7kpntI:XFx2HpP8Nus:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=cNHYu7kpntI:XFx2HpP8Nus:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=cNHYu7kpntI:XFx2HpP8Nus:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/generating-buzz/facebook-hack-how-to-invite-all-your-friends-to-your-fan-page-in-one-click/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adsense CPC Optimized Placement Heat Map!</title>
		<link>http://zedomax.biz/blog/make-money-online/adsense-cpc-optimized-placement-heat-map/</link>
		<comments>http://zedomax.biz/blog/make-money-online/adsense-cpc-optimized-placement-heat-map/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 00:59:15 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Advertisements]]></category>
		<category><![CDATA[Blog DIY]]></category>
		<category><![CDATA[Blog Training]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[PPC]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[adsense heat map]]></category>
		<category><![CDATA[adsense placement map]]></category>
		<category><![CDATA[cpc optimized]]></category>
		<category><![CDATA[placement map]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1079</guid>
		<description><![CDATA[
For those of you who have trouble making any money with your Adsense revenues, you might want to try the above heat map.  And to those who have been following my older Adsense heat maps from last year, you might want to update it with the one I am showing you here because through the [...]]]></description>
			<content:encoded><![CDATA[<p><img title="ADSENSE" src="/img/aHR0cDovL3plZG9tYXguY29tL2Jsb2cvd3AtY29udGVudC91cGxvYWRzLzIwMTAvMDMvQURTRU5TRS00MTJ4NjkwLmpwZw==" alt="" width="412" height="690" /></p>
<p>For those of you who have trouble making any money with your Adsense revenues, you might want to try the above heat map.  And to those who have been following <a href="http://zedomax.biz/blog/make-money-online/new-adsense-and-chitika-optimization-heat-map-version-2/" >my older Adsense heat maps from last year</a>, you might want to update it with the one I am showing you here because through the years, I have gotten better at improving my Adsense revenues through better placements.</p>
<p>Now, this map can be seen on the single articles pages of my main blog Zedomax.com (<a target="_blank" href="http://zedomax.com/blog/2010/03/01/dns-hack-how-to-check-your-website-on-the-new-server-during-dns-delegation/" >such as this one</a>).</p>
<p>Let me explain why I made this Adsense optimization heat map.  It looks so simple yet there&#8217;s a lot of research and time I have put into this so please bear with me.</p>
<p><strong>The best performing ads are (based on my 3+ years with Adsense and driving 30M pageviews) is the top left corner right after your blog post headline.</strong></p>
<p>Why?</p>
<p>Because that&#8217;s where people&#8217;s eyes go first.   Also, if you have a sidebar on the left side or you have sidebars on both sides of your website, that&#8217;s fine too.  I have other blogs where sidebar is on the left side but people will still look for the content side, just make sure your ads are on the &#8220;left&#8221; side of the content side.</p>
<p>Also, you can embed your ads so they are integrated with the rest of your content but I usually don&#8217;t do that.</p>
<p>Why?</p>
<p><strong>You want your readers to really focus on the ads first</strong>, just like TV ads.  If you have content around your ads, this will cause ad blindness more often than not based on my testing.  <em>For some, it may work well, for longer articles.</em></p>
<p>So, have your ads clear of content.  You can put your content above or below the ads.  The main point is that you want to have <strong><em>focus</em></strong>.</p>
<p>If you think that will not look good for the design of your website, that&#8217;s fine too but just know that maximum revenues are achieved when you can make readers completely focused at the task at hand, that of reading ads first then content.</p>
<h2>Why do I have no ads on this blog?</h2>
<p>Ads are great for making money on sites with some good level of web traffic.  If you aren&#8217;t getting at least 1000 unique users per day, you shouldn&#8217;t really aggressively advertise but rather work to get more web traffic and loyal readers.</p>
<p>Trust me, I don&#8217;t even like putting too many ads myself and if you put ads on blogs/websites that don&#8217;t even get 1000 unique visitors per day, you are mostly likely shooting yourself in the foot.</p>
<p>I know, I know, you want to make money right away but you still also need to focus on building a readership and web traffic to a level.</p>
<p>Plus, for example let&#8217;s say you put ads all over your website that gets 200 unique visitors per day, you aren&#8217;t gonna get that much clicks anyways plus your revenue will be a lot smaller because you have such small number of visitors.</p>
<p>I have found that having at least 1000 unique visitors per day is a good rule of thumb to go by before you even start putting ads.  Of course, depending on your niche, this could be slightly lower, maybe 500.</p>
<p>This blog itself currently gets less than 1000 unique visitors per day, I will put ads on here someday but not until I reach the initial 1000.</p>
<p>Just use your common sense and don&#8217;t put ads on your site if you are not ready.  Or at least <em><strong>start with ads after the content</strong></em>.</p>
<p>Now, let me go on with the Adsense map here.  You will see that I have put a rectangle Adsense block, either of the sizes 336&#215;280, 300&#215;250, or 300&#215;250. <em><strong> Try to use the biggest ad size that will fit as bigger sizes mean higher revenues.</strong></em></p>
<p>You can also put &#8220;private&#8221; ads on the right side of the Adsense ad to &#8220;fill&#8221; the blank space if you want.  <strong>But make sure you test and it doesn&#8217;t affect your Adsense CPC.</strong> Depending on your niche, this might differ.  In my case, filling the space on the right sometimes will lower my CPCs or sometimes it will raise it.  Just make sure to test both options and you will find the right combo.</p>
<p>Now, after the first Adsense rectangle block, I have content, perhaps 1-3 sentences.  I have used <a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" >custom code for my Wordpress theme to put another Adsense rectangle block after the 1-3 sentences.</a></p>
<p>Why?</p>
<p>Because if you want to achieve the highest CPCs and higher reader-attention for the ads, you want to place your ads as high as they can be. (if your goal is to make the maximum revenue)</p>
<p>After all the content, I use Google AdManager and Adsdaq to serve private affiliate ads or CPM ads.   This is the worst performing spaces for Adsense so I put my private/CPM ads there.   Don&#8217;t put more ads there because it will saturate your Adsense revenues.  I try to stick with 2 big Adsense rectangles at most.</p>
<h2>Don&#8217;t put Adsense rectangle ads on Sidebar</h2>
<p>I don&#8217;t put any Adsense rectangle ads on the sidebar because simply they are the worst performers due to ad blindness.  People can easily recognize that ads on the sidebar are ads and will simply ignore it.  You can try testing it but I bet your results will be like what I said.  One more thing, don&#8217;t put ads on your header either unless it performs much better than the first Adsense rectangle.  I highly doubt it but you can always <strong><em>test it</em></strong>.</p>
<h2>KISS (Keep it Simple Stupid)</h2>
<p>When it comes to user experience of actually browsing your site, you need to keep your ads to a minimum.  Although I have a lot of ads on Zedomax.com, you will see that ads are &#8220;clearly&#8221; divided from my content.  <strong>You need to make it easy for users to distinguish ads from real content while you place your ads where readers will pay attention most. </strong>This keeps your readers as happy as possible while letting you maximize your revenue potential.</p>
<p><strong>So, that&#8217;s it, you just need two big square blocks for your main article pages.</strong> No need for any extra Adsense blocks because you want to place your ads where people will read the most.  <em>Otherwise you will saturate our own Adsense revenues because you are offering more ad spaces.</em></p>
<p>I used to have like a whole bunch of ads as <a href="http://zedomax.biz/blog/make-money-online/adsense-and-chitika-optimization-heat-map/" >seen in my very first Adsense heat map her</a>e but <strong>I am making more money now by having less ads but placing them higher on my blog. </strong></p>
<h2>Extra &#8211; Category Pages</h2>
<p>Above heat map is for your article pages, where the actual contents are.  Now, for category pages, you can place more ads and <em><strong>customize it.</strong></em></p>
<p>For my Zedomax.com blog, I actually rearranged my blog theme to have 1 left side bar, 1 ad block, and 1 content block, which is 3 columns.  <a target="_blank" href="http://zedomax.com/blog/category/computer/" >You can see an example here.</a></p>
<p><strong>Why a different layout for Category Pages?</strong></p>
<p>I don&#8217;t want ad blindness so I have completely changed my theme so it looks &#8220;fresh&#8221;.  Plus I have blended my ads so they are informational and offer more options for users since they are not trying to read just &#8220;one article&#8221; rather <strong><em>they are trying to find something.  This means ads could potentially be more helpful if your readers don&#8217;t find the content they are looking for.<br />
</em></strong></p>
<p>I won&#8217;t get into the details of how I did my category pages but it&#8217;s an example that you can make your website into different layouts for different sections.  By having fresh look to your category pages, you can avoid ad blindness and also offer the readers more options to choose from.</p>
<p>You don&#8217;t have to copy my style but if your theme is same everywhere throughout your site, you might want to look into giving it a fresh look for certain pages such as the category page.</p>
<p>I can tell you that my category pages perform 2-3 times better than before, where it was the same as my article pages.</p>
<h2>Should you use Chitika along with Adsense ads?</h2>
<p>In my previous heat maps, I told you that Chitika was a great source of revenue.  Based on years of testing, I have found out the opposite it true.  You can easily saturate your own Adsense revenue when using both Adsense and Chitika because Chitika ads will sabotage your CPC.   Just make sure to use 1 of them, either Adsense or Chitika but don&#8217;t mix them together as you will only be shooting yourself in the foot.  <a href="http://zedomax.biz/blog/advertisements/chitika-review-adding-chitika-can-only-increase-your-potential-ad-revenue-is-not-100-true/" >You can read my full in-depth analysis of that here.</a></p>
<p>Well, good luck and if you are having trouble or you want me to review your ad placements, you can always e-mail me at zedomax[at]gmaildotcom, tweet me @zedomax, or leave a comment.   I will be glad to help you as much as I can. (for free! hurray!)</p>
<h2>Bonus &#8211; Show ad to search engine traffic only!</h2>
<p>If you simply believe that above heat map will not make your website look good, here&#8217;s an alternative.  Instead of putting ads where they &#8220;look good&#8221; but will worsen your Adsense revenues (such as the sidebar), just use the above map but only show ads to your search engine traffic so you don&#8217;t annoy your regular readers with ads, <a href="http://zedomax.biz/blog/make-money-online/how-to-show-adsense-ads-only-to-search-traffic-and-less-annoying-to-your-regular-readers/" >see more on that here.</a></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/make-money-online/adsense-cpc-optimized-placement-heat-map/" >Adsense CPC Optimized Placement Heat Map!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/adsense/" title="AdSense" rel="tag">AdSense</a>, <a href="http://zedomax.biz/blog/tag/adsense/" title="AdSense" rel="tag">AdSense</a>, <a href="http://zedomax.biz/blog/tag/adsense-heat-map/" title="adsense heat map" rel="tag">adsense heat map</a>, <a href="http://zedomax.biz/blog/tag/adsense-placement-map/" title="adsense placement map" rel="tag">adsense placement map</a>, <a href="http://zedomax.biz/blog/category/advertisements/" title="Advertisements" rel="tag">Advertisements</a>, <a href="http://zedomax.biz/blog/category/blog-diy/" title="Blog DIY" rel="tag">Blog DIY</a>, <a href="http://zedomax.biz/blog/category/blog-training/" title="Blog Training" rel="tag">Blog Training</a>, <a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/cpc-optimized/" title="cpc optimized" rel="tag">cpc optimized</a>, <a href="http://zedomax.biz/blog/category/make-money-online/" title="Make Money Online" rel="tag">Make Money Online</a>, <a href="http://zedomax.biz/blog/category/marketing/" title="marketing" rel="tag">marketing</a>, <a href="http://zedomax.biz/blog/tag/placement-map/" title="placement map" rel="tag">placement map</a>, <a href="http://zedomax.biz/blog/category/marketing/ppc-marketing/" title="PPC" rel="tag">PPC</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/your-adsense-account-could-be-banned-because-of-stumbleupon/" title="Your Adsense Account Could Be Banned Because Of StumbleUpon (May 8, 2008)">Your Adsense Account Could Be Banned Because Of StumbleUpon</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/yahoo-publishers-vs-google-adsense-test-them-noth-and-see-how-each-performs/" title="Yahoo Publishers vs. Google Adsense &#8211; Test them noth and see How each Performs! (May 12, 2008)">Yahoo Publishers vs. Google Adsense &#8211; Test them noth and see How each Performs!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/which-adsense-ad-sizes-are-the-best-performing/" title="Which AdSense Ad Sizes are the Best Performing? (May 11, 2008)">Which AdSense Ad Sizes are the Best Performing?</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/where-is-the-best-adsense-placement/" title="Where is the Best Adsense Placement? (July 6, 2008)">Where is the Best Adsense Placement?</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/the-best-niche-market-for-adsense-ads/" title="The Best Niche Market for Adsense Ads! (July 15, 2008)">The Best Niche Market for Adsense Ads!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=SkfaMqa-UqE:Egt95bK0y-k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=SkfaMqa-UqE:Egt95bK0y-k:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=SkfaMqa-UqE:Egt95bK0y-k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=SkfaMqa-UqE:Egt95bK0y-k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=SkfaMqa-UqE:Egt95bK0y-k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=SkfaMqa-UqE:Egt95bK0y-k:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/make-money-online/adsense-cpc-optimized-placement-heat-map/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Twitter HOWTO – How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</title>
		<link>http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/</link>
		<comments>http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 21:00:57 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blog DIY]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[add hashtags]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[rss feed]]></category>
		<category><![CDATA[twitter howto]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1075</guid>
		<description><![CDATA[
Before I used services like TwitterFeed or Wordpress plugins to automatically update my Twitter account with new blog posts.  Well, I have found out a better way since then, Google Feedburner lets you add hashtags to relevant title keywords and categories automatically.  To do this, simply go to Publicize-&#62;Socialize on your Feedburner dashboard.
There&#8217;s more chance [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1076" title="hashtags" src="http://zedomax.biz/blog/wp-content/uploads/2010/03/hashtags.png" alt="" width="451" height="391" /></p>
<p>Before I used services like TwitterFeed or Wordpress plugins to automatically update my Twitter account with new blog posts.  Well, I have found out a better way since then, Google Feedburner lets you add hashtags to relevant title keywords and categories automatically.  To do this, simply go to Publicize-&gt;Socialize on your Feedburner dashboard.</p>
<p>There&#8217;s more chance of your tweet being found if you use hashtags plus it will be archived on more Twitter sites that use hashtags to find new tweets.</p>
<blockquote><p>Google has introduced a new “Socialize” section along with ability to add hash tags to your blog tweets.  Not only that, there’s an “inline hash tag” mode which will automatically turn important keywords of your blog post title into hashtags.</p></blockquote>
<p><a target="_blank" href="http://tweethacking.com/twitter-hacks/blog-diy-how-to-add-hashtags-to-your-blog-rss-feed-tweets/" >via tweethacking</a></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" >Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/add-hashtags/" title="add hashtags" rel="tag">add hashtags</a>, <a href="http://zedomax.biz/blog/tag/blog/" title="blog" rel="tag">blog</a>, <a href="http://zedomax.biz/blog/category/blog-diy/" title="Blog DIY" rel="tag">Blog DIY</a>, <a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/feedburner/" title="feedburner" rel="tag">feedburner</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/tag/rss-feed/" title="rss feed" rel="tag">rss feed</a>, <a href="http://zedomax.biz/blog/category/twitter/" title="Twitter" rel="tag">Twitter</a>, <a href="http://zedomax.biz/blog/tag/twitter-howto/" title="twitter howto" rel="tag">twitter howto</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/e-book-diy-how-to-write-an-e-book-in-5-hours/" title="E-Book DIY &#8211; How to Write an E-book in 5 Hours! (October 20, 2008)">E-Book DIY &#8211; How to Write an E-book in 5 Hours!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/zedomax-blog-internet-marketing-101-e-book/" title="Zedomax Blog Internet Marketing 101 E-Book! (October 22, 2008)">Zedomax Blog Internet Marketing 101 E-Book!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/why-blogs-are-so-powerful-in-3-minutes/" title="Why Blogs are So Powerful in 3 Minutes! (December 13, 2008)">Why Blogs are So Powerful in 3 Minutes!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/where-is-the-best-adsense-placement/" title="Where is the Best Adsense Placement? (July 6, 2008)">Where is the Best Adsense Placement?</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=Pak3cttWbzc:5up-6qLz5ew:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=Pak3cttWbzc:5up-6qLz5ew:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=Pak3cttWbzc:5up-6qLz5ew:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=Pak3cttWbzc:5up-6qLz5ew:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=Pak3cttWbzc:5up-6qLz5ew:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=Pak3cttWbzc:5up-6qLz5ew:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chitika Review – Adding Chitika Can Only Increase Your Potential Ad Revenue is not 100% True!</title>
		<link>http://zedomax.biz/blog/advertisements/chitika-review-adding-chitika-can-only-increase-your-potential-ad-revenue-is-not-100-true/</link>
		<comments>http://zedomax.biz/blog/advertisements/chitika-review-adding-chitika-can-only-increase-your-potential-ad-revenue-is-not-100-true/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 20:08:35 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Advertisements]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Chitika]]></category>
		<category><![CDATA[ad revenue]]></category>
		<category><![CDATA[chitika review]]></category>
		<category><![CDATA[increase ad revenue]]></category>
		<category><![CDATA[not 100% true]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1065</guid>
		<description><![CDATA[Okay, it&#8217;s funny how Chitika is responding to my blog post earlier and I think they are actually getting desperate now, I have been seeing these Chitika ads with Darren Rowse posed as their posterboy all of the sudden.
Upon clicking on that ad, you will be directed to this page where you get a YouTube [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, it&#8217;s funny how Chitika is responding to my blog post earlier and I think they are actually getting desperate now, I have been seeing these Chitika ads with Darren Rowse posed as their posterboy <em>all of the sudden.</em></p>
<p>Upon clicking on that ad, you will be directed to this page where you get a YouTube video like this:</p>
<div class="video youtube"><p align="center"><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/9oPN6Hlxybo" width="500" height="420"><param name="movie" value="http://www.youtube.com/v/9oPN6Hlxybo" /><param name="allowScriptAccess" value="sameDomain" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><param name="scale" value="doesaffect" /><param name="wmode" value="transparent" /><p><a target="_blank" href="http://download.macromedia.com/" >Download latest version of Flash to view video!</a>.</p></object></p></div><p align="center"><a target="_blank" href="http://www.youtube.com/v/9oPN6Hlxybo"  class="lightwindow"> Click Here to View in Full Screen Mode</a></p>
<p>Now, here&#8217;s a big lie that I cannot handle and Chitika has not responded back to me other than that <a href="http://zedomax.biz/blog/make-money-online/chitika-cpc-sabotage-why-i-stopped-using-chitika/" >they don&#8217;t have time to fix the issue with CPC sabotage</a>:</p>
<blockquote><p>So adding Chitika to your page can only increase your potential ad revenue.</p></blockquote>
<p>What they forgot to address is that adding Chitika along with Adsense can potentially decrease your potential ad revenue simply because law of supply and demand.</p>
<p>The law of supply and demand says when you have more supply than demand, your earning will decrease.</p>
<p>This is exactly what can happen when you add Chitika to your &#8220;high-paying&#8221; keyworded websites.</p>
<p>As far as I can tell, advertisers pay much less money per click for Chitika ads than on Adwords.  This means that Chitika ads are actually flooding the Adwords market.  The more people use Chitika, the more of Adsense/Adwords market is flooded, meaning <strong><em>everyone will get paid less per click.</em></strong></p>
<p>The reason why I am posting this is because Chitika is really now becoming an ad network degrades the Adsense network, provided you use Chitika with Adsense.  This could possibly affect millions of website revenues out there because advertisers can get the same keywords for much less on Chitika.</p>
<p><a target="_blank" href="http://www.liewcf.com/archives/2010/03/make-money-chitika-premium/" >Also see LiewCF&#8217;s blog post on how his test went by removing Chitika.</a></p>
<p>While this is great for advertisers, this will flood the Adsense market for all the honest, hard-working publishers out there.</p>
<p>If you don&#8217;t believe me, I want you to try this, take Chitika off for at least a month and see how your Adsense revenue looks.  My Adsense revenue has literally exploded since taking out Chitika from all my websites.  And this extra revenue could be over $100,000 for the last couple years I have used Chitika.</p>
<h2>Why is Darren Rowse using/promoting Chitika?</h2>
<p>I think partly because either Chitika is paying him to endorse them and/or Darren Rowse was given a special revenue-share for his famous blogger status.  Whatever the case, I would really like to know because Darren Rowse should be disclosing that kind of information in his blog posts.  I like Darren Rowse and he is a nice guy but I&#8217;ve e-mailed him about this Chitika incident and no replies yet.  I am guessing that he doesn&#8217;t want to respond because Darren has responded to all of my past e-mails/questions.</p>
<p><a target="_blank" href="http://labnol.blogspot.com/2005/12/shoemonkey-targets-darren-rowse-over.html" >Also some proof from back in 2005.</a></p>
<p>Seriously, Darren, I would like to know, this is very important for ALL web publishers/bloggers out there who are trying to make a dollar out of a penny.  We all work hard as you do, we just don&#8217;t want to sabotage our own CPC markets.  Besides that, the reason I started using Chitika was because Darren started using it.  Now, I feel like a dumbass.  I like Darren Rowse&#8217;s blogging business but this is certainly not fun to find out years later than I&#8217;ve been using a service that had degraded my ad network.  I really hope Darren Rowse addresses this issue, otherwise I will have to part my ways with one of my online heroes.    <em>Disclosure is now actually part of FCC, bloggers need to disclose that they get paid from a company if they promote it on their blog posts or companies use them to promote themselves online.</em></p>
<p>What peeves now is that Chitika (again) has stopped responding to my requests but using their last, desperate measures to advertise their services with Darren Rowse as their posterboy. (or that&#8217;s what I assume <em>because I have never seen Adsense Chitika ads before this week</em>)</p>
<p>Look, I don&#8217;t hate anyone but I simply don&#8217;t want Chitika sending out false message that adding Chitika can &#8220;ONLY&#8221; increase your ad revenue.  Simply thinking and law of supply and demand says Chitika can possibly add more revenue only if you are getting already bad revenues with Adsense.  But for those of you getting pretty good revenue stream through Adsense, <em>Chitika can only decrease your ad revenues</em> unless Chitika offers you a super-high revenue-share and that is most unlikely as I have experienced myself.</p>
<p>As for search-query only ads?  That is the highest-paying CPC revenues and Chitika is flooding your highest paying keywords.</p>
<h2>How can Chitika Fix This for Everyone?</h2>
<p>They need to find the right market value for every keyword.  They need to build a system that&#8217;s going to be competitive with Adsense.  Their CPC can still be much cheaper than Adsense since CTR is much higher on average but they need to work out a new system that won&#8217;t sabotage the existing CPC markets publishers are using such as Adsense.</p>
<p>When they can do that, I think Chitika would be a great alternative, until then, mark my words, <em>you will most likely sabotage your own high-paying Adsense CPCs by adding Chitika along with it.</em></p>
<p>Chitika, stop goofing off and please fix the issue <strong><em>NOW.</em></strong></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/advertisements/chitika-review-adding-chitika-can-only-increase-your-potential-ad-revenue-is-not-100-true/" >Chitika Review &#8211; Adding Chitika Can Only Increase Your Potential Ad Revenue is not 100% True!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/ad-revenue/" title="ad revenue" rel="tag">ad revenue</a>, <a href="http://zedomax.biz/blog/category/advertisements/" title="Advertisements" rel="tag">Advertisements</a>, <a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/category/chitika/" title="Chitika" rel="tag">Chitika</a>, <a href="http://zedomax.biz/blog/tag/chitika-review/" title="chitika review" rel="tag">chitika review</a>, <a href="http://zedomax.biz/blog/tag/increase-ad-revenue/" title="increase ad revenue" rel="tag">increase ad revenue</a>, <a href="http://zedomax.biz/blog/tag/not-100-true/" title="not 100% true" rel="tag">not 100% true</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=OfwljX2UqK8:YXhOLy03DwE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=OfwljX2UqK8:YXhOLy03DwE:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=OfwljX2UqK8:YXhOLy03DwE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=OfwljX2UqK8:YXhOLy03DwE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=OfwljX2UqK8:YXhOLy03DwE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=OfwljX2UqK8:YXhOLy03DwE:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/advertisements/chitika-review-adding-chitika-can-only-increase-your-potential-ad-revenue-is-not-100-true/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Facebook Pages now part of SEO, pages indexed by Google!</title>
		<link>http://zedomax.biz/blog/blogging/facebook-pages-now-part-of-seo-pages-indexed-by-google/</link>
		<comments>http://zedomax.biz/blog/blogging/facebook-pages-now-part-of-seo-pages-indexed-by-google/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 19:07:48 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[facebook pages]]></category>
		<category><![CDATA[indexed by google]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1063</guid>
		<description><![CDATA[According to WebProNews, Facebook pages are now officially part of indexed pages by Google.  This means that people who have been actively promoting/using Facebook, they will be rewarded.
Google announced via Twitter this week, that public status updates from Facebook are now included in the search engine&#8217;s real-time search feature.
Apparently only updates from Facebook PAGES are [...]]]></description>
			<content:encoded><![CDATA[<p>According to <a target="_blank" href="http://www.webpronews.com/topnews/2010/02/25/your-facebook-page-is-in-googles-real-time-results-now" >WebProNews</a>, Facebook pages are now officially part of indexed pages by Google.  This means that people who have been actively promoting/using Facebook, they will be rewarded.</p>
<blockquote><p>Google <a target="_blank" href="http://twitter.com/google/status/9599921440" >announced via Twitter</a> this week, that public status updates from Facebook are now included in the search engine&#8217;s real-time search feature.</p>
<p>Apparently only updates from Facebook PAGES are indexed, and <a target="_blank" href="http://searchengineland.com/facebook-fan-page-updates-now-in-google-real-time-search-36836" >according to Danny Sullivan</a>, that includes links, status updates, photos, videos shared by page owners (not comments made by the fans).</p></blockquote>
<p>Of course, if you haven&#8217;t setup a fan page for Facebook, you should do it right away because time is your only enemy.  It takes months to build up Facebook fan following and that could possibly be the best free word-of-mouth marketing online today.  I have setup Facebook fan page for most of my blogs as of last week, probably will set up this one too soon.  I will have a short DIY how-to article on that for those of you who are Facebook newbies so watch out for that.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/facebook-pages-now-part-of-seo-pages-indexed-by-google/" >Facebook Pages now part of SEO, pages indexed by Google!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/facebook-pages/" title="facebook pages" rel="tag">facebook pages</a>, <a href="http://zedomax.biz/blog/tag/indexed-by-google/" title="indexed by google" rel="tag">indexed by google</a>, <a href="http://zedomax.biz/blog/category/search-engines/" title="search engines" rel="tag">search engines</a>, <a href="http://zedomax.biz/blog/category/seo/" title="SEO" rel="tag">SEO</a>, <a href="http://zedomax.biz/blog/tag/seo/" title="SEO" rel="tag">SEO</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/seo-hack-dont-buy-wordpress-affiliate-pro-just-get-the-link-a-dink-plugin/" title="SEO HACK &#8211; Don&#8217;t Buy WordPress Affiliate Pro, just get the Link A Dink Plugin (December 8, 2007)">SEO HACK &#8211; Don&#8217;t Buy WordPress Affiliate Pro, just get the Link A Dink Plugin</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-make-money-blogging-with-amazon-affiliate-program/" title="How to Make Money Blogging with Amazon Affiliate Program! (March 9, 2009)">How to Make Money Blogging with Amazon Affiliate Program!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-make-an-seo-friendly-title-for-your-website-or-blog/" title="How to Make an SEO Friendly Title for your Website or Blog! (July 15, 2008)">How to Make an SEO Friendly Title for your Website or Blog!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-get-more-traffic-and-explode-your-blog-by-copying-other-blogs/" title="How to Get More Traffic and Explode Your Blog by Copying Other Blogs! (September 2, 2009)">How to Get More Traffic and Explode Your Blog by Copying Other Blogs!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/best-type-of-traffic-for-ad-clicks/" title="Best Type of Traffic for Ad Clicks! (June 23, 2008)">Best Type of Traffic for Ad Clicks!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BlP_DkveZdE:d2Tvt-_M72Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BlP_DkveZdE:d2Tvt-_M72Y:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BlP_DkveZdE:d2Tvt-_M72Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BlP_DkveZdE:d2Tvt-_M72Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=BlP_DkveZdE:d2Tvt-_M72Y:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BlP_DkveZdE:d2Tvt-_M72Y:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/facebook-pages-now-part-of-seo-pages-indexed-by-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SquadHelp – How to Get the Right Domain by Crowdsourcing!</title>
		<link>http://zedomax.biz/blog/make-money-online/squadhelp-how-to-get-the-right-domain-by-crowdsourcing/</link>
		<comments>http://zedomax.biz/blog/make-money-online/squadhelp-how-to-get-the-right-domain-by-crowdsourcing/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 07:04:38 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[Webmaster Hack]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[market research]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[prizes]]></category>
		<category><![CDATA[squadhelp]]></category>
		<category><![CDATA[web projects]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1059</guid>
		<description><![CDATA[
I noticed that SquadHelp has spammed my Whiteboard Idea TRG blog post comments line.  Upon closer inspection, I found out SquadHelp is actually a pretty good service for crowdsourcing domain name creating.
With SquadHelp, you can either make cool domain names for contests and win money or even hold your own contests to help your company [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1058" title="squadhelp" src="http://zedomax.biz/blog/wp-content/uploads/2010/02/squadhelp.jpg" alt="" width="245" height="68" /></p>
<p>I noticed that <a href="http://zedomax.biz/blog/make-money-online/whiteboard-idea-how-to-make-a-website-trg/#comment-10031" >SquadHelp has spammed my Whiteboard Idea TRG blog post comments line</a>.  Upon closer inspection, I found out SquadHelp is actually a pretty good service for crowdsourcing domain name creating.</p>
<p>With SquadHelp, you can either make cool domain names for contests and win money or even hold your own contests to help your company make a better domain name.</p>
<p>You can actually browser their prizes page where people have been chosen winners.  A quick look tells me this crowdsourcing method works rather well, I might try it myself soon for my new web projects.  (and I suggest you to try it too.)</p>
<p>You know how hard making great domain names can be, nothing is better than if others do it for you, especially if the &#8220;crowd&#8221; does it.  Of course, one more feature I would like added to SquadHelp is ability for users to vote on the domain names, that way you get great domains and market research all-in-one.</p>
<p>There, I just helped SquadHelp leap into even a better service, for FREE!</p>
<p>If you need suggestions for your business, I guess you can try spamming my comments line. <img src='http://zedomax.biz/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/make-money-online/squadhelp-how-to-get-the-right-domain-by-crowdsourcing/" >SquadHelp &#8211; How to Get the Right Domain by Crowdsourcing!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/domain-names/" title="domain names" rel="tag">domain names</a>, <a href="http://zedomax.biz/blog/category/make-money-online/" title="Make Money Online" rel="tag">Make Money Online</a>, <a href="http://zedomax.biz/blog/tag/market-research/" title="market research" rel="tag">market research</a>, <a href="http://zedomax.biz/blog/tag/money/" title="money" rel="tag">money</a>, <a href="http://zedomax.biz/blog/tag/prizes/" title="prizes" rel="tag">prizes</a>, <a href="http://zedomax.biz/blog/tag/squadhelp/" title="squadhelp" rel="tag">squadhelp</a>, <a href="http://zedomax.biz/blog/tag/web-projects/" title="web projects" rel="tag">web projects</a>, <a href="http://zedomax.biz/blog/category/webmaster-hack/" title="Webmaster Hack" rel="tag">Webmaster Hack</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/yodle-ppc-campaign-review/" title="Yodle PPC Campaign Review! (September 11, 2009)">Yodle PPC Campaign Review!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/yahoo-publishers-vs-google-adsense-test-them-noth-and-see-how-each-performs/" title="Yahoo Publishers vs. Google Adsense &#8211; Test them noth and see How each Performs! (May 12, 2008)">Yahoo Publishers vs. Google Adsense &#8211; Test them noth and see How each Performs!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/which-adsense-ad-sizes-are-the-best-performing/" title="Which AdSense Ad Sizes are the Best Performing? (May 11, 2008)">Which AdSense Ad Sizes are the Best Performing?</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/what-is-search/" title="What Is &#8220;Search&#8221;? (December 23, 2008)">What Is &#8220;Search&#8221;?</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/understanding-your-audience-how-to-write-a-blog-post/" title="Understanding Your Audience &#8211; How to Write a Blog Post! (June 26, 2008)">Understanding Your Audience &#8211; How to Write a Blog Post!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=1p6-GdXbK1A:e4oUJwn3VDQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=1p6-GdXbK1A:e4oUJwn3VDQ:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=1p6-GdXbK1A:e4oUJwn3VDQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=1p6-GdXbK1A:e4oUJwn3VDQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=1p6-GdXbK1A:e4oUJwn3VDQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=1p6-GdXbK1A:e4oUJwn3VDQ:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/make-money-online/squadhelp-how-to-get-the-right-domain-by-crowdsourcing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Japan Tsunami Warning and LIVE Video of Kuji Harbor in Japan!</title>
		<link>http://zedomax.biz/blog/personal/japan-tsunami-warning-and-live-video-of-kuji-harbor-in-japan/</link>
		<comments>http://zedomax.biz/blog/personal/japan-tsunami-warning-and-live-video-of-kuji-harbor-in-japan/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 04:11:03 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[japan tsunami]]></category>
		<category><![CDATA[kuji harbor]]></category>
		<category><![CDATA[Live Video]]></category>
		<category><![CDATA[tsunami warning]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1055</guid>
		<description><![CDATA[
OMG! Tsunami will be hitting the shores of Japan within the next hour, watch the live video to see what happens and let us pray for the people of the world today who are going through earthquakes and tsunamis.
Tsunami is about to hit the shores of Japan, we have a special update with live video [...]]]></description>
			<content:encoded><![CDATA[<p><object id="utv826720" 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="name" value="utv_n_51584" /><param name="flashvars" value="autoplay=false&amp;brand=embed&amp;cid=3193761" /><param name="src" value="/img/aHR0cDovL3d3dy51c3RyZWFtLnR2L2ZsYXNoL2xpdmUvMS8zMTkzNzYx" /><param name="allowfullscreen" value="true" /><embed id="utv826720" type="application/x-shockwave-flash" width="500" height="400" src="Japan Tsunami Warning and LIVE Video of Kuji Harbor in Japan!" allowfullscreen="true" flashvars="autoplay=false&amp;brand=embed&amp;cid=3193761" name="utv_n_51584"></embed></object></p>
<p>OMG! Tsunami will be hitting the shores of Japan within the next hour, watch the live video to see what happens and let us pray for the people of the world today who are going through earthquakes and tsunamis.</p>
<blockquote><p>Tsunami is about to hit the shores of Japan, we have a special update with live video from Kuji harbor in Japan.<br />
Experts predict 10-feet tsunamis to hit Japan real soon and as many as <a target="_blank" href="http://newsinfo.inquirer.net/breakingnews/world/view/20100228-255837/Japan-evacuates-50000-people-as-tsunami-approaches" >50,000 people have been evacuated already.</a></p>
<p>Let us all pray that the tsunami isn&#8217;t going to be devastating.  One thing for sure, many lives will be saved due to preparations but existing businesses and houses bordering the shoreline might be hard to save even at low estimate of 10-foot tsunamis.</p>
<p>Right now, we are hearing a lot of sea gulls making a lot of noise, perhaps an indication that tsunami is nearing soon.</p>
<p>Watch the video live right here on OnEarthTravel.com and let us pray together for Japan and people who have died in Chile.</p></blockquote>
<p><a target="_blank" href="http://onearthtravel.com/blog/beaches/tsunami-warning-in-japan-live-video-of-kuji-harbor-japan/" >via onearthtravel</a></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/personal/japan-tsunami-warning-and-live-video-of-kuji-harbor-in-japan/" >Japan Tsunami Warning and LIVE Video of Kuji Harbor in Japan!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/japan/" title="japan" rel="tag">japan</a>, <a href="http://zedomax.biz/blog/tag/japan-tsunami/" title="japan tsunami" rel="tag">japan tsunami</a>, <a href="http://zedomax.biz/blog/tag/kuji-harbor/" title="kuji harbor" rel="tag">kuji harbor</a>, <a href="http://zedomax.biz/blog/tag/live-video/" title="Live Video" rel="tag">Live Video</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a>, <a href="http://zedomax.biz/blog/tag/tsunami-warning/" title="tsunami warning" rel="tag">tsunami warning</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/personal/hawaii-tsunami-live-video/" title="Hawaii Tsunami Live Video! (February 27, 2010)">Hawaii Tsunami Live Video!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/dont-be-afraid-to-fail/" title="Don&#8217;t Be Afraid to FAIL! (January 19, 2009)">Don&#8217;t Be Afraid to FAIL!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=UZsql4pcQLs:syziEvRZ0KI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=UZsql4pcQLs:syziEvRZ0KI:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=UZsql4pcQLs:syziEvRZ0KI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=UZsql4pcQLs:syziEvRZ0KI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=UZsql4pcQLs:syziEvRZ0KI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=UZsql4pcQLs:syziEvRZ0KI:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/personal/japan-tsunami-warning-and-live-video-of-kuji-harbor-in-japan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hawaii Tsunami Live Video!</title>
		<link>http://zedomax.biz/blog/personal/hawaii-tsunami-live-video/</link>
		<comments>http://zedomax.biz/blog/personal/hawaii-tsunami-live-video/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 22:01:07 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Hawaii Tsunami]]></category>
		<category><![CDATA[Live Video]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1052</guid>
		<description><![CDATA[
More live videos of Hawaii Tsunami:

Hawaii Tsunami watch going on right now!
Let&#8217;s cross our fingers for the best.
As some of you well know, earthquake has hit Chile earlier today, an 8.8 magnitude, one of the largest earthquakes in history of mankind.  My regards for people in Chile, stay strong!
It seems that has set off [...]]]></description>
			<content:encoded><![CDATA[<p><object id="utv417256" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="320" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="utv_n_832502" /><param name="flashvars" value="autoplay=false&amp;brand=embed&amp;cid=3185701" /><param name="src" value="/img/aHR0cDovL3d3dy51c3RyZWFtLnR2L2ZsYXNoL2xpdmUvMS8zMTg1NzAx" /><param name="allowfullscreen" value="true" /><embed id="utv417256" type="application/x-shockwave-flash" width="400" height="320" src="Hawaii Tsunami Live Video!" allowfullscreen="true" flashvars="autoplay=false&amp;brand=embed&amp;cid=3185701" name="utv_n_832502"></embed></object></p>
<p>More live videos of Hawaii Tsunami:</p>
<p><object id="utv804220" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="320" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="autoplay=false&amp;brand=embed&amp;cid=3184136" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="/img/aHR0cDovL3d3dy51c3RyZWFtLnR2L2ZsYXNoL2xpdmUvMS8zMTg0MTM2" /><param name="name" value="utv_n_40422" /><embed id="utv804220" type="application/x-shockwave-flash" width="400" height="320" src="Hawaii Tsunami Live Video!" name="utv_n_40422" allowscriptaccess="always" allowfullscreen="true" flashvars="autoplay=false&amp;brand=embed&amp;cid=3184136"></embed></object></p>
<p>Hawaii Tsunami watch going on right now!</p>
<p>Let&#8217;s cross our fingers for the best.</p>
<blockquote><p>As some of you well know, <a target="_blank" href="http://www1.voanews.com/english/news/americas/Chile-Earthquake-Among-Strongest-Since-1900-85697142.html" >earthquake has hit Chile earlier today, an 8.8 magnitude</a>, one of the largest earthquakes in history of mankind.  My regards for people in Chile, stay strong!</p>
<p>It seems that has <a target="_blank" href="http://www.latimes.com/news/nation-and-world/la-na-tsunami-hawaii28-2010feb28,0,5140676.story" >set off tsunamis that are heading towards Hawaii</a> as I am writing this blog post.  I believe most residents have evacuated and hopefully, the tsunami won&#8217;t be devastating to Hawaii.  Watch the video above to see the action live, it should hit any minute.</p></blockquote>
<p><a target="_blank" href="http://zedomax.com/blog/2010/02/27/earthquake-in-chile-tsunami-in-hawaii-live-video/" >via zedomax</a></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/personal/hawaii-tsunami-live-video/" >Hawaii Tsunami Live Video!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/hawaii-tsunami/" title="Hawaii Tsunami" rel="tag">Hawaii Tsunami</a>, <a href="http://zedomax.biz/blog/tag/live-video/" title="Live Video" rel="tag">Live Video</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/personal/japan-tsunami-warning-and-live-video-of-kuji-harbor-in-japan/" title="Japan Tsunami Warning and LIVE Video of Kuji Harbor in Japan! (February 28, 2010)">Japan Tsunami Warning and LIVE Video of Kuji Harbor in Japan!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=QORnLBN4MJg:GsSwn1TpCAs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=QORnLBN4MJg:GsSwn1TpCAs:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=QORnLBN4MJg:GsSwn1TpCAs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=QORnLBN4MJg:GsSwn1TpCAs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=QORnLBN4MJg:GsSwn1TpCAs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=QORnLBN4MJg:GsSwn1TpCAs:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/personal/hawaii-tsunami-live-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Blogging?  Why do People Blog EVERYTHING?</title>
		<link>http://zedomax.biz/blog/blogging/what-is-blogging-why-do-people-blog-everything/</link>
		<comments>http://zedomax.biz/blog/blogging/what-is-blogging-why-do-people-blog-everything/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 07:20:31 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blog Training]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[everything]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[what is blogging]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1050</guid>
		<description><![CDATA[When I first started blogging, it was essentially an online &#8220;diary&#8221; where you can keep a journal of your personal experiences.  And that&#8217;s exactly what I do.
When you write in your &#8220;diary&#8221;, whether online or offline, you need to couple things to consider like:

be truthful, write exactly what&#8217;s in your mind, don&#8217;t lie about anything.  [...]]]></description>
			<content:encoded><![CDATA[<p>When I first started blogging, it was essentially an online &#8220;diary&#8221; where you can keep a journal of your personal experiences.  And that&#8217;s exactly what I do.</p>
<p>When you write in your &#8220;diary&#8221;, whether online or offline, you need to couple things to consider like:</p>
<ul>
<li>be truthful, write exactly what&#8217;s in your mind, don&#8217;t lie about anything.  If you lie, you are only lying to yourself.</li>
<li>write everything, even that marijuana you smoked in high school but your parents don&#8217;t know about it</li>
<li>write everyday, only writing everyday will you be able to truly track your thoughts later down the road when you look back.</li>
</ul>
<p>Well, that&#8217;s what blogging really is about, just writing a freakin&#8217; diary for godsakes!</p>
<p>Of course, you might want to also setup a private, personal blog for stuff you don&#8217;t want to say in public.  Thinking of which, I actually have a diary that I wrote when I was 9 years old on my old ass computer.  Maybe I will get that out somewhere, might be an interesting read indeed.</p>
<p>Why am I a blogger?</p>
<p>My dad has been using a diary for most of his life, he has like 30 years worth of his life&#8217;s journeys, all written into physical diaries.  My dad even bought me a diary book every couple years, this 3-inch thick book, and literally forced me to write my thoughts ever since I could write. (I think seven)</p>
<p>I still have those diaries and they are indeed very funny and interesting to read over after 20+ years.</p>
<p>Perhaps that is where my real blogging passion started, when my dad forced me to write my personal thoughts into my diary.</p>
<p>I even used to call my diary a name.  Every diary post began with, &#8220;Dear Odie,&#8221; because my favorite cartoon was Garfield and my favorite character was the dog Odie.</p>
<p>Anyways, that&#8217;s what blogging is, an online version of what you would write in your diary.  No one else is supposed to look at it but&#8230; oh well, I guess it makes money when it&#8217;s public!   Haha, joking but you know the funniest story is?</p>
<p>All of my family members have a diary (that my dad bought for each of us) and we have all &#8220;secretly&#8221; read each others secrets in the diaries.  And now, we really have no more secrets with each other and we simply laughed about it the other day when I confessed to my sister that I&#8217;ve been reading her diary all along while my mom has been doing my dad&#8217;s.</p>
<p>Blogging, I guess it&#8217;s been a family tradition while I never realized it.  Keep a journal of everything you do and WHY?</p>
<p>Someday your kids will thank you for that and they will learn exactly how you &#8220;thought&#8221;.</p>
<p>How cool is that?</p>
<p>So, I want you to start writing an online diary (or blog), if you haven&#8217;t started yet.</p>
<p>Anyone can do it, and of course money can also come in the process I guess.</p>
<p>Happy bloggin&#8217;</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/what-is-blogging-why-do-people-blog-everything/" >What is Blogging?  Why do People Blog EVERYTHING?</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/blog/" title="blog" rel="tag">blog</a>, <a href="http://zedomax.biz/blog/category/blog-training/" title="Blog Training" rel="tag">Blog Training</a>, <a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/everything/" title="everything" rel="tag">everything</a>, <a href="http://zedomax.biz/blog/tag/people/" title="people" rel="tag">people</a>, <a href="http://zedomax.biz/blog/tag/what-is-blogging/" title="what is blogging" rel="tag">what is blogging</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/zedomax-blog-internet-marketing-101-e-book/" title="Zedomax Blog Internet Marketing 101 E-Book! (October 22, 2008)">Zedomax Blog Internet Marketing 101 E-Book!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/why-blogs-are-so-powerful-in-3-minutes/" title="Why Blogs are So Powerful in 3 Minutes! (December 13, 2008)">Why Blogs are So Powerful in 3 Minutes!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/where-is-the-best-adsense-placement/" title="Where is the Best Adsense Placement? (July 6, 2008)">Where is the Best Adsense Placement?</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/what-really-is-web-20-seo/" title="What Really is Web 2.0+ SEO? (December 4, 2008)">What Really is Web 2.0+ SEO?</a> </li>
	<li><a href="http://zedomax.biz/blog/webmaster-hack/webmaster-hack-how-to-make-friendly-urls/" title="Webmaster Hack &#8211; How to Make Friendly URLs! (October 2, 2008)">Webmaster Hack &#8211; How to Make Friendly URLs!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=dpGEStkqVWA:rHTGxLDzkxM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=dpGEStkqVWA:rHTGxLDzkxM:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=dpGEStkqVWA:rHTGxLDzkxM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=dpGEStkqVWA:rHTGxLDzkxM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=dpGEStkqVWA:rHTGxLDzkxM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=dpGEStkqVWA:rHTGxLDzkxM:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/what-is-blogging-why-do-people-blog-everything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crap, I changed my Blog Title!</title>
		<link>http://zedomax.biz/blog/blogging/crap-i-changed-my-blog-title/</link>
		<comments>http://zedomax.biz/blog/blogging/crap-i-changed-my-blog-title/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 07:09:03 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[crap]]></category>
		<category><![CDATA[i changed]]></category>
		<category><![CDATA[my blog title]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1048</guid>
		<description><![CDATA[Well, it&#8217;s like I made this blog about internet marketing and seems to go nowhere.  All the time, I am either writing inspirational blog posts or complaining about a company.
So, I figured out a better title for my blog, it&#8217;s now officially, &#8220;Changing the World, One Blog Post at a Time&#8221;.
You might have noticed I [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it&#8217;s like I made this blog about internet marketing and seems to go nowhere.  All the time, I am either writing inspirational blog posts or complaining about a company.</p>
<p>So, I figured out a better title for my blog, it&#8217;s now officially, &#8220;Changing the World, One Blog Post at a Time&#8221;.</p>
<p>You might have noticed I actually did help change the world for the better by writing about <a href="http://zedomax.biz/blog/personal/beware-of-chinese-domain-spammers/" >Chinese domain spammers</a> or even those <a href="http://zedomax.biz/blog/shitlist/business-filings-division-fraud-alert/" >Business Filings scammers.</a></p>
<p>Or, you might even be interested in my inspirational posts like <a href="http://zedomax.biz/blog/make-money-online/dont-be-afraid-to-fail/" >&#8220;Don&#8217;t be afraid to Fail&#8221;</a>.</p>
<p>Whatever the case, every blog post I now write seems to be super-positive or super-negative.  That is really my life, either I am very happy or very upset at any given point in time.  I am usually very happy though, I can&#8217;t be thankful enough to God for doing what I am doing for a living, blogging/creating websites for a living.</p>
<p>Anyways, I am gonna really try to focus more on more inspirational blog posts from now on and of course, anything  that I can do to &#8220;change the world&#8221; with each blog post.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/crap-i-changed-my-blog-title/" >Crap, I changed my Blog Title!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/crap/" title="crap" rel="tag">crap</a>, <a href="http://zedomax.biz/blog/tag/i-changed/" title="i changed" rel="tag">i changed</a>, <a href="http://zedomax.biz/blog/tag/my-blog-title/" title="my blog title" rel="tag">my blog title</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/blogging/what-really-is-web-20-seo/" title="What Really is Web 2.0+ SEO? (December 4, 2008)">What Really is Web 2.0+ SEO?</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/quick-post-shut-all-that-crap-out-and-make-money-online/" title="Quick Post &#8211; Shut All that Crap Out and Make Money Online! (May 29, 2008)">Quick Post &#8211; Shut All that Crap Out and Make Money Online!</a> </li>
	<li><a href="http://zedomax.biz/blog/jobs/post-your-job-at-ipsojobs/" title="Post your job at IPSOJOBS! (December 9, 2007)">Post your job at IPSOJOBS!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/my-problogger-daily-schedule/" title="My Problogger Daily Schedule (February 23, 2009)">My Problogger Daily Schedule</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=VTKvo6UFg2c:i3NFRJeIKiA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=VTKvo6UFg2c:i3NFRJeIKiA:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=VTKvo6UFg2c:i3NFRJeIKiA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=VTKvo6UFg2c:i3NFRJeIKiA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=VTKvo6UFg2c:i3NFRJeIKiA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=VTKvo6UFg2c:i3NFRJeIKiA:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/crap-i-changed-my-blog-title/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chitika CPC Sabotage – WHY I Stopped using Chitika!</title>
		<link>http://zedomax.biz/blog/make-money-online/chitika-cpc-sabotage-why-i-stopped-using-chitika/</link>
		<comments>http://zedomax.biz/blog/make-money-online/chitika-cpc-sabotage-why-i-stopped-using-chitika/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 03:54:21 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Advertisements]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Chitika]]></category>
		<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[cpc sabotage]]></category>
		<category><![CDATA[why i stopped]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1039</guid>
		<description><![CDATA[Chitika has been one of my favorite ad platforms to make money with my blogs.  Recently, I&#8217;ve realized that using both Adsense and Chitika on the same site/blog can be bad for your online revenues, and possibly sabotage your Adsense revenues.
Why?
The main problem lies in Chitika&#8217;s revenue share along with publishers.  If you just have [...]]]></description>
			<content:encoded><![CDATA[<p>Chitika has been one of my favorite ad platforms to make money with my blogs.  Recently, I&#8217;ve realized that using both Adsense and Chitika on the same site/blog can be bad for your online revenues, and possibly sabotage your Adsense revenues.</p>
<h2>Why?</h2>
<p>The main problem lies in Chitika&#8217;s revenue share along with publishers.  If you just have one website and you already get a good CPC/eCPM with Chitika, that&#8217;s fine but for me, I need a different CPC/eCPM for every blog I run since I manage about 30 different blogs and <strong>CPC/eCPM tend to vary <em>a lot</em> depending on the niche/topic of the blog.</strong></p>
<p>I have e-mailed Chitika team countless times (since last year) asking them to explain to me why I am getting the exact same CPC on every one of my blogs regardless of the niche.</p>
<p>At best, my CPC will vary between 1-3 cents, which is like saying they are the same or <strong>fixed CPC</strong>.</p>
<p>I usually get a response that they will take a look at it next week or next month.  I figure that either they have a bigger fish to fry or <strong><em>this is probably why they are making money.</em></strong></p>
<p>Don&#8217;t get me wrong, <a href="http://zedomax.biz/blog/make-money-online/how-to-optimize-chitika-premium-ads/" >I was one of the first to promote Chitika</a> when it was starting out but sometimes I need to set the facts right and the only way I can do that is by <em>blogging it about it when I can&#8217;t get a clear human response.</em></p>
<p>So, let me tell you an example why I am <em><strong>PEEVED</strong></em>.  For example, average CPC for Adsense on one of my better blogs is near 1 dollar while the CPC on Adsense for one of my shittier blogs is around 20 cents.</p>
<p>According to that, I should be getting something between 10 cents and something 5 times more around 50 cents on Chitika (if my shittier blog was getting about 20 cents on Adsense).  Even then, advertisers should have a good enough reason to keep using Chitika instead of Adsense to promote their products/services since <strong>CPC is cheaper on Chitika.</strong></p>
<p>But no, Chitika gives me almost the exact same CPC for every blog that I have, that is <strong>around 12 cents on a really good niche and 8 cents on a crappy niche  while Adsense can vary from a dollar to 20 cents. </strong>That&#8217;s about 2-10 times difference and that works out to be a lot of money in the course of a year.</p>
<p>It would be wise for me to just put my shittier blogs on Chitika but I like Chitika, I want to put more of their ads on my premium sites.</p>
<h2>So WHY IS THIS SO IMPORTANT?</h2>
<p>Because if your CPC on Chitika is let&#8217;s say 5 times lower than on Adsense, it gives &#8220;incentives&#8221; for advertisers to advertise more on Chitika for the same website/blog.  In return, <strong>this &#8220;sabotages&#8221; your own Adsense earnings because advertisers are now bidding for the same keywords on Chitika instead of Adsense for 5 times less.</strong> Of course, depending on the placement of your Adsense and Chitika, it can vary but because Chitika gets a higher CTR (shown only on search traffic), it might make sense for advertisers to advertise the same product/services on Chitika instead of Adsense if there were two options.  <strong>Chitika ads target search traffic and U.S. traffic, which is where you get paid most on Adsense anyways.</strong></p>
<p>I&#8217;ve actually done some testing and in about a month, I&#8217;ve lost about 20 to 30% of my Adsense revenues by having Chitika units along with Adsense units.  <strong>Of course, this is only true if you place Chitika units in premium locations such as near the Adsense unit.</strong> If Chitika ads are already somewhere in the way-bottom of your website where no one sees/clicks, you probably are not sabotaging your Adsense revenues.</p>
<h2>Stop the Adsense Sabotage!</h2>
<p>To test it out, I did stop using Chitika on most of my blog for couple months on my premium blogs for a period of a month or so from December 2009 to January 2010.</p>
<p>The results were rather fantastic as my Adsense earning rose by more than 20-30%.  <strong>I had the best Adsense earnings of my lifetime. </strong>The revenue I gained during this time on Adsense proved to be much more than revenue I would have earned if I used Adsense along with Chitika because Adsense pays you much more to begin with.</p>
<h2>What can Chitika do now?</h2>
<p>Chitika needs to be more open about how they do business, <em><strong>be more transparent. </strong></em> What us bloggers need to know is how exactly CPC is decided on Chitika and what kind of revenue share is offered.</p>
<p><strong>And if revenue share is offered, publishers need to be paid the same percentage, not a flat CPC.</strong></p>
<p>I know some top bloggers are using Chitika probably because they got a great revenue share but medium-to-small publishers like me can be &#8220;had&#8221; by being offered only a flat CPC that never changes.  (Yes, it&#8217;s like you work so much harder and paid the same, like a communist country or you are a slave/dumbass.)</p>
<p>Every time I asked Chitika to raise my CPC for my niche blogs that <strong>I know for a fact that make more money per click</strong>, every time they have either delayed (it&#8217;s been almost a year since I started asking them) the response OR ignored my e-mails.  (I have e-mails to prove it.)</p>
<h3><strong>When it comes to sensitive issues like me getting paid every month, things need to get resolved within days, not when-never.</strong></h3>
<h3>So I am blogging it.</h3>
<h2>The Economics of Online Marketing</h2>
<p><strong>If you are already getting crappy numbers for your Adsense CPC/eCPM, you are probably not going to benefit from this blog post</strong>, perhaps work on getting more web traffic.  But for those of you experiencing the same thing as I am, you need to be aware that <em><strong>simple economics of the online advertising marketing says you will be sabotaging your own Adsense earning in the long run by using Chitika with it.</strong></em></p>
<p>PPC companies like <a target="_blank" href="http://www.yodle.com/" >Yodle</a>, have an automated bidding system for all types of PPC program such as Google Adsense, Yahoo Publisher, MSN, etc&#8230; etc&#8230;   This means that if their automated bidding system finds a cheaper CPC for the same site/keyword, it&#8217;s going to bid there, not at your high-paying PPC programs.</p>
<p>I am sure there&#8217;s many other similar systems out there and if they are out there, you could be sabotaging your own Adsense revenues by adding Chitika or any other lower-paying ad networks.</p>
<h2>Simple Math</h2>
<p>Let&#8217;s say you offer the same hotdog at Wal-mart(e.g. Adsense) for $5 and at Target(e. g. Chitika) for $1, where will you buy your hotdog?</p>
<p>Same analogy here, either you need to negotiate a really good revenue-share (CPC) with Chitika or you might be sabotaging your own Adsense ads.  If you can make up enough clicks with Chitika and get a good CPC from them, you might be better off Chitika.  This is true of my shittier blogs while it&#8217;s the opposite for most of my premium blogs.</p>
<p>The only way Chitika will come out of this is to offer publishers &#8220;fair/better share&#8221; of their CPC rates.  The greatest part about Google Adsense program is that it&#8217;s automatic, publisher can get paid anywhere from 10 cents to even 5 dollars per click, depending on the bidders and the market.  <em><strong>Publishers are paid fairly for the niche on Adsense while on Chitika, they seem to be human-controlled, resulting in a flat/fixed CPC, not reflective of the actual bidding market.<br />
</strong></em></p>
<p>As far as I can tell, every publisher on Chitika is getting paid a flat fee of 9 to 12 cents regardless of how much they are selling those clicks for to advertisers.  <em><strong>That &#8220;flat fee&#8221; revenue sharing model is where the problem lies.</strong></em> Publishers can be driving a ton of more quality keywords/traffic and still get the same CPC.</p>
<p>Hey, if Chitika is indeed selling those clicks for super low prices, <strong>they can make more money by raising CPC of high-paying niches accordingly and also make more money for  the publishers in the process.  It&#8217;s a win-win situation.<br />
</strong></p>
<p>Perhaps Chitika&#8217;s system isn&#8217;t set to do that right now and if it&#8217;s not, I am highly disappointed because all the years I&#8217;ve been using Chitika (almost 3 years), <em><strong>I have been losing thousands of dollars through CPC sabotage.</strong></em></p>
<p>Chitika has been always been one of my favorite companies but if they can&#8217;t fix this problem , I don&#8217;t see how they can grow further.</p>
<p>Of course, it could also be that Chitika is already charging more for high-paying keywords (I don&#8217;t know because I&#8217;ve actually never advertised on Chitika) and taking most of the revenue share.  And that, my friend, <em><strong>could be why I am not going to use Chitika on my blogs anymore because Chitika is taking all the money while publishers do all the work.<br />
</strong></em></p>
<p>For a company to succeed in the long run, they need to realize that their customers are smart and they need to treat each one as one of their best customers.  Chitika has been awfully great on new innovations such as customization of ads but the response for my CPC questions have been <em><strong>very deceptive.</strong></em></p>
<h2>But is this a deceptive practice?</h2>
<p>Well, it kinda is because I&#8217;ve asked Chitika reps many times to clarify me on the topic but no one answers.  My honest wish is to keep using Chitika and that Chitika treats their publishers fair and square, <em><strong>answer their questions promptly and honestly, just like how your mother treats you.</strong></em></p>
<p><strong>Chitika need to be transparent about how they do business</strong>, especially when it comes to money.  Google might not be so transparent about how much revenue share they offer to their publishers but they are transparent about the fact that different keyword niches will pay lower or higher, and that isn&#8217;t 1 or 2 cents difference.  <em><strong>You can see it on your Adsense dashboard in real-time.</strong></em></p>
<h2><a href="http://zedomax.biz/blog/blogging/blogging-is-about-dedication-and-passion/" >I work very hard for my money.</a></h2>
<p>I am sure many of you bloggers/website publishers work very very hard for your money.  <strong>The reason I write this blog post is to let you know that your hard-worked money is well-earned and there should be no one in-between to sabotage your efforts.</strong></p>
<p><em><strong>The simple math of demand and supply I outlined in this blog post clearly says adding Chitika ads along with your Adsense ads will &#8220;sabotage&#8221; your Adsense earnings. </strong></em> It took me actually almost 3 years to realize this, <em>I feel stupid.</em></p>
<p>I really hope Chitika team will look into this major problem of fixed CPCs and get their system straight.  Otherwise, I will be removing them from the rest of my shittier blogs too.  No hard feelings.</p>
<p><em><strong>Don&#8217;t e-mail/call me again until you have fixed the problem, I know last time I got a call because I was testing this.</strong></em></p>
<p>I just want you to know if you are one of those people and you are using Chitika along with Adsense, test out my theory and let me know what happened. (in the comments or at zedomax [at] gmail.com)  If your revenue stays the same I guess that&#8217;s fine but if it rises a lot, you know where to send Christmas presents to.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/make-money-online/chitika-cpc-sabotage-why-i-stopped-using-chitika/" >Chitika CPC Sabotage &#8211; WHY I Stopped using Chitika!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/adsense/" title="AdSense" rel="tag">AdSense</a>, <a href="http://zedomax.biz/blog/category/advertisements/" title="Advertisements" rel="tag">Advertisements</a>, <a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/category/chitika/" title="Chitika" rel="tag">Chitika</a>, <a href="http://zedomax.biz/blog/tag/chitika/" title="Chitika" rel="tag">Chitika</a>, <a href="http://zedomax.biz/blog/tag/cpc-sabotage/" title="cpc sabotage" rel="tag">cpc sabotage</a>, <a href="http://zedomax.biz/blog/category/make-money-online/" title="Make Money Online" rel="tag">Make Money Online</a>, <a href="http://zedomax.biz/blog/tag/why-i-stopped/" title="why i stopped" rel="tag">why i stopped</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/new-adsense-and-chitika-optimization-heat-map-version-2/" title="New Adsense and Chitika Optimization Heat Map Version 2! (November 29, 2008)">New Adsense and Chitika Optimization Heat Map Version 2!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/netklix-needs-better-ads/" title="NetKlix Needs Better Ads&#8230; (December 20, 2008)">NetKlix Needs Better Ads&#8230;</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-optimize-chitika-premium-ads/" title="How to Optimize Chitika Premium Ads! (August 18, 2008)">How to Optimize Chitika Premium Ads!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-increase-chitika-premium-revenue-by-30/" title="How to Increase Chitika Premium Revenue by 30%! (December 10, 2008)">How to Increase Chitika Premium Revenue by 30%!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-calculate-your-earnings/" title="How to Calculate Your Earnings! (February 25, 2009)">How to Calculate Your Earnings!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=ZWIPhQrykI8:JHG-1kcIU4E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=ZWIPhQrykI8:JHG-1kcIU4E:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=ZWIPhQrykI8:JHG-1kcIU4E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=ZWIPhQrykI8:JHG-1kcIU4E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=ZWIPhQrykI8:JHG-1kcIU4E:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=ZWIPhQrykI8:JHG-1kcIU4E:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/make-money-online/chitika-cpc-sabotage-why-i-stopped-using-chitika/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Target Your Niche Market on Twitter!</title>
		<link>http://zedomax.biz/blog/marketing/how-to-target-your-niche-market-on-twitter/</link>
		<comments>http://zedomax.biz/blog/marketing/how-to-target-your-niche-market-on-twitter/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 22:19:48 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[target]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1035</guid>
		<description><![CDATA[
Twitter can be a great way to increase your online exposure, especially due to its rising popularity among the celebrities and masses.  In year 2015, Twitter might be used more often than e-mail.
I am sure a lot of you have questions on how to use Twitter to promote your business or even what the hell [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/img/aHR0cDovL2pvc2h3aGl0Zm9yZC5jb20vd29yZHByZXNzL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDEwLzAyL3R3aXRsaXN0bWVkaXVtLmdpZg==" alt="How to Target Your Niche Market on Twitter!" /></p>
<p>Twitter can be a great way to increase your online exposure, especially due to its rising popularity among the celebrities and masses.  In year 2015, <a href="http://zedomax.biz/blog/twitter/how-twitter-will-replace-e-mail-in-year-2015/" >Twitter might be used more often than e-mail.</a></p>
<p>I am sure a lot of you have questions on how to use Twitter to promote your business or even what the hell is Twitter?</p>
<p>Twitter is simply form of online conversations.   To do well on Twitter, you simply need to be yourself and &#8220;engage&#8221; yourself in the real-time conversation.</p>
<p>When you first join Twitter, you probably have no idea what to do next.</p>
<p>Well, here&#8217;s a great way, you can use TwitLi.st to find people with similar interests as you do.</p>
<p>Whether you are looking for <a target="_blank" href="http://entrepreneurs.twitli.st/" >entrepreneurs Twitter List</a>, <a target="_blank" href="http://handbags.twitli.st/" >people interested in handbags</a>, or even your fellow <a target="_blank" href="http://pinoys.twitli.st/" >pinoys on Twitter</a>, Twitli.st is a great place to start.</p>
<p>Do you already have/found good Twitter list?  Get free exposure and recommend them here at <a target="_blank" href="http://twitli.st/" >TwitLi.st</a>.</p>
<p>Here&#8217;s a word of <a target="_blank" href="http://www.joshwhitford.com/2010/02/12/how-to-find-targeted-twitter-users-for-your-business/" >advice from my friend Josh</a>:</p>
<blockquote><p>Well looks like Twitter is here to stay and continues to grow albeit a little slower now than shooting straight to the moon. One of my biggest grips with the whole Twitter community is trying to find people you actually want to follow. If I were a hotel I’d want to follow travelers and other hoteliers before I follow news accounts, ya know what I mean? You can do all of the searching you want and really all you find is a bunch of user generated lists on blogs that have links to perhaps 50 of the top whatever according to them.</p></blockquote>
<p>So, start twittering.  If you are already, you should follow some more people with interests similar to your target niche.</p>
<p>Also, if you are a blogger, <a target="_blank" href="http://zedomax.com/blog/2010/02/10/twitter-diy-how-to-set-up-your-twitter-social-media-marketing/" >see this post on how to setup your Twitter social media marketing for blogs.</a></p>
<p><strong>Disclosure: I am founder of TwitLi.st.</strong></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/marketing/how-to-target-your-niche-market-on-twitter/" >How to Target Your Niche Market on Twitter!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/business/" title="business" rel="tag">business</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/category/marketing/" title="marketing" rel="tag">marketing</a>, <a href="http://zedomax.biz/blog/tag/target/" title="target" rel="tag">target</a>, <a href="http://zedomax.biz/blog/category/twitter/" title="Twitter" rel="tag">Twitter</a>, <a href="http://zedomax.biz/blog/tag/twitter/" title="Twitter" rel="tag">Twitter</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/twitter/twitter-diy-how-to-use-twitter-more-effectively/" title="Twitter DIY &#8211; How to Use Twitter More Effectively! (September 28, 2009)">Twitter DIY &#8211; How to Use Twitter More Effectively!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" title="Radical Business &#8211; How to Burn Bridges in Business! (October 19, 2009)">Radical Business &#8211; How to Burn Bridges in Business!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-go-all-in-in-your-life-and-business-to-succeed/" title="How to go ALL IN in your Life and Business to Succeed! (October 14, 2009)">How to go ALL IN in your Life and Business to Succeed!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/how-to-build-a-rhythm-and-consistency-in-your-life-and-business/" title="How to Build a Rhythm and Consistency in Your Life and Business! (October 20, 2009)">How to Build a Rhythm and Consistency in Your Life and Business!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=JcnAKskOkwM:lGPfWDl5gVk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=JcnAKskOkwM:lGPfWDl5gVk:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=JcnAKskOkwM:lGPfWDl5gVk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=JcnAKskOkwM:lGPfWDl5gVk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=JcnAKskOkwM:lGPfWDl5gVk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=JcnAKskOkwM:lGPfWDl5gVk:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/marketing/how-to-target-your-niche-market-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don’t Buy Fruit, Vegetables, and Raw Meat From Trader Joe’s!</title>
		<link>http://zedomax.biz/blog/personal/dont-buy-fruit-vegetables-and-raw-meat-from-trader-joes/</link>
		<comments>http://zedomax.biz/blog/personal/dont-buy-fruit-vegetables-and-raw-meat-from-trader-joes/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 07:27:50 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[ShitList]]></category>
		<category><![CDATA[don't buy]]></category>
		<category><![CDATA[fruit]]></category>
		<category><![CDATA[raw meat]]></category>
		<category><![CDATA[trader joe's]]></category>
		<category><![CDATA[vegetables]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1033</guid>
		<description><![CDATA[One of my favorite places to shop for groceries is Trader Joe&#8217;s.  There&#8217;s 2 of them within 5 minutes from my apartment here in San Francisco.
Most of the stuff at Trader Joe&#8217;s is pretty good except I had couple horrifying experiences in the last 3 months or so.
Tonight, I bought one of their &#8220;cooked&#8221; meat, [...]]]></description>
			<content:encoded><![CDATA[<p>One of my favorite places to shop for groceries is Trader Joe&#8217;s.  There&#8217;s 2 of them within 5 minutes from my apartment here in San Francisco.</p>
<p>Most of the stuff at Trader Joe&#8217;s is pretty good except I had couple horrifying experiences in the last 3 months or so.</p>
<p>Tonight, I bought one of their &#8220;cooked&#8221; meat, which you can warm up in your oven or microwave.  Without much thought, I cut up the pouch it was in so I could cook it in my oven.  Well, it wasn&#8217;t &#8220;cooked&#8221; at all!  Worst of all, the meat smelled like someone just puked!  It was this disgusting, putrid smell.</p>
<p>I thought that could just be the seasoning and went ahead and cooked it in my oven.  Oh my god, that was the worst ever, it stunk up my whole apartment like someone just puked everywhere.</p>
<p>I even took a bite of the steak, it tasted like some kind of rubber.  Of course, that&#8217;s when I realized this meat must be bad and good thing I didn&#8217;t swallow the meat, it probably was full of worms.</p>
<p>If this was the first time such a thing happen to me, I wouldn&#8217;t be writing this blog post now.  As a consumer who expects a certain degree of freshness from Trader Joe&#8217;s (and especially they are supposed to be about healthier foods than your regular grocers), this was the last time I was ever going to buy anything near raw from Trader Joe&#8217;s.</p>
<p>Don&#8217;t get me wrong, Trader Joe has a ton of great stuff that don&#8217;t go bad over time such as cheap wine and frozen salmon, both which I love.  Something has gone downhill at Trader Joe&#8217;s as far as freshness, I&#8217;ve been noticing that they put a lot of &#8220;old&#8221; fruits and vegetables.</p>
<p>This isn&#8217;t the first time it has happened, let me tell you what happened 2 months ago.  I bought some blackberries from Trader Joe&#8217;s.  I was about to swallow one of them when I got back home but at the last second I noticed something very white around it.   Upon careful inspection, it was MOLD!  I kinda let it go because I am not one of those people who will go back to the store to get my refund.  If it&#8217;s bad, it&#8217;s going in the garbage.</p>
<p>Of course, these two incidents could have been one in a million but I am pretty sure it has been happening to a lot of you.  Never in my life did I buy two really bad fruit/meat from the same store.</p>
<p>The store that happened to me is the San Francisco Stonestown location.  Every time I go since then, I&#8217;ve been trying to check the expiration date of everything I buy.  I&#8217;ve also noticed that the Trader Joe employees &#8220;hide&#8221; the most fresh fruits in the back.   And I&#8217;ve noticed a lot of fruits and vegetables are at least 2-3 days old.</p>
<p>For some fruits like apples and oranges, 2-3 days probably won&#8217;t matter but things like strawberries or any kind of berries, I think it can make a huge difference.</p>
<p>Who cares about money at this point, this is about my health and my life for godsakes!</p>
<p>So I am warning you to NOT BUY fruits/vegetables or any kind of raw meat from Trader Joe&#8217;s until they can start doing something about it.</p>
<p>Think about it, if I had poisoning from eating those things and I had to go to the emergency room, that&#8217;s a lot more money down the drain plus I would probably living on Vicodin for couple days.</p>
<p>No thanks.   Perhaps it&#8217;s just my SF Stonestown location that&#8217;s bad but seriously, Trader Joe needs to do something about it.</p>
<p>Also take a look at some of these <a target="_blank" href="http://www.yelp.com/topic/washington-trader-joes-rotting-fruit" >Yelp review that reports rotten fruit over in Washington D.C.</a>:</p>
<blockquote><p>What is up with the rotting fruit at Trader Joe&#8217;s? It seems like most of the fruit is rotting within a day of purchase, and sometimes it is even rotting in the store. On top of that you pay extra, since it is organic. Organic does not mean it should be rotting quickly, in fact Whole Foods&#8217; organic fruit keeps quite long.  People have been telling me that Trader Joe&#8217;s is good for Wine and Flowers, how about some freakin groceries, that&#8217;s what I need.</p></blockquote>
<p>Obviously this is happening nationwide, perhaps Trader Joe&#8217;s management team decided they would make more money by keeping fruits, vegetables, and meat 1-2 days longer than they should.</p>
<p>Seriously, I am not asking much here, STOP SELLING ROTTEN FOOD!  And FDA should really look into this if Trader Joe doesn&#8217;t do anything about it.</p>
<p>Next time you get food poisoning and you ate food you bought from Trader Joe&#8217;s,uh oh&#8230;</p>
<p>Btw, I will still go to Trader Joe&#8217;s because they have mini-carts for toddlers and toddler play area.  I just won&#8217;t be buying any fruits, vegetables, or raw meat.</p>
<p>Oh yeah, I won&#8217;t be returning my meat because it STINKS!  You can however send me $12 that I spent on the expensive, &#8220;cooked&#8221; meat if you&#8217;d like.  (Oh yeah, don&#8217;t forget $4 I paid for rotten berries couple months back too.)</p>
<p>Well, it&#8217;s not money that&#8217;s important here but still, I spent money and it went all into my stinkin&#8217; trash can.  The worst part is that if I did get sick from eating those rotten stuff, I probably wouldn&#8217;t have known it came from Trader Joe&#8217;s.  Thank GOD!</p>
<p>Am I whining here?  You betcha I am.  If someone doesn&#8217;t stop complaining about things, the world will never change.  Subscribe to my blog so you can listen to all my &#8220;personal&#8221; experiences with consumer products and other business/blogging stuff I talk about.  It&#8217;s mostly positive and some posts like this when it hits me hard.</p>
<p>I am just really stinkin&#8217; tired of companies gone bad such as Trader Joe&#8217;s.  As a consumer, this isn&#8217;t acceptable.  However, if they DO SOMETHING ABOUT IT, like YESTERDAY, I will be happy to write about that too. <img src='http://zedomax.biz/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Disclosure: I don&#8217;t get paid to complain nor do I hate companies, I just want to make this world a better place for everyone else.</strong></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/personal/dont-buy-fruit-vegetables-and-raw-meat-from-trader-joes/" >Don&#8217;t Buy Fruit, Vegetables, and Raw Meat From Trader Joe&#8217;s!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/dont-buy/" title="don&#039;t buy" rel="tag">don&#039;t buy</a>, <a href="http://zedomax.biz/blog/tag/fruit/" title="fruit" rel="tag">fruit</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a>, <a href="http://zedomax.biz/blog/tag/raw-meat/" title="raw meat" rel="tag">raw meat</a>, <a href="http://zedomax.biz/blog/category/shitlist/" title="ShitList" rel="tag">ShitList</a>, <a href="http://zedomax.biz/blog/tag/trader-joes/" title="trader joe&#039;s" rel="tag">trader joe&#039;s</a>, <a href="http://zedomax.biz/blog/tag/vegetables/" title="vegetables" rel="tag">vegetables</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/blogging/be-healthy-be-relaxed-and-enjoy-life/" title="Be Healthy, Be Relaxed, and Enjoy Life! (August 31, 2009)">Be Healthy, Be Relaxed, and Enjoy Life!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=Fef9fgQ7Z_U:FE5nFIqKsfc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=Fef9fgQ7Z_U:FE5nFIqKsfc:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=Fef9fgQ7Z_U:FE5nFIqKsfc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=Fef9fgQ7Z_U:FE5nFIqKsfc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=Fef9fgQ7Z_U:FE5nFIqKsfc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=Fef9fgQ7Z_U:FE5nFIqKsfc:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/personal/dont-buy-fruit-vegetables-and-raw-meat-from-trader-joes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Power of “Will”!</title>
		<link>http://zedomax.biz/blog/inspirational/the-power-of-will/</link>
		<comments>http://zedomax.biz/blog/inspirational/the-power-of-will/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 20:37:15 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[power of will]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1030</guid>
		<description><![CDATA[One of the things that helped me breakthrough and make a living as an online entrepreneur in the past was learning the power of &#8220;will&#8221;.
I might not be making millions yet but I think there was a point in my life where I broke through.  Actually, I was literally &#8220;broke&#8221; and had nowhere else [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things that helped me breakthrough and make a living as an online entrepreneur in the past was learning the power of &#8220;will&#8221;.<br />
I might not be making millions yet but I think there was a point in my life where I broke through.  Actually, I was literally &#8220;broke&#8221; and had nowhere else to go but to the very bottom, that bottom at the bottom of a bottomless pit.<br />
I stressed so much, I drank myself almost to death so I didn&#8217;t have to think about my financial worries.</p>
<p>But one of the truly amazing moments came out of that survival stage.  That is, that I survived it and did better than anyone expected me to.  Everyone around me thought I would eventually &#8220;get a job&#8221; and move along with my life.  I just couldn&#8217;t face the horrors of 9-5 work again, thought of being in &#8220;legal slavery&#8221; under some bs corporation rules just would kill me the rest of my life.</p>
<p>With everything going completely &#8220;wrong&#8221; in my life, my will to survive (and survive on my blogging business) became stronger than ever.</p>
<p>What I realize now after surviving the worst times in my life is that your &#8220;power of will&#8221; is probably the most important skill to learn, more than money.</p>
<p>I won&#8217;t make this blog post long, I am just saying, &#8220;the power of will&#8221; is something you should learn.</p>
<p>Here&#8217;s some exercises that can help you do that.</p>
<p>1. You need to put yourself in a position where you MUST do something in order to get out.  For example, you can take a bus ride to downtown with just enough money to get there but you need to find a way back somehow without using your wallet.  (Better yet, please leave your wallet at home for this exercise.)</p>
<p>2. Play golf, golf is a great sport that teaches you &#8220;power of will&#8221;.  Of course, you will need &#8220;power of will&#8221; and learn &#8220;visualization&#8221; before you start playing anywhere decent.  Play a lot of golf and it can really help your life.</p>
<p>Well, that&#8217;s it for today folks.  Remember, <em><strong>your power of will is stronger than anything money or muscles can buy/do.</strong></em></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/inspirational/the-power-of-will/" >The Power of &#8220;Will&#8221;!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a>, <a href="http://zedomax.biz/blog/tag/power-of-will/" title="power of will" rel="tag">power of will</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=DaVGbXvxSX4:P_gyjMtWAF8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=DaVGbXvxSX4:P_gyjMtWAF8:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=DaVGbXvxSX4:P_gyjMtWAF8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=DaVGbXvxSX4:P_gyjMtWAF8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=DaVGbXvxSX4:P_gyjMtWAF8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=DaVGbXvxSX4:P_gyjMtWAF8:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/inspirational/the-power-of-will/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bit of an Update…</title>
		<link>http://zedomax.biz/blog/personal/bit-of-an-update/</link>
		<comments>http://zedomax.biz/blog/personal/bit-of-an-update/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 07:32:04 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[bit]]></category>
		<category><![CDATA[of an update]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1027</guid>
		<description><![CDATA[Well, I&#8217;ve been chuggin&#8217; along for months now w/o updating this blog itself mostly because &#8220;I HAVE BEEN BUSY!&#8221;
I know, I know, I should be updating more often but sometimes, I do need to deeply focus on projects at hand.  Lately, I&#8217;ve been working on this HUGE Twitter app site.  I just have a feeling [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve been chuggin&#8217; along for months now w/o updating this blog itself mostly because &#8220;I HAVE BEEN BUSY!&#8221;</p>
<p>I know, I know, I should be updating more often but sometimes, I do need to deeply focus on projects at hand.  Lately, I&#8217;ve been working on this HUGE Twitter app site.  I just have a feeling deep down, THIS IS GOING TO BE HUGE!</p>
<p>Other than that, I&#8217;ve had the pleasure of meeting with founder of Wordpress, <a target="_blank" href="http://ma.tt/" >Matt Mullenweg</a>, over at San Francisco airport on the way to CES 2010.  I think that was probably meant to be because I sat down at a random table and looked over, there he was!  Anyways, CES 2010 was a lot of fun too, that kept me busy for about 2 weeks straight.  It was my first time at CES so, I tried to take in as much as I can but I&#8217;ve never seen so many people interested in gadgets in one place.  I will definitely be heading to Vegas every year from now on.</p>
<p>Well, anyways, it&#8217;s a funny story because when I started blogging back in Auguest 2006, I picked the best blogging software, Matt&#8217;s Wordpress.</p>
<p>One of the main reasons I picked Wordpress over other blogging softwares was because it was the only blogging platform with <a target="_blank" href="http://en.wikipedia.org/wiki/WYSIWYG" >WYSIWYG support</a>, which I like since I can &#8220;preview&#8221; my blog before posting.  Plus, Wordpress was easy to use and had a ton of plugins to support it, which I liked.</p>
<p>It turns out that was the right choice, I still use Wordpress now not because everyone else uses it, I&#8217;ve been using it since August 2006 because it was the &#8220;best&#8221; based on my testing.  Believe me, I tested all kinds of blogging platforms and Wordpress is the one I stuck with.</p>
<p>Now, everyone calls Wordpress the &#8220;best&#8221;, I just feel almighty and smart because I did that almost 4 years ago.</p>
<p>What&#8217;s up for next few years?  My just-turned-30 year old brain tells me Twitter is going to be HUMONGOUS with an &#8220;H&#8221; over the next few years, I think it might actually surpass Google (in terms of web traffic) in the next 5 years or so.  Mark my words, Google will always be Google and we will always google things but Twitter is going to become something else, it&#8217;s just getting started.</p>
<p>Back in 2006, I saw the same opportunities with blogging, I knew blogging would keep taking off until there&#8217;s a ton of bloggers making a living from it.  (which is today)</p>
<p>I really don&#8217;t like to think ahead because I like to live day by day (and simply be happy with my life), but in year 2014, Twitter should really be that thang you shoulda/coulda made millions on.</p>
<p>Well, that&#8217;s all folks, I gotta go finish up my Twitter app, my heads been full of PHP/AJAX code for last 2 weeks.  Honestly, I don&#8217;t know what hit me but when my site comes out, it will hit you hard. (I hope, crossing my hands)</p>
<p>C&#8217; ya and follow me on Twitter @zedomax!</p>
<p>P.S. And thanks Matt for your personal card, that&#8217;s the only card I &#8220;personally&#8221; carry now in my new Gucci wallet my parents bought me for my 30th b-day.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/personal/bit-of-an-update/" >Bit of an Update&#8230;</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/bit/" title="bit" rel="tag">bit</a>, <a href="http://zedomax.biz/blog/tag/of-an-update/" title="of an update" rel="tag">of an update</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=wQQ56BM2ir8:3X-lu0tmENA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=wQQ56BM2ir8:3X-lu0tmENA:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=wQQ56BM2ir8:3X-lu0tmENA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=wQQ56BM2ir8:3X-lu0tmENA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=wQQ56BM2ir8:3X-lu0tmENA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=wQQ56BM2ir8:3X-lu0tmENA:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/personal/bit-of-an-update/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Yodle Review!</title>
		<link>http://zedomax.biz/blog/marketing/yodle-review/</link>
		<comments>http://zedomax.biz/blog/marketing/yodle-review/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 21:53:09 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Outsource]]></category>
		<category><![CDATA[PPC]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[yodle]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1022</guid>
		<description><![CDATA[As promised, Yodle did give my plumber friend Josh 2 months free after the first month failed miserably.  It turns out that Yodle isn&#8217;t too bad at all if you keep working with them and keep trying.  In other words, you still need to keep working with Yodle to get results, you can&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>As promised, <a target="_blank" href="http://www.yodle.com" >Yodle</a> did give my plumber friend Josh 2 months free after the <a href="http://zedomax.biz/blog/make-money-online/yodle-ppc-campaign-review/" >first month failed miserably</a>.  It turns out that Yodle isn&#8217;t too bad at all if you keep working with them and keep trying.  In other words, <em><strong>you still need to keep working with Yodle to get results, you can&#8217;t just throw money at Yodle and expect it to work.</strong></em></p>
<p>In our first 30 days, that&#8217;s what we did, we just threw money at Yodle expecting to get lots of calls and e-mail leads.  On the 2 month free trial, my friend Josh worked directly with Yodle (instead of me being the middleman who works for free) and kept changing keywords until the calls started coming.  Josh and Yodle tried different things like targetting for cheaper keywords/jobs until a balance between revenue and clicks/leads were stable.  On our first month, we were only targeting the high-paying jobs, thus leading to fewer calls and no conversions.</p>
<p>For the 2 month trial, Josh <strong>averaged 185 clicks and more than 70 calls/emails per month</strong>, a lot better than what we experienced in the beginning 1 call and 2 e-mails.</p>
<p><em>What impressed me the most about Yodle isn&#8217;t their results</em> but they accepted my challenge and gave it their best.  <em><strong>I think that says a lot about their customer service. </strong></em></p>
<p>Another fact you might worry is that CPC (Cost Per Click) could be high with Yodle.  Well, that&#8217;s not something to worry about rather how many conversions you make regardless of how much you spend.</p>
<p>For Josh, he made an average of $4000 for $800/month advertising with Yodle,<strong> that&#8217;s about 500% ROI in our 2-month testing. </strong> Josh plans on keeping Yodle to keep his campaigns going now and Yodle has been making money for his plumbing business while Valley Yellow Pages have been taking his money and running. (and that, we might have to blog about soon, why you shouldn&#8217;t advertise with Yellow Pages because they are dead.  Seriously, when&#8217;s the last time you used YellowPages over Google?  Probably never.)</p>
<p>After all of that, I think it&#8217;s safe to say you can go with Yodle for PPC advertising. <strong> Just make sure you keep changing things if you don&#8217;t get calls/leads in the first week </strong>and work with your Yodle contact so your campaign doesn&#8217;t stay stale.  But once you got it set on getting a good number of calls and conversions,<em> I think you have an unlimited potential for growing your business.</em></p>
<p>Thanks again to Court Cunningham, the CEO of Yodle, Victor Dolavale, and Joel Laffer for making this happen, you guys rock! (and I didn&#8217;t lose my face)</p>
<p>Also, one more thing, <strong>make sure you tell <a target="_blank" href="http://www.yodle.com" >Yodle</a> &#8220;Max Lee&#8221; sent you</strong> and they will get your campaign right. <img src='http://zedomax.biz/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/marketing/yodle-review/" >Yodle Review!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/marketing/" title="marketing" rel="tag">marketing</a>, <a href="http://zedomax.biz/blog/category/outsource/" title="Outsource" rel="tag">Outsource</a>, <a href="http://zedomax.biz/blog/category/marketing/ppc-marketing/" title="PPC" rel="tag">PPC</a>, <a href="http://zedomax.biz/blog/tag/review/" title="review" rel="tag">review</a>, <a href="http://zedomax.biz/blog/tag/yodle/" title="yodle" rel="tag">yodle</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/yodle-ppc-campaign-review/" title="Yodle PPC Campaign Review! (September 11, 2009)">Yodle PPC Campaign Review!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=PsE0wYH7ZhI:hn40h9tGH1g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=PsE0wYH7ZhI:hn40h9tGH1g:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=PsE0wYH7ZhI:hn40h9tGH1g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=PsE0wYH7ZhI:hn40h9tGH1g:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=PsE0wYH7ZhI:hn40h9tGH1g:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=PsE0wYH7ZhI:hn40h9tGH1g:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/marketing/yodle-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Is Your Online Revenue Down Near Christmas/New Years?</title>
		<link>http://zedomax.biz/blog/make-money-online/is-your-online-revenue-down-near-christmasnew-years/</link>
		<comments>http://zedomax.biz/blog/make-money-online/is-your-online-revenue-down-near-christmasnew-years/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 22:14:45 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[down]]></category>
		<category><![CDATA[holidays]]></category>
		<category><![CDATA[new years]]></category>
		<category><![CDATA[online revenue]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1016</guid>
		<description><![CDATA[Is your online revenue down near the Christmas holidays?
If it is, there&#8217;s nothing to worry as it&#8217;s a &#8220;natural&#8221; result of the Christmas holidays.  A lot of people take long vacations and some companies shut down completely for 2 weeks near Christmas and the New Years.
Last year, I was a bit worried but noticed that [...]]]></description>
			<content:encoded><![CDATA[<p>Is your online revenue down near the Christmas holidays?</p>
<p>If it is, there&#8217;s nothing to worry as it&#8217;s a &#8220;natural&#8221; result of the Christmas holidays.  A lot of people take long vacations and some companies shut down completely for 2 weeks near Christmas and the New Years.</p>
<p>Last year, I was a bit worried but noticed that <a href="http://zedomax.biz/blog/adsense/christmas-adsense-update-less-people-searching/" >Google had a history of decline just near the end of every year</a>.</p>
<p>Especially, the days after Christmas and before the New Years where people will simply be enjoying the holidays more, spending less time online. (<a target="_blank" href="http://zedomax.net/2009/12/22/2009-christmas-online-revenue-up/" >Also take a look at this chart</a>)</p>
<p>So what?</p>
<p>Don&#8217;t fret, the holidays are really for you to enjoy, perhaps it&#8217;s time for you to take a good 2 week break off the computer.</p>
<p>Of course, revenue starts going up rapidly around January 2nd so that&#8217;s what you should be aiming for, a fresh, new start in 2010.</p>
<p>Anyways, I will probably not post anything for this blog itself as I too, have to go on a last-minute Christmas shopping spree.</p>
<p>Happy Holidays and Merry Christmas!</p>
<p>Of course, don&#8217;t forget to enjoy some <a target="_blank" href="http://zedomax.com/blog/2009/12/22/top-5-christmas-light-shows/" >Christmas Light Shows</a>!</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/make-money-online/is-your-online-revenue-down-near-christmasnew-years/" >Is Your Online Revenue Down Near Christmas/New Years?</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/christmas/" title="christmas" rel="tag">christmas</a>, <a href="http://zedomax.biz/blog/tag/down/" title="down" rel="tag">down</a>, <a href="http://zedomax.biz/blog/tag/holidays/" title="holidays" rel="tag">holidays</a>, <a href="http://zedomax.biz/blog/category/make-money-online/" title="Make Money Online" rel="tag">Make Money Online</a>, <a href="http://zedomax.biz/blog/tag/new-years/" title="new years" rel="tag">new years</a>, <a href="http://zedomax.biz/blog/tag/online-revenue/" title="online revenue" rel="tag">online revenue</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/i-made-a-coupon-search-engine-called-kouponboxcom/" title="I made a Coupon Search Engine called KouponBox.com (December 24, 2008)">I made a Coupon Search Engine called KouponBox.com</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-make-money-online-using-affiliate-programs-during-black-friday-and-holidays/" title="How to Make Money Online using Affiliate Programs During Black Friday and Holidays! (November 27, 2008)">How to Make Money Online using Affiliate Programs During Black Friday and Holidays!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/what-is-search/" title="What Is &#8220;Search&#8221;? (December 23, 2008)">What Is &#8220;Search&#8221;?</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=HDr_Kk4D2Lw:zbLTUNlh2jw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=HDr_Kk4D2Lw:zbLTUNlh2jw:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=HDr_Kk4D2Lw:zbLTUNlh2jw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=HDr_Kk4D2Lw:zbLTUNlh2jw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=HDr_Kk4D2Lw:zbLTUNlh2jw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=HDr_Kk4D2Lw:zbLTUNlh2jw:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/make-money-online/is-your-online-revenue-down-near-christmasnew-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stay On Schedule! [My Most Effective Schedule]</title>
		<link>http://zedomax.biz/blog/blogging/stay-on-schedule-my-most-effective-schedule/</link>
		<comments>http://zedomax.biz/blog/blogging/stay-on-schedule-my-most-effective-schedule/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 20:27:24 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blog Training]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[most effective schedule]]></category>
		<category><![CDATA[stay on schedule]]></category>
		<category><![CDATA[staying on schedule]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1013</guid>
		<description><![CDATA[As a person who has no one to report to and work at home most of the time (or at local cafes), staying on schedule is the single most important driving force behind &#8220;staying alive&#8221;.
I don&#8217;t know how I even started my work schedule but once I did, the more efficient I became while relaxing [...]]]></description>
			<content:encoded><![CDATA[<p>As a person who has no one to report to and work at home most of the time (or at local cafes), <em>staying on schedule is the single most important driving force behind &#8220;staying alive&#8221;.</em></p>
<p>I don&#8217;t know how I even started my work schedule but once I did, the more efficient I became while relaxing myself.  (meaning I got a lot of things done without stressing myself out)</p>
<h2>So, what is this schedule?</h2>
<p>Well, first of all, I make sure to take advantage of <a href="http://zedomax.biz/blog/blogging/the-most-effective-hour/" >my most effective hour</a> everyday.  Whether it&#8217;s a Monday, a Saturday, Thanksgiving, or any day of the year, you will see me working during my <a href="http://zedomax.biz/blog/blogging/the-most-effective-hour/" >most effective hour</a>.  (There&#8217;s one day I do take off, Christmas because I don&#8217;t want to be haunted by Christmas ghosts, seriously!)</p>
<p>As a person working from home, the terms &#8220;weekends&#8221; and &#8220;weekdays&#8221; are irrelevant to me.   I even like to do the complete opposite so I can avoid traffic during the weekends, that is to take my weekends when everyone else is working.</p>
<p>And yes, for a long time I used to go crazy on Fridays because either I got off school or work but boy, am I glad I am out of &#8220;that&#8221; hellish schedule.</p>
<p>Anyways, staying on schedule means that you practically do the same things everyday.  Not only will this keep you consistent, you will get a lot more done than randomly sailing along your life.  (Just like they taught you in school as a 1st grader.)</p>
<p>Here&#8217;s what my schedule looks like:</p>
<p><strong>8 or 9AM</strong> Get Up</p>
<p><strong>9 to 12PM</strong> &#8211; My most effective hours &#8211; Blogging</p>
<p><strong>12PM</strong> &#8211; Quick 10 minute power lunch (I feel that people waste a lot of time during lunch, <em><strong>taking elaborate lunches that they really don&#8217;t need</strong></em>.  Of course, if you are with a client that&#8217;s fine but for the other days, you might be more efficient to take a quick, power-lunch.)  I usually gobble down a big sandwich at lunch with a LOT of Tabasco sauce and a full cup of milk.  (Yes, milk is good for you, drink like 3 cups a day like me!)</p>
<p><strong>12:10PM &#8211; 4PM</strong> More Blogging plus sweating the small stuff.  (Perhaps also work out if it&#8217;s my work out day; I work out every other day)</p>
<p><strong>4PM &#8211; 7PM</strong> Everyday tasks such as going to get groceries and dinner &#8211; I force myself to quit working early otherwise I will be too excited and not able to sleep. <strong> I realize long hours in front of the computer results in insomnia.</strong></p>
<p><strong>7PM &#8211; 9PM</strong> Go Hit Balls at the Driving range. &#8211; By this time I have drank at least 3 cups of coffee, I seriously need to do some kind of exercise to calm me down, otherwise I won&#8217;t be able to fall asleep around midnight.  So I got hit golf balls for an hour or two at my local driving range. <strong> I used to drink a lot of beer in the past but now I have substituted a healthier addiction, golf.</strong> <em><strong>If you drink too much beer on a daily basis, perhaps it&#8217;s time for you to find a new hobby.</strong></em> I might add some blog posts here and there there depending on how I feel.</p>
<p><strong>9PM &#8211; Midnight</strong> &#8211; Relaxing, once again trying to relieve my head from work so I can fall asleep on time.  My favorite TV shows are King of the Hills and Family Guys, these 2 cartoon shows help me get away from work and get myself totally relaxed.  I think the couple hours before your sleep hour, you need to NOT work, so you can re-energize and work hard the next morning.</p>
<p>My schedule might not look like I work (blog) much but I definitely do since most of <strong>my work is done during my most effective hour</strong> and the other hours are really &#8220;optional&#8221; and I have been substituting for my new profession, that of becoming a photographer/film director/pro golfer.</p>
<p>If you look at my schedule, you will notice <strong>I save almost hour at lunch time plus I don&#8217;t have to get up as early as people who commute to work since my office is at arms-length from where I sleep</strong>.</p>
<p>I used to get up super-early like 5 or 6AM but I stopped doing that because <strong>I would end up in a vicious-cycle of getting to sleep late and getting up way too early</strong>.  After couple days of this, my body would be completely exhausted and drained!  I realized that wasn&#8217; natural and probably bad for me especially since I am turning 30 soon.</p>
<p>Now, my schedule consists of getting full 8 to 9 hours of sleep, my most effective hour, hitting golf balls, and watching some TV.</p>
<p>For years, <strong>I haven&#8217;t watched TV for 3 years but I found that &#8220;dumbing&#8221; myself out in front of the TV for couple hours really helps me to relax</strong>. (Plus, it gets my blogging better, no more blogger&#8217;s writer block, I get a ton of funny ideas from Family Guy.)</p>
<h2>All this schedule for what?</h2>
<p>My schedule is optimized so I can blog as effectively and creatively as I can everyday I wake up.  If I worked too long hours, my mind would burn out and there&#8217;s no way you can be an effective blogger like that.  <strong>Blogging is essentially creative writing and it takes a whole lot of effort for you to optimize your schedule so that you will always be relaxed and ready to write.</strong></p>
<p>Think of it this way, when I am relaxed, I can write 5000 words no problem with interesting stories to add.  If I am stressed, I can write 100 words with boring, repetitive phrases.</p>
<p><strong>For a blogger, being in the right state of mind is everything.</strong> There are times I can literally write about something all day, <em><strong>passionately</strong></em>.</p>
<p>Well, just one thought to leave you with no matter what you are trying to accomplish in life,</p>
<h2>Stay on Schedule!</h2>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/stay-on-schedule-my-most-effective-schedule/" >Stay On Schedule! [My Most Effective Schedule]</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/blog-training/" title="Blog Training" rel="tag">Blog Training</a>, <a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/tag/most-effective-schedule/" title="most effective schedule" rel="tag">most effective schedule</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a>, <a href="http://zedomax.biz/blog/tag/stay-on-schedule/" title="stay on schedule" rel="tag">stay on schedule</a>, <a href="http://zedomax.biz/blog/tag/staying-on-schedule/" title="staying on schedule" rel="tag">staying on schedule</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=B9xeXzhFBUA:bYfqGcHmEvY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=B9xeXzhFBUA:bYfqGcHmEvY:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=B9xeXzhFBUA:bYfqGcHmEvY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=B9xeXzhFBUA:bYfqGcHmEvY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=B9xeXzhFBUA:bYfqGcHmEvY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=B9xeXzhFBUA:bYfqGcHmEvY:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/stay-on-schedule-my-most-effective-schedule/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Most Effective Hour!</title>
		<link>http://zedomax.biz/blog/blogging/the-most-effective-hour/</link>
		<comments>http://zedomax.biz/blog/blogging/the-most-effective-hour/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 21:57:10 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[concentration]]></category>
		<category><![CDATA[distractions]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[most effective hour]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1011</guid>
		<description><![CDATA[For me, there&#8217;s an hour of my day called, &#8220;the most effective hour&#8221;.  This is the hour about an hour after I get up, usually around 9 or 10AM.
During that hour, I can do almost 10 times more work than I can because I am totally focused on the job at hand, that of blogging [...]]]></description>
			<content:encoded><![CDATA[<p>For me, there&#8217;s an hour of my day called, &#8220;the most effective hour&#8221;.  This is the hour about an hour after I get up, usually around 9 or 10AM.</p>
<p>During that hour, I can do almost 10 times more work than I can because I am totally focused on the job at hand, that of blogging and nothing more.</p>
<p>I turn off my cellphone, I turn off every distraction I can.  Sometimes, I even head out to the local McDonalds away from my family, just so I can concentrate fully for an hour.</p>
<p>Of course, the other hours during the day, I am simply not as effective because my mind is wondering all over the place.</p>
<p>It really doesn&#8217;t matter when you set your &#8220;most effective hour&#8221; but it helps to have an hour to yourself with zero distractions.</p>
<p>If you are at work in the office, try putting your earphones on with your favorite music for an hour.  If you have a door to your office, leave it closed for an hour.  Whatever is causing the distractions, you need to get away from just an hour a day.</p>
<p>If I took every phone call, read every e-mail, and talked to my co-workers in the morning, my most effective hour of the day goes wasted and I spend the rest of the day doing what I could have done during my most effective hour.</p>
<p>Do you remember the last time you spent time doing EVERYTHING and accomplished NOTHING?  And of course, you might remember the times where you spent time doing 1 little thing and accomplished everything for the day.  That is what I am talking about, turning that Facebook page off or even twittering just for a short period of time.</p>
<p>Of course, this most effective hour sometimes can be a little bit shorter than an hour or even 2 to 3 hours, it&#8217;s just a point of reference.</p>
<p>The point is, if you can really focus on a single thing that of getting things done, you can do it much faster.  Well, I gotta go now, my most effective hour is over as of now. <img src='http://zedomax.biz/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/the-most-effective-hour/" >The Most Effective Hour!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/concentration/" title="concentration" rel="tag">concentration</a>, <a href="http://zedomax.biz/blog/tag/distractions/" title="distractions" rel="tag">distractions</a>, <a href="http://zedomax.biz/blog/tag/focus/" title="focus" rel="tag">focus</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/tag/most-effective-hour/" title="most effective hour" rel="tag">most effective hour</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/inspirational/its-all-about-focus/" title="It&#8217;s all about Focus! (November 18, 2009)">It&#8217;s all about Focus!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/get-creative-by-being-mobile/" title="Get Creative by Being Mobile (January 30, 2009)">Get Creative by Being Mobile</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/blogging-diy-how-to-focus-better-by-working-in-your-car/" title="Blogging DIY &#8211; How to Focus Better by Working in Your Car! (August 23, 2009)">Blogging DIY &#8211; How to Focus Better by Working in Your Car!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=kAUI7iyLl5I:KVYx4alzJNQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=kAUI7iyLl5I:KVYx4alzJNQ:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=kAUI7iyLl5I:KVYx4alzJNQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=kAUI7iyLl5I:KVYx4alzJNQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=kAUI7iyLl5I:KVYx4alzJNQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=kAUI7iyLl5I:KVYx4alzJNQ:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/the-most-effective-hour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do A Little Bit More, Accomplish a Whole Lot More!</title>
		<link>http://zedomax.biz/blog/inspirational/do-a-little-bit-more-accomplish-a-whole-lot-more/</link>
		<comments>http://zedomax.biz/blog/inspirational/do-a-little-bit-more-accomplish-a-whole-lot-more/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 21:01:09 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[accomplish whole lot more]]></category>
		<category><![CDATA[do a little bit more]]></category>
		<category><![CDATA[try a little bit harder]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1008</guid>
		<description><![CDATA[Sorry for the lack of blog posts but let me share you something I have been doing lately, which has kept me too busy.
I have been guilty of doing a little bit more on a daily basis and accomplishing a whole lot more.
What did I do exactly?
Well, I worked over the Thanksgiving weekend when everyone [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for the lack of blog posts but let me share you something I have been doing lately, which has kept me too busy.</p>
<p>I have been guilty of doing a little bit more on a daily basis and accomplishing a whole lot more.</p>
<p>What did I do exactly?</p>
<p>Well, I worked over the Thanksgiving weekend when everyone else was enjoying turkey.  I did have some brief turkey moments of course but for most of Thanksgiving weekend, I was working hard, doing a little bit more.</p>
<p>Why?</p>
<p>It isn&#8217;t because I slacked before that, it&#8217;s just that I want to accomplish a whole lot more by doing a little bit more than others.</p>
<p>If you want to accomplish more things in your life, the answer is simple, you just need to try a little bit harder than everyone else.</p>
<p>Here&#8217;s one of my new mottos, &#8220;if you do things like everyone else, you are no better.&#8221;</p>
<p>So, if you &#8220;really&#8221; want something, you might want to just try a little bit harder than anyone you know, just do it!</p>
<p>Doing a little bit more under times of stress and when you just want to quit could potentially be a game-changer.</p>
<p>Of course, don&#8217;t forget to rest though and relax while you do a little bit more.   Doing more doesn&#8217;t mean you stress out but you simply have longevity when you do things.</p>
<p>Well, just the thought, try a little bit harder, go a little bit longer and in the end, you will reap the benefits of not only success but the fact that you can actually focus on the task at hand longer than anyone else you know.</p>
<p>I know Thanksgiving and any holidays can be tempting to take a long break from work but trust me, if you want to someday run your own business, these are the times you will need to step on keep going.</p>
<p>As for me, I have redefined my weekends and holidays, I like to rest when everyone else is working and vice-versa when everyone else is resting.  This way, I stay clear free from traffic, stop polluting the environment by not adding to traffic on road, plus I don&#8217;t like traffic that much other than web traffic.  I do everything in my power to not be on the highway during the weekdays from 7-10am and 3-7pm.</p>
<p>Well, I might be going a bit far here but seriously, you can re-define and re-program everything society has taught you and take control over your time and life as I did.</p>
<p>Become the master of your life by making your own holidays.</p>
<p>Happy Holidays!</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/inspirational/do-a-little-bit-more-accomplish-a-whole-lot-more/" >Do A Little Bit More, Accomplish a Whole Lot More!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/accomplish-whole-lot-more/" title="accomplish whole lot more" rel="tag">accomplish whole lot more</a>, <a href="http://zedomax.biz/blog/tag/do-a-little-bit-more/" title="do a little bit more" rel="tag">do a little bit more</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a>, <a href="http://zedomax.biz/blog/tag/try-a-little-bit-harder/" title="try a little bit harder" rel="tag">try a little bit harder</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=kGTulU_lGhY:WvR6j4xvNa8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=kGTulU_lGhY:WvR6j4xvNa8:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=kGTulU_lGhY:WvR6j4xvNa8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=kGTulU_lGhY:WvR6j4xvNa8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=kGTulU_lGhY:WvR6j4xvNa8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=kGTulU_lGhY:WvR6j4xvNa8:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/inspirational/do-a-little-bit-more-accomplish-a-whole-lot-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beware of Chinese Domain Spammers!</title>
		<link>http://zedomax.biz/blog/personal/beware-of-chinese-domain-spammers/</link>
		<comments>http://zedomax.biz/blog/personal/beware-of-chinese-domain-spammers/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 19:55:01 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[.cn]]></category>
		<category><![CDATA[.hk]]></category>
		<category><![CDATA[chinese domain scammers]]></category>
		<category><![CDATA[chinese domain spammers]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1006</guid>
		<description><![CDATA[Every once in awhile, I will get e-mails from some Chinese people in Hong Kong claiming that they are trying to protect my intellectual property rights.
Here&#8217;s an example e-mail:
Dear CEO &#38; Principal
We are a domain name registration and dispute organization in Asia, which mainly deal with the global companies&#8217; domain name registration and internet Intellectual [...]]]></description>
			<content:encoded><![CDATA[<p>Every once in awhile, I will get e-mails from some Chinese people in Hong Kong claiming that they are trying to protect my intellectual property rights.</p>
<p>Here&#8217;s an example e-mail:</p>
<blockquote><p>Dear CEO &amp; Principal</p>
<p>We are a domain name registration and dispute organization in Asia, which mainly deal with the global companies&#8217; domain name registration and internet Intellectual property right protection in Asia. Currently, we have a pretty important issue needing to confirm with your company.</p>
<p>On Nov 1st,2009, we received an application formally. One company named &#8220;XXX company&#8221; wanted to applied for the Internet Keyword XXX&#8221; and some domain names through our body.</p>
<p>Now we are handling with the registration of these domain names and find that these domain names and Internet Keyword is identical with your company&#8217;s. So we have to confirm with you at two points:<br />
1. If your company consign XXX company to register these domain names and Internet Keyword, we will send application form to them and help them finish the registration at once.<br />
2. If your company have nothing to do with XXX company, they maybe have other purposes to register these domain names and Internet Keyword.</p>
<p>I want to confirm that are you the corporate representative of this company? If you do, I will feedback some problems to you; if you do not, please send my words to your company&#8217;s cororate representative or lawyer. We need your answer of force adeffect. In order to deal with this issue better, please contact us by telephone or email as soon as possible.</p>
<p>Best Regards,</p>
<p>BlahBlah</p></blockquote>
<p>When you ask them what this is about, you will get an e-mail that you should buy all these .cn and .hk Asian domain names you DON&#8217;T NEED.  It&#8217;s all bullshit where they say that there&#8217;s actually a company trying to get your trademark, it&#8217;s ALL MADE UP!  <em><strong>Certainly, not very important.</strong></em></p>
<p>I get hundreds of these per year and simply mark them &#8220;spam&#8221; as they are simply trying to profit off you buying domain names you don&#8217;t need.</p>
<p>They are probably making pretty good money spamming the hell out of companies out there and I hope you don&#8217;t buy into these scammer companies.</p>
<p>FU** the Chinese Domain Spammers/Scammers!  I hate people like this who spam me and then try to make profit off hard, innocent working people.  I hope they go bankrupt soon.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/personal/beware-of-chinese-domain-spammers/" >Beware of Chinese Domain Spammers!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/cn/" title=".cn" rel="tag">.cn</a>, <a href="http://zedomax.biz/blog/tag/hk/" title=".hk" rel="tag">.hk</a>, <a href="http://zedomax.biz/blog/tag/chinese-domain-scammers/" title="chinese domain scammers" rel="tag">chinese domain scammers</a>, <a href="http://zedomax.biz/blog/tag/chinese-domain-spammers/" title="chinese domain spammers" rel="tag">chinese domain spammers</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=PeNixDQBNT8:b0GPmdwWvdY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=PeNixDQBNT8:b0GPmdwWvdY:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=PeNixDQBNT8:b0GPmdwWvdY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=PeNixDQBNT8:b0GPmdwWvdY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=PeNixDQBNT8:b0GPmdwWvdY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=PeNixDQBNT8:b0GPmdwWvdY:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/personal/beware-of-chinese-domain-spammers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>White House on Protecting Freedom of Speech!</title>
		<link>http://zedomax.biz/blog/inspirational/white-house-on-protecting-freedom-of-speech/</link>
		<comments>http://zedomax.biz/blog/inspirational/white-house-on-protecting-freedom-of-speech/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 22:22:38 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[freedom of speech]]></category>
		<category><![CDATA[protecting]]></category>
		<category><![CDATA[white house]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1004</guid>
		<description><![CDATA[Recently, White House CTO Andrew McLaughlin has issued remarks on the fact that many ISPs such as AT&#38;T and Comcast are threatening freedom of speech on the internet and they are going to set some new rules to protect the internet citizens.
The telecom giant responded forcefully this week to remarks by White House deputy chief [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, White House CTO Andrew McLaughlin has issued remarks on the fact that many ISPs such as AT&amp;T and Comcast are threatening freedom of speech on the internet and they are going to set some new rules to protect the internet citizens.</p>
<blockquote><p>The telecom giant responded forcefully this week to remarks by White House deputy chief technology officer Andrew McLaughlin, who said that free speech and network neutrality are &#8220;intrinsically linked.&#8221; Net neutrality rules are being crafted by federal regulators that would restrict Internet service providers such as AT&amp;T from blocking or prioritizing content on the Web.</p></blockquote>
<p>Plus, Andrew McLaughlin compares the ISPs to China, where a lot of content are simply banned from the citizens.</p>
<blockquote><p>&#8220;If it bothers you that the China government does it, it should bother you when your cable company does it,&#8221; McLaughlin said at the policy conference. The administration has made net neutrality a cornerstone of its technology agenda.</p></blockquote>
<p>I have to agree that part of the reason why our current internet speeds are about decade behind the rest of the world is that ISPs are making enough money being lazy and not making technological advances. (plus the fact that they have a tight control over the internet)</p>
<p>I hope these new rules make the ISP market more competitive and not monopolized by a few ISPs and flourish the market so my internet can be faster.</p>
<p>AT&amp;T&#8217;s Jim Cicconi responds in anger that they shouldn&#8217;t be compared to China&#8217;s censorship but then again, where are our super high-speed internet speeds?  Monopoly has clearly detered the ISPs from providing faster internet and lower rates for consumers.  For them, there&#8217;s no reason to improve things faster when they are already making a ton of money sitting on their arses.  Mind you, I am fair though, if our internet was a little bit faster, perhaps rank at least in Top 3 in the world, I wouldn&#8217;t complain.</p>
<blockquote><p>Those comments did not sit well with AT&amp;T&#8217;s chief lobbyist, Jim Cicconi, who issued an angry response. He said it was &#8220;ill-considered and inflammatory&#8221; to connect censorship in China to the practices of American ISPs, whom he said do not threaten free speech.</p></blockquote>
<p>The issue here is censorship but I highly believe it&#8217;s also tied closely with our slow internet speeds here in the U.S.  <strong>It is highly disturing when one of the largest ISPs speak out against correcting their past mistakes, nevermind doing nothing about it.</strong></p>
<p>And with that, GO WHITE HOUSE!</p>
<p><a target="_blank" href="http://www.washingtonpost.com/wp-dyn/content/article/2009/11/24/AR2009112404175.html" >via washingtonpost</a></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/inspirational/white-house-on-protecting-freedom-of-speech/" >White House on Protecting Freedom of Speech!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/freedom-of-speech/" title="freedom of speech" rel="tag">freedom of speech</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/tag/protecting/" title="protecting" rel="tag">protecting</a>, <a href="http://zedomax.biz/blog/tag/white-house/" title="white house" rel="tag">white house</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/obamas-plans-on-technology-and-why-its-important-to-internet/" title="Obama&#8217;s Plans on Technology and Why It&#8217;s Important to Internet! (January 20, 2009)">Obama&#8217;s Plans on Technology and Why It&#8217;s Important to Internet!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/gim-101-blogging-is-about-freedom-of-speech/" title="G.I.M. 101 &#8211; Blogging is About Freedom of Speech! (January 21, 2009)">G.I.M. 101 &#8211; Blogging is About Freedom of Speech!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/blogging-is-about-your-opinion/" title="Blogging is about YOUR opinion! (January 5, 2009)">Blogging is about YOUR opinion!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=1lZKWSqtgrk:XFg0s4Ct1CM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=1lZKWSqtgrk:XFg0s4Ct1CM:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=1lZKWSqtgrk:XFg0s4Ct1CM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=1lZKWSqtgrk:XFg0s4Ct1CM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=1lZKWSqtgrk:XFg0s4Ct1CM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=1lZKWSqtgrk:XFg0s4Ct1CM:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/inspirational/white-house-on-protecting-freedom-of-speech/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Think “Outside The Box” Chair!</title>
		<link>http://zedomax.biz/blog/personal/think-outside-the-box-chair/</link>
		<comments>http://zedomax.biz/blog/personal/think-outside-the-box-chair/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 20:06:43 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[chair]]></category>
		<category><![CDATA[outside the box]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=1001</guid>
		<description><![CDATA[
Loving this outside the box chair&#8230;
Post from: I Make Money Online by Creating Free Content for the World with Blogs
Think &#8220;Outside The Box&#8221; Chair!

	chair, outside the box, Personal

	Related posts
	
	No related posts.
	

]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1002" title="outside-the-box-chair!" src="http://zedomax.biz/blog/wp-content/uploads/2009/11/outside-the-box-chair.jpg" alt="outside-the-box-chair!" width="525" height="395" /></p>
<p>Loving this <a target="_blank" href="http://mocoloco.com/archives/012429.php" >outside the box chair</a>&#8230;</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/personal/think-outside-the-box-chair/" >Think &#8220;Outside The Box&#8221; Chair!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/chair/" title="chair" rel="tag">chair</a>, <a href="http://zedomax.biz/blog/tag/outside-the-box/" title="outside the box" rel="tag">outside the box</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=iCBalKdtY2o:vMjhDNEHOrg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=iCBalKdtY2o:vMjhDNEHOrg:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=iCBalKdtY2o:vMjhDNEHOrg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=iCBalKdtY2o:vMjhDNEHOrg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=iCBalKdtY2o:vMjhDNEHOrg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=iCBalKdtY2o:vMjhDNEHOrg:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/personal/think-outside-the-box-chair/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Power of Blogging!</title>
		<link>http://zedomax.biz/blog/blogging/power-of-blogging/</link>
		<comments>http://zedomax.biz/blog/blogging/power-of-blogging/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 00:49:12 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[companies]]></category>
		<category><![CDATA[online branding]]></category>
		<category><![CDATA[power of blogging]]></category>
		<category><![CDATA[truth]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=994</guid>
		<description><![CDATA[I still clearly remember the day I was so helpless against this ink cartridge company, that was about 6 years ago when I worked as an IT manager.
I tried to save the company money by buying no-brand laser catridges for the company&#8217;s color printers.  What happened after I install those laser cartridges was beyond nightmare.  [...]]]></description>
			<content:encoded><![CDATA[<p>I still clearly remember the day I was so helpless against this ink cartridge company, that was about 6 years ago when I worked as an IT manager.</p>
<p>I tried to save the company money by buying no-brand laser catridges for the company&#8217;s color printers.  What happened after I install those laser cartridges was beyond nightmare.  The cartridges caused some kind of havoc on the color laser printer, causing prints to come out weird and in the end I even sent the ink cartridge company photos of what their faulty cartridges caused.</p>
<p>Even after I replaced with original HP cartridges, the prints were still lacking, somehow it had clearly damaged the laser printer.</p>
<p>The worst part was the company&#8217;s customer service person told me that they would refund money for the cartridges, they never did even after I sent them back the bad toners.</p>
<p>I got furiously mad and I couldn&#8217;t do anything about it.  It was also too late to fight through my credit card companies.</p>
<p>I am sure many many other people experienced the same things and wonder why that business is still in business, more of a scam to me than anything.</p>
<p>So what?</p>
<p>Well, these days companies pay close attention to bloggers and if something like that happens, I just blog it.  I don&#8217;t have to cuss at the customer service people, I just blog it all so everyone in the world will know about it.</p>
<p>The great thing about blogging is that it&#8217;s not about your problems, it&#8217;s also about others who are experiencing the same things.</p>
<p>If you think about how many people actually &#8220;read&#8221; your blog post over a period of a year, you would be surprised what kind of effect a blog post by someone can have.  It can potentially be devastating for the company&#8217;s revenue and perhaps <a href="http://zedomax.biz/blog/shitlist/business-filings-division-and-annual-filings-division-scam-artists-caught-and-sued/" >even close them down for good</a>.</p>
<p>I think bloggers in general help consumers get attention if they are not treated right.</p>
<p>Blog posts can also be mis-used by the wrong people who &#8220;make up&#8221; stories.  That is also leveraged by other bloggers if the topic is important enough.</p>
<p>In the end, bloggers  are only the &#8220;voice&#8221; of  consumers and regular Joes/Janes like you and me, a typical person who lives through life.  That&#8217;s why I love blogging.</p>
<p>I&#8217;ve personally seen death of many corporations, simply by bloggers blogging truth about them.  If  companies want to play childish games with their customers and provide no real value, I think they deserve to die.</p>
<p>A lot of times, companies don&#8217;t treat everyone the same, perhaps give priority to people with more hard cold cash to throw at them.  Those are the companies usually in risk of getting blown by bloggers and that&#8217;s what a lot of bloggers CAN do although not often.</p>
<p>In essence, bloggers don&#8217;t have power really but people who are reading those blog posts.  You never know who&#8217;s reading a blog review of your company, it could be your next customer, your client, or even investor.</p>
<p>Even companies can leverage their own blog to fight back myths or misleading truths about their companies, it&#8217;s fair and square.</p>
<p>In all, bloggers still have the power to spread the word, whether positive or negative, it&#8217;s something that could potentially make your company live or die.</p>
<p>Blogging isn&#8217;t anything new though by the  way, it&#8217;s simply another form of publication like TV and radio, except ANYONE can blog.  If you company pursues bad practices, it&#8217;s going to get publicized by someone no matter what.</p>
<p>In the end, if you provide excellent service/products to your customers, you have nothing to worry about except counting money.</p>
<p>So the moral of the story?</p>
<p>Just do it &#8220;right&#8221;, it&#8217;s that simple.  And of course, if you don&#8217;t have a blog yet, please go make one today.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/power-of-blogging/" >Power of Blogging!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/companies/" title="companies" rel="tag">companies</a>, <a href="http://zedomax.biz/blog/tag/online-branding/" title="online branding" rel="tag">online branding</a>, <a href="http://zedomax.biz/blog/tag/power-of-blogging/" title="power of blogging" rel="tag">power of blogging</a>, <a href="http://zedomax.biz/blog/tag/truth/" title="truth" rel="tag">truth</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/what-they-wont-teach-in-school-could-make-you-rich/" title="What They Won&#8217;t Teach In School Could Make You Rich! (February 17, 2009)">What They Won&#8217;t Teach In School Could Make You Rich!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/to-make-money-online-you-need-to-be-passionate-about-blogging/" title="To Make Money Online you need to be Passionate about Blogging! (May 18, 2008)">To Make Money Online you need to be Passionate about Blogging!</a> </li>
	<li><a href="http://zedomax.biz/blog/bad-press/entrecard-is-it-under-the-influence/" title="Entrecard, Is It Under The Influence? (December 6, 2008)">Entrecard, Is It Under The Influence?</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/ad-optimization-is-seo/" title="Ad Optimization is SEO (December 3, 2008)">Ad Optimization is SEO</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=uhVQW9V_Vho:hJTog4F0Wdc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=uhVQW9V_Vho:hJTog4F0Wdc:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=uhVQW9V_Vho:hJTog4F0Wdc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=uhVQW9V_Vho:hJTog4F0Wdc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=uhVQW9V_Vho:hJTog4F0Wdc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=uhVQW9V_Vho:hJTog4F0Wdc:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/power-of-blogging/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>It’s all about Focus!</title>
		<link>http://zedomax.biz/blog/inspirational/its-all-about-focus/</link>
		<comments>http://zedomax.biz/blog/inspirational/its-all-about-focus/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 19:17:16 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[focus]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=990</guid>
		<description><![CDATA[
(Playing with focus on my new Canon 7D Camera Lens)
Focus is probably one thing you need in this hectic days of our modern lives.  I am sure many of you have a ton of things to do but really, do you &#8220;focus&#8221; on things that matter to you most?
Perhaps it&#8217;s time to start saying &#8220;no&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-991" title="focus" src="http://zedomax.biz/blog/wp-content/uploads/2009/11/focus.jpg" alt="focus" width="500" height="750" /></p>
<p>(Playing with focus on my new <a target="_blank" href="http://www.amazon.com/Canon-EOS-7D-28-135mm-Standard/dp/B002NEGTU6/ref=sr_1_2?ie=UTF8&amp;s=electronics&amp;qid=1258571405&amp;sr=8-2" >Canon 7D Camera Lens</a>)</p>
<p>Focus is probably one thing you need in this hectic days of our modern lives.  I am sure many of you have a ton of things to do but really, do you &#8220;focus&#8221; on things that matter <em><strong>to you</strong></em> most?</p>
<p>Perhaps it&#8217;s time to start saying &#8220;no&#8221; to new projects you really don&#8217;t have time for.  Or perhaps it&#8217;s time to say &#8220;no&#8221; to things that simply waste your time.</p>
<p>Whatever your &#8220;focus&#8221; is, you might help yourself to get more stuff done while doing less if you simply focus on things that are most important to you and ditch the rest, whatever they might be.</p>
<p>Personally, I&#8217;ve started only focusing on my blog projects that generate most revenue for me.  I get a ton of calls from friends and colleagues everyday asking me to do something for them.  Before, I would help them freely but as my life got busier with me focusing on my blog projects, I&#8217;ve began to learn that saying no isn&#8217;t going to be the end of the world, there&#8217;s many other people who could do the job for me.  I want to help my friends and family but it seems that in the end, I really need to focus on my own work if I am going to be happy at the end of the year.</p>
<p>Of course, if I had all the time in the world, I would be glad to help others but that&#8217;s simply not the case, I have to reach certain goals in my life whether that&#8217;s making money or making it to the PGA Tour.  Recently, I&#8217;ve realized that the more I focus on my goals, the closer I am getting to them.</p>
<p>Selfish?</p>
<p>No, I think it&#8217;s more like spending your life doing EXACTLY what you want to do.  Everyone has a choice, to either live the life they want or they don&#8217;t want.</p>
<p>Plus, I am spending more time that will allow me to <em><strong>relax or have fun</strong></em>.  It&#8217;s not human nature to work 24/7, even if it&#8217;s not work for you.  By creatively splitting my time between work and relaxation such as hitting golf balls or playing around with my new DSLR camera, I found that I have more &#8220;room&#8221; to develop my skills.</p>
<p>Sometimes, it may be a smart thing to shut the rest of the world off and live your own life. (or FOCUS!) Friends are great but as <a target="_blank" href="http://twitter.com/shitmydadsays/status/5772660192" >@Shitmydadsays</a> says on Twitter:</p>
<blockquote><p><span><span>&#8220;I don&#8217;t need more friends. You got friends and all they do is ask you to help them move. Fuck that. I&#8217;m old. I&#8217;m through moving shit.&#8221;</span></span></p></blockquote>
<p>In other words, if it&#8217;s not something only YOU can do, perhaps it&#8217;s fine asking your friends to hire someone else to do it.  <em><strong>Your time is priceless, there&#8217;s no price tag on that really.</strong></em></p>
<p>You only live once so make sure you die happily doing things you want to do, not being micro-managed by someone else.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/inspirational/its-all-about-focus/" >It&#8217;s all about Focus!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/focus/" title="focus" rel="tag">focus</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/blogging/the-most-effective-hour/" title="The Most Effective Hour! (December 9, 2009)">The Most Effective Hour!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=440XAT5WNGI:NSrdrj7T1Zw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=440XAT5WNGI:NSrdrj7T1Zw:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=440XAT5WNGI:NSrdrj7T1Zw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=440XAT5WNGI:NSrdrj7T1Zw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=440XAT5WNGI:NSrdrj7T1Zw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=440XAT5WNGI:NSrdrj7T1Zw:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/inspirational/its-all-about-focus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Future of YouTube!</title>
		<link>http://zedomax.biz/blog/blogging/future-of-youtube/</link>
		<comments>http://zedomax.biz/blog/blogging/future-of-youtube/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 22:19:46 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[youtube]]></category>
		<category><![CDATA[future of youtube]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=987</guid>
		<description><![CDATA[As you probably well know, YouTube has just bypassed a gazillion views and it&#8217;s really starting to grow.  I see the future of YouTube where people can watch all types of videos streamed via 1080P HD connected to their HDTVs.  I know some people are doing this already but there&#8217;s still a lot of room [...]]]></description>
			<content:encoded><![CDATA[<p>As you probably well know, YouTube has just bypassed a gazillion views and it&#8217;s really starting to grow.  I see the future of YouTube where people can watch all types of videos streamed via 1080P HD connected to their HDTVs.  I know some people are doing this already but there&#8217;s still a lot of room to grow, especially when you consider the fact that still majority of YouTube videos are in low resolution.</p>
<p>With invent of consumer-usable digital DSLRs like <a target="_blank" href="http://zedomax.com/blog/2009/10/20/canon-eos-7d-test-video-and-review/" >Canon 7D</a> (which I just bought) that can take movie-like 1080P videos, I think you will definitely see a big surge of HD content.</p>
<p>So what and how can you take advantage of this?</p>
<p><em><strong>Start now and start uploading HD videos to YouTube.</strong></em> Whatever is on YouTube right now not in HD is going to slowly fade away over time.  Of course, there&#8217;s are things that can&#8217;t be in HD such as videos from way past but for everything else, there&#8217;s no reason why you should fiddle with old technology.</p>
<p>I love being on the edge of technology and this is what I saw couple years back when I started my blogging business, that it&#8217;s going to be mainstream.  Now, you see blogs literally everywhere and it&#8217;s mainstream enough to be mentioned everywhere such as CNN, ESPN, E!, and more&#8230;</p>
<p>Just so you know, YouTube probably just turned 1, barely a toddler.  I am sure it will take over mainstream HDTV one day where YouTube offers live broadcasts of literally EVERYTHING.   Take a look at how GoogleMaps started small and now is threatening to bankrupt traditional map makers such as Garmin, TeleAtlas, etc&#8230;etc&#8230;</p>
<p>As far as I can see, YouTube isn&#8217;t so far away, better start using it for your marketing more!</p>
<p>P.S. One of my new sites gets about 1,000 uniques from YouTube daily and makes up about 80% of its total web traffic.  THAT is cool!</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/future-of-youtube/" >Future of YouTube!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/future-of-youtube/" title="future of youtube" rel="tag">future of youtube</a>, <a href="http://zedomax.biz/blog/category/youtube/" title="youtube" rel="tag">youtube</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=ud70v69zhDI:rA3wFvgJVOk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=ud70v69zhDI:rA3wFvgJVOk:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=ud70v69zhDI:rA3wFvgJVOk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=ud70v69zhDI:rA3wFvgJVOk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=ud70v69zhDI:rA3wFvgJVOk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=ud70v69zhDI:rA3wFvgJVOk:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/future-of-youtube/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kicking Yourself in the Butt!</title>
		<link>http://zedomax.biz/blog/personal/kicking-yourself-in-the-butt/</link>
		<comments>http://zedomax.biz/blog/personal/kicking-yourself-in-the-butt/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 22:19:40 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[in the butt]]></category>
		<category><![CDATA[kicking]]></category>
		<category><![CDATA[yourself]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=985</guid>
		<description><![CDATA[I tend to get a bit off focus as I work usually and once in awhile, I will literally kick myself in the butt.
I think this can help you to &#8220;focus&#8221; on things that need to be done instead of trying new things.
I personally find this is what happens, I work on too many new [...]]]></description>
			<content:encoded><![CDATA[<p>I tend to get a bit off focus as I work usually and once in awhile, I will literally kick myself in the butt.</p>
<p>I think this can help you to &#8220;focus&#8221; on things that need to be done instead of trying new things.</p>
<p>I personally find this is what happens, I work on too many new projects and I end up not caring for the core projects that have been a large part of the revenue pie.</p>
<p>Anyways, just reminding myself to keep blogging, especially on this one, I suggest you to try it to some time!</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/personal/kicking-yourself-in-the-butt/" >Kicking Yourself in the Butt!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/in-the-butt/" title="in the butt" rel="tag">in the butt</a>, <a href="http://zedomax.biz/blog/tag/kicking/" title="kicking" rel="tag">kicking</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a>, <a href="http://zedomax.biz/blog/tag/yourself/" title="yourself" rel="tag">yourself</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=7LFiqwR9oXw:iNylTtSN2_w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=7LFiqwR9oXw:iNylTtSN2_w:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=7LFiqwR9oXw:iNylTtSN2_w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=7LFiqwR9oXw:iNylTtSN2_w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=7LFiqwR9oXw:iNylTtSN2_w:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=7LFiqwR9oXw:iNylTtSN2_w:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/personal/kicking-yourself-in-the-butt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Business Cards!</title>
		<link>http://zedomax.biz/blog/marketing/new-business-cards/</link>
		<comments>http://zedomax.biz/blog/marketing/new-business-cards/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 01:53:09 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[marketing]]></category>
		<category><![CDATA[business cards]]></category>
		<category><![CDATA[new]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=981</guid>
		<description><![CDATA[

I got tired of people asking me what websites I run so I decided to list some of them on the back of my new business cards.  Well, these look pretty good I think, I might order 500 more for CES 2010.
Btw, I got these from OverNightPrints.com, they have the best deals and you can [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-983" title="newbusinesscards-1" src="http://zedomax.biz/blog/wp-content/uploads/2009/11/newbusinesscards-1.jpg" alt="newbusinesscards-1" width="500" height="375" /></p>
<p><img class="alignnone size-full wp-image-982" title="newbusinesscards-2" src="http://zedomax.biz/blog/wp-content/uploads/2009/11/newbusinesscards-2.jpg" alt="newbusinesscards-2" width="500" height="667" /></p>
<p>I got tired of people asking me what websites I run so I decided to list some of them on the back of my new business cards.  Well, these look pretty good I think, I might order 500 more for CES 2010.</p>
<p>Btw, I got these from <a href="http://zedomax.biz/go/overnightprints" >OverNightPrints.com</a>, they have the best deals and you can get glossy, rounded-edges like mine.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/marketing/new-business-cards/" >New Business Cards!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/business-cards/" title="business cards" rel="tag">business cards</a>, <a href="http://zedomax.biz/blog/category/marketing/" title="marketing" rel="tag">marketing</a>, <a href="http://zedomax.biz/blog/tag/new/" title="new" rel="tag">new</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/my-new-business-cards-arrived/" title="My New Business Cards Arrived! (December 17, 2008)">My New Business Cards Arrived!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=wlEbY6jmq7s:Q8n4r_1HqYM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=wlEbY6jmq7s:Q8n4r_1HqYM:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=wlEbY6jmq7s:Q8n4r_1HqYM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=wlEbY6jmq7s:Q8n4r_1HqYM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=wlEbY6jmq7s:Q8n4r_1HqYM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=wlEbY6jmq7s:Q8n4r_1HqYM:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/marketing/new-business-cards/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>BingoCameras.com – SCAM?</title>
		<link>http://zedomax.biz/blog/shitlist/bingocameras-com-scam/</link>
		<comments>http://zedomax.biz/blog/shitlist/bingocameras-com-scam/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 20:37:37 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[ShitList]]></category>
		<category><![CDATA[bingocameras]]></category>
		<category><![CDATA[scam]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=977</guid>
		<description><![CDATA[Well, while trying to make my new purchase on a Canon 7D DSLR, I came upon BingoCameras.com, which advertised the same camera for 1/2 the price at about $1000 instead of $1899 on Amazon.
I almost purchased the camera at BingoCameras&#8230;  then a lightbulb struck me, GOOGLE!
I googled &#8220;BingoCameras scam&#8221; (as I always do before buying [...]]]></description>
			<content:encoded><![CDATA[<p>Well, while trying to make my new purchase on a Canon 7D DSLR, I came upon BingoCameras.com, which advertised the same camera for 1/2 the price at about $1000 instead of $1899 on Amazon.</p>
<p>I almost purchased the camera at BingoCameras&#8230;  then a lightbulb struck me, GOOGLE!</p>
<p>I googled &#8220;BingoCameras scam&#8221; (as I always do before buying something too good to be true and came upon <a target="_blank" href="http://thoughts-of-dave.blogspot.com/2009/03/danger-bingo-cameras-aka-bingocameras.html" >this blog post where the author says BingoCameras.com is a Bait and Switch company, meaning they are on the borderline of scam</a>.  (Well, I think they are scammers really.)</p>
<p>Just check out some of the comments from that blog post where customers never got their products for the advertised price.</p>
<blockquote><p>yep. same thing happened to me. I put in an order for a canon 5d body at a great price, got a call where they tried HARD to sell me the 50D instead, saying it was a much better camera. i refused and they told me the 5D was out of stock and wouldnt arrive for 4-6 weeks. I surprised them by telling them that was fine. so he puts me on hold (for about the 3rd time that call) except he obviously forgot to press the button. So i heard him talking to his &#8220;manager&#8221; saying stuff like &#8220;I can&#8217;t get this bitch to take the sale&#8221; I held on till he came back and told me he talked to his manager and, surprise surprise, the 5d now won&#8217;t be in for 2-4 MONTHS. I told the guy to cancel my order. he got very snippy and practically hung up on me.</p></blockquote>
<p>Clearly a scam, I don&#8217;t know why they are still in business.  If you got scammed from this company, <a target="_blank" href="http://www.ic3.gov/default.aspx" >make sure to file a complaint with ICC</a>.</p>
<p>We have to work as a group to put these scammy companies out of business, they don&#8217;t deserve a single penny of our money earned through real hard work, not scamming.</p>
<p><span style="color: #ff0000;"><strong>*Note &#8211; BingoCameras, if you want to get off <a href="http://zedomax.biz/blog/category/shitlist/" >my ShitList</a>, please stop advertising false prices with no intention of delivering the actual product.  Companies like you disgust me, if you are going to do business online, DO IT RIGHT. </strong></span></p>
<p><span style="color: #ff0000;"><span style="color: #000000;">More evidence suggesting BingoCameras are not running a legitimate business:</span></span></p>
<ul>
<li><span style="color: #ff0000;"><span style="color: #000000;"><a href="http://www.complaintsboard.com/complaints/bingo-cameras-c251672.html">Complaintsboard.com<br />
</a></span></span></li>
<li><span style="color: #ff0000;"><span style="color: #000000;"><a target="_blank" href="http://beatthat.com/merchants/show/bingocameras-com" >BeatThat.com</a></span></span></li>
<li><span style="color: #ff0000;"><span style="color: #000000;"><a target="_blank" href="http://www.complaintsboard.com/complaints/bingo-cameras-c246415.html" >Complaintsboard.com 2</a></span></span></li>
<li><span style="color: #ff0000;"><span style="color: #000000;"><a target="_blank" href="http://answers.yahoo.com/question/index?qid=20090819150535AAsqUvg" >Yahoo.com</a><br />
</span></span></li>
</ul>
<p><span style="color: #ff0000;"><span style="color: #000000;"><br />
</span></span></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/shitlist/bingocameras-com-scam/" >BingoCameras.com &#8211; SCAM?</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/bingocameras/" title="bingocameras" rel="tag">bingocameras</a>, <a href="http://zedomax.biz/blog/tag/scam/" title="scam" rel="tag">scam</a>, <a href="http://zedomax.biz/blog/category/shitlist/" title="ShitList" rel="tag">ShitList</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/shitlist/business-filings-division-fraud-alert/" title="Business Filings Division &#8211; FRAUD ALERT! (October 1, 2009)">Business Filings Division &#8211; FRAUD ALERT!</a> </li>
	<li><a href="http://zedomax.biz/blog/shitlist/annual-filing-division-scam-alert-do-not-send-money/" title="Annual Filing Division &#8211; SCAM ALERT! &#8211; DO NOT SEND MONEY! (October 14, 2009)">Annual Filing Division &#8211; SCAM ALERT! &#8211; DO NOT SEND MONEY!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=yln5jSrnQPg:dGv_CZEVFug:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=yln5jSrnQPg:dGv_CZEVFug:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=yln5jSrnQPg:dGv_CZEVFug:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=yln5jSrnQPg:dGv_CZEVFug:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=yln5jSrnQPg:dGv_CZEVFug:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=yln5jSrnQPg:dGv_CZEVFug:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/shitlist/bingocameras-com-scam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make Money from Telemarketers!</title>
		<link>http://zedomax.biz/blog/personal/how-to-make-money-from-telemarketers/</link>
		<comments>http://zedomax.biz/blog/personal/how-to-make-money-from-telemarketers/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 19:24:25 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[make money]]></category>
		<category><![CDATA[telemarketers]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=974</guid>
		<description><![CDATA[Well, it seems like the telemarketers got the best of me calling me on now several new phone numbers including 877-624-0262 AND 786-358-5510.
I just stumbled onto this great video showing you how to SUE them and make money from telemarketers!
The U.S. law gives you about $500 each time telemarketers answer your questions wrong such as [...]]]></description>
			<content:encoded><![CDATA[<p>Well, it seems like the <a href="http://zedomax.biz/blog/personal/2153835600-stop-calling-me/" >telemarketers got the best of me calling me</a> on now several new phone numbers including 877-624-0262 AND 786-358-5510.</p>
<p>I just stumbled onto this great video showing you how to SUE them and make money from telemarketers!</p>
<p>The U.S. law gives you about $500 each time telemarketers answer your questions wrong such as &#8220;please put me on your do-not-call list&#8221;.   Record this and also record the conversation if they keep calling again.  Keep doing this until you have racked about $20,000 of fees then take it to your lawyer&#8217;s office.  You should be able to get a good settlement before it even gets to court.  <em><strong>If enough people do this, the telemarketers will eventually go bankrupt and NEVER call you again.</strong></em></p>
<p>Watch the video:</p>
<div class="video youtube"><p align="center"><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/iwxOjQ5X4g0" width="500" height="420"><param name="movie" value="http://www.youtube.com/v/iwxOjQ5X4g0" /><param name="allowScriptAccess" value="sameDomain" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><param name="scale" value="doesaffect" /><param name="wmode" value="transparent" /><p><a target="_blank" href="http://download.macromedia.com/" >Download latest version of Flash to view video!</a>.</p></object></p></div><p align="center"><a target="_blank" href="http://www.youtube.com/v/iwxOjQ5X4g0"  class="lightwindow"> Click Here to View in Full Screen Mode</a></p>
<p>One of YouTube users commented that it works well and he bought a free laptop for $700 compensation money he got for it:</p>
<blockquote><p>OMG&#8230;this actually worked..but i used it not in the same fashion, i decided to just use the do-not-call list idea, then they called me﻿ again, i took the name of their company and recorded the call, sent it in to my nearest law office, and got 700 dollars in compensation for staying out of court, which is how i brought a new laptop</p></blockquote>
<p>Also, you can <a target="_blank" href="http://esupport.fcc.gov/complaints.htm" >report any numbers to FCC</a> and <a target="_blank" href="https://donotcall.gov/default.aspx" >put yourself on do-not-call registry</a>, which makes it illegal for telemarketers to ever call you again.  If they do, record the conversation, phone numbers and SUE them for free money!</p>
<p><strong>FU** YOU TELEMARKETERS!  HAHAHA!  YOU GUYS SUCK, THE LOWEST SCUMBAGS ON EARTH, PROBABLY LOWER THAN DRUG DEALERS!  GET A REAL JOB, GET A F***IN LIFE!</strong></p>
<p>Boy, I love just blasting it out there, let&#8217;s all get these telemarketers and shut them down for good. <img src='http://zedomax.biz/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>P.S. I feel like a citizen who keeps fighting for our RIGHTS!   oh well&#8230;</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/personal/how-to-make-money-from-telemarketers/" >How to Make Money from Telemarketers!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/tag/make-money/" title="make money" rel="tag">make money</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a>, <a href="http://zedomax.biz/blog/tag/telemarketers/" title="telemarketers" rel="tag">telemarketers</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" title="Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner! (March 1, 2010)">Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a> </li>
	<li><a href="http://zedomax.biz/blog/twitter/twitter-diy-how-to-use-twitter-more-effectively/" title="Twitter DIY &#8211; How to Use Twitter More Effectively! (September 28, 2009)">Twitter DIY &#8211; How to Use Twitter More Effectively!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" title="Radical Business &#8211; How to Burn Bridges in Business! (October 19, 2009)">Radical Business &#8211; How to Burn Bridges in Business!</a> </li>
	<li><a href="http://zedomax.biz/blog/adwords/how-to-write-better-adwords-ads/" title="How to Write Better Adwords Ads! (November 4, 2009)">How to Write Better Adwords Ads!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=cfaQtePy8x4:4GDxmXtIy7s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=cfaQtePy8x4:4GDxmXtIy7s:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=cfaQtePy8x4:4GDxmXtIy7s:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=cfaQtePy8x4:4GDxmXtIy7s:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=cfaQtePy8x4:4GDxmXtIy7s:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=cfaQtePy8x4:4GDxmXtIy7s:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/personal/how-to-make-money-from-telemarketers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Write Better Adwords Ads!</title>
		<link>http://zedomax.biz/blog/adwords/how-to-write-better-adwords-ads/</link>
		<comments>http://zedomax.biz/blog/adwords/how-to-write-better-adwords-ads/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 19:27:20 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[AdWords]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[better]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=971</guid>
		<description><![CDATA[Download latest version of Flash to view video!. Click Here to View in Full Screen Mode
Google has just released a new video that shows you how to write better Adwords ads.  Who&#8217;s better listen to than Google themselves?  You can also see the summary here.
Post from: I Make Money Online by Creating Free Content for [...]]]></description>
			<content:encoded><![CDATA[<div class="video youtube"><p align="center"><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/_GI7tsbwnVk" width="500" height="420"><param name="movie" value="http://www.youtube.com/v/_GI7tsbwnVk" /><param name="allowScriptAccess" value="sameDomain" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><param name="scale" value="doesaffect" /><param name="wmode" value="transparent" /><p><a target="_blank" href="http://download.macromedia.com/" >Download latest version of Flash to view video!</a>.</p></object></p></div><p align="center"><a target="_blank" href="http://www.youtube.com/v/_GI7tsbwnVk"  class="lightwindow"> Click Here to View in Full Screen Mode</a></p>
<p>Google has just released a new video that shows you how to write better Adwords ads.  Who&#8217;s better listen to than Google themselves?  You can also <a target="_blank" href="http://www.google.com/adwords/betterads/" >see the summary here</a>.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/adwords/how-to-write-better-adwords-ads/" >How to Write Better Adwords Ads!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/ads/" title="ads" rel="tag">ads</a>, <a href="http://zedomax.biz/blog/category/adwords/" title="AdWords" rel="tag">AdWords</a>, <a href="http://zedomax.biz/blog/tag/adwords/" title="AdWords" rel="tag">AdWords</a>, <a href="http://zedomax.biz/blog/tag/better/" title="better" rel="tag">better</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/tag/write/" title="write" rel="tag">write</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/yodle-ppc-campaign-review/" title="Yodle PPC Campaign Review! (September 11, 2009)">Yodle PPC Campaign Review!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" title="Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner! (March 1, 2010)">Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a> </li>
	<li><a href="http://zedomax.biz/blog/twitter/twitter-diy-how-to-use-twitter-more-effectively/" title="Twitter DIY &#8211; How to Use Twitter More Effectively! (September 28, 2009)">Twitter DIY &#8211; How to Use Twitter More Effectively!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" title="Radical Business &#8211; How to Burn Bridges in Business! (October 19, 2009)">Radical Business &#8211; How to Burn Bridges in Business!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BiKVddLYLEw:irmGaE_Dvo0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BiKVddLYLEw:irmGaE_Dvo0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BiKVddLYLEw:irmGaE_Dvo0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BiKVddLYLEw:irmGaE_Dvo0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=BiKVddLYLEw:irmGaE_Dvo0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BiKVddLYLEw:irmGaE_Dvo0:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/adwords/how-to-write-better-adwords-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2153835600 STOP CALLING ME!</title>
		<link>http://zedomax.biz/blog/personal/2153835600-stop-calling-me/</link>
		<comments>http://zedomax.biz/blog/personal/2153835600-stop-calling-me/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 00:36:30 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[2153835600]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=966</guid>
		<description><![CDATA[Last time I mentioned 6169801367, bunch of telemarketers who keep calling.  Well, I don&#8217;t know if it&#8217;s the same company but it seems like it and they keep calling me even when I am sleeping!  I will be filing an FCC complaint so I hope these guys get shut down from their illegal telemarketing activities.  [...]]]></description>
			<content:encoded><![CDATA[<p>Last time I mentioned <a href="http://zedomax.biz/blog/personal/6169801367-stop-calling-me/" >6169801367</a>, bunch of telemarketers who keep calling.  Well, I don&#8217;t know if it&#8217;s the same company but it seems like it and they keep calling me even when I am sleeping!  I will be filing an FCC complaint so I hope these guys get shut down from their illegal telemarketing activities.  (If this is happening to you, you can do so also <a target="_blank" href="http://esupport.fcc.gov/complaints.htm" >here at FCC</a>, just couple questions to fill out.)</p>
<p>And by the way, I guess FCC shut the other number down (6169801367), no more calls after about a week!</p>
<p>FCC complaints WORK!  Yey!  Go FCC, get those scammer telemarketing companies!</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/personal/2153835600-stop-calling-me/" >2153835600 STOP CALLING ME!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/2153835600/" title="2153835600" rel="tag">2153835600</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=3L4zsTLsxpk:YA406eY1cXI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=3L4zsTLsxpk:YA406eY1cXI:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=3L4zsTLsxpk:YA406eY1cXI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=3L4zsTLsxpk:YA406eY1cXI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=3L4zsTLsxpk:YA406eY1cXI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=3L4zsTLsxpk:YA406eY1cXI:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/personal/2153835600-stop-calling-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Accidental Millionaire Review!</title>
		<link>http://zedomax.biz/blog/great-entrepreneurs/accidental-millionaire-review/</link>
		<comments>http://zedomax.biz/blog/great-entrepreneurs/accidental-millionaire-review/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 16:12:18 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Book Review]]></category>
		<category><![CDATA[Great Entrepreneurs]]></category>
		<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[accidental millionaire]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=962</guid>
		<description><![CDATA[
I tend to read a lot of business books and on my last trip to my local Borders bookstore, I noticed a new book called &#8220;The Accidental Millionaire&#8221;.  Of course, I always enjoy books that are written by the actual entrepreneur and skip those writing about someone else.
Anyways, this is one of the best books [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-963" title="accidental-millionaire" src="http://zedomax.biz/blog/wp-content/uploads/2009/11/accidental-millionaire.jpg" alt="accidental-millionaire" width="267" height="421" /></p>
<p>I tend to read a lot of business books and on my last trip to my local Borders bookstore, I noticed a new book called <a target="_blank" href="http://www.amazon.com/Accidental-Millionaire-Succeed-Without-Really/dp/B002U0KKNU/ref=sr_1_4?ie=UTF8&amp;s=books&amp;qid=1257203094&amp;sr=8-4" >&#8220;The Accidental Millionaire&#8221;</a>.  Of course, I always enjoy books that are written by the actual entrepreneur and skip those writing about someone else.</p>
<p>Anyways, this is one of the best books I have read on business and life.  The renowned photographer/inventor/entrepreur Gary Fong, the author of the book, goes into details of his life and how he came to be a millionaire through &#8220;accidents&#8221; in his life.</p>
<p>I can really relate to him in that sense that most of things I&#8217;ve achieve in life are by &#8220;accident&#8221; also.</p>
<p>In the book, Gary goes into depth of how he grew up with his Korean mother and Chinese father in Southern California.  (and also goes into depth about his mother&#8217;s wig business in the ghetto of Compton where they witness killings of their neighbors by thugs)</p>
<p>The part I enjoy the most is the fact that <strong>Gary shares his marketing wisdom along with biography of his real life</strong>.  I really like how refers to &#8220;zen&#8221; on <em><strong>how the less he tried to do, the more he accomplished</strong></em>, perhaps a good thought for anyone who&#8217;s been struggling to succeed.</p>
<p>I started reading the book 2 days ago and couldn&#8217;t really put it down but I did finish it in just 2 days, it&#8217;s really that good.</p>
<p>Also, I have been learning a lot about photography lately and &#8220;accidentally&#8221; came upon this book at Borders.</p>
<p>I won&#8217;t spoil you though with much more information though other than this is a great book and very inspirational if you are thinking about starting a new business (especially in photography).</p>
<p><a target="_blank" href="http://www.amazon.com/Accidental-Millionaire-Succeed-Without-Really/dp/B002U0KKNU/ref=sr_1_4?ie=UTF8&amp;s=books&amp;qid=1257203094&amp;sr=8-4" >Get your copy on Amazon here</a></p>
<p><a target="_blank" href="http://www.amazon.com/Accidental-Millionaire-Succeed-Without-Really/dp/1933771917/ref=sr_1_2?ie=UTF8&amp;s=books&amp;qid=1257203094&amp;sr=8-2" >or Amazon Kindle here</a></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/great-entrepreneurs/accidental-millionaire-review/" >Accidental Millionaire Review!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/accidental-millionaire/" title="accidental millionaire" rel="tag">accidental millionaire</a>, <a href="http://zedomax.biz/blog/category/book-review/" title="Book Review" rel="tag">Book Review</a>, <a href="http://zedomax.biz/blog/tag/book-review/" title="Book Review" rel="tag">Book Review</a>, <a href="http://zedomax.biz/blog/category/great-entrepreneurs/" title="Great Entrepreneurs" rel="tag">Great Entrepreneurs</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/category/marketing/" title="marketing" rel="tag">marketing</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=7iBXQaS2swA:zomnRmSPx5E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=7iBXQaS2swA:zomnRmSPx5E:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=7iBXQaS2swA:zomnRmSPx5E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=7iBXQaS2swA:zomnRmSPx5E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=7iBXQaS2swA:zomnRmSPx5E:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=7iBXQaS2swA:zomnRmSPx5E:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/great-entrepreneurs/accidental-millionaire-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Manage Your Time Creatively!</title>
		<link>http://zedomax.biz/blog/blogging/how-to-manage-your-time-creatively/</link>
		<comments>http://zedomax.biz/blog/blogging/how-to-manage-your-time-creatively/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 23:03:22 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[creatively]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[manage]]></category>
		<category><![CDATA[reducing stress]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=958</guid>
		<description><![CDATA[Managing time has always been a challenge for me growing up and being taught how to make schedules using a schedule book in school. (or using MS Outlook/scheduling software for modern days)
Because I am a creative person, I don&#8217;t really think too logically, (although I am very good at math) and developed my own system [...]]]></description>
			<content:encoded><![CDATA[<p>Managing time has always been a challenge for me growing up and being taught how to make schedules using a schedule book in school. (or using MS Outlook/scheduling software for modern days)</p>
<p>Because I am a creative person, I don&#8217;t really think too logically, (although I am very good at math) and developed my own system for managing time.</p>
<p>It&#8217;s simple, effective, and I don&#8217;t need to check my list of to-dos or schedules.</p>
<p>I actually got this through dish washing.  Whenever I do dishes, I don&#8217;t do them all at once.  I will do a little bit at a time when I am in the kitchen.  So, let&#8217;s say I go get some snacks from my fridge, I will do 2-3 dishes.  And I keep repeating this all day long until all the dishes are gone.   Also, I make sure to do the &#8220;big dishes&#8221; first, because they tend to clog up my sink if I leave them there and do the small ones first.</p>
<p>Like washing dishes, I apply the same technique in my blogging work.  I do like 2-3 blog posts every couple hours while juggling between reading books and browsing other people&#8217;s blogs.  Also, I try to make sure to prioritize things like appointments or stuff that need to be done sooner than others.</p>
<p><strong>My line of work is sorta like a big mess of network cables that can never really look clean</strong> because I have to blog on so many blogs but this is the most effective way I can blog as efficiently as possible on multiple blogs without wearing myself out. (or killing myself)</p>
<p>By using this method, I no longer have to &#8220;trip out&#8221; or &#8220;stress out&#8221; that I am not getting things done.  I simply keep working continuously (even on weekends) until all of my work is done.</p>
<p>Of course, my dishes/work will never get done because there will always be new ones to take care of.   But this way, I don&#8217;t need a separate scheduling book or whatnot.</p>
<p>This might not work for everyone but for my line of work, I don&#8217;t really have to answer my phone all that much and the hardest part is really maximizing the efficiency of my time.</p>
<p>If I worked 12 hours straight all day long, I will easily get burned out or will stress out, something I don&#8217;t want to do to myself.</p>
<p>Anyways, this method might work for you, think of it as <a target="_blank" href="http://en.wikipedia.org/wiki/Round-robin_scheduling" >round-robin scheduling</a> in computer engineering terms or just a creative way to manage your time.</p>
<p>Well, the real point is that you need to make your own method of effectively managing time whether that&#8217;s a Blackberry or drawing doodles on your whiteboard.  Whatever it is, you need to find something that works and you don&#8217;t need to stress about your work.  (to live a long life that is&#8230;)</p>
<h2>&#8220;Think out of the box, don&#8217;t use everything they taught you in school.&#8221;</h2>
<p><img class="alignnone size-full wp-image-959" title="mess" src="http://zedomax.biz/blog/wp-content/uploads/2009/11/mess.jpg" alt="mess" width="319" height="425" /></p>
<p>(<a target="_blank" href="http://www.vibrant.com/cable-messes.php" >Image Credit</a>)</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/how-to-manage-your-time-creatively/" >How to Manage Your Time Creatively!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/creatively/" title="creatively" rel="tag">creatively</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/tag/manage/" title="manage" rel="tag">manage</a>, <a href="http://zedomax.biz/blog/tag/reducing-stress/" title="reducing stress" rel="tag">reducing stress</a>, <a href="http://zedomax.biz/blog/tag/time/" title="time" rel="tag">time</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/how-to-make-time-and-get-things-done-when-you-dont-even-have-time-to-go-watch-movies/" title="How to Make Time and Get Things Done When You Don&#8217;t Even Have Time to Go Watch Movies! (October 28, 2009)">How to Make Time and Get Things Done When You Don&#8217;t Even Have Time to Go Watch Movies!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" title="Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner! (March 1, 2010)">Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a> </li>
	<li><a href="http://zedomax.biz/blog/twitter/twitter-diy-how-to-use-twitter-more-effectively/" title="Twitter DIY &#8211; How to Use Twitter More Effectively! (September 28, 2009)">Twitter DIY &#8211; How to Use Twitter More Effectively!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" title="Radical Business &#8211; How to Burn Bridges in Business! (October 19, 2009)">Radical Business &#8211; How to Burn Bridges in Business!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=lrFhJ3oQNio:msmDeUH7g70:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=lrFhJ3oQNio:msmDeUH7g70:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=lrFhJ3oQNio:msmDeUH7g70:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=lrFhJ3oQNio:msmDeUH7g70:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=lrFhJ3oQNio:msmDeUH7g70:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=lrFhJ3oQNio:msmDeUH7g70:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/how-to-manage-your-time-creatively/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make Time and Get Things Done When You Don’t Even Have Time to Go Watch Movies!</title>
		<link>http://zedomax.biz/blog/great-entrepreneurs/how-to-make-time-and-get-things-done-when-you-dont-even-have-time-to-go-watch-movies/</link>
		<comments>http://zedomax.biz/blog/great-entrepreneurs/how-to-make-time-and-get-things-done-when-you-dont-even-have-time-to-go-watch-movies/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 20:04:32 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Great Entrepreneurs]]></category>
		<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[get things done]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[when you don't have time]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=956</guid>
		<description><![CDATA[Today&#8217;s subject is on how to make more time to get things done when you don&#8217;t even have time to go watch movies.  This is because I haven&#8217;t had the time to go watch movies in the theater for the last 2 years, mostly because I have been busy.
But, today I will show you how [...]]]></description>
			<content:encoded><![CDATA[<p>Today&#8217;s subject is on how to make more time to get things done when you don&#8217;t even have time to go watch movies.  This is because I haven&#8217;t had the time to go watch movies in the theater for the last 2 years, mostly because I have been busy.</p>
<p>But, today I will show you how to make time for your dreams and whatnot even if you think you have no time for it.</p>
<p>First of all, I want you to write down your goals.  I tend to just blog them all and ramble to you but again, writing down your goals in life on paper (or a blog) would probably make you &#8220;subconsciously&#8221; make time to accomplish those.</p>
<p>The reason I am writing this blog post is because recently, I&#8217;ve set new goals in my life, that is <a target="_blank" href="http://progolferdigest.com/swing-tips/i-am-starting-to-play-pro-tournaments-again/" >to make it to the PGA Tour</a>.  Since I&#8217;ve made that goal, amazingly, I&#8217;ve been seen golfing more.  I&#8217;ve hit about 10,000 golf balls and 1,000 practice putts since I set the goal about 2 weeks ago.  Before that, I hardly even hit a golf ball because I got &#8220;lazy&#8221; and didn&#8217;t really make my goals clear.  On top of all this, my blog work productivity shot up about 10 times because I have to make time for my new goals in life.</p>
<p>It&#8217;s interesting to me that when you are limited by time and resources, you brain automatically adjusts to that.</p>
<p>So, what?</p>
<p>If you have a goal in your life such as one day owning your own restaurant business or whatever, the time to start taking action is NOW.  Once you procrastinate and don&#8217;t start doing something about it NOW, 10 years will go past by you and you will regret that you waste that valuable time tweeting to your friends or even poking around Facebook.  Not that those services are bad or anything but can you think of how much time you waste per day on doing things that are not productive?</p>
<p>Once you start making clear goals of what you want to accomplish, your brain will adjust accordingly and somehow make it happen.</p>
<p>Well, I still have no time to go watch movies but at least I am on my way to playing on the PGA Tour.  (perhaps occasionally, I actually don&#8217;t want to play as my sole profession but I just want to simply prove the point that I can make it to the PGA Tour if I tried hard enough.)</p>
<p>Wish me luck and I wish you luck in whatever goals you have set (or are setting) today.  Most importantly, take action like &#8220;right now&#8221; that will get you one step nearer your goals and dreams.</p>
<h2>&#8220;Life without goals is like driving around town without a destination.&#8221;</h2>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/great-entrepreneurs/how-to-make-time-and-get-things-done-when-you-dont-even-have-time-to-go-watch-movies/" >How to Make Time and Get Things Done When You Don&#8217;t Even Have Time to Go Watch Movies!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/get-things-done/" title="get things done" rel="tag">get things done</a>, <a href="http://zedomax.biz/blog/category/great-entrepreneurs/" title="Great Entrepreneurs" rel="tag">Great Entrepreneurs</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/tag/make/" title="make" rel="tag">make</a>, <a href="http://zedomax.biz/blog/tag/time/" title="time" rel="tag">time</a>, <a href="http://zedomax.biz/blog/tag/when-you-dont-have-time/" title="when you don&#039;t have time" rel="tag">when you don&#039;t have time</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/blogging/how-to-manage-your-time-creatively/" title="How to Manage Your Time Creatively! (November 2, 2009)">How to Manage Your Time Creatively!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" title="Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner! (March 1, 2010)">Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a> </li>
	<li><a href="http://zedomax.biz/blog/twitter/twitter-diy-how-to-use-twitter-more-effectively/" title="Twitter DIY &#8211; How to Use Twitter More Effectively! (September 28, 2009)">Twitter DIY &#8211; How to Use Twitter More Effectively!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" title="Radical Business &#8211; How to Burn Bridges in Business! (October 19, 2009)">Radical Business &#8211; How to Burn Bridges in Business!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=YxvpQwWjD8U:zQAc5x_WhEM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=YxvpQwWjD8U:zQAc5x_WhEM:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=YxvpQwWjD8U:zQAc5x_WhEM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=YxvpQwWjD8U:zQAc5x_WhEM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=YxvpQwWjD8U:zQAc5x_WhEM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=YxvpQwWjD8U:zQAc5x_WhEM:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/great-entrepreneurs/how-to-make-time-and-get-things-done-when-you-dont-even-have-time-to-go-watch-movies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Efficiency and Logistics in South Korea</title>
		<link>http://zedomax.biz/blog/marketing/efficiency-and-logistics-in-south-korea/</link>
		<comments>http://zedomax.biz/blog/marketing/efficiency-and-logistics-in-south-korea/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 16:31:14 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[marketing]]></category>
		<category><![CDATA[efficiency]]></category>
		<category><![CDATA[logistics]]></category>
		<category><![CDATA[south korea]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=950</guid>
		<description><![CDATA[I grew up South Korea until I was 9 years old and also I went back for a year in year 2004 and boy South Korea probably has one of the best efficient logistics in the world.
South Korea is about 2/3 size of the State of California.  Compared to the UPS/FedEx 1-day service we get [...]]]></description>
			<content:encoded><![CDATA[<p>I grew up South Korea until I was 9 years old and also I went back for a year in year 2004 and boy South Korea probably has one of the best efficient logistics in the world.</p>
<p>South Korea is about 2/3 size of the State of California.  Compared to the UPS/FedEx 1-day service we get here, since labor is much cheaper in Korea, they can ship good within literally matter of hours.</p>
<p>Especially if you live in Seoul, the capital, you can expect to go shopping at the mall and have your goods bought shipped within 30 minutes using Quick Delivery Service(퀵서비스), which is a form of delivery using motorcycles.</p>
<p>They have a similar service to eBay, an auction site.  Well, before I came back to the States, I sold literally everything I owned in South Korea with that auction service.  Average delivery time for most goods?  No more than 2 hours and in return I got my money transferred straight to my bank account within minutes of the buyer receiving my goods.</p>
<p>Of course, the cost of labor in the U.S. makes efficient logistics like that nearly impossible and also the high-cost of insurance makes motorcycle delivery even more so.</p>
<p><img class="alignnone size-full wp-image-951" title="quick-service" src="http://zedomax.biz/blog/wp-content/uploads/2009/10/quick-service.jpg" alt="quick-service" width="500" height="447" /></p>
<p>(<a target="_blank" href="http://map.naver.com/local/company_view.nhn?code=12907514" >Image Credit</a>)</p>
<p>One thing apart from lower cost of labor, one thing I see that we could be doing in the U.S. is the fact that there&#8217;s literally thousands of different delivery companies in South Korea, meaning they are all competing for your business.</p>
<p>For you to ship something from Seoul to Pusan (which is about 6 hours drive, about the distance from San Francisco to Los Angeles), it costs you almost nothing, maybe $2-3.</p>
<p>In the meanwhile, in the U.S., UPS and FedEx has monopolized logistics in a way.  I know there&#8217;s some other small companies who deliver locally but they are too, more expensive than the national delivery companies.</p>
<p>So what?</p>
<p>I am just saying, UPS (pronounced &#8220;OOPs&#8221; if they miss your package) and FedEx could do a little better here if they had <a href="http://zedomax.biz/blog/inspirational/how-to-add-a-little-competition-to-your-work/" >more competition</a>.  There&#8217;s clearly more ground to cover for packages going over multiple States but clearly, there&#8217;s no reason why UPS and FedEx cannot do same day shipping for in-state deliveries.  Even if they did already, we shouldn&#8217;t have to pay more for that.</p>
<p>I just wish we could somehow push UPS and FedEx to come up with new innovative ways to ship goods like their tracking systems.  <strong>Recently, I&#8217;ve noticed nothing new from them other than sitting on their vans and collecting money.</strong> -<em><strong> Keep innovating, never stop, you can never be the best in the world.</strong></em></p>
<p>Well, just sayin&#8217;, we don&#8217;t have the most efficient &#8220;local&#8221; logistics in the world, it could be a LOT better and cheaper, even with high labor costs.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/marketing/efficiency-and-logistics-in-south-korea/" >Efficiency and Logistics in South Korea</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/efficiency/" title="efficiency" rel="tag">efficiency</a>, <a href="http://zedomax.biz/blog/tag/logistics/" title="logistics" rel="tag">logistics</a>, <a href="http://zedomax.biz/blog/category/marketing/" title="marketing" rel="tag">marketing</a>, <a href="http://zedomax.biz/blog/tag/south-korea/" title="south korea" rel="tag">south korea</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/inspirational/mind-hack-work-less-play-more/" title="Mind Hack &#8211; Work Less, Play More (December 4, 2008)">Mind Hack &#8211; Work Less, Play More</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-traits-of-a-fisherman-can-be-applied-to-internet-marketing-and-niche-blogging/" title="How Traits of a Fisherman Can Be Applied to Internet Marketing and Niche Blogging! (March 16, 2009)">How Traits of a Fisherman Can Be Applied to Internet Marketing and Niche Blogging!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-get-a-job-overseas/" title="How to Get a Job Overseas! (October 20, 2008)">How to Get a Job Overseas!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/how-korean-ginseng-became-korean-ginseng-death-marketing-strategy/" title="How Korean Ginseng Became Korean Ginseng! &#8211; Death Marketing Strategy (September 9, 2009)">How Korean Ginseng Became Korean Ginseng! &#8211; Death Marketing Strategy</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/a-problogger-is-someone-who-works-everywhere-and-all-the-time/" title="A Problogger is someone who works Everywhere and All the Time! (August 26, 2009)">A Problogger is someone who works Everywhere and All the Time!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=frfEMGKdmaA:ETlQKtnaEeQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=frfEMGKdmaA:ETlQKtnaEeQ:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=frfEMGKdmaA:ETlQKtnaEeQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=frfEMGKdmaA:ETlQKtnaEeQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=frfEMGKdmaA:ETlQKtnaEeQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=frfEMGKdmaA:ETlQKtnaEeQ:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/marketing/efficiency-and-logistics-in-south-korea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sales Tip – Don’t Just Fry the Big Fish, Fry Small Fish Too!</title>
		<link>http://zedomax.biz/blog/sales/sales-tip-dont-just-fry-the-big-fish-fry-small-fish-too/</link>
		<comments>http://zedomax.biz/blog/sales/sales-tip-dont-just-fry-the-big-fish-fry-small-fish-too/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 05:56:27 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Sales]]></category>
		<category><![CDATA[don't just]]></category>
		<category><![CDATA[fry big fish]]></category>
		<category><![CDATA[fry small fish]]></category>
		<category><![CDATA[sales tip]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=948</guid>
		<description><![CDATA[A lot of times, sales people focus on one thing, that of frying big fish and forget to focus on the rest.   Gladly, I&#8217;ve never been a salesman of any kind but as a person outside the salesman box, I can see why those salesmen who only focus on frying big fish never get ahead [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of times, sales people focus on one thing, that of frying big fish and forget to focus on the rest.   Gladly, I&#8217;ve never been a salesman of any kind but as a person outside the salesman box, I can see why those salesmen who only focus on frying big fish never get ahead nor ever become anything better.</p>
<p>I know a ton of these types of salesmen, I deal with them on a daily basis.  As soon as I tell them I make money online with blogs, they think I am small fish and start treating me like a kid.  Perhaps they are right, my company isn&#8217;t probably the most biggest of fish out there but heck, that&#8217;s not the right way to treat your customer.  (and I am still working for myself while <strong>these salesmen are obviously not in control of their life and wonder why</strong>)</p>
<p>No matter how small or big your customer&#8217;s business is, customer is always right and if you don&#8217;t get that, you will lose a LOT of customers.</p>
<p>For example, I KNOW a lot of big fishes I can refer to if sales people start treating me right.  A lot of times, these wrong salesmen never even get to that point nor get my business.  I actually BLOG about how bad their sales tactics are afterwards, that&#8217;s my way of treating people like that.  Well, I am trying to stop though, no need to fill my mind with the &#8220;real&#8221; small fishes in life.  In fact, today it happened, that&#8217;s why I am blogging but I decided to keep the ignorant salesmen anonymous.  I rather <a target="_blank" href="http://progolferdigest.com/short-game/putting/how-to-practice-putting/" >focus on my golf game</a>.</p>
<p>Anyways, whether you are a car salesman or work for Fortune 500 company, just realize you never know when that small fish business works with thousands of other small fishes or even big fishes.  The point is, you want to create a &#8220;buzz&#8221; for your company by providing equally &#8220;satisfactory&#8221; service to every one of your customers.</p>
<p>My advice for business and life when dealing with people, &#8220;don&#8217;t discriminate based on size of business&#8221; just like you wouldn&#8217;t discriminate if someone was black, white, or asian.  There&#8217;s nothing to it. <img src='http://zedomax.biz/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Those who do this, I have seen, <em><strong>succeed at far higher levels than those who don&#8217;t and end up working for someone else rest of their life.</strong></em></p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/sales/sales-tip-dont-just-fry-the-big-fish-fry-small-fish-too/" >Sales Tip &#8211; Don&#8217;t Just Fry the Big Fish, Fry Small Fish Too!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/dont-just/" title="don&#039;t just" rel="tag">don&#039;t just</a>, <a href="http://zedomax.biz/blog/tag/fry-big-fish/" title="fry big fish" rel="tag">fry big fish</a>, <a href="http://zedomax.biz/blog/tag/fry-small-fish/" title="fry small fish" rel="tag">fry small fish</a>, <a href="http://zedomax.biz/blog/category/sales/" title="Sales" rel="tag">Sales</a>, <a href="http://zedomax.biz/blog/tag/sales-tip/" title="sales tip" rel="tag">sales tip</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=tsCjggroamY:TwqN3kWqTuU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=tsCjggroamY:TwqN3kWqTuU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=tsCjggroamY:TwqN3kWqTuU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=tsCjggroamY:TwqN3kWqTuU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=tsCjggroamY:TwqN3kWqTuU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=tsCjggroamY:TwqN3kWqTuU:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/sales/sales-tip-dont-just-fry-the-big-fish-fry-small-fish-too/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add a Little “Competition” to Your Work!</title>
		<link>http://zedomax.biz/blog/inspirational/how-to-add-a-little-competition-to-your-work/</link>
		<comments>http://zedomax.biz/blog/inspirational/how-to-add-a-little-competition-to-your-work/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 02:05:53 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=944</guid>
		<description><![CDATA[I have to admit, I am probably one of the most competitive people in the world.  Partly because I used to play a lot of competitive golf and partly because I grew up in Seoul as a kid where fighting was part of daily life.
This &#8220;competition&#8221;, I think can actually help you grow faster, stronger, [...]]]></description>
			<content:encoded><![CDATA[<p>I have to admit, I am probably one of the most competitive people in the world.  Partly because I used to play a lot of competitive golf and partly because I grew up in Seoul as a kid where fighting was part of daily life.</p>
<p>This &#8220;competition&#8221;, I think can actually help you grow faster, stronger, and ultimately help you succeed.</p>
<p>I remember when I first got my job, there was a time sheet for people to sign in when they got to work.  The company even had a weird rule that if you were late to work, you would have to show up on Saturday to work, otherwise you&#8217;d be fired.</p>
<p>Well, the first couple weeks I got up late couple times.  I had to go to work on Saturday for the next whole month, it was frustrating.</p>
<p>Eventually, I got real competitive.  The first guy that showed up at the company usually signed in at 6AM.  I started showing up at 4:30AM.  Basically I came to work earlier than this #1 guy and went home after this guy.</p>
<p>WHY?</p>
<p>Well, like I said, I am competitive, I don&#8217;t like losing at anything.  But through that process, I got a LOT of work done, I probably did work of 3 people per day.</p>
<p>Now, I don&#8217;t suggest you to go out and do this as you probably will tire yourself out quickly and there&#8217;s really no point of showing up to work at 4:30AM.</p>
<p>This is just an example that a little competition in your life can make you more productive rather than having none.</p>
<p>Whatever you do, put something on the line so you can &#8220;win&#8221;, even if that means just in your head.</p>
<p>For example, when I play golf with pro golfer friends, we ALWAYS bet some money, even a dollar a hole makes some great competition.  This is something one of my pro golfer friends taught me, to always have something on the line.  It&#8217;s not just for the money, it&#8217;s so you focus on the game of winning.</p>
<p>Let&#8217;s say your boss asks you and your co-worker to make a presentation.  Start a bet between you and your co-worker, something like $10 for whoever finishes their part of the presentation first. (and right)</p>
<p>Now, I don&#8217;t really go to an office, I have to make these imaginary situations at home.  For example, if I can finish 30 blog posts in the morning, I reward myself by going to the driving range and hitting golf balls in the afternoon.  If I didn&#8217;t have something on the line, I would work slow, inefficient, and waste valuable time in my life.</p>
<p>Whatever you do, make it count by putting yourself in the hole first.  Your goal of course is to try to get out.</p>
<p>One of the most fun exercises I did (or I had to) was having absolutely no cash in the bank but I had to survive.  When I was put to the test, I survived because I would do anything to survive.</p>
<p>Perhaps you still live with your parents, don&#8217;t keep living with your parents because it won&#8217;t help you in the long run.  Force yourself to learn new skills and survive in the real world by moving out.  Once you move out and have to pay for everything yourself, that&#8217;s when your real skills will appear in your life. (yes, automatically!)</p>
<p>For me, I HAD to move out of my parents place after college, I simply realized how lazy I was getting.  Even though it&#8217;s great when your mom does your laundry living in your parent&#8217;s pad, the worst thing is that you begin to take it for granted and become lazy at everything you do.  Perhaps not but in my case, moving out was the only choice.</p>
<p>Remember, put yourself in a position to succeed, that is to put yourself in a big hole or a challenge that you MUST do something about.</p>
<p>Well, there goes me rambling again but I hope these stories help you, especially if you are struggling at work or life in general.</p>
<p>P.S. It also helps to have a close friend who is on the same level as you are, he/she will subconsciously help you by adding &#8220;competition&#8221;.  And always, try to make friends who are better at something than you are so you can learn something new.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/inspirational/how-to-add-a-little-competition-to-your-work/" >How to Add a Little &#8220;Competition&#8221; to Your Work!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/add/" title="add" rel="tag">add</a>, <a href="http://zedomax.biz/blog/tag/competition/" title="competition" rel="tag">competition</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a>, <a href="http://zedomax.biz/blog/tag/work/" title="work" rel="tag">work</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" title="Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner! (March 1, 2010)">Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a> </li>
	<li><a href="http://zedomax.biz/blog/twitter/twitter-diy-how-to-use-twitter-more-effectively/" title="Twitter DIY &#8211; How to Use Twitter More Effectively! (September 28, 2009)">Twitter DIY &#8211; How to Use Twitter More Effectively!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" title="Radical Business &#8211; How to Burn Bridges in Business! (October 19, 2009)">Radical Business &#8211; How to Burn Bridges in Business!</a> </li>
	<li><a href="http://zedomax.biz/blog/adwords/how-to-write-better-adwords-ads/" title="How to Write Better Adwords Ads! (November 4, 2009)">How to Write Better Adwords Ads!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=s1OmoLzo9Zk:H6ANKrVaLCs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=s1OmoLzo9Zk:H6ANKrVaLCs:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=s1OmoLzo9Zk:H6ANKrVaLCs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=s1OmoLzo9Zk:H6ANKrVaLCs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=s1OmoLzo9Zk:H6ANKrVaLCs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=s1OmoLzo9Zk:H6ANKrVaLCs:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/inspirational/how-to-add-a-little-competition-to-your-work/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I “broke in” my IKEA Chair in after 2+ Years!</title>
		<link>http://zedomax.biz/blog/blogging/i-broke-in-my-ikea-chair-in-after-2-years/</link>
		<comments>http://zedomax.biz/blog/blogging/i-broke-in-my-ikea-chair-in-after-2-years/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 06:52:18 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[2+ years]]></category>
		<category><![CDATA[broke in]]></category>
		<category><![CDATA[my ikea chair]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=939</guid>
		<description><![CDATA[

(right side of the chair)

(left side of the chair close-up)
I bought this IKEA chair 2+ years ago when I moved into my 12th floor apartment looking over the Pacific Ocean here in San Francisco.  Well, I just realized that the sides of my chair has worn out to a point that there exists a small [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://zedomax.biz/blog/wp-content/uploads/2009/10/my-chair-1.jpg" ><img class="alignnone size-full wp-image-941" title="my-chair-1" src="http://zedomax.biz/blog/wp-content/uploads/2009/10/my-chair-1.jpg" alt="my-chair-1" width="500" height="375" /></a></p>
<p><img class="alignnone size-full wp-image-942" title="my-chair-2" src="http://zedomax.biz/blog/wp-content/uploads/2009/10/my-chair-2.jpg" alt="my-chair-2" width="500" height="375" /></p>
<p>(right side of the chair)</p>
<p><img class="alignnone size-full wp-image-940" title="my-chair-3" src="http://zedomax.biz/blog/wp-content/uploads/2009/10/my-chair-3.jpg" alt="my-chair-3" width="500" height="667" /></p>
<p>(left side of the chair close-up)</p>
<p>I bought this IKEA chair 2+ years ago when I moved into my 12th floor apartment looking over the Pacific Ocean here in San Francisco.  Well, I just realized that the sides of my chair has worn out to a point that there exists a small bump both on the left and right side of my chair.</p>
<p>It&#8217;s actually rather comfortable as my elbows have a place to sit and they don&#8217;t slip like they used to when I first got my chair.</p>
<p>I must be blogging too much, well, let me try to cut down a bit. <img src='http://zedomax.biz/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Will I get a new chair?</p>
<p>Heck no, it took me 2 and a half years to break it in.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/i-broke-in-my-ikea-chair-in-after-2-years/" >I &#8220;broke in&#8221; my IKEA Chair in after 2+ Years!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/2-years/" title="2+ years" rel="tag">2+ years</a>, <a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/broke-in/" title="broke in" rel="tag">broke in</a>, <a href="http://zedomax.biz/blog/tag/my-ikea-chair/" title="my ikea chair" rel="tag">my ikea chair</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=w7k_Fy6fg5o:SJ1ozyTGq7w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=w7k_Fy6fg5o:SJ1ozyTGq7w:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=w7k_Fy6fg5o:SJ1ozyTGq7w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=w7k_Fy6fg5o:SJ1ozyTGq7w:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=w7k_Fy6fg5o:SJ1ozyTGq7w:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=w7k_Fy6fg5o:SJ1ozyTGq7w:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/i-broke-in-my-ikea-chair-in-after-2-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What You Can Learn From Teenager Make-up Artists on YouTube!</title>
		<link>http://zedomax.biz/blog/make-money-online/what-you-can-learn-from-teenager-make-up-artists-on-youtube/</link>
		<comments>http://zedomax.biz/blog/make-money-online/what-you-can-learn-from-teenager-make-up-artists-on-youtube/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 05:46:42 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[Viral Marketing]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[artists]]></category>
		<category><![CDATA[make-up]]></category>
		<category><![CDATA[teenager]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=937</guid>
		<description><![CDATA[I don&#8217;t know if you have noticed but teenager make-up artists have taken over the HOWTO section on YouTube, plus a lot of them are ranked Top 10 YouTubers.
What can you learn from these teenagers who can rack up more views on YouTube than companies literally spending millions to rack up the same amount of [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know if you have noticed but teenager make-up artists have taken over the HOWTO section on YouTube, plus a lot of them are ranked Top 10 YouTubers.</p>
<p>What can you learn from these teenagers who can rack up more views on YouTube than companies literally spending millions to rack up the same amount of page views?</p>
<p>First, it&#8217;s not luck that these teenagers are becoming more popular on YouTube.  By nature, the topic of &#8220;make-up&#8221; can appeal to most women in the world as it&#8217;s something that practically all women do, make up their face.</p>
<p>Heck, I wish I knew how to do make up, I would be racking up million views in couple days like some of these teenagers.</p>
<p>What they have found is a &#8220;great niche&#8221; and a niche that a large number of our population can relate/associate to.</p>
<p>Of course, I remember about just 2 years ago when the YouTube HOWTO section wasn&#8217;t filled with make-up artists but rather with electronic HOWTOs.  Those days are gone, technology geeks no longer rule YouTube HOWTO section.</p>
<p>Perhaps, there&#8217;s still other hidden &#8220;niches&#8221; that hasn&#8217;t been explored on YouTube.</p>
<p>By the way, contrary to what some people believe, YouTube has really just hit the tip of the iceberg, YouTube I think will be the next &#8220;search&#8221; market.  Even Google is just &#8220;starting&#8221; to roll out video search ads.</p>
<p>In 2-3 years, I believe this market will become very competitive sorta like how Google Adwords/Adsense is right now.  So, what are you waiting for!</p>
<p>Find a niche that has not been exploited by other teenagers and go make videos and UPLOAD!</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/make-money-online/what-you-can-learn-from-teenager-make-up-artists-on-youtube/" >What You Can Learn From Teenager Make-up Artists on YouTube!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/artists/" title="artists" rel="tag">artists</a>, <a href="http://zedomax.biz/blog/category/make-money-online/" title="Make Money Online" rel="tag">Make Money Online</a>, <a href="http://zedomax.biz/blog/tag/make-up/" title="make-up" rel="tag">make-up</a>, <a href="http://zedomax.biz/blog/category/marketing/" title="marketing" rel="tag">marketing</a>, <a href="http://zedomax.biz/blog/tag/teenager/" title="teenager" rel="tag">teenager</a>, <a href="http://zedomax.biz/blog/category/marketing/viral-marketing-marketing/" title="Viral Marketing" rel="tag">Viral Marketing</a>, <a href="http://zedomax.biz/blog/tag/youtube/" title="youtube" rel="tag">youtube</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/recession-contest-win-up-to-2000-from-office-depot/" title="Recession Contest &#8211; Win Up To $2000 from Office Depot! (June 16, 2009)">Recession Contest &#8211; Win Up To $2000 from Office Depot!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/howto-make-a-million-bucks-using-facebook/" title="HOWTO make a million bucks using FaceBook (October 26, 2007)">HOWTO make a million bucks using FaceBook</a> </li>
	<li><a href="http://zedomax.biz/blog/marketing/how-to-make-viral-youtube-videos-and-drive-traffic-to-your-blog/" title="How to Make Viral YouTube Videos and Drive Traffic to Your Blog! (September 22, 2009)">How to Make Viral YouTube Videos and Drive Traffic to Your Blog!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/clever-advertising-with-saw/" title="Clever Advertising with Saw (October 30, 2007)">Clever Advertising with Saw</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=KW_vQbIieYI:fsT_VQJb_t8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=KW_vQbIieYI:fsT_VQJb_t8:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=KW_vQbIieYI:fsT_VQJb_t8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=KW_vQbIieYI:fsT_VQJb_t8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=KW_vQbIieYI:fsT_VQJb_t8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=KW_vQbIieYI:fsT_VQJb_t8:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/make-money-online/what-you-can-learn-from-teenager-make-up-artists-on-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging DIY – How to “Recycle” Your Blog Posts!</title>
		<link>http://zedomax.biz/blog/blogging/blogging-diy-how-to-recycle-your-blog-posts/</link>
		<comments>http://zedomax.biz/blog/blogging/blogging-diy-how-to-recycle-your-blog-posts/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 01:26:35 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blog DIY]]></category>
		<category><![CDATA[Blog Training]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[blogging diy]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[recycle]]></category>
		<category><![CDATA[your blog posts]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=935</guid>
		<description><![CDATA[One of the most important skills for a pro-blogger to have is the ability to &#8220;recycle&#8221; your blog posts.
How do you Recycle Blog Posts?
It&#8217;s rather simple, you simply bring up a lot of your older blog posts on your recent blog posts by linking on relevant sections.
For example, I did a new blog post on [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most important skills for a pro-blogger to have is the ability to &#8220;recycle&#8221; your blog posts.</p>
<h2>How do you Recycle Blog Posts?</h2>
<p>It&#8217;s rather simple, you simply bring up a lot of your older blog posts on your recent blog posts by linking on relevant sections.</p>
<p>For example, I did a new blog post on <a target="_blank" href="http://zedomax.com/blog/2009/10/08/top-30-led-diy-projects/" >Top 30 LED Projects here</a>.  Basically I am &#8220;recycling&#8221; all of my old LED project blog posts.</p>
<p>There&#8217;s many other ways to do it, just keep that thought of &#8220;recycling blog posts&#8221; while you write any blog posts.</p>
<p>If you have hard time finding one of your blog posts, simply do a Google search for, &#8220;site:mysite.com oldblogpostkeywordhere&#8221;.  This should let you find that old blog post easily and you can link to it from your new blog post.</p>
<p>Also, if you want to learn how to do this better, I suggest reading some of the mainstream blogs like Gizmodo, Engadget, Boingboing, or your favorite as they do this consistently on a daily basis.</p>
<p>You can also recycle blog posts on multiple blogs if you have multiple blogs.</p>
<p>For example, I have a blog about eco-friendly and green.  Sometimes I will do a blog post on my tech blog featuring an eco-friendly gadget.  If there&#8217;s relevant information I can link from my eco-friendly blog, I will do that and &#8220;recycle&#8221; a blog post by referring to it.</p>
<h2>Why recycle blog posts?</h2>
<p>This is a great way for you to mention older blog posts that might be simply getting old and not getting enough attention.  Remember, a blog post is never dead.</p>
<p>Another point is that there&#8217;s some SEO benefits when you link back to one of your older blog posts.  Perhaps your older blog posts are losing SEO with time (which most blog posts do if the blog is updated often), you might want to &#8220;refreshen&#8221; that SEO for the older blog posts every once in awhile.</p>
<p>Recycling blog posts is probably one of the overrated skills of a blogger.  I don&#8217;t even know if there&#8217;s a definition for that, perhaps interlinking might be the closest thing to it.  Simply put it, it&#8217;s referencing your own sources if you have any.</p>
<p>Well, I hope you start recycling more blog posts, great for your visitors and SEO.</p>
<p>Happy bloggin~</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/blogging-diy-how-to-recycle-your-blog-posts/" >Blogging DIY &#8211; How to &#8220;Recycle&#8221; Your Blog Posts!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/blog-diy/" title="Blog DIY" rel="tag">Blog DIY</a>, <a href="http://zedomax.biz/blog/category/blog-training/" title="Blog Training" rel="tag">Blog Training</a>, <a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/blogging-diy/" title="blogging diy" rel="tag">blogging diy</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/tag/recycle/" title="recycle" rel="tag">recycle</a>, <a href="http://zedomax.biz/blog/category/seo/" title="SEO" rel="tag">SEO</a>, <a href="http://zedomax.biz/blog/tag/your-blog-posts/" title="your blog posts" rel="tag">your blog posts</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" title="Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner! (March 1, 2010)">Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a> </li>
	<li><a href="http://zedomax.biz/blog/twitter/twitter-diy-how-to-use-twitter-more-effectively/" title="Twitter DIY &#8211; How to Use Twitter More Effectively! (September 28, 2009)">Twitter DIY &#8211; How to Use Twitter More Effectively!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" title="Radical Business &#8211; How to Burn Bridges in Business! (October 19, 2009)">Radical Business &#8211; How to Burn Bridges in Business!</a> </li>
	<li><a href="http://zedomax.biz/blog/adwords/how-to-write-better-adwords-ads/" title="How to Write Better Adwords Ads! (November 4, 2009)">How to Write Better Adwords Ads!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=nnVXOSnPqBw:mgZpUfH6CBk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=nnVXOSnPqBw:mgZpUfH6CBk:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=nnVXOSnPqBw:mgZpUfH6CBk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=nnVXOSnPqBw:mgZpUfH6CBk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=nnVXOSnPqBw:mgZpUfH6CBk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=nnVXOSnPqBw:mgZpUfH6CBk:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/blogging-diy-how-to-recycle-your-blog-posts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why I never follow Rules or Directions!</title>
		<link>http://zedomax.biz/blog/great-entrepreneurs/why-i-never-follow-rules-or-directions/</link>
		<comments>http://zedomax.biz/blog/great-entrepreneurs/why-i-never-follow-rules-or-directions/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 00:36:31 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Great Entrepreneurs]]></category>
		<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[directions]]></category>
		<category><![CDATA[i]]></category>
		<category><![CDATA[never follow]]></category>
		<category><![CDATA[rules]]></category>
		<category><![CDATA[why]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=926</guid>
		<description><![CDATA[I have to admit, I am one of the most stubborn people in the world.  I do things because I want to.  if I don&#8217;t like something, I simply don&#8217;t do it.  In other words, I like being who I am, having my clear opinions on everything in life.
Why?
Because this is my life, no one [...]]]></description>
			<content:encoded><![CDATA[<p>I have to admit, I am one of the most stubborn people in the world.  I do things because I want to.  if I don&#8217;t like something, I simply don&#8217;t do it.  In other words, I like being who I am, having my clear opinions on everything in life.</p>
<p>Why?</p>
<p>Because this is my life, no one else should be blamed for suggesting I do it any other way.</p>
<p>Even through school, I ALWAYS had problems with teachers and professors because I never saw the concrete line between me as a student and them, the teachers/professors.  Because of  this, I usually pissed off most of my teachers/professors.  And they would be pissed off usually because I was pretty smart and got As on most of my tests but when it came down to personal evaluations of me, they&#8217;d grade me harshly for my attitude.</p>
<p>Of  course, a good attitude is essential to learning new things, you can never become smart and you can never know EVERYTHING.</p>
<p>In the end, I learned all these things and rules about how I should live my life.  Well, in the very end, I threw ALL of them out the window. (and forgot about them permanently)</p>
<p>Why?</p>
<p>Well, this also goes back  to my professional golfing experiences.  I used to watch one of the best junior golfers (he was actually the #1 junior golfer in the world at the time) on the practice green all the time.  He used to get all the balls off the green if he missed a shot and started over.  I didn&#8217;t know why he kept doing that but I tried his practicing method and it helped me greatly to hit better shots on the course.</p>
<p>The reason for that is because <strong>when you start with nothing, you have all the room to try new things and create great memories of what you are doing well</strong>, essential skill to thinking positively and succeeding.  An empty mind can sometimes be more valuable than a mind filled with junk.</p>
<p>Same thing in life, sometimes you need to throw out every ideal/theory/rule in your life and simply start over.</p>
<p>Think of it as a painting.  You can never make a bad painting look better by putting more paint on it.  <strong> Instead, you start over on a empty canvas.  Then you might be able to make a great painting.</strong></p>
<p>Likewise, in life, if something is not working for you, I want you to really throw that away, whatever you are doing and simply start over.  <strong>Don&#8217;t let the &#8220;rules&#8221; you have ingrained over the years interfere.</strong></p>
<p>For example, you started a bakery business but for some reason, your bread doesn&#8217;t  taste good and you have no customers who want to buy it.  (AND you have been trying new baking methods for the last 5 years)</p>
<p>Don&#8217;t keep on trying until you succeed, start over from scratch.  It&#8217;s obvious you are not good at baking, <strong>try something new.</strong></p>
<p>Well, just my 2 cents that sometimes you need to forget everything and start life anew.</p>
<p>And I know, I am crazy but I am right. <img src='http://zedomax.biz/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ve thrown away the most valuable things in my life and have gained FREEDOM of my life.  Everyday I wake up, I feel free as that bird on the roof I see everyday from my 12th floor 1 bedroom apartment.  Really, I want to go skydiving soon, I know I will enjoy it.</p>
<p>&#8220;Don&#8217;t let the system run your life, MAKE YOUR NEW RULES IN THE SYSTEM!&#8221;  Even better, <em><strong>graffiiti your new rules in the system!</strong></em></p>
<p><em><strong>I remember at the first day of my job, the company&#8217;s rule said you can&#8217;t listen to music or any MP3 devices.  I broke that rule on the first day and people started copying me.  After couple months, my boss CHANGED the company rules so everyone can listen to music while working because EVERYONE was listening to music including my boss who said, &#8220;wow, it does help me work more relaxed while listening to music.&#8221;<br />
</strong></em></p>
<h2>Remember, only YOU can CHANGE the WORLD!</h2>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/great-entrepreneurs/why-i-never-follow-rules-or-directions/" >Why I never follow Rules or Directions!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/directions/" title="directions" rel="tag">directions</a>, <a href="http://zedomax.biz/blog/category/great-entrepreneurs/" title="Great Entrepreneurs" rel="tag">Great Entrepreneurs</a>, <a href="http://zedomax.biz/blog/tag/i/" title="i" rel="tag">i</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/tag/never-follow/" title="never follow" rel="tag">never follow</a>, <a href="http://zedomax.biz/blog/tag/rules/" title="rules" rel="tag">rules</a>, <a href="http://zedomax.biz/blog/tag/why/" title="why" rel="tag">why</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/jobs/why-i-didnt-tip-the-pizza-guy-today/" title="Why I didn&#8217;t Tip The Pizza Guy Today! (September 26, 2009)">Why I didn&#8217;t Tip The Pizza Guy Today!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BupCFdIZyrY:dGFbUbjDvEI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BupCFdIZyrY:dGFbUbjDvEI:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BupCFdIZyrY:dGFbUbjDvEI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BupCFdIZyrY:dGFbUbjDvEI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=BupCFdIZyrY:dGFbUbjDvEI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=BupCFdIZyrY:dGFbUbjDvEI:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/great-entrepreneurs/why-i-never-follow-rules-or-directions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Build a Rhythm and Consistency in Your Life and Business!</title>
		<link>http://zedomax.biz/blog/great-entrepreneurs/how-to-build-a-rhythm-and-consistency-in-your-life-and-business/</link>
		<comments>http://zedomax.biz/blog/great-entrepreneurs/how-to-build-a-rhythm-and-consistency-in-your-life-and-business/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 00:25:05 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Great Entrepreneurs]]></category>
		<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[consistency]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[rhythm]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=924</guid>
		<description><![CDATA[As a pro golfer who has played in countless pressure-packed tournaments for 20+ years, I know rhythm and consistency is one of the most valuable assets to a player.
Of course, the same applies to life and business.  In order for you to succeed and get ahead in life, you need to a consistent &#8220;rhythm&#8221; in [...]]]></description>
			<content:encoded><![CDATA[<p>As a pro golfer who has played in countless pressure-packed tournaments for 20+ years, I know rhythm and consistency is one of the most valuable assets to a player.</p>
<p>Of course, the same applies to life and business.  In order for you to succeed and get ahead in life, you need to a consistent &#8220;rhythm&#8221; in your life focusing on your strengths.</p>
<p>In business, when something goes wrong, you will need to inevitably rely on your &#8220;bread-and-butter&#8221; to survive.  Of course, innovation can come thereafter but it&#8217;s always your bread-and-butter skills that lets you keep going enough to come up with a new innovation.</p>
<p>So, how to develop a rhythm and consistency?</p>
<p>Simply, do the same things that&#8217;s helping you to succeed on a daily basis.  But, DO IT EVERY SINGLE DAY, even on the weekends.</p>
<p>For me, those things are simply blogging everyday.  The moment I stop blogging is the moment I start getting lazy and eventually lead to blog-less days, weeks, and sometimes even months!</p>
<p>Blogging itself is the core of my business and without blogging, I could probably never survive.  Of course, this may be different for you, perhaps you run a bakery, you need to make bread everyday to sell to customers.</p>
<p>The most important skill you must assess in order to accomplish is to actually not do things consistently but to know when you are slacking.</p>
<p>Two days ago, I slacked too much and got MAD at myself for not blogging on Saturday.  I got so mad, I started blogging a LOT on Sunday and kept it going till today.</p>
<p>This is a passionate energy you need to acquire within you.  It&#8217;s not that  hard to succeed in ANYTHING if you can keep doing it consistently everyday.</p>
<p>My dad used to tell me, &#8220;Son, you don&#8217;t have to take over the world today, just do it a little bit each day and you will get there.&#8221;  Well, not taking over the world but something along those lines.</p>
<p>Do a little bit everyday and accomplish big things over the next couple years.  Don&#8217;t try to do a LOT everyday and accomplish big things in 1 year.  You will probably get stressed out and give up on your dream in just couple months.</p>
<p>Get a good &#8220;rhythm&#8221; going in your life, your mind/body will thank you for it. P)</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/great-entrepreneurs/how-to-build-a-rhythm-and-consistency-in-your-life-and-business/" >How to Build a Rhythm and Consistency in Your Life and Business!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/business/" title="business" rel="tag">business</a>, <a href="http://zedomax.biz/blog/tag/consistency/" title="consistency" rel="tag">consistency</a>, <a href="http://zedomax.biz/blog/tag/develop/" title="develop" rel="tag">develop</a>, <a href="http://zedomax.biz/blog/category/great-entrepreneurs/" title="Great Entrepreneurs" rel="tag">Great Entrepreneurs</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/tag/life/" title="life" rel="tag">life</a>, <a href="http://zedomax.biz/blog/tag/rhythm/" title="rhythm" rel="tag">rhythm</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-go-all-in-in-your-life-and-business-to-succeed/" title="How to go ALL IN in your Life and Business to Succeed! (October 14, 2009)">How to go ALL IN in your Life and Business to Succeed!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" title="Radical Business &#8211; How to Burn Bridges in Business! (October 19, 2009)">Radical Business &#8211; How to Burn Bridges in Business!</a> </li>
	<li><a href="http://zedomax.biz/blog/marketing/how-to-target-your-niche-market-on-twitter/" title="How to Target Your Niche Market on Twitter! (February 12, 2010)">How to Target Your Niche Market on Twitter!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" title="Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner! (March 1, 2010)">Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=v52Rh1LzMj0:Romv4uO2VpU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=v52Rh1LzMj0:Romv4uO2VpU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=v52Rh1LzMj0:Romv4uO2VpU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=v52Rh1LzMj0:Romv4uO2VpU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=v52Rh1LzMj0:Romv4uO2VpU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=v52Rh1LzMj0:Romv4uO2VpU:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/great-entrepreneurs/how-to-build-a-rhythm-and-consistency-in-your-life-and-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recommended Posts Update!</title>
		<link>http://zedomax.biz/blog/blogging/recommended-posts-update/</link>
		<comments>http://zedomax.biz/blog/blogging/recommended-posts-update/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 01:20:27 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[how to make money]]></category>
		<category><![CDATA[life business]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[recommended posts]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=932</guid>
		<description><![CDATA[Well, I decided it was time to update my recommended posts.  I no longer really blog on how to make money blogging than about life and business so I hope you enjoy my revamped philosophy on life, business, and blogging here.
Post from: I Make Money Online by Creating Free Content for the World with Blogs
Recommended [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I decided it was time to update my recommended posts.  I no longer really blog on how to make money blogging than about life and business so I hope you enjoy my <a href="http://zedomax.biz/blog/recommended-posts/" >revamped philosophy on life, business, and blogging here</a>.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/blogging/recommended-posts-update/" >Recommended Posts Update!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/category/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/blogging/" title="Blogging" rel="tag">Blogging</a>, <a href="http://zedomax.biz/blog/tag/how-to-make-money/" title="how to make money" rel="tag">how to make money</a>, <a href="http://zedomax.biz/blog/tag/life-business/" title="life business" rel="tag">life business</a>, <a href="http://zedomax.biz/blog/category/personal/" title="Personal" rel="tag">Personal</a>, <a href="http://zedomax.biz/blog/tag/philosophy/" title="philosophy" rel="tag">philosophy</a>, <a href="http://zedomax.biz/blog/tag/recommended-posts/" title="recommended posts" rel="tag">recommended posts</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/blogging/how-to-turn-nothing-into-money-blogging/" title="How to Turn &#8220;Nothing&#8221; Into Money Blogging! (September 4, 2009)">How to Turn &#8220;Nothing&#8221; Into Money Blogging!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-make-money-with-artphoto-blogs/" title="How to Make Money with Art/Photo Blogs! (February 12, 2009)">How to Make Money with Art/Photo Blogs!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-make-money-during-obama-inauguration/" title="How to Make Money During Obama Inauguration! (January 21, 2009)">How to Make Money During Obama Inauguration!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-make-money-blogging-with-content-and-goals/" title="How to Make Money Blogging with Content and Goals! (February 5, 2009)">How to Make Money Blogging with Content and Goals!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/blogging-secrets-how-to-make-money-blogging/" title="Blogging Secrets &#8211; How to Make Money Blogging! (February 20, 2009)">Blogging Secrets &#8211; How to Make Money Blogging!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=GFEhwo-AhYw:aFDThVRjXlw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=GFEhwo-AhYw:aFDThVRjXlw:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=GFEhwo-AhYw:aFDThVRjXlw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=GFEhwo-AhYw:aFDThVRjXlw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=GFEhwo-AhYw:aFDThVRjXlw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=GFEhwo-AhYw:aFDThVRjXlw:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/blogging/recommended-posts-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Radical Business – How to Burn Bridges in Business!</title>
		<link>http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/</link>
		<comments>http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 00:22:17 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Great Entrepreneurs]]></category>
		<category><![CDATA[Inspirational]]></category>
		<category><![CDATA[burn bridges]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[radical business]]></category>

		<guid isPermaLink="false">http://zedomax.biz/blog/?p=921</guid>
		<description><![CDATA[Believe it or not, knowing how to burn bridges is one of the most essential skills to running a business.  Sometimes,  you simply need to focus more on business instead of chit-chatting with someone you know.
Why?
You need to be more efficient, get more things done.  By keeping all your networking connections unlimited you are bound [...]]]></description>
			<content:encoded><![CDATA[<p>Believe it or not, knowing how to burn bridges is one of the most essential skills to running a business.  Sometimes,  you simply need to focus more on business instead of chit-chatting with someone you know.</p>
<p>Why?</p>
<p>You need to be more efficient, get more things done.  By keeping all your networking connections unlimited you are bound to get unnecessary sales calls, e-mails, and whatnot.  If those connections help you, that&#8217;s great but if they don&#8217;t, it&#8217;s time to BURN BRIDGES.</p>
<p>So how do you go about solving this inefficiency?</p>
<p>Not always but there are times where you must burn the bridge, put a TNT there and blow it up so no one can ever cross it again.  Recently I did this with a company I was working with.  They were pissing me off, playing me around like a hockey puck, I FIRED a bazooka at their company.  No longer do I wish to waste my time with unprofessional dicks.</p>
<p>Of course, don&#8217;t worry that you ever burned a bridge, <strong>there&#8217;s also ways to &#8220;rebuild&#8221; a bridge</strong>.  But for our purposes of getting things done (TODAY), you need to learn to burn bridges.  It&#8217;s a hard skill to learn because you need to directly at the person/company and tell them to FUCK OFF.  As a boss/owner of business, you need to do it because this skill will ultimately help you weed out the inefficiencies in your business.</p>
<p>And I bet you, you are probably doing this all the time in regular life anyways, you just haven&#8217;t realized you are burning bridges when you walk away from people without telling them WHY. (and yes, don&#8217;t even waste time telling them WHY, just burn the bridge and move on.)</p>
<p>Sometimes, life is simple, keep it simply by focusing on what you do best.</p>
<p>As for me, I enjoy burning bridges to get more things done.  Most people who never burn bridges never find out their full potential because they don&#8217;t have the guts to say NO, FUCK OFF, etc&#8230;etc&#8230;</p>
<p>When it comes to push and shove, you will always get a big NO-NO from me.</p>
<p>I&#8217;ve fired my web hosting companies about a dozen times, I&#8217;ve wrote blog posts detailing a company&#8217;s faults, <a href="http://zedomax.biz/blog/shitlist/business-filings-division-and-annual-filings-division-scam-artists-caught-and-sued/" >I go after scammers like it was my number one enemy</a>.  These are all examples of burning bridges mostly because I don&#8217;t have time to chit-chat with them, I need problems solved  last month, not me being stuck on their technical support line or calling my credit card company because I got scammed.</p>
<p>Burning bridges can also be very fun and save you a ton of time.  Making friends is probably a good thing but I&#8217;ve had enough hardships  in my life that I KNOW friendships don&#8217;t pay your rent, smart thinking does.</p>
<p>You must remember one rule in business, &#8220;THERE&#8217;S NO ONE ELSE TO BLAME FOR FAILURE BUT YOU.&#8221;  If someone is not helping you get ahead in your business, you better damn do something about it, don&#8217;t just sit there and smile. (pretending nothing bad is happening.)  NOTHING is the worst thing you can do, DO SOMETHING ALWAYS!</p>
<p>Just think of business as a video game like Super Mario Brothers where you must keep going forward and get those 1-up life mushrooms while burning those bridges so the enemies can&#8217;t get to you.  Well, you need to have the skills to evaluate quickly who is going to help you and who is not.</p>
<p>On a side note, burning bridges doesn&#8217;t mean you hate someone, it simply means you need to shut off that part of your life (perhaps temporarily)  as it&#8217;s not helping you in anyway or simply wasting a lot of your time.</p>
<p>I tend to get very loose sometimes and let a lot of people into my personal life.  If I get to that point, I will realize that and start burning bridges until I can get back on track.  As a busy business person, I simply don&#8217;t have more than 3 sentences to spare, even to best of my friends.  I am very busy like that nursery rhyme, &#8220;My name is Busee because I am always busy.&#8221;</p>
<p>Next time, I will show you how to get a &#8220;rhythm&#8221; going for your life and business, another crucial skill you will need to run your own business.   Getting things done consistently means you are working in &#8220;rhythm&#8221; and when you get a rhythm going, there&#8217;s nothing that can stop you from success. (except God)</p>
<p>I just hope you get one thing from this blog post, think of just ONE person/company you are currently working with right now that is most time-consuming yet makes you NOTHING of real value.  Now, please burn the bridges with that person/company for the next 3 months.   I assure you, you will get much more done over the next 3 months, plus that person/company might be willing to offer you better terms/conditions in the long run.</p>
<p>Post from: <a href="http://zedomax.biz/blog" >I Make Money Online by Creating Free Content for the World with Blogs</a></p>
<p><a href="http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/" >Radical Business &#8211; How to Burn Bridges in Business!</a></p>

	<span style="display:none"><a href="http://zedomax.biz/blog/tag/burn-bridges/" title="burn bridges" rel="tag">burn bridges</a>, <a href="http://zedomax.biz/blog/tag/business/" title="business" rel="tag">business</a>, <a href="http://zedomax.biz/blog/category/great-entrepreneurs/" title="Great Entrepreneurs" rel="tag">Great Entrepreneurs</a>, <a href="http://zedomax.biz/blog/tag/how-to/" title="how to" rel="tag">how to</a>, <a href="http://zedomax.biz/blog/category/inspirational/" title="Inspirational" rel="tag">Inspirational</a>, <a href="http://zedomax.biz/blog/tag/radical-business/" title="radical business" rel="tag">radical business</a></span>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://zedomax.biz/blog/marketing/how-to-target-your-niche-market-on-twitter/" title="How to Target Your Niche Market on Twitter! (February 12, 2010)">How to Target Your Niche Market on Twitter!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/how-to-go-all-in-in-your-life-and-business-to-succeed/" title="How to go ALL IN in your Life and Business to Succeed! (October 14, 2009)">How to go ALL IN in your Life and Business to Succeed!</a> </li>
	<li><a href="http://zedomax.biz/blog/great-entrepreneurs/how-to-build-a-rhythm-and-consistency-in-your-life-and-business/" title="How to Build a Rhythm and Consistency in Your Life and Business! (October 20, 2009)">How to Build a Rhythm and Consistency in Your Life and Business!</a> </li>
	<li><a href="http://zedomax.biz/blog/make-money-online/wordpress-hack-how-to-insert-ads-in-the-middle-of-your-content/" title="Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content! (March 4, 2010)">Wordpress Hack &#8211; How to Insert Ads in the Middle of Your Content!</a> </li>
	<li><a href="http://zedomax.biz/blog/blogging/twitter-howto-how-to-add-hashtags-to-your-blog-rss-feed-tweets-using-feedburner/" title="Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner! (March 1, 2010)">Twitter HOWTO &#8211; How to Add Hashtags to Your Blog RSS Feed Tweets using Feedburner!</a> </li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=CiOFe5a-XE0:Tz_18Kdp_P8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=CiOFe5a-XE0:Tz_18Kdp_P8:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=CiOFe5a-XE0:Tz_18Kdp_P8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=CiOFe5a-XE0:Tz_18Kdp_P8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?i=CiOFe5a-XE0:Tz_18Kdp_P8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/zedomaxbizblog?a=CiOFe5a-XE0:Tz_18Kdp_P8:KBMpPf8Oe-k"><img src="http://feeds.feedburner.com/~ff/zedomaxbizblog?d=KBMpPf8Oe-k" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://zedomax.biz/blog/great-entrepreneurs/radical-business-how-to-burn-bridges-in-business/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
