<?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>RoniNoone</title>
	<atom:link href="http://RoniNoone.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://RoniNoone.com</link>
	<description>Web Publisher,  Healthy Living Blogger and Social Media Fanatic</description>
	<lastBuildDate>Mon, 30 Jan 2012 16:13:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>I&#8217;m Not Interested.</title>
		<link>http://RoniNoone.com/2012/01/30/im-not-interested/</link>
		<comments>http://RoniNoone.com/2012/01/30/im-not-interested/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 16:13:44 +0000</pubDate>
		<dc:creator>roni</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://RoniNoone.com/?p=1620</guid>
		<description><![CDATA[I received this email about GreenLiteBites.com a few days ago&#8230; Hi, I am a steady reader of your site and I commend you for doing a great job in publishing such interesting articles. I really like the post about Whole Wheat Pasta with Rainbow Chard and White Beans. I am looking for the right person&#160;<a href="http://RoniNoone.com/2012/01/30/im-not-interested/">[Continue reading...]</a>]]></description>
			<content:encoded><![CDATA[<p>I received this email about <a href="http://GreenLiteBites.com">GreenLiteBites.com</a> a few days ago&#8230; </p>
<blockquote><p>Hi,<br />
I am a steady reader of your site and I commend you for doing<br />
a great job in publishing such interesting articles. I really like the post<br />
about <a href="http://greenlitebites.com/2010/06/18/wheat-pasta-rainbow-chard-beans/">Whole Wheat Pasta with Rainbow Chard and White Beans</a>.</p>
<p>I am looking for the right person to contact, for a proposal that would<br />
benefit both our site. Would that sound interesting to you? Please let me<br />
know.</p></blockquote>
<p>My response&#8230;<span id="more-1620"></span></p>
<blockquote><p>I&#8217;m not interested if it involves swapping links or posting text link ads for a one time fee. I also have no interest in a new ad network or any shady SEO practices. I don&#8217;t post guest posts. I don&#8217;t like pop up ads and I won&#8217;t provide any of my content for free or in exchange for &#8220;credit.&#8221; </p>
<p>If your offer doesn&#8217;t fall into any of those categories, I&#8217;d love to hear from you. </p>
<p>-Roni</p></blockquote>
<p>I haven&#8217;t heard back yet. </p>
]]></content:encoded>
			<wfw:commentRss>http://RoniNoone.com/2012/01/30/im-not-interested/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So You Want a &quot;Pin It&quot; Button on Your WordPress Blog</title>
		<link>http://RoniNoone.com/2012/01/22/so-you-want-a-pin-it-button-on-your-wordpress-blog/</link>
		<comments>http://RoniNoone.com/2012/01/22/so-you-want-a-pin-it-button-on-your-wordpress-blog/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 20:18:23 +0000</pubDate>
		<dc:creator>roni</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://RoniNoone.com/?p=1598</guid>
		<description><![CDATA[I don&#8217;t know if I&#8217;m the only one, but getting the Pinterst button to work on my site was a major pain in the&#8230;. butt. It took me a few attempts and some troubleshooting, so I thought I&#8217;d share my experience to help those having a hard time. The Code This is the basic code&#160;<a href="http://RoniNoone.com/2012/01/22/so-you-want-a-pin-it-button-on-your-wordpress-blog/">[Continue reading...]</a>]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://RoniNoone.com/resources/2012/pinterest.jpg" width="500" height="157" /></p>
<p>I don&#8217;t know if I&#8217;m the only one, but getting the Pinterst button to work on my site was a major pain in the&hellip;. butt. It took me a few attempts and some troubleshooting, so I thought I&#8217;d share my experience to help those having a hard time. <span id="more-1598"></span></p>
<h3>The Code</h3>
<p>This is the basic code for a <em>Pin It</em> button from the Pinterest site. </p>
<pre class="code">&lt;a href=&quot;http://pinterest.com/pin/create/button/?
url=<strong>URL</strong>&amp;media=<strong>IMAGE</strong>&amp;description=<strong>DESCRIPTION</strong>&quot;
class=&quot;pin-it-button&quot; count-layout=&quot;none&quot;&gt;Pin It&lt;/a&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://assets.pinterest.com/js/pinit.js&quot;&gt;&lt;/script&gt;</pre>
<p>We need to replace <strong>URL</strong>, <strong>IMAGE</strong>, <strong>DESCRIPTION</strong> with the link, image link and description of our post. </p>
<p>Description and link are easy using <em>the_permalink()</em> and <em>the_title()</em> functions. </p>
<pre class="code">&lt;a href=&quot;http://pinterest.com/pin/create/button/?
url=<strong>&lt;?php the_permalink() ?&gt;</strong>&amp;media=<strong>IMAGE</strong>&amp;
description=<strong>&lt;?php the_title(); ?&gt;</strong>&quot; class=&quot;pin-it-button&quot; 
  count-layout=&quot;none&quot;&gt;Pin It&lt;/a&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://assets.pinterest.com/js/pinit.js&quot;&gt;&lt;/script&gt;</pre>
<p>That leaves us with <strong>IMAGE</strong> to worry about. </p>
<p>WordPress introduced the <a href="http://codex.wordpress.org/Post_Thumbnails">Post Thumbnail feature</a> in version 2.9 so if you are up to date with your WordPress version you will access to it. Post Thumbnail is like a default image associated with each of your posts. By using this feature we can access the URL of the thumbnail to be used as the image of your pin. </p>
<p>If you haven&#8217;t been setting thumbnails already, there&#8217;s a few things we may need to do. </p>
<h3>1. Enable Thumbnail Support</h3>
<p>The first thing you need to do is add the following to your functions.php file if it isn&#8217;t already there. </p>
<pre class="code">&lt;?php
  if ( function_exists( 'add_theme_support' ) ) { 
  add_theme_support( 'post-thumbnails' ); 
  }
  ?&gt;
</pre>
<h3>2. Assign a Thumbnail to all Posts</h3>
<p>Thankfully there is a plugin for this! Install and activate the <a href="http://wordpress.org/extend/plugins/auto-featured-image/">Auto Featured Image</a>. It will go through your archives and set the first image in your post as the thumbnail. It will also automatically assign a featured image to any new posts you publish. </p>
<p>Once you activate the plug-in go to <strong>Settings</strong> -&gt; <strong>Auto Featured Image</strong> and click &quot;<strong>Generate Thumbnails</strong>&quot;</p>
<p>Let it do it&#8217;s magic! </p>
<h3>3. Access the Thumbnail URL</h3>
<p>Now that your theme supports thumbnails and you have one associated with each post, all you need to do is access it. This is done with a simple script. </p>
<pre class="code">&lt;?php $featuredImage =
wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ),
'single-post-thumbnail' ); ?&gt;</pre>
<p>By placing this script above the <em>Pin It</em> code we can use <em>&lt;?php echo $featuredImage[0]; ?&gt;</em> to pass the URL of the image to Pintereset. </p>
<h3>Final Code</h3>
<p>Putting all this together, simply place the following code where you would like the Pin it button to display (within the main loop, of course) </p>
<pre class="code">&lt;?php $featuredImage =
wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ),
 'single-post-thumbnail' ); ?&gt;
 &lt;a href=&quot;http://pinterest.com/pin/create/button/?
