<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>clipboard &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/clipboard/</link>
	<description>Feed of posts on WordPress.com tagged "clipboard"</description>
	<pubDate>Wed, 22 May 2013 04:47:48 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[#718 - Copying Text To and From the Clipboard]]></title>
<link>http://wpf.2000things.com/2012/12/24/718-copying-text-to-and-from-the-clipboard/</link>
<pubDate>Mon, 24 Dec 2012 11:00:52 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid>http://wpf.2000things.com/2012/12/24/718-copying-text-to-and-from-the-clipboard/</guid>
<description><![CDATA[You can copy data to or from the Windows clipboard using static methods in the System.Windows.Clipbo]]></description>
<content:encoded><![CDATA[<p>You can copy data to or from the Windows clipboard using static methods in the <strong>System.Windows.Clipboard</strong> class.</p>
<p>Here&#8217;s an example that copies text from a <strong>TextBox</strong> onto the clipboard and pastes text from the clipboard into a <strong>Label</strong>.</p>
<pre class="brush: xml; title: ; notranslate" title="">
    &#60;Grid&#62;
        &#60;Grid.RowDefinitions&#62;
            &#60;RowDefinition Height=&#34;Auto&#34;/&#62;
            &#60;RowDefinition Height=&#34;*&#34;/&#62;
        &#60;/Grid.RowDefinitions&#62;
        &#60;Grid.ColumnDefinitions&#62;
            &#60;ColumnDefinition/&#62;
            &#60;ColumnDefinition/&#62;
        &#60;/Grid.ColumnDefinitions&#62;

        &#60;TextBox Name=&#34;txtFrom&#34; Text=&#34;Twas the Night Before Christmas..&#34; Margin=&#34;10&#34;/&#62;
        &#60;Button Grid.Column=&#34;1&#34; Content=&#34;Copy&#34;
                HorizontalAlignment=&#34;Left&#34; Padding=&#34;10,5&#34; Margin=&#34;10&#34;
                Click=&#34;btnCopy_Click&#34;/&#62;

        &#60;Label Name=&#34;lblTo&#34; Grid.Row=&#34;1&#34; Content=&#34;Paste something here&#34;
               Margin=&#34;10&#34;/&#62;
        &#60;Button Grid.Row=&#34;1&#34; Grid.Column=&#34;1&#34; Content=&#34;Paste&#34;
                VerticalAlignment=&#34;Top&#34; HorizontalAlignment=&#34;Left&#34;
                Padding=&#34;10,5&#34; Margin=&#34;10&#34;
                Click=&#34;btnPaste_Click&#34;/&#62;
    &#60;/Grid&#62;
</pre>
<p>The <strong>Click</strong> handlers use the <strong>SetText</strong> and <strong>GetText</strong> methods of the <strong>Clipboard</strong> class to interact with the clipboard.  The <strong>SetText</strong> method copies data to the clipboard.  The <strong>GetText</strong> method pastes data from the clipboard.</p>
<pre class="brush: csharp; title: ; notranslate" title="">
        private void btnCopy_Click(object sender, RoutedEventArgs e)
        {
            Clipboard.SetText(txtFrom.Text);
        }

        private void btnPaste_Click(object sender, RoutedEventArgs e)
        {
            lblTo.Content = Clipboard.GetText();
        }
</pre>
<p><a href="http://wpf.2000things.com/2012/12/24/718-copying-text-to-and-from-the-clipboard/718-001/" rel="attachment wp-att-6269"><img class="alignnone size-full wp-image-6269" alt="718-001" src="http://2000thingswpf.files.wordpress.com/2012/12/718-001.png?w=371&#038;h=205" width="371" height="205" /></a></p>
<p><a href="http://wpf.2000things.com/2012/12/24/718-copying-text-to-and-from-the-clipboard/718-002/" rel="attachment wp-att-6270"><img class="alignnone size-full wp-image-6270" alt="718-002" src="http://2000thingswpf.files.wordpress.com/2012/12/718-002.png?w=342&#038;h=201" width="342" height="201" /></a></p>
<p><a href="http://wpf.2000things.com/2012/12/24/718-copying-text-to-and-from-the-clipboard/718-003/" rel="attachment wp-att-6271"><img class="alignnone size-full wp-image-6271" alt="718-003" src="http://2000thingswpf.files.wordpress.com/2012/12/718-003.png?w=400&#038;h=141" width="400" height="141" /></a></p>
<p><a href="http://wpf.2000things.com/2012/12/24/718-copying-text-to-and-from-the-clipboard/718-004/" rel="attachment wp-att-6272"><img class="alignnone size-full wp-image-6272" alt="718-004" src="http://2000thingswpf.files.wordpress.com/2012/12/718-004.png?w=341&#038;h=165" width="341" height="165" /></a></p>
<p><a href="http://wpf.2000things.com/2012/12/24/718-copying-text-to-and-from-the-clipboard/718-005/" rel="attachment wp-att-6273"><img class="alignnone size-full wp-image-6273" alt="718-005" src="http://2000thingswpf.files.wordpress.com/2012/12/718-005.png?w=371&#038;h=206" width="371" height="206" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[PhraseExpress 9.0.156]]></title>
<link>http://ucretsizprogramindir.wordpress.com/2012/12/21/phraseexpress-9-0-156/</link>
<pubDate>Fri, 21 Dec 2012 14:35:38 +0000</pubDate>
<dc:creator>ucretsizprogramindir</dc:creator>
<guid>http://ucretsizprogramindir.wordpress.com/2012/12/21/phraseexpress-9-0-156/</guid>
<description><![CDATA[PhraseExpress, sık kullandığınız kelime ya da kalıpları gözlemleyerek sonraki tekrarlarda otomatik o]]></description>
<content:encoded><![CDATA[<p>PhraseExpress, sık kullandığınız kelime ya da kalıpları gözlemleyerek sonraki tekrarlarda otomatik olarak tamamlayarak sizi tekrarlardan kurtaran pratik ve ücretsiz bir uygulama. Dilerseniz bu kalıplara kısa kodlar da verebilirsiniz. Adres, telefon numarası, isim gibi bir çok&#8230;<br /><a href='http://www.programindirt.com/phraseexpress-9-0-156.html'>PhraseExpress 9.0.156</a> İndirmek için Tıklayın</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Put a text on the clipboard from your webpage]]></title>
<link>http://ubuntuincident.wordpress.com/2012/12/18/put-a-text-on-the-clipboard-from-your-webpage/</link>
<pubDate>Tue, 18 Dec 2012 09:42:29 +0000</pubDate>
<dc:creator>Jabba Laci</dc:creator>
<guid>http://ubuntuincident.wordpress.com/2012/12/18/put-a-text-on-the-clipboard-from-your-webpage/</guid>
<description><![CDATA[Problem From an HTML page you want to copy some text on the clipboard by pressing a button. Example:]]></description>
<content:encoded><![CDATA[<p><strong>Problem</strong><br />
From an HTML page you want to copy some text on the clipboard by pressing a button.</p>
<p>Example: on a page you present a list of URLs. Next to each URL there is a button. If the user clicks on the button, the corresponding URL is copied to his/her clipboard.</p>
<p><strong>Solution</strong><br />
You can use <a href="https://github.com/mojombo/clippy">clippy</a> for this task. &#8220;<em>Clippy is a very simple Flash widget that makes it possible to place arbitrary text onto the client&#8217;s clipboard.</em>&#8220;</p>
<p>Here is an HTML template that you must paste in your HTML: <a href="https://dl.dropbox.com/u/144888/wordpress/20121218_clippy/clippy.txt">clippy.html</a>. Simply replace &#8220;<code>{{ clippy_text }}</code>&#8221; and &#8220;<code>{{ bgcolor }}</code>&#8221; with the values you want.</p>
<p><strong>Update (20130103)</strong><br />
GitHub also used clippy but recently they switched to <a href="https://github.com/jonrohan/ZeroClipboard">ZeroClipboard</a>. Here is their <a href="https://github.com/blog/1365-a-more-transparent-clipboard-button">announcement</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Clipboard Manager for coding - PTHPasteboard Pro]]></title>
<link>http://finalize.com/2012/12/11/clipboard-manager-for-coding-pthpasteboard-pro/</link>
<pubDate>Tue, 11 Dec 2012 18:52:23 +0000</pubDate>
<dc:creator>scarter</dc:creator>
<guid>http://finalize.com/2012/12/11/clipboard-manager-for-coding-pthpasteboard-pro/</guid>
<description><![CDATA[I was new to the Mac up until about 5 months ago.  One of the first tools I realized that I wanted w]]></description>
<content:encoded><![CDATA[<p>I was new to the Mac up until about 5 months ago.  One of the first tools I realized that I wanted was a good clipboard manager.  Why?  I make extensive use of notes (Evernote), code comments and README files to paste examples of code, links to references, etc.  I often found myself switching back and forth between windows with copy/paste, copy/paste, etc.   What I really wanted was to maximize my efficiency with copy, copy, copy &#8230; followed by paste, paste, paste &#8230;</p>
<p>I ran across a good article at Macworld that helped me identify some top contenders quickly:  <a href="http://www.macworld.com/article/1151286/clipboardmanagers.html">Essential Mac utilities: clipboard managers &#124; Macworld</a>.</p>
<p>From the list of clipboard managers, I tried CopyPaste Pro and PTHPasteboard Pro.  I eventually stuck with the latter.  It fit better into my workflow, had some advanced paste features, and allowed me to exclude some tools from copying (such as 1Password) so that I wasn&#8217;t putting sensitive information like passwords onto my clipboard.</p>
<p><img class="alignnone  wp-image-60" alt="Screen Shot 2012-12-11 at 12.55.58 PM" src="http://finalizedotcom.files.wordpress.com/2012/12/screen-shot-2012-12-11-at-12-55-58-pm.png?w=350&#038;h=291" width="350" height="291" /></p>
<p><!--more--></p>
<p>PTHPasteboard Pro also allows you to create multiple clipboard areas called Pasteboards.  Below you can see that I have one called &#8220;Main&#8221; for random copies and another called &#8220;Snippets&#8221; for code snippets that I might use frequently.</p>
<p><img class="alignnone  wp-image-61" alt="Screen Shot 2012-12-11 at 12.56.46 PM" src="http://finalizedotcom.files.wordpress.com/2012/12/screen-shot-2012-12-11-at-12-56-46-pm.png?w=350&#038;h=293" width="350" height="293" /></p>
<p>You can configure your Pasteboards to appear from a pulldown menu, or when you move your mouse to one of the 4 sides of your desktop.  Below you can see an example of some snippets that are available for pasting.   Note that PTHPasteboard Pro gives you the option of pasting in the source format (font, color, etc.) or as text.</p>
<p><img class="alignnone  wp-image-62" alt="Screen Shot 2012-12-11 at 12.55.27 PM" src="http://finalizedotcom.files.wordpress.com/2012/12/screen-shot-2012-12-11-at-12-55-27-pm.png?w=300&#038;h=279" width="300" height="279" /></p>
<p><strong>Custom paste filters</strong></p>
<p>Lastly I wanted to point out the ability to use custom paste filters.  PTHPasteboard Pro provides filters (templates) for many types of languages (including Objective C) and allows you to customize them.</p>
<p>Here is an example of an Objective C method implementation template that I tweaked slightly.  It allows me to quickly create a getter and setter for an Objective C property:</p>
<pre class="brush: objc; title: ; notranslate" title="">
- ($TYPE $POINTER)$NAME
{
 return _$NAME;
}

- (void)set$UNAME:($TYPE $POINTER)$NAME
{
 if (_$NAME != $NAME) {
 _$NAME = $NAME;
 }
}
</pre>
<p>Suppose I have the following property declaration:</p>
<pre class="brush: objc; title: ; notranslate" title="">
@property (nonatomic, strong) UIManagedDocument *contactDatabase;
</pre>
<p>If I highlight &#8220;UIManagedDocument *contactDatabase&#8221; (with or without the semi-colon), and then execute the filter, I get the following pasted into my code:</p>
<pre class="brush: objc; title: ; notranslate" title="">
- (UIManagedDocument *)contactDatabase
{
    return _contactDatabase;
}

- (void)setContactDatabase:(UIManagedDocument *)contactDatabase
{
    if (_contactDatabase != contactDatabase) {
        _contactDatabase = contactDatabase;
    }
}
</pre>
<p>A nice time saver!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Being a College Student and Achieving Kickstarter Success - What we learned from Clipboard+ [Part 1 - Before Launch]]]></title>
<link>http://changingthewayyouwork.com/2012/12/08/achieving-kickstarter-success-part-1-before-launch/</link>
<pubDate>Sat, 08 Dec 2012 17:48:21 +0000</pubDate>
<dc:creator>Patrick</dc:creator>
<guid>http://changingthewayyouwork.com/2012/12/08/achieving-kickstarter-success-part-1-before-launch/</guid>
<description><![CDATA[[This is Part 1 in a series of posts about Achieving Kickstarter Success.] For the past few months,]]></description>
<content:encoded><![CDATA[<p><em>[This is Part 1 in a series of posts about Achieving Kickstarter Success.]</em> For the past few months, we at <a href="http://clipboard-plus.com" target="_blank">Clipboard+ have worked very hard</a> to fulfill the orders of our faithful <a href="http://www.kickstarter.com/">Kickstarter</a> backers.</p>
<p>Side note to Kickstarter backers: Thank you so much for your feedback and support. We couldn&#8217;t have done it without you. Since the <a href="http://www.kickstarter.com/projects/clipboard-plus/clipboard-changing-the-way-you-work">success of our Kickstarter project</a>, we have learned quite a bit and would like to share the resources we used and strategies developed along this fantastic journey.</p>
<p style="text-align:center;"><a href="http://www.kickstarter.com"><img class="aligncenter size-full wp-image-965" alt="Kickstarter Logo" src="http://changingthewayyouwork.files.wordpress.com/2012/12/kickstarter_logo.jpg?w=490&#038;h=158" height="158" width="490" /></a></p>
<h3>Is this Kickstarter advice for me?</h3>
<p>Since the other three co-founders are still in college and I am a recent graduate, we had to be quite creative in the implementation of our Kickstarter strategy. After many mistakes and a lot of research, we came up with some awesome guidelines that will help any project in any category. With our Kickstarter success and recent fulfillment, we thought it would be helpful to openly discuss the tactics we used.</p>
<h4>You will benefit from this series of posts if:</h4>
<ul>
<li>You have no money/ no time, but still want to launch a Kickstarter project.</li>
<li>You are currently in over your head and a part of a launched Kickstarter project.</li>
<li>You are knee deep in customer orders from a recently funded Kickstarter project.</li>
</ul>
<h2>Clipboard+ &#38; Kickstarter</h2>
<p>Below, <a href="http://clipboard-plus.com/" target="_blank">Clipboard+</a>&#8216;s efforts are divided into three different sections: <strong>Before Launch</strong>, <strong>During Launch</strong>, and <strong>Post Launch</strong>. In this post, we will exclusively discuss how to prepare <strong>Before the Launch</strong> of your Kickstarter project.</p>
<h2>Part 1: <em>Before Launch</em> (The 3 R&#8217;s)</h2>
<ul>
<li>
<h3>Research.</h3>
<p><em>Questions to ask:</em> <em>What is the scope of my project? How long will it take? What competing products have been successful/failed in the Kickstarter space? How much money do I need to complete this project? What content will be in my video? What will my project page look like? Who will support my idea? How will I reward my supporters? How will I get the internet&#8217;s eyes on my project? (*Adapted from <a href="http://mashable.com/2012/05/13/kickstarter-tips/" target="_blank">9 Essential Steps for a Killer Kickstarter Campaign</a> by <a href="http://mashable.com/" target="_blank">Mashable&#8217;s </a>Stephanie Buck.) </em></li>
</ul>
<p>Here are screen shots of information you need to know, straight from the <a href="http://www.kickstarter.com/help/stats" target="_blank">stats page</a> on Kickstarter:</p>
<div id="attachment_962" class="wp-caption aligncenter" style="width: 500px"><a href="http://www.kickstarter.com/help/stats"><img class="size-full wp-image-962" alt="Kickstarter Statistics Projects &#38; Dollars (Dec. 5, 2012)" src="http://changingthewayyouwork.files.wordpress.com/2012/12/screen-shot-2012-12-05-at-4-35-26-pm.png?w=490&#038;h=388" height="388" width="490" /></a><p class="wp-caption-text">Kickstarter statistics (Projects &#38; Dollars)</p></div>
<p>(<em>Related</em>: check out the comprehensive <a href="http://www.kickstarter.com/blog/2011-the-stats" target="_blank">2011 statistics report</a> published by Kickstarter.)</p>
<p>Below are excerpts from an infographic published by Apps Blogger titled &#8220;<a href="http://www.appsblogger.com/behind-kickstarter-crowdfunding-stats/" target="_blank">The Untold Story Behind Kickstarter Success</a>.&#8221;</p>
<div id="attachment_966" class="wp-caption aligncenter" style="width: 500px"><a href="http://www.appsblogger.com/behind-kickstarter-crowdfunding-stats/"><img class="size-full wp-image-966" alt="Kickstarter Margins of Failure &#38; Success" src="http://changingthewayyouwork.files.wordpress.com/2012/12/screen-shot-2012-12-05-at-4-31-24-pm.png?w=490&#038;h=411" height="411" width="490" /></a><p class="wp-caption-text">The Untold Story of Kickstarter Stats</p></div>
<div id="attachment_967" class="wp-caption aligncenter" style="width: 500px"><a href="http://www.appsblogger.com/behind-kickstarter-crowdfunding-stats/"><img class="size-full wp-image-967" alt="Chance of Success on Large Kickstarter Projects" src="http://changingthewayyouwork.files.wordpress.com/2012/12/screen-shot-2012-12-05-at-4-31-47-pm.png?w=490&#038;h=433" height="433" width="490" /></a><p class="wp-caption-text">Chance of Success on Large Kickstarter Projects</p></div>
<div id="attachment_968" class="wp-caption aligncenter" style="width: 500px"><a href="http://www.appsblogger.com/behind-kickstarter-crowdfunding-stats/"><img class="size-full wp-image-968" alt="What Variables Matter?" src="http://changingthewayyouwork.files.wordpress.com/2012/12/screen-shot-2012-12-05-at-4-31-06-pm.png?w=490&#038;h=364" height="364" width="490" /></a><p class="wp-caption-text">Effect of Variables on Chance of Kickstarter Success</p></div>
<h4><strong>*Important Final Research Step:</strong></h4>
<p><em>Vet Your Idea. </em>Stop talking about your new project! Step back and consider the possibility that it is a bad idea. Be critical. Step into a nay-sayers shoes and ask the hard questions. Also keep in mind, if your idea doesn&#8217;t create polarity, it also might not be a good idea. (It is a good thing if not everyone likes your idea.) If you can&#8217;t/ don&#8217;t now how to develop your own ideas, please refer to The Founder Institute&#8217;s <a href="http://fi.co/guides/97?access=udemy-97">Idea Development Guide</a>.</p>
<ul>
<li>
<h3>Read.</h3>
<p>This should be thought of as an extension of your research. It includes blogs that could be interested in your project, other projects&#8217; pages and social copy, news sources about Kickstarter and any recently successful Kickstarter projects. Reading to benefit your project is something that should be enjoyed. Kickstarter is meant to help fund a passion project, if you are not enjoying the necessary reading it might be worth reconsidering launching your project all together.</li>
</ul>
<h4>Tools to help you read more, faster:</h4>
<p>RSS Feed (ex: <a href="http://www.google.com/reader" target="_blank">Google Reader</a> ) &#8211; aggregate content send to Instapaper.</p>
<p><a href="http://www.google.com/url?sa=t&#38;rct=j&#38;q=instapaper&#38;source=web&#38;cd=1&#38;cad=rja&#38;sqi=2&#38;ved=0CCsQFjAA&#38;url=http%3A%2F%2Fwww.instapaper.com%2F&#38;ei=uebAULWHPMbvrAGs0IGwCw&#38;usg=AFQjCNGrTVltggybGL3zjkj5qejUJPd9sw" target="_blank">Instapaper</a> &#8211; Organize &#38; read content.</p>
<p><a href="http://www.google.com/alerts" target="_blank">Google Alerts</a> &#8211; Track specific keywords and stay on top of your areas of interest.</p>
<p><a href="http://www.evernote.com/" target="_blank">Evernote</a> &#8211; Write notes about impactful content and save url for future use.</p>
<ul>
<li>
<h3>Reach Out.</h3>
<p>Once you have read and researched, it is time to take your cool new idea and reach out to people that matter. Use the time you have spent reading and connect with the bloggers whose content you have genuinely enjoyed. At first, don&#8217;t even mention your project. Focus on making a real human connection and success will follow. If you want to make a genuine connection we highly suggest &#8220;<a href="http://www.amazon.com/The-Impact-Equation-Making-Things/dp/1591844908" target="_blank">the Impact Equation</a>&#8221; by <a href="http://www.chrisbrogan.com/" target="_blank">Chris Brogan</a> and <a href="http://juliensmith.com/" target="_blank">Julien Smith</a>. It is a great read that is well worth your time and money.</li>
</ul>
<h4><strong>Use these steps when contacting a blogger/ news outlet:</strong></h4>
<ol>
<li>Introduce yourself, your product, and the launch date.</li>
<li>What the news is about.</li>
<li>Why is it a big deal?</li>
<li>Website access or screenshot of what you are launching.</li>
<li>Your name, your telephone number &#38; meaningful social network.</li>
<li>P.S. &#8211; something meaningful, memorable</li>
</ol>
<p>(<em>Sales tip</em>: Always remember a &#8220;no&#8221; is just one step closer to a &#8220;yes.&#8221;)</p>
<h3>Final Thoughts</h3>
<p>One of the most common Kickstarter slip-ups is not properly planning ahead. Make sure you have a clear idea of your timeline going forward. Keep your date of delivery always on top of mind. Additionally, make use of your networks. We had some great support from friends like, <a href="http://rogerosorio.me/" target="_blank">Roger Osorio</a>, but failed to fully tap into our networks until mid way through launch. Our biggest misstep was not connecting with bloggers early enough. This early connection to people (bloggers), who can get your project noticed, requires time invested months before launch. Make it your goal to stay connected to at least five bloggers. This will make your path going forward much easier.</p>
<p>We would love to hear from you! Please comment if you have any additional information about how to prepare for Kickstarter pre-launch.</p>
<p>Thanks for reading. We will be back next week with &#8220;Being a College Student and Achieving Kickstarter Success&#8221; (Part 2 &#8211; During Launch)</p>
<p><strong>Related Posts</strong></p>
<ul>
<li><span style="line-height:13px;">&#8220;<a href="http://mashable.com/2012/06/09/kickstarter-campaign-tips/" target="_blank">5 Kickstarter Champs Share the Secrets of their Success</a>&#8221; &#8211; Mashable</span></li>
<li>&#8220;<a href="http://www.businessinsider.com/how-to-raise-a-lot-of-money-on-kickstarter-marketing-tips-2012-7" target="_blank">How a Guy with a Mason Jar Raised $30,000 in 4 days on Kickstarter&#8221; </a>- Business Insider</li>
<li>&#8220;<a href="http://changingthewayyouwork.com/2012/10/03/social-media-for-the-everyman/" target="_blank">Social Media for the Everyman</a>&#8220; - Changing the Way You Work</li>
<li>&#8220;<a href="http://www.wired.com/business/2012/07/kickstarter/" target="_blank">4 Keys to a Winning Kickstarter Campaign&#8221; </a>- Wired</li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Mark Sanchez's Letter To His Mom]]></title>
<link>http://benteitelbaum.wordpress.com/2012/12/03/mark-sanchezs-letter-to-his-mom/</link>
<pubDate>Mon, 03 Dec 2012 23:10:22 +0000</pubDate>
<dc:creator>benteitelbaum</dc:creator>
<guid>http://benteitelbaum.wordpress.com/2012/12/03/mark-sanchezs-letter-to-his-mom/</guid>
<description><![CDATA[So, Mark Sanchez got pulled from the New York Jets game today and spent most of his time on the side]]></description>
<content:encoded><![CDATA[<p>So, Mark Sanchez got pulled from the New York Jets game today and spent most of his time on the sidelines <a href="http://www.sbnation.com/nfl/2012/12/2/3718566/mark-sanchez-benched-clipboard" target="_blank">writing on a clipboard</a>. Like, writing A LOT. Fortunately, we were able to get our hands on a copy of his masterpiece. Turns out he was writing a letter to his mom. Here it is:</p>
<p>&#160;<br />
<img class="size-medium wp-image-178 alignleft" alt="mark_sanchez--300x450" src="http://benteitelbaum.files.wordpress.com/2012/12/mark_sanchez-300x450.jpg?w=200&#038;h=300" height="300" width="200" />Dear <a href="http://articles.nydailynews.com/2010-01-15/sports/17943791_1_mark-sanchez-jets-rookie-quarterback-happy-tears" target="_blank">Mom</a>,</p>
<p>I usually just Skype you when I’m feeling down. But Coach Rex said I’m not allowed to bring my iPad to the sidelines. He was afraid I would <a href="http://www.nypost.com/p/sports/jets/jets_sanchez_sends_valentine_day_PbPZFUg7XBxhbOWpFQlRpI" target="_blank">tweet something stupid</a>, start playing <a href="http://www.toysrus.com/product/index.jsp?productId=3875523&#38;CAWELAID=435493873&#38;pla=plat&#38;cagpspn=pla" target="_blank">backyard football</a> (it’s so much easier than the real thing), or Google stuff like “easiest way to throw a touchdown pass” during the game. (I swear I’ve only Googled that as a joke.)</p>
<p>Anyway, I’m really hungry. I think that’s why I was playing so poorly. But I don’t think it’s the best idea to <a href="http://www.youtube.com/watch?v=Mh71pVqGKTc" target="_blank">grab a hot dog</a> right now. So I thought maybe I would forget about my hunger, and feel better about myself, if I focused on writing you this letter instead. (Is it weird that I’m envisioning you singing me a lullaby?)</p>
<p>It sure was hard to focus on that football game. Can you get a concussion without getting hit in the head? Damn, if I had my iPad, I would WebMD’ed that.</p>
<p>Oh, there’s an idea. If I can just find a way to give myself a concussion on the sideline here, then maybe the coaches will think that’s why I sucked so much. I know I threw an interception on the <a href="http://www.sportsgrid.com/nfl/mark-sanchez-throws-interception-on-first-pass-of-the-game/" target="_blank">first play of the game</a>, and that might be hard to chalk up to injury, but it’s be worth a shot, right?</p>
<p>My tummy’s rumbling again. I wonder if Coach Rex’s tummy rumbles. I hate him, Mom. Supporting me in public and then benching me like this. I liked Coach Rex so much better before his <a href="http://www.nypost.com/p/news/local/inside_ryan_biggest_loss_KVzpY81uK0nwiJ2S2qxVkI" target="_blank">lap band surgery</a>. He’s the one who let me have that hot dog. And back then, even when he was angry, he just seemed more jovial.</p>
<p>Anyway, I’ve come up with a couple possible reactions I could have to this benching, and I would love your opinion on the route I should take:</p>
<p>1. Turn the attention to Tebow. I could say that I felt bad that Tebow wasn’t getting a chance to play, and even though I had slowly tried to work him into the rotation, I realized I needed to do something drastic. And it wouldn’t surprise anyone if I told them I forgot or didn’t realize that Tebow was <a href="http://msn.foxsports.com/nfl/story/new-york-jets-tim-tebow-inactive-arizona-cardinals-120212" target="_blank">inactive for the game.</a> The media gobbles up Tebow, so they might gobble this up too.</p>
<p>2. Repeat a good one-liner at the postgame press conference. You know, something memorable like “<a href="http://www.youtube.com/watch?v=-yXiWZyJL90" target="_blank">both teams played hard</a>” or “<a href="http://www.youtube.com/watch?v=SWmQbk5h86w" target="_blank">they are who we thought they were</a>.” Maybe then they’ll focus less on my atrocious on-field play and more on my clever off-field wordplay. And I might finally get in one of those <a href="http://www.youtube.com/watch?v=jdUr5hF0yGc" target="_blank">awesome Coors Light ads</a>.</p>
<p>If you have any other ideas, please let me know. Call me anytime tonight. I’ll probably just be watching reruns of Desperate Housewives. (<a href="http://www.usatoday.com/story/gameon/2012/10/23/new-york-jets-quarterback-mark-sanchez-splits-with-eva-longoria/1653175/" target="_blank">I really miss Eva</a>.)</p>
<p>Besos,<br />
Mark</p>
<p>P.S.<br />
Check out the flawless grammar in this letter! That’s how a B-average <a href="http://www.usctrojans.com/sports/m-footbl/mtt/sanchez_mark00.html" target="_blank">communication major at USC</a> does it! And everyone thought my grades were due to that “tutor.”</p>
<p>P.P.S. <a href="https://twitter.com/Mark_Sanchez" target="_blank">My twitter profile</a> says “Back to work as QB for the NY Jets.” Do I have to change it to “Backup work”?</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[What's on Mark Sanchez clipboard?]]></title>
<link>http://getwittedsports.wordpress.com/2012/12/03/827/</link>
<pubDate>Mon, 03 Dec 2012 07:04:41 +0000</pubDate>
<dc:creator>Arnold Glass II</dc:creator>
<guid>http://getwittedsports.wordpress.com/2012/12/03/827/</guid>
<description><![CDATA[Reblogged from NFL.com Blogs: Jets quarterback Mark Sanchez was lifted during Sunday’s game against]]></description>
<content:encoded><![CDATA[Reblogged from NFL.com Blogs: Jets quarterback Mark Sanchez was lifted during Sunday’s game against]]></content:encoded>
</item>
<item>
<title><![CDATA[Exclusive: Jets Quarterback Mark Sanchez's clipboard]]></title>
<link>http://blogs.nfl.com/2012/12/02/exclusive-jets-quarterback-mark-sanchezs-clipboard/</link>
<pubDate>Mon, 03 Dec 2012 01:22:42 +0000</pubDate>
<dc:creator>NFL.com Staff</dc:creator>
<guid>http://blogs.nfl.com/2012/12/02/exclusive-jets-quarterback-mark-sanchezs-clipboard/</guid>
<description><![CDATA[[nfl-video id="0ap2000000104079" contentid="0ap2000000104079" ads="2" related="home" size="large" pl]]></description>
<content:encoded><![CDATA[[nfl-video id="0ap2000000104079" contentid="0ap2000000104079" ads="2" related="home" size="large" pl]]></content:encoded>
</item>
<item>
<title><![CDATA[Material Girl]]></title>
<link>http://tmforesterstudios.wordpress.com/2012/12/01/material-girl/</link>
<pubDate>Sun, 02 Dec 2012 03:28:31 +0000</pubDate>
<dc:creator>Taylor M. Forester</dc:creator>
<guid>http://tmforesterstudios.wordpress.com/2012/12/01/material-girl/</guid>
<description><![CDATA[Since my love was watching football games all day (it&#8217;s like I married a coach or something]]></description>
<content:encoded><![CDATA[<p>Since my love was watching football games all day (it&#8217;s like I married a coach or something&#8230;), I decided to splurge a little with the gift card that the girls (yes, my dogs) got me for my birthday.<br />
So I got a GIGANTIC clipboard that I&#8217;ve been wanting for a while. I am in love. It will make our anniversary trip soooooooooooo relaxing&#8230;</p>
<p><a href="http://tmforesterstudios.files.wordpress.com/2012/12/20121201-212411.jpg"><img src="http://tmforesterstudios.files.wordpress.com/2012/12/20121201-212411.jpg" alt="20121201-212411.jpg" class="alignnone size-full" /></a></p>
<p>&#8230;and productive. Because what&#8217;s an anniversary if not productive? Oh, but I haven&#8217;t told you where I&#8217;m going yet. I&#8217;ll have to surprise you later. </p>
<p>I also have been desperately needing a means of organizing and easily transporting drawing materials. So&#8230;</p>
<p><a href="http://tmforesterstudios.files.wordpress.com/2012/12/20121201-212702.jpg"><img src="http://tmforesterstudios.files.wordpress.com/2012/12/20121201-212702.jpg" alt="20121201-212702.jpg" class="alignnone size-full" /></a><br />
Tada!!!<br />
And of course I began work on a new portrait of a beautiful woman in my life.<br />
Have a wonderful evening!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Black History Month]]></title>
<link>http://justefun.wordpress.com/2012/12/02/black-history-month/</link>
<pubDate>Sun, 02 Dec 2012 00:32:05 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/02/black-history-month/</guid>
<description><![CDATA[Black History Month on http://www.justefun.com/black-history-month/]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/fL8pI"><br />
<img src="http://i.imgur.com/fL8pI.jpg" title="" alt="fL8pI " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/W2NIvxOQ7S8" height="1" width="1" title="" alt=" " /></p>
<p>Black History Month on <a href="http://www.justefun.com/black-history-month/" rel="nofollow">http://www.justefun.com/black-history-month/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Aaaand this is what happens when my brothers and I are unsupervised for too long...]]></title>
<link>http://justefun.wordpress.com/2012/12/01/aaaand-this-is-what-happens-when-my-brothers-and-i-are-unsupervised-for-too-long/</link>
<pubDate>Sat, 01 Dec 2012 23:39:11 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/aaaand-this-is-what-happens-when-my-brothers-and-i-are-unsupervised-for-too-long/</guid>
<description><![CDATA[Aaaand this is what happens when my brothers and I are unsupervised for too long&#8230; on http://ww]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/e3Xts"><br />
<img src="http://i.imgur.com/e3Xtsh.jpg" title="" alt="e3Xtsh " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/0dAyOecP2eA" height="1" width="1" title="" alt=" " /></p>
<p>Aaaand this is what happens when my brothers and I are unsupervised for too long&#8230; on <a href="http://www.justefun.com/aaaand-this-is-what-happens-when-my-brothers-and-i-are-unsupervised-for-too-long/" rel="nofollow">http://www.justefun.com/aaaand-this-is-what-happens-when-my-brothers-and-i-are-unsupervised-for-too-long/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[I don't think I know a guy who can't relate]]></title>
<link>http://justefun.wordpress.com/2012/12/01/i-dont-think-i-know-a-guy-who-cant-relate/</link>
<pubDate>Sat, 01 Dec 2012 23:38:54 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/i-dont-think-i-know-a-guy-who-cant-relate/</guid>
<description><![CDATA[I don&#8217;t think I know a guy who can&#8217;t relate on http://www.justefun.com/i-dont-think-i-kn]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/mEwJU"><br />
<img src="http://i.imgur.com/mEwJU.jpg" title="" alt="mEwJU " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/8aOaeFjJDSM" height="1" width="1" title="" alt=" " /></p>
<p>I don&#8217;t think I know a guy who can&#8217;t relate on <a href="http://www.justefun.com/i-dont-think-i-know-a-guy-who-cant-relate/" rel="nofollow">http://www.justefun.com/i-dont-think-i-know-a-guy-who-cant-relate/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Is it just me or does Benicio del Toro look like Puerto Rican Brad Pitt?]]></title>
<link>http://justefun.wordpress.com/2012/12/01/is-it-just-me-or-does-benicio-del-toro-look-like-puerto-rican-brad-pitt/</link>
<pubDate>Sat, 01 Dec 2012 23:37:57 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/is-it-just-me-or-does-benicio-del-toro-look-like-puerto-rican-brad-pitt/</guid>
<description><![CDATA[Is it just me or does Benicio del Toro look like Puerto Rican Brad Pitt? on http://www.justefun.com/]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/gtroK"><br />
<img src="http://i.imgur.com/gtroKh.jpg" title="" alt="gtroKh " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/AVqEIkxxDPk" height="1" width="1" title="" alt=" " /></p>
<p>Is it just me or does Benicio del Toro look like Puerto Rican Brad Pitt? on <a href="http://www.justefun.com/is-it-just-me-or-does-benicio-del-toro-look-like-puerto-rican-brad-pitt/" rel="nofollow">http://www.justefun.com/is-it-just-me-or-does-benicio-del-toro-look-like-puerto-rican-brad-pitt/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[I though Imgur wouldn't mind this repost - Michelle Jenneke]]></title>
<link>http://justefun.wordpress.com/2012/12/01/i-though-imgur-wouldnt-mind-this-repost-michelle-jenneke/</link>
<pubDate>Sat, 01 Dec 2012 23:37:44 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/i-though-imgur-wouldnt-mind-this-repost-michelle-jenneke/</guid>
<description><![CDATA[I though Imgur wouldn&#8217;t mind this repost &#8211; Michelle Jenneke on http://www.justefun.com/i]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/F8PAY"><br />
<img src="http://i.imgur.com/F8PAY.gif" title="" alt="F8PAY " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/mVOyLgk7WJw" height="1" width="1" title="" alt=" " /></p>
<p>I though Imgur wouldn&#8217;t mind this repost &#8211; Michelle Jenneke on <a href="http://www.justefun.com/i-though-imgur-wouldnt-mind-this-repost-michelle-jenneke/" rel="nofollow">http://www.justefun.com/i-though-imgur-wouldnt-mind-this-repost-michelle-jenneke/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Marley the Chihuahua's New Winter Boots!]]></title>
<link>http://justefun.wordpress.com/2012/12/01/marley-the-chihuahuas-new-winter-boots/</link>
<pubDate>Sat, 01 Dec 2012 22:50:49 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/marley-the-chihuahuas-new-winter-boots/</guid>
<description><![CDATA[Marley the Chihuahua&#8217;s New Winter Boots! on http://www.justefun.com/marley-the-chihuahuas-new-]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/cz1Jb"><br />
<img src="http://i.imgur.com/cz1Jb.jpg" title="" alt="cz1Jb " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/5XRlicsgL4k" height="1" width="1" title="" alt=" " /></p>
<p>Marley the Chihuahua&#8217;s New Winter Boots! on <a href="http://www.justefun.com/marley-the-chihuahuas-new-winter-boots/" rel="nofollow">http://www.justefun.com/marley-the-chihuahuas-new-winter-boots/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[True friends (incredible shot from a friend of mine)]]></title>
<link>http://justefun.wordpress.com/2012/12/01/true-friends-incredible-shot-from-a-friend-of-mine/</link>
<pubDate>Sat, 01 Dec 2012 22:50:24 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/true-friends-incredible-shot-from-a-friend-of-mine/</guid>
<description><![CDATA[True friends (incredible shot from a friend of mine) on http://www.justefun.com/true-friends-incredi]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/PQVtv"><br />
<img src="http://i.imgur.com/PQVtv.jpg" title="" alt="PQVtv " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/f3vgfmSOwEY" height="1" width="1" title="" alt=" " /></p>
<p>True friends (incredible shot from a friend of mine) on <a href="http://www.justefun.com/true-friends-incredible-shot-from-a-friend-of-mine/" rel="nofollow">http://www.justefun.com/true-friends-incredible-shot-from-a-friend-of-mine/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Before alarm clocks there were knocker-upper's. Mary Smith earned sixpence a week shooting dried peas at sleeping workers windows. Limehouse Fields. London. [500 x 674]. Undated. Photograph from Philip Davies' Lost London: 1870 - 1945.]]></title>
<link>http://justefun.wordpress.com/2012/12/01/before-alarm-clocks-there-were-knocker-uppers-mary-smith-earned-sixpence-a-week-shooting-dried-peas-at-sleeping-workers-windows-limehouse-fields-london-500-x-674-undated-photograph-from-phil/</link>
<pubDate>Sat, 01 Dec 2012 22:49:57 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/before-alarm-clocks-there-were-knocker-uppers-mary-smith-earned-sixpence-a-week-shooting-dried-peas-at-sleeping-workers-windows-limehouse-fields-london-500-x-674-undated-photograph-from-phil/</guid>
<description><![CDATA[Before alarm clocks there were knocker-upper&#8217;s. Mary Smith earned sixpence a week shooting dri]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/ZoWmS"><br />
<img src="http://i.imgur.com/ZoWmS.jpg" title="" alt="ZoWmS " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/4P26Yvx56co" height="1" width="1" title="" alt=" " /></p>
<p>Before alarm clocks there were knocker-upper&#8217;s. Mary Smith earned sixpence a week shooting dried peas at sleeping workers windows. Limehouse Fields. London. [500 x 674]. Undated. Photograph from Philip Davies&#8217; Lost London: 1870 &#8211; 1945. on <a href="http://www.justefun.com/before-alarm-clocks-there-were-knocker-uppers-mary-smith-earned-sixpence-a-week-shooting-dried-peas-at-sleeping-workers-windows-limehouse-fields-london-500-x-674-undated-photograph-from-phili/" rel="nofollow">http://www.justefun.com/before-alarm-clocks-there-were-knocker-uppers-mary-smith-earned-sixpence-a-week-shooting-dried-peas-at-sleeping-workers-windows-limehouse-fields-london-500-x-674-undated-photograph-from-phili/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[When I delete a failed post]]></title>
<link>http://justefun.wordpress.com/2012/12/01/when-i-delete-a-failed-post/</link>
<pubDate>Sat, 01 Dec 2012 22:48:30 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/when-i-delete-a-failed-post/</guid>
<description><![CDATA[When I delete a failed post on http://www.justefun.com/when-i-delete-a-failed-post/]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/GVDjO"><br />
<img src="http://i.imgur.com/GVDjO.gif" title="" alt="GVDjO " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/qnQ6f3RX3lc" height="1" width="1" title="" alt=" " /></p>
<p>When I delete a failed post on <a href="http://www.justefun.com/when-i-delete-a-failed-post/" rel="nofollow">http://www.justefun.com/when-i-delete-a-failed-post/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Look at what they spotted Mitt Romney doing]]></title>
<link>http://justefun.wordpress.com/2012/12/01/look-at-what-they-spotted-mitt-romney-doing/</link>
<pubDate>Sat, 01 Dec 2012 21:04:29 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/look-at-what-they-spotted-mitt-romney-doing/</guid>
<description><![CDATA[Look at what they spotted Mitt Romney doing on http://www.justefun.com/look-at-what-they-spotted-mit]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/cXC8o"><br />
<img src="http://i.imgur.com/cXC8o.gif" title="" alt="cXC8o " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/UMHIU7e7Qwg" height="1" width="1" title="" alt=" " /></p>
<p>Look at what they spotted Mitt Romney doing on <a href="http://www.justefun.com/look-at-what-they-spotted-mitt-romney-doing/" rel="nofollow">http://www.justefun.com/look-at-what-they-spotted-mitt-romney-doing/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Damn pigeon spam]]></title>
<link>http://justefun.wordpress.com/2012/12/01/damn-pigeon-spam/</link>
<pubDate>Sat, 01 Dec 2012 19:24:48 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/damn-pigeon-spam/</guid>
<description><![CDATA[Damn pigeon spam on http://www.justefun.com/damn-pigeon-spam/]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/mKFr1"><br />
<img src="http://i.imgur.com/mKFr1.png" title="" alt="mKFr1 " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/VFXcHMrRVY4" height="1" width="1" title="" alt=" " /></p>
<p>Damn pigeon spam on <a href="http://www.justefun.com/damn-pigeon-spam/" rel="nofollow">http://www.justefun.com/damn-pigeon-spam/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[I've always wondered]]></title>
<link>http://justefun.wordpress.com/2012/12/01/ive-always-wondered/</link>
<pubDate>Sat, 01 Dec 2012 19:23:41 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/ive-always-wondered/</guid>
<description><![CDATA[I&#8217;ve always wondered on http://www.justefun.com/ive-always-wondered/]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/HBUV6"><br />
<img src="http://i.imgur.com/HBUV6.jpg" title="" alt="HBUV6 " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/2_3j0i5Qm7M" height="1" width="1" title="" alt=" " /></p>
<p>I&#8217;ve always wondered on <a href="http://www.justefun.com/ive-always-wondered/" rel="nofollow">http://www.justefun.com/ive-always-wondered/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Too much Asian power in one picture!]]></title>
<link>http://justefun.wordpress.com/2012/12/01/too-much-asian-power-in-one-picture/</link>
<pubDate>Sat, 01 Dec 2012 19:23:01 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/too-much-asian-power-in-one-picture/</guid>
<description><![CDATA[Too much Asian power in one picture! on http://www.justefun.com/too-much-asian-power-in-one-picture/]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/CR5Z8"><br />
<img src="http://i.imgur.com/CR5Z8.jpg" title="" alt="CR5Z8 " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/KRbra1k7xWk" height="1" width="1" title="" alt=" " /></p>
<p>Too much Asian power in one picture! on <a href="http://www.justefun.com/too-much-asian-power-in-one-picture/" rel="nofollow">http://www.justefun.com/too-much-asian-power-in-one-picture/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[I told my wife &quot;no cats&quot;. I guess I lost that argument.]]></title>
<link>http://justefun.wordpress.com/2012/12/01/i-told-my-wife-no-cats-i-guess-i-lost-that-argument/</link>
<pubDate>Sat, 01 Dec 2012 19:22:25 +0000</pubDate>
<dc:creator>failfunsexy</dc:creator>
<guid>http://justefun.wordpress.com/2012/12/01/i-told-my-wife-no-cats-i-guess-i-lost-that-argument/</guid>
<description><![CDATA[I told my wife &quot;no cats&quot;. I guess I lost that argument. on http://www.justefun.com/i-told-]]></description>
<content:encoded><![CDATA[<p><a href="http://imgur.com/gallery/c1O5W"><br />
<img src="http://i.imgur.com/c1O5Wh.jpg" title="" alt="c1O5Wh " /><br />
</a><img src="http://feeds.feedburner.com/~r/ImgurGallery/~4/3XZKZnZVhfc" height="1" width="1" title="" alt=" " /></p>
<p>I told my wife &#34;no cats&#34;. I guess I lost that argument. on <a href="http://www.justefun.com/i-told-my-wife-no-cats-i-guess-i-lost-that-argument/" rel="nofollow">http://www.justefun.com/i-told-my-wife-no-cats-i-guess-i-lost-that-argument/</a></p>
]]></content:encoded>
</item>

</channel>
</rss>
