<?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>Robb Clarke - Fredericton Web and Print Designer &#187; Tweet</title>
	<atom:link href="http://robbclarke.com/tag/tweet/feed/" rel="self" type="application/rss+xml" />
	<link>http://robbclarke.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 14 Aug 2010 12:49:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Add &#8220;Like&#8221; and &#8220;Tweet&#8221; Buttons To WordPress Blog Posts</title>
		<link>http://robbclarke.com/coding-tricks/how-to-add-like-and-tweet-buttons-to-wordpress-blog-posts/</link>
		<comments>http://robbclarke.com/coding-tricks/how-to-add-like-and-tweet-buttons-to-wordpress-blog-posts/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 00:51:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding Tricks]]></category>
		<category><![CDATA[Codex]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Fredericton Web Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Like]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[robbclarke.com]]></category>
		<category><![CDATA[Tweet]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Codex]]></category>

		<guid isPermaLink="false">http://robbclarke.com/?p=649</guid>
		<description><![CDATA[Yesterday I added the new Tweet button provided by Twitter and the new Like button provided by Facebook to my blog posts (seen above, click them to take the for a test drive). They&#8217;re quick and easy ways for readers to share posts with other readers and they even include some nifty little counters too. [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I added the new Tweet button provided by Twitter and the new Like button provided by Facebook to my blog posts <em>(seen above, click them to take the for a test drive)</em>. They&#8217;re quick and easy ways for readers to share posts with other readers and they even include some nifty little counters too. Oooh fancy!</p>
<p>Combining these buttons with the WordPress codex is pretty easy. Insert a couple snippets of code and you can easily add the URL and post/page title dynamically to the &#8220;Tweets&#8221; and &#8220;Likes&#8221;.</p>
<p>The codes from the WordPress codex that we&#8217;re going to use are:</p>
<div style="margin: 0 0 15px 0;">
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> the_permalink</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span><span class="htmlText"> and </span><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> the_title</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
</pre>
</div>
<p>Two lines of code and you&#8217;re all set up. Copy and paste the code below, style as needed to position the buttons how you see fit. For the Twitter Tweet button, don&#8217;t forget to replace my username with yours.</p>
<h3>Facebook Like Button</h3>
<div style="margin: 0 0 15px 0;">
<pre class="html">
<span class="htmlOtherTag">&lt;iframe src=<span class="htmlAttributeValue">&quot;http://www.facebook.com/plugins/like.php?href=&lt;?php the_permalink() ?&gt;</span><span class="htmlSpecialChar">&amp;amp;</span>layout=button_count<span class="htmlSpecialChar">&amp;amp;</span>show_faces=false<span class="htmlSpecialChar">&amp;amp;</span>width=100<span class="htmlSpecialChar">&amp;amp;</span>action=like<span class="htmlSpecialChar">&amp;amp;</span>font=arial<span class="htmlSpecialChar">&amp;amp;</span>colorscheme=light<span class="htmlSpecialChar">&amp;amp;</span>height=21&quot;</span> scrolling=<span class="htmlAttributeValue">&quot;no&quot;</span> frameborder=<span class="htmlAttributeValue">&quot;0&quot;</span> style=<span class="htmlAttributeValue">&quot;<span class="cssProperty">border</span><span class="cssRest">:</span><span class="cssValue">none</span><span class="cssRest">;</span> <span class="cssProperty">overflow</span><span class="cssRest">:</span><span class="cssValue">hidden</span><span class="cssRest">;</span> <span class="cssProperty">width</span><span class="cssRest">:</span><span class="cssValue">100px</span><span class="cssRest">;</span> <span class="cssProperty">height</span><span class="cssRest">:</span><span class="cssValue">21px</span><span class="cssRest">;</span>&quot;</span> allowTransparency=<span class="htmlAttributeValue">&quot;true&quot;</span>&gt;<span class="htmlOtherTag">&lt;/iframe&gt;</span>
</pre>
</div>
<h3>Twitter Tweet Button</h3>
<div style="margin: 0 0 15px 0;">
<pre class="html">
<span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;http://twitter.com/share&quot;</span> class=<span class="htmlAttributeValue">&quot;twitter-share-button&quot;</span> data-text=<span class="htmlAttributeValue">&quot;<span class="htmlOtherTag">&lt;?php the_title(); ?&gt;</span></span>&quot;</span> data-count=<span class="htmlAttributeValue">&quot;horizontal&quot;</span> data-via=<span class="htmlAttributeValue">&quot;robbclarke&quot;</span>&gt;Tweet<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;http://platform.twitter.com/widgets.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
</pre>
</div>
<p>Did you find this useful? Wouldn&#8217;t hurt to share it with others would it?</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/coding-tricks/how-to-add-like-and-tweet-buttons-to-wordpress-blog-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Ten Commandments of Social Media</title>
		<link>http://robbclarke.com/social-media/the-ten-commandments-of-social-media/</link>
		<comments>http://robbclarke.com/social-media/the-ten-commandments-of-social-media/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 00:29:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[10 Commandments]]></category>
		<category><![CDATA[Bit.ly]]></category>
		<category><![CDATA[Cli.gs]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Neil Patrick Harris]]></category>
		<category><![CDATA[Retweet]]></category>
		<category><![CDATA[Rick Roll]]></category>
		<category><![CDATA[Scott Stratten]]></category>
		<category><![CDATA[Smashing Magazine]]></category>
		<category><![CDATA[TinyURL]]></category>
		<category><![CDATA[Tweet]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[UnMarketing]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=331</guid>
		<description><![CDATA[There are a lot of misconceptions when it comes to social media. People seem to think that every day standards and decency get tossed out the window because of the anonymity of the Internet. Unfortunately for those people, that’s not always the case. First off, the Internet is getting smaller, and by that, I mean [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/11/the-ten-commandments-of-social-media/"><img title="The Ten Commandments of Social Media" src="http://clarkegraphics.com/wp-content/uploads/2009/11/10commandments.jpg" alt="The Ten Commandments of Social Media" width="600" height="200" /></a></p>
<p>There are a lot of misconceptions when it comes to social media. People seem to think that every day standards and decency get tossed out the window because of the anonymity of the Internet. Unfortunately for those people, that’s not always the case. First off, the Internet is getting smaller, and by that, I mean that it’s getting easier to find out who people are. You know how the saying goes &#8220;It’s a small world.&#8221; That reigns true for the Internet, especially social media sites, as well. Everyone is connected one way or another. There’s a whole &#8220;Six Degrees of Separation&#8221; thing going on.</p>
<p>There are <em>Ten Commandments of Social Media</em> that you should always try to follow. They will not only make you a better person but they will make your followers that much more appreciative of what you have to say.</p>
<h3>Commandment #1: Thou Shalt Not Be a Narcissist</h3>
<p>Social media is not all about you. It’s about people. It’s about being social, hence the name. Take the time to engage others in conversation. Don’t simply sign on and post something about yourself and leave. For every one post that you make about yourself you should dedicate at least three to engaging others in conversation whether it’s Retweeting what they’ve said, commenting on their photo album or asking them how their day is. A little bit of human contact goes a long way in the social media world; after all, human contact is what the whole concept is based off of.</p>
<p>You need to immerse yourself in the community and become part of the conversation. Social media is about relationship building and if you’re just spouting out posts and Tweets about yourself then people will quickly lose interest in you and what you have to say.</p>
<h3>Commandment #2: Thou Shalt Listen to What Others Are Saying</h3>
<p>This ties in with the previous commandment; social media is all about engaging others in conversation and to do that you need to first listen to what others have to say. Actively participating in conversation helps build relationships and listening is the most important part.</p>
<p>There are a lot of tools out there that will not only help you <em>listen</em> but will also help you <em>engage</em>.  Tools like <a href="http://www.tweetdeck.com">TweetDeck</a> are fantastic tools for monitoring and engaging the conversations that are happening. TweetDeck is fantastic because you can not only monitor the obvious Twitter but you can also monitor Facebook and multiple other Twitter accounts.</p>
<p><em>TweetDeck Interface</em></p>
<p><img title="TweetDeck Interface" src="http://clarkegraphics.com/wp-content/uploads/2009/11/tweetdeck.jpg" alt="TweetDeck Interface" width="600" height="340" /></p>
<h3>Commandment #3: Thou Shalt Not Spam</h3>
<p>If you’ve been using email for the past 15-20 years then this shouldn’t come as a surprise. Don’t spam your friends and followers with links and chain letters other useless nonsense that just gets tossed in the trash or deleted. Be courteous to others. Just because you think it&#8217;s cute to show 26 pictures taken milliseconds apart of your 9 month old rolling around on the floor doesn&#8217;t mean that anyone else will.</p>
<p>Think about all of the things that make you roll your eyes when you read them on social media sites. Now think, do you do any of those things? If so, stop.</p>
<p><em>Shameless Self Promotion With a Side of Spam</em></p>
<p><img title="Shameless Self Promotion With a Side of Spam" src="http://clarkegraphics.com/wp-content/uploads/2009/11/spam.jpg" alt="Shameless Self Promotion With a Side of Spam" width="273" height="240" /></p>
<h3>Commandment #4: Thou Shalt Say Something of Substance</h3>
<p>How often do you get online to find Joe blabbering on about his latest conquest at the bar or how many Filet o&#8217;Fish he&#8217;s eaten today? How many times have you seen Mary complain about how she didn&#8217;t get enough sleep last night or how her friends annoy her? Do these people really actually <em>say</em> anything? Usually not.</p>
<p>Far too often people take to social media sites to air their dirty laundry and complain about something and why? Would they be doing the same in front of a group of their friends, peers, coworkers, and prospective employers? Probably not. So why online?</p>
<p>Scott Stratten from <a href="http://www.un-marketing.com" target="_blank">UnMarketing</a> made a great <a href="http://www.twitter.com/robbclarke/status/5259190307" target="_blank">Tweet</a> about posting on Twitter but the same applies for all social media sites. He said &#8220;Don&#8217;t tweet anything you wouldn&#8217;t want to see on a billboard with your name/face/logo/phone # and your mom driving by.&#8221; It&#8217;s true. You wouldn&#8217;t be saying half of what you say online if it was real life so why do it? If anything what is said online is worse for your reputation than saying it in person. Why? Because it&#8217;s posted online and people can find it and reference it at any time.</p>
<p>The rule is simple; watch what you say and whom you say it to.</p>
<h3>Commandment #5: Thou Shalt Not Abuse Thy Neighbour</h3>
<p>Tying in to the previous Commandment comes another Commandment that you would think would be pretty obvious but sadly it&#8217;s overlooked. Don&#8217;t abuse people online. Flaming on the Internet is just about as old as the Internet itself and it&#8217;s just as unacceptable as it has always been. No one wants to go online and be verbally assaulted for his or her beliefs and opinions. It&#8217;s not good form.</p>
<p>You know how the old saying goes; &#8220;If you can&#8217;t say something nice then don&#8217;t say anything at all.&#8221; Just because you&#8217;re online doesn&#8217;t make it acceptable to do. Chances are that you&#8217;re not going to openly mock or humiliate someone in person so why do it online?</p>
<h3>Commandment #6: Thou Shalt Give Credit Where Credit is Due</h3>
<p>This is a Cardinal Sin in most circles, especially on Twitter. Stealing someone else&#8217;s ideas, quotes, pictures, whatever, are incredibly taboo not to mention amateur. You wouldn&#8217;t want someone coming along and stealing your intellectual property and posting it as his or her own now would you?</p>
<p>Here&#8217;s an example of the proper way to give someone credit for what they&#8217;ve said on Twitter.</p>
<p><em>How to Retweet Properly</em><br />
<img title="How to Tweet" src="http://clarkegraphics.com/wp-content/uploads/2009/11/howtotweet.jpg" alt="How to Tweet" width="400" height="299" /></p>
<p>Note that it&#8217;s perfectly acceptable to truncate words or paraphrase what was said if Retweeting takes up more than the allotted 140 characters.</p>
<h3>Commandment #7: Thou Shalt Learn How to Spell <small>… or at least use a spell checker</small></h3>
<p>This one should be pretty obvious. Learn to spell and use grammar and punctuation properly. It&#8217;s incredibly hard to take what you&#8217;re saying seriously if it&#8217;s full of grammatical errors or you&#8217;ve mixed up your <em>to</em>, <em>too</em> and <em>two</em>s.</p>
<p>It&#8217;s not the hardest thing in the world to run your blog post through a word processor like Word before you post it. It&#8217;s actually in your best interest to type the whole thing in there in the first place regardless.</p>
<p>For those that are Tweeting or updating their Facebook statuses try using <a href="http://www.mozilla.com/firefox/" target="_blank">Mozilla&#8217;s Firefox</a>. It has a built in spell checker. It won&#8217;t catch all of your spelling mistakes and it doesn&#8217;t catch grammatical or punctuation errors but it will put a dent into your typos.</p>
<h3>Commandment #8: Thou Shalt Use Real Words</h3>
<p>The previous Commandment is the perfect segue into this next one. Please, for the love of all things holy, try your best to use real words. Seriously. Social media sites have turned people into absolutely horrible spellers and text and instant messaging aren&#8217;t doing people any favours either. Quit with the OMGs, the LOLs, the WTFs and the ROFLs.</p>
<p><a href="http://www.imdb.com/name/nm0000439/" target="_blank">Neil Patrick Harris</a> had a brilliant <a href="http://twitter.com/ActuallyNPH/status/5802064646" target="_blank">Tweet</a> making fun of people doing this. He said &#8220;Prfkt. Thx 4 L th advyc evry1. This s a way ezr way 2 cmuNik8. Un42n8ly, itz takn me 3 hrz 2 ryt, but itz much pre4d 2 gtn cut off lyk i u&#8221;. I don&#8217;t know <em>what</em> he said but that&#8217;s what he said. It shouldn&#8217;t take 140 seconds to try and decipher your 140 characters on Twitter. I know you&#8217;re doing it to &#8220;save time&#8221; but did you really save time? Did you actually cut seconds off of your posting time or did it really take you minutes longer to be &#8220;clever&#8221; and come up with those new words? Think about it.</p>
<p><em>Hard to read, isn&#8217;t it?</em><br />
<img title="Neil Patrick Harris on Twitter" src="http://clarkegraphics.com/wp-content/uploads/2009/11/nph.jpg" alt="Neil Patrick Harris on Twitter" width="500" height="88" /></p>
<h3>Commandment #9: Thou Shalt Not Bear False Witness</h3>
<p>Websites like <a href="http://www.tinyurl.com" target="_blank">TinyURL</a>, <a href="http://www.cli.gs" target="_blank">Cli.gs</a> and <a href="http://www.bit.ly" target="_blank">Bit.ly</a> all offer a brilliant service; they take your exceptionally long URLs and turn them into short and sweet ones, perfect for the character limiting Twitter. These sites do have a downside though, they enable people to hide spam, porn or even the passé Rick Roll (yes, people are <em>still</em> doing that) in masked URLs.</p>
<p>When URLs are hidden like this users are unable to see where they&#8217;re headed and are often lead to undesirable websites. Be courteous to others and don’t hide links using these services.</p>
<p>That being said; these service providers do attempt to warn users of malicious websites that may be hidden in shortened URLs so there is light at the end of the tunnel.</p>
<p>On a related note; how many social media &#8220;experts&#8221; have you seen on Twitter that claim they know the key to being successful in both business as well as on social media sites? There are thousands of them out there. Do you know what their magic key is? The answer; our last Commandment.</p>
<p><em>Not Really Nick Nolte</em><br />
<img title="Not Actually Nick Nolte's Twitter" src="http://clarkegraphics.com/wp-content/uploads/2009/11/nicknolte.jpg" alt="Not Actually Nick Nolte's Twitter" width="449" height="237" /></p>
<h3>Commandment #10: Thou Shalt Not Be a Friend Whore</h3>
<p>Last but certainly not least is our final Commandment of Social Media. Don&#8217;t be a friend whore. Social media is <em>not</em> a contest to see how many friends or followers you have. Having thousands of followers does not make you a better person or show that you&#8217;re a better quality user.</p>
<p>It&#8217;s incredibly common to see people on Facebook and Twitter adding as many people as they can as their friends in hopes that they befriend them in return simply to accumulate higher numbers.</p>
<p><em>Friend Whore Follows Three Users for Every One That Follows Them</em></p>
<p><img title="Social Media Friend Whore" src="http://clarkegraphics.com/wp-content/uploads/2009/11/friendwhore.jpg" alt="Social Media Friend Whore" width="550" height="148" /></p>
<p><em>Social media is not a contest.</em> Plain and simple.</p>
<p>Following these <em>Ten Commandments of Social Media</em> will not only make you a better user of social media sites but they will also make your friends and followers appreciate you that much more. They aren&#8217;t hard to follow. Give them a shot.</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/social-media/the-ten-commandments-of-social-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What You&#8217;re Doing Wrong on Twitter</title>
		<link>http://robbclarke.com/social-media/what-youre-doing-wrong-on-twitter/</link>
		<comments>http://robbclarke.com/social-media/what-youre-doing-wrong-on-twitter/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 02:55:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Advice]]></category>
		<category><![CDATA[Retweet]]></category>
		<category><![CDATA[Tweet]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=320</guid>
		<description><![CDATA[With everyone and their dog jumping on Twitter and trying to promote themselves it&#8217;s not hard to spot those that are doing it wrong. You guys stand out like a sore thumb. What are you doing wrong? I&#8217;m not only going to tell you what you&#8217;re doing wrong but I&#8217;m going to tell you how [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/11/what-youre-doing-wrong-on-twitter/"><img class="alignnone size-full wp-image-322" title="twitter" src="http://clarkegraphics.com/wp-content/uploads/2009/11/twitter1.jpg" alt="twitter" width="600" height="200" /></a></p>
<p>With everyone and their dog jumping on Twitter and trying to promote themselves it&#8217;s not hard to spot those that are doing it wrong. You guys stand out like a sore thumb. What are you doing wrong? I&#8217;m not only going to tell you what you&#8217;re doing wrong but I&#8217;m going to tell you how to fix the problem.</p>
<h3>The &#8220;It&#8217;s All About Me!&#8221; User</h3>
<p>The most frustrating and annoying people on Twitter are the ones that are into shameless self promotion. They&#8217;re the ones that get on there and Tweet a million and one times a day about themselves and nothing more. They&#8217;re Tweeting about their blog, their website, their company, their promotions but never about anyone else. If you want to lose followers then this is a perfect way to do it. Stop it.</p>
<h3>The &#8220;Link Farmer&#8221;</h3>
<p>Who are these people? They&#8217;re the ones that post nothing but links to other people&#8217;s material and don&#8217;t actually say anything for themselves. While it&#8217;s great that they&#8217;re out there promoting others, it&#8217;s beyond annoying to the rest of us when you flood our news feeds with links to random articles every few minutes. It&#8217;s a sure fire way to have people stop following you.</p>
<h3>The &#8220;OMGLOLWTFBBQ&#8221; User</h3>
<p>I know that Twitter limits you to 140 characters but honestly, use real words. Shortening some words is fine but really there&#8217;s no need to have a sentence like &#8220;Prfkt. Thx 4 L th advyc evry1. This s a way ezr way 2 cmuNik8. Un42n8ly, itz takn me 3 hrz 2 ryt, but itz much pre4d 2 gtn cut off lyk i u&#8221; (Thanks <a href="http://www.twitter.com/actuallynph" target="_blank">@ActuallyNPH</a> for that jewel). There&#8217;s absolutely nothing worse than having to spend 140 seconds to try and decipher what you typed in your 140 characters. English motherf*cker, do you speak it? This is a great segue into the next one&#8230;</p>
<h3>The &#8220;Spelling Bee Champs&#8221;</h3>
<p>Call me crazy but Twitter has turned people into piss poor spellers. Take the time to spell things correctly. It&#8217;s always fun to try and figure out what you just typed because you don&#8217;t know how to spell. Not everyone is a great speller, I can accept that but knowing the difference between <em>there</em>, <em>they&#8217;re</em> and <em>their</em> is elementary&#8230; literally.</p>
<h3>What Can You Do To Fix This?</h3>
<p>What can you do to fix this? It&#8217;s beyond simple. Take the time to engage others in conversations. Comment on their Tweets or Retweet what they&#8217;ve said. To &#8220;succeed&#8221; at Twitter you should really aim for a ratio of about 3:1. That&#8217;s three Tweets NOT about yourself for every one shameless self promotional Tweet.</p>
<p>Limit the truncated words to a minimum. Not every word needs to be shortened. If your Tweet is too long then spread it out over two. There&#8217;s no harm in that. And while you&#8217;re at it, check your spelling.</p>
<p>Now that I&#8217;m done and you&#8217;re done reading this. Check me out on Twitter <a href="http://www.twitter.com/robbclarke" target="_blank">@robbclarke</a> and while you&#8217;re at it, spread the word about this article by hitting the Retweet button.</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/social-media/what-youre-doing-wrong-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