url=<strong>&lt;?php the_permalink() ?&gt;</strong>&amp;
media=<strong>&lt;?php echo $featuredImage[0]; ?&gt;</strong>&amp;
description=<strong>&lt;?php the_title(); ?&gt;&quot;</strong>
class=&quot;pin-it-button&quot; count-layout=&quot;none&quot;&gt;Pin It&lt;/a&gt;

&lt;script type=&quot;text/javascript&quot;
src=&quot;http://assets.pinterest.com/js/pinit.js&quot;&gt;&lt;/script&gt;</pre>
<p>Hopefully this sheds some light. I&#8217;m sure it will all be replaced with a plugin soon enough if it isn&#8217;t already, but I like the automation  aspect of this approach. Once it is in place each <em>Pin It</em> button is ready to go without any additional work from me. </p>
<p>Phew.  </p>
]]></content:encoded>
			<wfw:commentRss>http://RoniNoone.com/2012/01/22/so-you-want-a-pin-it-button-on-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My Thoughts Exactly&#8230;</title>
		<link>http://RoniNoone.com/2011/12/12/my-thoughts-exactly/</link>
		<comments>http://RoniNoone.com/2011/12/12/my-thoughts-exactly/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 17:01:59 +0000</pubDate>
		<dc:creator>roni</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[quote]]></category>

		<guid isPermaLink="false">http://RoniNoone.com/?p=1593</guid>
		<description><![CDATA[&#8220;We shouldn&#8217;t be surprised when someone chooses to publish their photos, their words, their art or their opinions. We should be surprised when they don&#8217;t.&#8221; -Seth Godin in this post.]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;We shouldn&#8217;t be surprised when someone chooses to publish their photos, their words, their art or their opinions. We should be surprised when they don&#8217;t.&#8221; </p></blockquote>
<p>-Seth Godin in <a href="http://sethgodin.typepad.com/seths_blog/2011/12/the-most-important-page-on-the-web-is-the-page-you-build-yourself.html">this post</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://RoniNoone.com/2011/12/12/my-thoughts-exactly/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Build Blog Confidence: 4 Blogging Questions Answered</title>
		<link>http://RoniNoone.com/2011/12/06/build-blog-confidence-4-blogging-questions-answered/</link>
		<comments>http://RoniNoone.com/2011/12/06/build-blog-confidence-4-blogging-questions-answered/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 22:07:41 +0000</pubDate>
		<dc:creator>roni</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://RoniNoone.com/?p=1576</guid>
		<description><![CDATA[Ryan wrote yet another awesome post on his blog NoMoreBacon. In it he talks about 4 questions all bloggers should ask themselves and I feel compelled to not only share but answer them as well. Questions and my answers below&#8230; Could I describe my blog to a friend in 3 sentences or less? YES! I&#160;<a href="http://RoniNoone.com/2011/12/06/build-blog-confidence-4-blogging-questions-answered/">[Continue reading...]</a>]]></description>
			<content:encoded><![CDATA[<p><img class="center" src="http://roninoone.com/resources/2011/20111206_question.jpg" alt="" /></p>
<p>Ryan wrote yet another awesome post on his blog NoMoreBacon. In <a href="http://www.nomorebacon.com/four-questions-all-bloggers-should-ask-themselves">it he talks about 4 questions all bloggers should ask themselves</a> and I feel compelled to not only share but answer them as well. Questions and my answers below&#8230; <span id="more-1576"></span></p>
<h3>Could I describe my blog to a friend in 3 sentences or less?</h3>
<p>YES! I think I can and this makes me feel good about my 2 personal blogs. Let me take a stab…</p>
<p>Roni&#8217;s Weigh is my personal weigh loss and weight maintenance blog. I share my life (struggles and successes) to inspire others to live a little healthier.</p>
<p>GreenLiteBites is all about food! I share how I TRY to feed my family a little healthier, what I cook for myself and how I make what I make. It includes food photos, recipes, school lunch ideas and baby food adventures.</p>
<h3>Would I subscribe to my own blog?</h3>
<p>This is a tough one. I don&#8217;t subscribe to many blogs (NoMoreBacon being one of a handful.) That being said I would subscribe to GreenLiteBites because <a href="http://feeds.feedburner.com/greenlitebites">the feed includes a photo of the most recent recipe</a> and I like food photos.</p>
<p>If I&#8217;m being honest, I don&#8217;t think I would subscribe to Roni&#8217;s Weigh but I&#8217;d bookmark it. I don&#8217;t subscribe to many journal style blogs because they get overwhelming to follow, but I like to check in on that type of blogger when I have time. Hence the bookmark.</p>
<h3>Where am I taking my readers?</h3>
<p>Good question! It&#8217;s kind of hard to answer on Roni&#8217;s Weigh as I&#8217;m giving them a peek into my life. A lot of things are out of my control, but my plan is to always be honest with my readers and share things I think will inspire and motivate others.</p>
<p>GreenLiteBites is similar. I&#8217;m sharing my adventures with food. I hope to get a little healthier along the way and inspire those who are reading to do so as well.</p>
<p>On both blogs I guess you can say I&#8217;m taking them along for the ride that is my life.</p>
<h3>What promise am I making with my blog?</h3>
<p>My promise to be honest on Roni&#8217;s Weigh. As someone who is sharing a weight loss story I want the good, the bad and the ugly out there. Too many times people sugar coat weight loss stories and I think it does a disservice to the reader.</p>
<p>On GreenLiteBites I promise to do my best to share good healthy food ideas.</p>
<h3>Conclusion</h3>
<p>Even if you blog for a hobby, DO THIS! I can&#8217;t stress how helpful it is to clarify your mission and build blog confidence.</p>
]]></content:encoded>
			<wfw:commentRss>http://RoniNoone.com/2011/12/06/build-blog-confidence-4-blogging-questions-answered/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I Don&#8217;t Need To Review Your Product, You Want Me To.</title>
		<link>http://RoniNoone.com/2011/11/16/i-dont-need-to-review-your-product-you-want-me-to/</link>
		<comments>http://RoniNoone.com/2011/11/16/i-dont-need-to-review-your-product-you-want-me-to/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 19:57:22 +0000</pubDate>
		<dc:creator>roni</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://RoniNoone.com/?p=1566</guid>
		<description><![CDATA[I get asked to review quite a few products on my weight loss blog. Weight loss is a broad category and a highly targeted market. Food products, pills, plans, exercise equipment, supplements, nothing is off limits. Most of the time I politely refuse the offer, and most of the time I never hear from the&#160;<a href="http://RoniNoone.com/2011/11/16/i-dont-need-to-review-your-product-you-want-me-to/">[Continue reading...]</a>]]></description>
			<content:encoded><![CDATA[<p>I get asked to review quite a few products on my <a href="http://RonisWeigh.com">weight loss blog</a>. Weight loss is a broad category and a highly targeted market. Food products, pills, plans, exercise equipment, supplements, nothing is off limits. Most of the time <a href="http://roninoone.com/2011/01/25/my-response-to-product-review-pitches/">I politely refuse the offer</a>, and most of the time I never hear from the company again. </p>
<p>There are times, however, when I think the product is a good match. </p>
<p>Recently, a custom t-shirt company reached out and asked if I&#8217;d be willing to write a review for them. At first I wasn&#8217;t that interested but then I saw some potential with <a href="http://FitBloggin.com">FitBloggin&#8217;.</a> If they had the right type of shirts there may be sponsorship potential. So I replied to their pitch with a pitch of my own. <span id="more-1566"></span></p>
<blockquote>
<p>Hi XXXX!&nbsp;</p>
<p>It&#8217;s nice to hear from you. I&#8217;d love to do this. Right now I use <a href="http://www.zazzle.com/skinnyminnymedia">Zazzle</a> for a few things but it&#8217;s pretty impersonal. I also host a conference called FitBloggin and we are looking for a shirt sponsor. Do you have any fitness&nbsp;apparel&nbsp;or something more then just you basic cotton T?</p>
<p>-Roni</p>
</blockquote>
<p>Their response&hellip;.</p>
<blockquote>
<p>As a matter of fact, we do!&nbsp; We have athletic tops in mens and women&#8217;s and customizable sweatpants and shorts.&nbsp; </p>
<p>Right now I can offer you two free t-shirts for review, and you are more than welcome to look through our other stuff if you&#8217;d like to order any of it.&nbsp; We pride ourselves on our low prices.</p>
<p>Let me know what you think.</p>
<p>Best,</p>
</blockquote>
<p>I was excited! My plan was to design a shirt for a running event. Give it a try during a race and then post a review on <a href="http://RonisWeigh.com">Roni&#8217;s Weigh</a>. </p>
<p>This opportunity just became a perfect fit for my site and my brand. I was excited for our potential relationship. </p>
<p>Once the design was done I was told how to proceed with ordering. Part of the email included&hellip; </p>
<blockquote>
<p>You will need to enter in your credit card information and be charged one cent for your order.&nbsp; We only do this so we can charge people full price for the shirts whenever they don&#8217;t end up doing the review they promised.&nbsp; If you have any further questions or concerns let me know.&nbsp;</p>
</blockquote>
<p>Hold the phone! What? I was floored by this. What if I didn&#8217;t like the shirts? What if I didn&#8217;t write the review fast enough? What if they didn&#8217;t like my review? They could decide to charge me whenever they wanted? </p>
<p>My reaction may have been a little harsh but I meant every word. </p>
<blockquote>
<p>As for charging if the blogger doesn&#8217;t do the review, that concerns me. I generally only post positive reviews, so if I&#8217;m unhappy with the shirts or the printing and decide not to review you would charge me??&nbsp;</p>
<p>I&#8217;m not saying it&#8217;s going to happen but I&#8217;m also not going to take an $75 dollar chance. Blogging is my profession. It&#8217;s how I make a living. You are asking me to promote something for you to my audience free of charge in exchange for a sample of your product. Is there a risk there? Of course, but that risk should be yours not mine.&nbsp;</p>
<p>I&#8217;m sorry but I don&#8217;t feel comfortable providing you my credit card information. I don&#8217;t like to be pressured into posting a review and by holding the cost of the shirts over my head that&#8217;s exact what you are doing.&nbsp;</p>
<p>Thank you for contacting me but I&#8217;m going to have to pass on the review offer.&nbsp;</p>
</blockquote>
<p>Listen, I&#8217;m flattered when I get these offers. I&#8217;m grateful when companies see the value I may be able to add to their campaigns but, like I said in my response, I refuse to be pressured into posting a review. </p>
<p>I say this in fear of sounding like a complete jerk but sometimes, what I really want to say to them is:  I don&#8217;t need to review your product, you want me to. </p>
<p><strong>Am I being unreasonable? Would you have provided your credit card information?</strong></p>
<p>Related posts: </p>
<ul>
<li><a href="http://roninoone.com/2011/06/22/why-im-hosting-giveaways-on-my-blogs-less-and-less/" target="_blank">Why I’m Hosting Giveaways on my Blogs Less and Less</a></li>
<li><a href="http://roninoone.com/2011/06/14/do-you-post-negative-reviews-on-your-blog/" target="_blank">Do you post negative reviews on your blog?</a></li>
<li><a href="http://roninoone.com/2011/01/25/my-response-to-product-review-pitches/" target="_blank">My Response to Product Review Pitches</a></li>
<li><a href="http://roninoone.com/2011/01/06/the-power-of-thanks-but-im-not-interested-in-response-to-a-pr-pitch/" target="_blank">The Power of &#8220;Thanks, but I’m Not Interested&#8221; in Response to a PR Pitch.</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://RoniNoone.com/2011/11/16/i-dont-need-to-review-your-product-you-want-me-to/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Klout Doesn&#8217;t Like it When You Spend Time with Your Family</title>
		<link>http://RoniNoone.com/2011/10/27/klout-doesnt-like-it-when-you-spend-time-with-your-family/</link>
		<comments>http://RoniNoone.com/2011/10/27/klout-doesnt-like-it-when-you-spend-time-with-your-family/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 15:27:10 +0000</pubDate>
		<dc:creator>roni</dc:creator>
				<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://RoniNoone.com/?p=1558</guid>
		<description><![CDATA[With a 6 month old I haven&#8217;t had as much time to chat on social media. Even though my follower counts, lists and facebook fans have grown consistently I, of course, can&#8217;t engage as frequently. Do my followers value me less for that? I don&#8217;t think so but Klout sure does&#8230;]]></description>
			<content:encoded><![CDATA[<p>With a 6 month old I haven&#8217;t had as much time to chat on social media. Even though my follower counts, lists and facebook fans have grown consistently I, of course, can&#8217;t engage as frequently. Do my followers value me less for that? I don&#8217;t think so but Klout sure does&#8230; </p>
<p class="center">
<img alt="" src="http://roninoone.com/resources/2011/20111027_klout" class="center"  /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://RoniNoone.com/2011/10/27/klout-doesnt-like-it-when-you-spend-time-with-your-family/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ask Roni: RSS Management</title>
		<link>http://RoniNoone.com/2011/10/11/ask-roni-rss-management/</link>
		<comments>http://RoniNoone.com/2011/10/11/ask-roni-rss-management/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 02:01:43 +0000</pubDate>
		<dc:creator>roni</dc:creator>
				<category><![CDATA[Ask Roni]]></category>

		<guid isPermaLink="false">http://RoniNoone.com/?p=1550</guid>
		<description><![CDATA[Hi Roni, I noticed that when I went to subscribe to Roni&#8217;s Weigh, you had a bunch of great extras that I would love to have on my RSS feed as well. Could you tell me how you: 1. track how many subscribers you have to your RSS feed. 2. Have that &#8220;if you&#8217;re not&#160;<a href="http://RoniNoone.com/2011/10/11/ask-roni-rss-management/">[Continue reading...]</a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>Hi Roni,</p>
<p>I noticed that when I went to subscribe to Roni&#8217;s Weigh, you had a bunch of great extras that I would love to have on my RSS feed as well.</p>
<p>Could you tell me how you:<br />
1. track how many subscribers you have to your RSS feed.<br />
2. Have that &#8220;if you&#8217;re not reading this in your feed reader or on [site], this is stolen&#8221; text in each post.</p>
<p>Thank you in advance for your help. I have tried a few methods for tracking RSS subscribers, and not a single thing seems to work. I&#8217;m new at this blogging thing, so any help would be super appreciated!</p>
<p>Mandy</p></blockquote>
<p>Hi Mandy!</p>
<p>SO sorry for my late reply! I have 2 quick and (hopefully) easy answers for you.<span id="more-1550"></span></p>
<h3>1. Tracking RSS Subscribers</h3>
<p>I use <a href="http://feedburner.google.com/">Feedburner </a> to track all feeds for my sites. It&#8217;s works like this&#8230;</p>
<ol>
<li>You &#8220;burn&#8221; your feed.</li>
<li>Feedburner gives you a unique feed URL.</li>
<li>Publicize feedburner URL instead of your feed url.</li>
</ol>
<p>For example my base feed here is <a href="http://roninoone.com/feed/">http://roninoone.com/feed/</a> but if you click my RSS feed button to the left you&#8217;ll notice it links to <a href="http://feeds.feedburner.com/Roninoone">http://feeds.feedburner.com/Roninoone</a></p>
<p>By routing people to the FeedBurner address I&#8217;m able to not only track subscribers but publicize, optimize, and even monetize my feed.</p>
<h3>2. Add an RSS Footer in each post.</h3>
<p>I do this through a function in WordPress, but there is a slightly less compicated way using CSS as well. <a href="http://roninoone.com/2010/08/10/one-simple-way-to-stick-it-to-scrapers/">Click here to see my tutorial.</a></p>
<p>I hope that helps Mandy!</p>
<p>-Roni</p>
]]></content:encoded>
			<wfw:commentRss>http://RoniNoone.com/2011/10/11/ask-roni-rss-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodbye Steve</title>
		<link>http://RoniNoone.com/2011/10/05/goodbye-steve/</link>
		<comments>http://RoniNoone.com/2011/10/05/goodbye-steve/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 00:26:02 +0000</pubDate>
		<dc:creator>roni</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://RoniNoone.com/?p=1545</guid>
		<description><![CDATA[&#8220;Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work. And the only way to do great work is to love what you do &#8230; If you haven&#8217;t found it yet, keep looking. Don&#8217;t settle. As&#160;<a href="http://RoniNoone.com/2011/10/05/goodbye-steve/">[Continue reading...]</a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work. And the only way to do great work is to love what you do &#8230; If you haven&#8217;t found it yet, keep looking. Don&#8217;t settle. As with all matters of the heart, you&#8217;ll know when you find it. And, like any great relationship, it just gets better and better as the years roll on.&#8221;<br />
-Steve Jobs</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://RoniNoone.com/2011/10/05/goodbye-steve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hi. My Name is Roni and I&#8217;m an Addict.</title>
		<link>http://RoniNoone.com/2011/09/21/hi-my-name-is-roni-and-im-an-addict/</link>
		<comments>http://RoniNoone.com/2011/09/21/hi-my-name-is-roni-and-im-an-addict/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 02:12:44 +0000</pubDate>
		<dc:creator>roni</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://RoniNoone.com/?p=1519</guid>
		<description><![CDATA[I can&#8217;t stop buying domain names! Right now I own 30. THIRTY! Some I&#8217;m using, of course, others are ideas. Site ideas, blog ideas, book ideas. I may not have time to act on these ideas right now, but buying the domain name is a first step. I give myself a year. One year to&#160;<a href="http://RoniNoone.com/2011/09/21/hi-my-name-is-roni-and-im-an-addict/">[Continue reading...]</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://click.linksynergy.com/fs-bin/click?id=pEq8SgzNbh8&amp;offerid=175560.10000050&amp;type=4&amp;subid=0"><img class="left" src="http://ad.linksynergy.com/fs-bin/show?id=pEq8SgzNbh8&amp;bids=175560.10000050&amp;type=4&amp;subid=0" border="0" alt="button" width="125" height="125" /></a></p>
<p>I can&#8217;t stop buying domain names!</p>
<p>Right now I own 30. THIRTY! Some I&#8217;m using, of course, others are ideas. Site ideas, blog ideas, book ideas.</p>
<p>I may not have time to act on these ideas right now, but buying the domain name is a first step. I give myself a year. One year to do something with a domain name I purchase. If I don&#8217;t make any progress towards using it within that year, I let it go.<span id="more-1519"></span></p>
<p>This morning I purchased yet another one. I had an idea while running and snatched the domain on <a href="http://click.linksynergy.com/fs-bin/click?id=pEq8SgzNbh8&amp;offerid=175560&amp;type=3&amp;subid=0">Register.com</a><img src="http://ad.linksynergy.com/fs-bin/show?id=pEq8SgzNbh8&amp;bids=175560&amp;type=3&amp;subid=0" border="0" alt="" width="1" height="1" />.</p>
<p>Register.com is my domain registrar of choice. I&#8217;ve been using them for over 10 years. They have great customer service and an easy to use interface. My only complaint: price.</p>
<p>Before I checkout I do a quick google search for a promo or coupon code (side note: I do this for ever online purchase) and I always find one that saves me a few bucks.</p>
<p>This morning I found the ultimate one:  <strong>REG5 </strong></p>
<p>Just plop <strong>REG5</strong> in the promo field and get any domain for $5!</p>
<p>It only works for a year, but that&#8217;s all you need to secure a name. When and if you actually do anything with it, you can always negotiate longer terms with Register.com. I&#8217;ve done it for all my permanent sites like, <a href="http://RonisWeigh.com">RonisWeigh.com</a>, <a href="http://GreenLiteBites.com">GreenLiteBites.com</a>, <a href="http://BlogToLose.com">BlogToLose.com</a> and <a href="http://SkinnyMinnyMedia.com">SkinnyMinnyMedia.com</a>. All of which I now own for 10 years.</p>
<p>So if you are in the market for a new domain name check out register.com and use the promo code <strong>REG5</strong> for a cheap way to grab that domain name you&#8217;ve had floating in your head.</p>
<p align="center">
<a href="http://click.linksynergy.com/fs-bin/click?id=pEq8SgzNbh8&amp;offerid=175560.10000905&amp;type=4&amp;subid=0"><img src="http://ad.linksynergy.com/fs-bin/show?id=pEq8SgzNbh8&amp;bids=175560.10000905&amp;type=4&amp;subid=0" border="0" alt="banner" /></a></p>
<p><small>Disclosure: I am a register.com affiliate.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://RoniNoone.com/2011/09/21/hi-my-name-is-roni-and-im-an-addict/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>The Great GreenLiteBites Book Giveaway: Winners Announced</title>
		<link>http://RoniNoone.com/2011/09/20/the-great-greenlitebites-book-giveaway-winners-announced/</link>
		<comments>http://RoniNoone.com/2011/09/20/the-great-greenlitebites-book-giveaway-winners-announced/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 02:01:25 +0000</pubDate>
		<dc:creator>roni</dc:creator>
				<category><![CDATA[contests]]></category>

		<guid isPermaLink="false">http://RoniNoone.com/?p=1514</guid>
		<description><![CDATA[MAN, I have a lot of shipping to do! Congrats to all the winners! Don&#8217;t forget to use the code EX9MPHR6 for 20% off. That&#8217;s a savings of $3.99 making the book a mere $15.96! Click here to order your copy today! GreenLiteBites JennieM Janine Turnbull Amy Stoehr Amber Jeri: Roni&#8217;s Weigh @LastMinuteMandy Laura Healey&#160;<a href="http://RoniNoone.com/2011/09/20/the-great-greenlitebites-book-giveaway-winners-announced/">[Continue reading...]</a>]]></description>
			<content:encoded><![CDATA[<p>MAN, I have a lot of shipping to do! Congrats to all the winners! </p>
<p>Don&#8217;t forget to use the code EX9MPHR6 for 20% off. That&#8217;s a savings of $3.99 making the book a mere $15.96! <a href="http://greenlitebites.com/book/">Click here to order your copy today</a>!</p>
<p><span id="more-1514"></span></p>
<p><a href="http://GreenLiteBites.com">GreenLiteBites</a></p>
<ul>
<li>JennieM</li>
<li>Janine Turnbull
  </li>
<li>Amy Stoehr</li>
<li>Amber</li>
<li>Jeri:  </li>
</ul>
<p><a href="http://RonisWeigh.com">Roni&#8217;s Weigh</a></p>
<ul>
<li>@LastMinuteMandy</li>
<li>Laura Healey</li>
<li>Leighann</li>
<li>norma</li>
<li>heather b.</li>
</ul>
<p><a href="http://RoniNoone.com">RoniNoone.com</a></p>
<ul>
<li>Jen</li>
<li>Phebe</li>
<li>Megan Swartz</li>
<li>Kim</li>
<li>Sherry Hight</li>
</ul>
<p><a href="http://PoopButterflies.com">PoopButterflies</a></p>
<ul>
<li>tonilea</li>
<li>Kris K</li>
<li>Haley N</li>
<li>Amy @ A Little Nosh</li>
<li>Janice</li>
</ul>
<p><a href="http://BlogToLose.com">BlogToLose</a></p>
<ul>
<li>Emily Fowler </li>
<li>Cinemarie </li>
<li>SaminSTL </li>
<li>Svanita</li>
<li>Kelly Fuller</li>
</ul>
<p><a href="http://greenlitebites.com/book/">Don&#8217;t forget to use the code EX9MPHR6 for 20% off. Click here to order your copy today</a>!</p>
<p>Winners selected using the <a href="http://roninoone.com/2011/01/03/wordpress-plugin-for-those-that-host-giveaways/">Pick Giveaway Winner Plugin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://RoniNoone.com/2011/09/20/the-great-greenlitebites-book-giveaway-winners-announced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

