<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Maboot.com &#187; Jeff</title>
	<atom:link href="http://maboot.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://maboot.com</link>
	<description>Maboot is a web-mag for geeks, nerds, webmasters, webdesigners, Mac, Ubuntu, and bloggers</description>
	<lastBuildDate>Tue, 31 Jan 2012 18:42:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Execute PHP in WordPress text widget</title>
		<link>http://maboot.com/execute-php-in-wordpress-text-widget/2757/</link>
		<comments>http://maboot.com/execute-php-in-wordpress-text-widget/2757/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 12:27:44 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://maboot.com/?p=2757</guid>
		<description><![CDATA[By default, WordPress text widget only allows to execute the HTML code. If somehow you need to run PHP code in the text widget, you would have to add below snippet of code to your theme&#8217;s functions.php file &#8211; There are no other settings required. After you have put below code in functions.php file of [...]]]></description>
			<content:encoded><![CDATA[<div class="woo-sc-box normal   "><strong>CMS:</strong> WordPress  <strong>Difficulty Level:</strong> Easy  <strong>Time:</strong> 1 min.</div>
<p>By default, WordPress text widget only allows to execute the HTML code. If somehow you need to run PHP code in the text widget, you would have to add below snippet of code to your theme&#8217;s functions.php file &#8211; There are no other settings required. After you have put below code in functions.php file of your theme, the PHP code in the text widget would run automatically.</p>
<pre class="brush: php; title: ; notranslate">

// Run php in text widget
add_filter('widget_text','execute_php',100);
function execute_php($html){
 if(strpos($html,&quot;&lt;&quot;.&quot;?php&quot;)!==false){
 ob_start();
 eval(&quot;?&quot;.&quot;&gt;&quot;.$html);
 $html=ob_get_contents();
 ob_end_clean();
 }
 return $html;
}
</pre>
<div class="woo-sc-hr"></div>
]]></content:encoded>
			<wfw:commentRss>http://maboot.com/execute-php-in-wordpress-text-widget/2757/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pure CSS Speech Bubble</title>
		<link>http://maboot.com/pure-css-speech-bubble/2696/</link>
		<comments>http://maboot.com/pure-css-speech-bubble/2696/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 09:21:06 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://maboot.com/?p=2696</guid>
		<description><![CDATA[Lately I have been learning a lot of CSS stuff, because I prefer to use &#8216;pure&#8217; CSS whenever possible instead of images. Indeed this blog is also a place for me to share whatever I learn ;}. Today I learned how to create pure CSS speech bubble without the use of any image thanks to [...]]]></description>
			<content:encoded><![CDATA[<div class="woo-sc-box normal   "><strong>Language:</strong> HTML/CSS   <strong>Difficulty Level:</strong> normal  <strong>Time:</strong> 5min</div>
<p>Lately I have been learning a lot of CSS stuff, because I prefer to use &#8216;pure&#8217; CSS whenever possible instead of images. Indeed this blog is also a place for me to share whatever I learn ;}. Today I learned how to create pure CSS speech bubble without the use of any image thanks to <a href="http://konigi.com/tools/css-tooltips-and-speech-bubbles" target="_blank">Konigi</a>. It&#8217;s a simple CSS trick that uses :after pseudo-class in addition to usual border-radius and box-shadow commands.</p>
<p>So here is the CSS code.</p>
<pre class="brush: css; title: ; notranslate">

.bubble {
position: relative;
background-color:#eee;
margin: 0;
padding:10px;
text-align:center;
width:180px;
-moz-border-radius:10px;
-webkit-border-radius:10px;
-webkit-box-shadow: 0px 0 3px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 0 3px rgba(0,0,0,0.25);
box-shadow: 0px 0 3px rgba(0,0,0,0.25);
}

.bubble:after {
position: absolute;
display: block;
content: &quot;&quot;;
border-color: #eee transparent transparent transparent;
border-style: solid;
border-width: 10px;
height:0;
width:0;
position:absolute;
bottom:-19px;
left:1em;
}
</pre>
<p>And Below is the HTML Code to trigger the above CSS code.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;bubble&quot;&gt;This is the text of speech bubble&lt;/div&gt;
&lt;p style=&quot;margin-left: 1em;&quot;&gt;Your name&lt;/p&gt;
</pre>
<p>Below is the screenshot how should it look like.</p>
<p><img class="alignnone size-full wp-image-2697" title="Screen Shot 2012-01-29 at 2.16.37 PM" src="http://cdn.maboot.com/wp-content/uploads/Screen-Shot-2012-01-29-at-2.16.37-PM.png" alt="" width="463" height="197" /></p>
<p><a href="http://cdn.maboot.com/stuff/demo/speechbubble/" class="woo-sc-button  custom" style="background:;border-color:"><span class="woo-">Live Demo</span></a> <a href="http://cdn.maboot.com/stuff/demo/speechbubble.zip" class="woo-sc-button  custom" style="background:;border-color:"><span class="woo-">Download code</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://maboot.com/pure-css-speech-bubble/2696/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s game with webmasters</title>
		<link>http://maboot.com/googles-game-with-webmasters/2655/</link>
		<comments>http://maboot.com/googles-game-with-webmasters/2655/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 11:38:54 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://maboot.com/?p=2655</guid>
		<description><![CDATA[his is in reference to Google&#8217;s last year and current changes to its algorithm or ranking factors to ensure the quality of the content on the Internet. Well, there is barely anyone who won&#8217;t appreciate better user-experience, top quality sites in SERP and filtering out the Junk or spam sites and discouraging stacking of the ads above the fold. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2667" title="gtm1" src="http://cdn.maboot.com/wp-content/uploads/gtm1.jpg" alt="" width="940" height="500" /></p>
<p><div class="woo-sc-quote boxed right"><p>I guess experienced webmasters or bloggers would understand my point, that it was a game. It was a game to get people into  &#8217;Content creation&#8217; for the Google Index</p></div><span class="dropcap">T</span><!--/.dropcap-->his is in reference to Google&#8217;s last year and current changes to its algorithm or ranking factors to ensure the quality of the content on the Internet. Well, there is barely anyone who won&#8217;t appreciate better user-experience, top quality sites in SERP and filtering out the Junk or spam sites and discouraging stacking of the ads above the fold. However the question is, Why Google is suddenly taking these measures more aggressively recently.</p>
<p>Shouldn&#8217;t these measures have been taken years ago, or from the day one? &#8211; Back in 2004 barely anyone knew what blogging is, let alone, could figure how to make money out of it. There were a few bloggers, who even back then had no clue that blogging could replace their day job, and help them make far more than they used to make in 9-5 Jobs.</p>
<p><span style="color: #993300;"><em>I have personally attended several meet-ups arranged by local Google staff. To encourage people to get into blogging for  money and start making money instantly of course through Google Adsense, and If you remember Google Adsense was quite &#8216;lenient&#8217; back then, It would even tolerate MFA websites . However it was 3-5 years back.</em></span></p>
<p>Things now have changed quite a lot, now there is barely anything we hear from Google staff here in regard to getting into &#8216;pro-blogging&#8217; or blogging for money.</p>
<div class="woo-sc-hr"></div>
<p>I guess experienced webmasters or bloggers would understand my point, <span style="text-decoration: underline;">that it was a game</span>. It was a game to get people into  &#8217;content creation&#8217; for the Google Index. Since Google itself does not create the content, hence it encouraged people to get into &#8216;content creation&#8217; it also facilitated content creation (through its Blogger service and also favoring low quality sites with good amount of SERP traffic) and making money out of it. Even Low quality sites used to rank higher. I have experimented myself, with a low quality site targeting high traffic keywords and used to make $5000 a month. And I wasn&#8217;t alone. I at least know over 1000 persons who were doing it, and were making good money just through SERP traffic and targeting high traffic keywords, Although their and mine site did lack quality content, yet Google overlooked it &#8216;intentionally&#8217;. Because at that time Google aim was to encourage content creation to possibly fill its &#8216;unfilled&#8217; index. When I meant unfilled it refers to technical or very very specific search queries. I guess &#8216;precise content&#8217; did lack back in early 2000 for very specific or very technical queries, I&#8217;d try to cover it in another article through detailed analysis.</p>
<p>Later they knew they could easily filter out the Junk/spam/low quality content, once the Index was full to its brinks. This is what Panda update was aimed for. It&#8217;s just not a coincident that following Panda update, I barely hear anything from Google staff here, who would arrange meet-ups once in a couple of months to get people into &#8216;blogging for money&#8217; or in other words, &#8216;content creation&#8217;. I do approve all these measures, being taken by Google to ensure the quality in SERP and discourage low quality content. However it&#8217;s just not as simple as it might look like.</p>
<p>So that was Google&#8217;s Game. Google 1 Webmasters 0</p>
]]></content:encoded>
			<wfw:commentRss>http://maboot.com/googles-game-with-webmasters/2655/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adsense Tips are totally discouraged by Google&#8217;s Webmasters guidelines</title>
		<link>http://maboot.com/adsense-tips-are-totally-discouraged-by-googles-webmasters-guidelines/2627/</link>
		<comments>http://maboot.com/adsense-tips-are-totally-discouraged-by-googles-webmasters-guidelines/2627/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 19:49:19 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[opinion]]></category>

		<guid isPermaLink="false">http://maboot.com/?p=2627</guid>
		<description><![CDATA[f you have been following both Google Adsense tips and Google Webmaster guidelines or tips emails. You would realize that most of the time, they are contradicting each other. What is even more ironic, that some users got their Adsense banned just for following their own tips. For instance Adsense tips encourage users to place [...]]]></description>
			<content:encoded><![CDATA[<p><div class="woo-sc-quote boxed right"><p>However, my disagreement is over the tips communicated by Adsense to its users. Does Google Webmaster team (esp., Matt Cutts) really read Adsense tips?</p></div><span class="dropcap">I</span><!--/.dropcap-->f you have been following both Google Adsense tips and Google Webmaster guidelines or tips emails. You would realize that most of the time, they are contradicting each other. What is even more ironic, that some users got their Adsense banned just for following their own tips. For instance Adsense tips encourage users to place their ads above the fold, or where they are more noticeable.</p>
<p>However the recent, <a href="http://googlewebmastercentral.blogspot.com/2012/01/page-layout-algorithm-improvement.html" target="_blank">blogpost</a> from Google&#8217;s Webmasters blog has a totally different view on above the fold ads. Which sums up that placing too many ads above the fold will penalize your site ranking in search results now on. Which is pretty good. As currently too many ads above the fold is the major reason why people install Adblock Google Chrome or Firefox extension.</p>
<p>However, my disagreement is over the tips communicated by Adsense to its users. Does Google Webmaster team (esp., Matt Cutts) really read Adsense tips? Because they are contradictory to Google&#8217;s Webmasters tips, that are often communicated by Matt Cutts. I&#8217;d sincerely suggest to Matt Cutts to say Hello to their fellow googlers at Adsense to find out what kind of tips they have been emailing to users.</p>
]]></content:encoded>
			<wfw:commentRss>http://maboot.com/adsense-tips-are-totally-discouraged-by-googles-webmasters-guidelines/2627/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix: Internal Error in Ubuntu 11.10 Software Center when installing Google Chrome</title>
		<link>http://maboot.com/fix-internal-error-in-ubuntu-11-10-software-center-when-installing-google-chrome/2620/</link>
		<comments>http://maboot.com/fix-internal-error-in-ubuntu-11-10-software-center-when-installing-google-chrome/2620/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 14:33:20 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://maboot.com/?p=2620</guid>
		<description><![CDATA[There is a known bug, which displays Internal Error, when installing Google Chrome on Ubuntu 11.10 &#8211; Apparently this bug was fixed, I was able to install Chrome with and without encountering this bug. As I installed the Ubuntu 11.10 at least five times in the last couple of days using WUBI. Bug Description: Double-clicking [...]]]></description>
			<content:encoded><![CDATA[<div class="woo-sc-box normal   "><strong>Platform:</strong> Ubuntu  <strong>Difficulty Level:</strong> normal   <strong>Time:</strong> 5min</div>
<p>There is a known bug, which displays Internal Error, when installing Google Chrome on Ubuntu 11.10 &#8211; Apparently <a href="https://bugs.launchpad.net/ubuntu/+source/software-center/+bug/868188" target="_blank">this bug</a> was fixed, I was able to install Chrome with and without encountering this bug. As I installed the Ubuntu 11.10 at least five times in the last couple of days using WUBI.</p>
<p><strong>Bug Description:</strong></p>
<p>Double-clicking the latest version of Google&#8217;s Chrome .deb file (x64) results in Software Center (eventually) loading and displaying the following:</p>
<p>Internal Error<br />
The file &#8220;/home/<wbr>&#8230;/google-<wbr>chrome-<wbr>stable_<wbr>current_<wbr>amd64.deb&#8221; could not be opened.</wbr></wbr></wbr></wbr></wbr></p>
<p><strong>Fix:</strong></p>
<p>Fix is quite easy, simply run below commands from the terminal. (You can launch terminal by pressing CTRL+ALT+T)</p>
<pre class="brush: bash; title: ; notranslate"> sudo dpkg -i googlechromeamd64.deb</pre>
<p>(replace googlechromeamd64.deb with whatever version of Google chrome you downloaded) and make sure you are in the directory where you downloaded Chrome deb file, most likely it would be your downloads folder. Since you have to run this command as an admin, you would need to enter your password for your account too before it proceeds.</p>
<p>next run this command in the same folder</p>
<pre class="brush: bash; title: ; notranslate"> sudo apt-get -f install </pre>
<p>This would fix the dependencies that Google Chrome requires. Hope this fixes the bug for you, as it did work for me.</p>
<p><strong>Edit:</strong> The OS Updates after installing the Ubuntu 11.10 also fixed this bug. If you are going to run a Fresh Install of Ubuntu 11.10 I&#8217;d recommend first run the Software Updates before installing any other App.</p>
<div class="woo-sc-hr"></div>
]]></content:encoded>
			<wfw:commentRss>http://maboot.com/fix-internal-error-in-ubuntu-11-10-software-center-when-installing-google-chrome/2620/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable FastCGI for a WordPress site hosted on Dreamhost</title>
		<link>http://maboot.com/how-to-enable-fastcgi-for-a-wordpress-site-hosted-on-dreamhost/2607/</link>
		<comments>http://maboot.com/how-to-enable-fastcgi-for-a-wordpress-site-hosted-on-dreamhost/2607/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 11:43:02 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://maboot.com/?p=2607</guid>
		<description><![CDATA[FastCGI is now enabled by default on Dreamhost right?. But It does not mean it’s rendering the pages for your WordPress blog automatically. In order to get FastCGI to render pages for your WordPress site on Dreamhost you have to make below changes to your .htaccess file and create a .fcgi script. It’s little time [...]]]></description>
			<content:encoded><![CDATA[<div class="woo-sc-box normal   "><strong>CMS:</strong> WordPress  <strong>Difficulty Level:</strong> normal  <strong>Time:</strong> 10 min</div>
<p>FastCGI is now enabled by default on Dreamhost right?. But It does not mean it’s rendering the pages for your WordPress blog automatically. In order to get FastCGI to render pages for your WordPress site on Dreamhost you have to make below changes to your .htaccess file and create a .fcgi script. It’s little time consuming. But hey! it worths the efforts. Because it has decreased the memory load on my PS server by 70%. I am using the exact below configuration and I am using it on Dreamhost VPS and I guess it should work for all the sites hosted on Dreamhost provided FastCGI is enabled on their Domain.</p>
<p><strong>Step.1</strong> Create .fcgi script called ‘ dispatch.fcgi ‘ and put below lines of code in it.</p>
<pre class="brush: bash; title: ; notranslate">#!/bin/sh
exec /dh/cgi-system/php5.cgi</pre>
<p><strong>Step 2.</strong> Upload this file (dispatch.fcgi) in the root of your domain or where you site is hosted or where .htaccess file for your domain resides.</p>
<p><strong>Step 3.</strong> Put below lines of code at the beginning of your .htaccess file in the root of your domain and upload it after making the edits.</p>
<pre class="brush: bash; title: ; notranslate">AddHandler fastcgi-script fcg fcgi fpl
AddHandler php5-fastcgi .php
Action php5-fastcgi /dispatch.fcgi</pre>
<p>That&#8217;s all. You should have FastCGI enabled for your WordPress site hosted on Dreamhost. below is btw, the screenshot of my VPS showing decrease in memory usage.</p>
<p><img class="size-full wp-image-2491 aligncenter" title="Screen Shot 2011-10-19 at 7.25.39 PM" src="http://cdn.maboot.com/wp-content/uploads/Screen-Shot-2011-10-19-at-7.25.39-PM.png" alt="" width="721" height="285" /></p>
<div class="woo-sc-hr"></div>
]]></content:encoded>
			<wfw:commentRss>http://maboot.com/how-to-enable-fastcgi-for-a-wordpress-site-hosted-on-dreamhost/2607/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YOGGRT &#8211; One ad per page Network for Awesome Advertisers and Creative Publishers</title>
		<link>http://maboot.com/yoggrt-by-buysellads-one-ad-per-page-network-for-awesome-advertisers-and-creative-publishers/2504/</link>
		<comments>http://maboot.com/yoggrt-by-buysellads-one-ad-per-page-network-for-awesome-advertisers-and-creative-publishers/2504/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 16:10:25 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://maboot.com/?p=2504</guid>
		<description><![CDATA[It&#8217;s been a while since I reviewed any service. Anyway, today I am gonna review a very aspiring Advertising Network, Yoggrt. It&#8217;s a new One-Ad-per-Page (I am a Publisher and a Customer of Buysellads, However this post isn&#8217;t motivated by any incentive, it&#8217;s purely out of my love for them) service by popular Advertising network Buysellads, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2674" title="yoggrtbm" src="http://cdn.maboot.com/wp-content/uploads/yoggrtbm.jpg" alt="" width="940" height="500" /></p>
<p>It&#8217;s been a while since I reviewed any service. Anyway, today I am gonna review a very aspiring Advertising Network, <a href="http://yoggrt.com/" target="_blank">Yoggrt</a>. It&#8217;s a new One-Ad-per-Page (I am a Publisher and a Customer of Buysellads, However this post isn&#8217;t motivated by any incentive, it&#8217;s purely out of my love for them) service by popular Advertising network <a href="http://buysellads.com" target="_blank">Buysellads</a>, If you&#8217;re a professional advertiser and blogger I am pretty sure that you already know them and perhaps signed up for it too.</p>
<p>&nbsp;</p>
<h1>Yoggrt for Advertisers:</h1>
<p>Online advertising is a multi-billion dollars industry. There are too many Ad networks of different kinds. Some are PPC based (old fashioned like Google Adwords), Some are CPM (Tribal Fusion etc), Some are socially driven like Facebook ads, Some are niche based, where you choose to advertise on the sites that are most relevant for your product and they usually yield good CTR and Sales ultimately, and <a href="http://yoggrt.com/" target="_blank">Yoggrt </a>is one of that kind.</p>
<p><div class="woo-sc-quote boxed right"><p>As an advertiser Google Adwords Model has failed for me. Simply because most of my Ads appear on the sites that has nothing to do what I am advertising, and not to mention  75% or even more sites in the Google Adsense Network are just a piece of crap</p></div>And More specifically Yoggrt falls under the category of &#8216; <strong>One-Ad-per-Page</strong> &#8216; &#8211; There are quite a few, I guess only Two remarkable networks in this category, namely, The Deck Network and Fusion Ads. And I am personally huge fan of such networks.</p>
<p>As an advertiser, I think, these networks are best to yield more sales. Since All of the sites in such networks, are handpicked and are targeted at a specific niche. Therefore you are more likely to reach out to your potential buyers or customers than using Google Adwords (PPC), where you hardly control where does your ad appear on the Internet. As an advertiser Google Adwords Model has failed for me. Simply because most of my Ads appear on the sites that has nothing to do what I am advertising, and not to mention  75% or even more sites in the Google Adsense Network are just a piece of crap.</p>
<p>On the other hand, on Networks like, Yoggrt, the sites are handpicked and they are not let in the Network unless they meet a certain criteria of quality and they even take publisher&#8217;s online influence into account. Moreover you know the sites where your ads are going to appear., so you can predict beforehand what kind of people will be clicking your ads. <strong>However the most significant feature of these networks is &#8216; One Ad per Page &#8216; that means your Ad gets 100% attention on a given Web page. Your Ad doesn&#8217;t have to compete with other Ads on the same page. It&#8217;s actually quite good for brand building too.</strong></p>
<p>Now the only question that may come in your mind is, &#8216;<strong>Why would you choose Yoggrt when you have Deck and Fusion ads networks</strong>&#8216; &#8211; Well they are established networks in this category. They have very popular and influential bloggers on their Network. While Yoggrt is just a few months old. However its parent company <a href="http://buysellads.com" target="_blank">Buysellads</a> is kind of huge and popular. Anyway below you can look at the price comparison for these networks, that might suggest why would you want to Advertise on Yoggrt.</p>
<p>&nbsp;</p>
<p><strong>Deck Network Price:</strong> $ 8300 per month</p>
<p><strong>Fusion Network* Price:</strong> $ 1500 per month</p>
<p><strong>Yoggrt :</strong> $ 500 per month</p>
<p>* Fusion Network now has been acquired by BSA the parent company of Yoggrt.</p>
<p>I don&#8217;t really mean to make other two networks look extremely expensive. Because it&#8217;s obvious why they have a such huge price tag than Yoggrt. This is mainly because Deck particularly has many influential bloggers on their network. So you have to pay some premium price for it. Having said that, other than &#8216;DaringFireBall&#8217; I don&#8217;t remember visiting any other influential bloggers website on the Deck Network.</p>
<p>However if you look around there are plenty of quality sites, but you hardly know their founders. Moreover, I have been served exceptionally good experience with <a href="http://buysellads.com" target="_blank">Buysellads</a>, and here I want to point out, Neither this is a sponsored post nor did anyone from Buysellads ask me to write for it. It&#8217;s just purely out of my love for them. :} By the way who said Yoggrt isn&#8217;t getting influential bloggers on the list&#8230; *wink* They are, and they are working real hard on it. So for the time being enjoy the lower Advertising price on <a href="http://yoggrt.com/" target="_blank">Yoggrt </a>while you are at it. ;}</p>
<div class="woo-sc-hr"></div>
<h1>Yoggrt for Publishers:</h1>
<p>Well, I have been blogging for over 7 years, and have made thousands out of it. For it&#8217;s my 2nd profession and alternative income source. I have almost used all of the popular advertising networks both PPC and CPM. The only problem with them is that, you can&#8217;t make money using them unless you really annoy or more blatantly piss off your readers. Adsense pays per Click. And 99% of the publishers put the Adsense Ads, where a reader is supposed to read the content of the page. That&#8217;s hell annoying. I have used this model, and made huge money too. But deep down in my heart, I always have hated this model. And If you&#8217;re a quality conscious blogger, I believe you hate Adsense too.</p>
<p>I can&#8217;t reveal what Yoggrt pays per 1K impression, But I can assure you, you can make reasonable and handsome income. And Quality of ads that appear on the network is exceptional. So the ads actually please your readers, contrary to, Adsense which is the No.1 reason for most people to use &#8216;Adblock&#8217; browser extension. If you have an established blog with good volume of traffic, that targets the tech-savvier Internet users then you must consider <a href="http://yoggrt.com/" target="_blank">Yoggrt</a>. If you are the one that doesn&#8217;t care about quality and want to fill the internet with crap. Please don&#8217;t bother applying for it. Because you will get immediately rejected. :}}</p>
<div class="woo-sc-box note   " style="padding-left:15px;background-image:none;"><strong>Update 03-Nov-11:</strong> Just after a week of this Post Buysellads acquired Fusion Network as well as Beacon Ads (One Ad per page Networks) to empower it&#8217;s brand new service Yoggrt. <a href="http://blog.buysellads.com/2011/11/bsa-acquires-fusion-ads-beacon-ads/" target="_blank">More details here</a>. </div>
]]></content:encoded>
			<wfw:commentRss>http://maboot.com/yoggrt-by-buysellads-one-ad-per-page-network-for-awesome-advertisers-and-creative-publishers/2504/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Klout is Imperfect but It&#8217;s the next big thing.</title>
		<link>http://maboot.com/klout-is-imperfect-but-its-the-next-big-thing/2500/</link>
		<comments>http://maboot.com/klout-is-imperfect-but-its-the-next-big-thing/2500/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 08:58:27 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://maboot.com/?p=2500</guid>
		<description><![CDATA[Earlier Alexia from TechCrunch wrote an article &#8216; Nobody gives a damn about your Klout Score &#8216;, and she basically has criticized the Klout algorithm that determines one&#8217;s Klout score or how influential one is. Klout’s pervasive problem is that the deeper among us are never going to judge anyone based solely on some arbitrary decimal score. Especially when that decimal [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier Alexia from TechCrunch wrote an article &#8216; <a href="http://techcrunch.com/2011/10/26/nobody-gives-a-damn-about-your-klout-score/">Nobody gives a damn about your Klout Score</a> &#8216;, and she basically has criticized the Klout algorithm that determines one&#8217;s Klout score or how influential one is.</p>
<blockquote><p>Klout’s pervasive problem is that the deeper among us are never going to judge anyone based solely on some arbitrary decimal score. Especially when that decimal number ranks teenbot Justin Beiber at 100, but precludes me from claiming Windows Phone 7 “Klout Perk” and tickets to a Matt and Kim concert because I don’t have enough technology Klout.</p>
<p>We all have an inherent sense of who is influential and when that doesn’t stack up against some dumb number we lose faith. Case in point; I think all of you understand that there’s something wrong with a service that assigns me the same “influence” score as Mike Arrington. I’m willing to bet Steve Jobs didn’t check his Klout score.</p></blockquote>
<p>Well, first of all, Klout service at the moment is in beta. And by no means, It&#8217;s perfect. However it doesn&#8217;t mean it&#8217;s a totally useless service as the above article makes it sound like. She is partially right, that no one gives a damn about the Klout Score (As yet). I don&#8217;t use Klout often, However I use it time to time to get some &#8216;hints&#8217; about my online activity. That could help me determine how can I be more influential over the Internet., and that I guess is the ultimate goal of every online user or more particularly of a blogger like me.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-full wp-image-2501" title="Screen Shot 2011-10-27 at 1.34.04 PM" src="http://cdn.maboot.com/wp-content/uploads/Screen-Shot-2011-10-27-at-1.34.04-PM-e1319705459510.png" alt="" width="600" height="256" /></p>
<p>With the advent and popularity of Social Media services, like Facebook and Twitter, the Online World is turning into much like the our real life World. In fact the Online World now is as much important as the real world. For users like me, It doesn&#8217;t matter who Am I in the real world, But it does matter to who am I on the Internet and How influential I am in it.</p>
<p>With the passage of time I believe the importance of Online World would become even more for the average users too. Like, we care about the Influence in the real world, everyone would have to take measure to become influential online this way or the other. That&#8217;s where, a service like Klout would come in handy. It as of yet, is not Industry standard to determine someone&#8217;s influence like Alexa. But I can bet, they would be. I can foresee in years ahead, Klout score could play some part in hiring people. So the bottomline is, it&#8217;s not really a useless service as the article makes it look like. It may not be important as yet. But as I predicted it will be.</p>
]]></content:encoded>
			<wfw:commentRss>http://maboot.com/klout-is-imperfect-but-its-the-next-big-thing/2500/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zerply: Create Beautiful Professional Looking CV (Review)</title>
		<link>http://maboot.com/zerply-create-beautiful-professional-looking-cv-review/2469/</link>
		<comments>http://maboot.com/zerply-create-beautiful-professional-looking-cv-review/2469/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 00:46:46 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://maboot.com/?p=2469</guid>
		<description><![CDATA[Everyday several new online startups popup, and it&#8217;s really hard to keep up with them. However there are a very few that catch your attention and make you to digg and play around with its features. Couple of days back, I came across Zerply through a user&#8217;s CV. And since then, I have spent several hours [...]]]></description>
			<content:encoded><![CDATA[<p><div class="woo-sc-quote boxed right"><p>Yes it&#8217;s kind of a social network for professionals, similar to Linkedin, except that it&#8217;s dead simple and beautiful</p></div>Everyday several new online startups popup, and it&#8217;s really hard to keep up with them. However there are a very few that catch your attention and make you to digg and play around with its features. Couple of days back, I came across <a href="http://zerp.ly/i/Ea4uZ" target="_blank">Zerply</a> through a user&#8217;s CV. And since then, I have spent several hours on Zerply, digging into all of its features, and figuring how useful it actually is for the general internet community. And I must say it&#8217;s a very simple and neat idea well executed.</p>
<p><strong>What is Zerply?</strong><br />
<a href="http://zerp.ly/i/Ea4uZ" target="_blank"> Zerply</a> is a professional network built around people who love what they do. We believe that professional networking can be done differently.</p>
<p>Yes it&#8217;s kind of a social network for professionals, similar to Linkedin, except that it&#8217;s dead simple and beautiful. As this is a new startup so there isn&#8217;t much social activity going on other than showing similar people in your dashboard. They don&#8217;t have &#8216;Status update&#8217; feature as yet, and I would include that in my below Suggestions list.</p>
<p>However what importantly makes <a href="http://zerp.ly/i/Ea4uZ" target="_blank">Zerply</a>  stand out, is their beautiful, professional-looking CVs for their users. It&#8217;s hard to ignore a CV without appreciating its design. And Below you can have a look at <a href="http://cv.imranjafri.com/" target="_blank">my CV on Zerply</a> which is designed by a renowned Web Designer <a href="http://mikekus.com/" target="_blank">Mike Kus</a>. You can choose from four basic Templates, as a free user. All of them are great including the one that I am using below.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-full wp-image-2470" title="cvshot" src="http://cdn.maboot.com/wp-content/uploads/cvshot.jpg" alt="" width="600" height="367" /></p>
<p>&nbsp;</p>
<p>In addition to this you can also use your own custom domain for your CV for instance. <strong>http://cv.yourdomain.com/</strong> however that&#8217;s an upgrade feature and would only cost $15 per year. Normally I can&#8217;t help buying upgrade features for all of the awesome web sites, Just like Flickr Pro. Therefore After playing around a little bit with Zerply I couldn&#8217;t help to click the upgrade button. And that seems to be only revenue model for Zerply and just like <em>Flickr Pro</em> I am pretty sure this model is gonna work great for Zerply as the service becomes popular.</p>
<div class="woo-sc-hr"></div>
<p>&nbsp;</p>
<p><strong>My Suggestions:</strong></p>
<ol>
<li>Addition of &#8216;Status update&#8217; feature in the Dashboard, to bring a little more social activity in the backend Dashboard.</li>
<li>Display users Tags based on Skills as they&#8217;re mentioned on the backend on the users CVs., I am sure that can help explore similar people. But only downside it might have is that potential employer might get interested in other similar peoples. But overall it should increase social activity.</li>
<li>Replace Paypal with your own Credit Card processing, Paypal is great, but there are a very few countries whom paypal doesn&#8217;t support.</li>
</ol>
<div style="text-align: center;">So what are you waiting for ;}} Create your Awesome <a href="http://zerp.ly/i/Ea4uZ" target="_blank">CV Today on Zerply</a>  and spell a magic on your potential employer.</div>
<div style="text-align: center;">.</div>
]]></content:encoded>
			<wfw:commentRss>http://maboot.com/zerply-create-beautiful-professional-looking-cv-review/2469/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using xcache
Object Caching 575/706 objects using xcache
Content Delivery Network via Amazon Web Services: CloudFront: cdn.maboot.com

Served from: maboot.com @ 2012-02-06 13:29:26 -->
