<?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>Technogearophilia &#187; Coding &amp; Scripting</title>
	<atom:link href="http://technogearophilia.jonolan.net/category/coding-scripting/feed/" rel="self" type="application/rss+xml" />
	<link>http://technogearophilia.jonolan.net</link>
	<description>The Love of Science, Technology, and Gear Is the Root of All Change</description>
	<lastBuildDate>Tue, 17 Jan 2012 14:22:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>NextGEN Excerpts</title>
		<link>http://technogearophilia.jonolan.net/the-internet/wordpress/nextgen-excerpts/</link>
		<comments>http://technogearophilia.jonolan.net/the-internet/wordpress/nextgen-excerpts/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 17:15:59 +0000</pubDate>
		<dc:creator>jonolan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[NextGEN Gallery]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Shortcodes]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://technogearophilia.jonolan.net/?p=766</guid>
		<description><![CDATA[<img src="http://technogearophilia.jonolan.net/wp-content/uploads/2011/04/wordpress-wrench.jpg" alt="Wordpress W/ Wrench - Tech and Tool Tips for Wordpress.org sites" title="Wordpress W/ Wrench" width="150" height="150" class="left-image" />WordPress is a great blogging platform and overall CMS. Part of its utility comes from its in-built capability to display excerpts from posts and pages, which makes displaying search results and archives much more elegant.

This is, however, not without its flaws. One the most common problem with excerpts is WordPress that WordPress shortcodes don't work in excerpts.

When one of the most commonly utilized plugins for WordPress is <a href="http://alexrabe.de/" title="Alex Rabe" target="_blank">Alex Rabe's</a> <a href="http://wordpress.org/extend/plugins/nextgen-gallery/" title="Wordpress Plugins - NextGEN Gallery" target="_blank">NextGEN Gallery</a> plugin, which heavily relies upon shortcodes, this is a problem.

Fortunately, WordPress' <a href="http://codex.wordpress.org/Shortcode_API" title="WordPress Shortcode API" target="_blank">Shortcode API</a> has within the capability of easily fixing this issue.]]></description>
			<content:encoded><![CDATA[<p><img src="http://technogearophilia.jonolan.net/wp-content/uploads/2011/04/wordpress-wrench.jpg" alt="Wordpress W/ Wrench - Tech and Tool Tips for WordPress.org sites" title="Wordpress W/ Wrench" width="150" height="150" class="left-image" />WordPress is a great blogging platform and overall CMS. Part of its utility comes from its in-built capability to display excerpts from posts and pages, which makes displaying search results and archives much more elegant.</p>
<p>This is, however, not without its flaws. One the most common problem with excerpts is WordPress that WordPress shortcodes don&#8217;t work in excerpts.</p>
<p>When one of the most commonly utilized plugins for WordPress is <a href="http://alexrabe.de/" title="Alex Rabe" target="_blank">Alex Rabe&#8217;s</a> <a href="http://wordpress.org/extend/plugins/nextgen-gallery/" title="Wordpress Plugins - NextGEN Gallery" target="_blank">NextGEN Gallery</a> plugin, which heavily relies upon shortcodes, this is a problem.</p>
<p>Fortunately, WordPress&#8217; <a href="http://codex.wordpress.org/Shortcode_API" title="WordPress Shortcode API" target="_blank">Shortcode API</a> has within it the capability of easily and quickly fixing this issue.</p>
<p>Below is the default PHP statement to display a post&#8217;s excerpt in WordPress: </p>
<pre class="prettyprint ">
&lt; ? php the_excerpt(); ?&gt;
</pre>
<p>The problem with the_excerpt() function is that it echoes the excerpt directly to the screen without interpretation. This causes the shortcode itself to display in the excerpt rather than the code it was calling.</p>
<p>In order to have NextGen Gallery entries appear in the post excerpts, simply replace that line wherever it occurs in your blog&#8217;s theme files with the following:</p>
<pre class="prettyprint ">
&lt; ? php echo do_shortcode(get_the_excerpt()); ?&gt;
</pre>
<p>The do_shortcode() function actually runs the shortcodes and returns their results as a string. Hence, it will allow your NextGEN Galleries &#8211; and anything other shortcodes &#8211; to display properly within post excerpts.</p>

<div class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fthe-internet%2Fwordpress%2Fnextgen-excerpts%2F&amp;title=NextGEN+Excerpts" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fthe-internet%2Fwordpress%2Fnextgen-excerpts%2F&amp;title=NextGEN+Excerpts" title="Digg This Story"><img src="http://cdn1.diggstatic.com/img/favicon.a015f25c.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fthe-internet%2Fwordpress%2Fnextgen-excerpts%2F&amp;title=NextGEN+Excerpts" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fthe-internet%2Fwordpress%2Fnextgen-excerpts%2F&amp;title=NextGEN+Excerpts" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fthe-internet%2Fwordpress%2Fnextgen-excerpts%2F&amp;title=NextGEN+Excerpts', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fthe-internet%2Fwordpress%2Fnextgen-excerpts%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fthe-internet%2Fwordpress%2Fnextgen-excerpts%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fthe-internet%2Fwordpress%2Fnextgen-excerpts%2F&amp;title=NextGEN+Excerpts" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fthe-internet%2Fwordpress%2Fnextgen-excerpts%2F&amp;title=NextGEN+Excerpts" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
<a href="http://twitthis.com/twit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fthe-internet%2Fwordpress%2Fnextgen-excerpts%2F" rel="nofollow" title="Twit This"><img src="http://www.navycs.com/images/twitter.png" width="16" height="16" alt="[Twitter]" /></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://technogearophilia.jonolan.net/the-internet/wordpress/nextgen-excerpts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deleting Post Revisions</title>
		<link>http://technogearophilia.jonolan.net/coding-scripting/sql/deleting-post-revisions/</link>
		<comments>http://technogearophilia.jonolan.net/coding-scripting/sql/deleting-post-revisions/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 12:15:22 +0000</pubDate>
		<dc:creator>jonolan</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://technogearophilia.jonolan.net/?p=584</guid>
		<description><![CDATA[Whenever you create or edit an article in WordPress, the software suit will save multiple revision copies of the article. This is a waste of server and database resources. Excessive or extraneous revision records will increase the burden on the underlying database. This will increase loop iterations, data retrieval, and page loading time. Periodic deletion [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://technogearophilia.jonolan.net/wp-content/uploads/2011/04/wordpress-wrench.jpg" alt="WordPress W/ Wrench - Tech and Tool Tips for WordPress.org sites" title="Wordpress W/ Wrench" width="150" height="150" class="left-image" />Whenever you create or edit an article in WordPress, the software suit will save multiple revision copies of the article. This is a waste of server and database resources. Excessive or extraneous revision records will increase the burden on the underlying database. </p>
<p>This will increase loop iterations, data retrieval, and page loading time.</p>
<p>Periodic deletion of these post revision <em>and</em> all their associated metadata should be considered part of your normal maintenance routine. This can be accomplished with a simple SQL statement:</p>
<pre class="prettyprint ">
DELETE a,b,c FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_type = 'revision'
</pre>
<p><strong class="highlight">NOTE:</strong> Depending on exactly how WordPress was installed, the table names (wp_posts, wp_term_relationships, &#038; wp_postmeta) may need to be modified to include the blog name, e.g., wp_<em>yourblog</em>posts.</p>

<div class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fsql%2Fdeleting-post-revisions%2F&amp;title=Deleting+Post+Revisions" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fsql%2Fdeleting-post-revisions%2F&amp;title=Deleting+Post+Revisions" title="Digg This Story"><img src="http://cdn1.diggstatic.com/img/favicon.a015f25c.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fsql%2Fdeleting-post-revisions%2F&amp;title=Deleting+Post+Revisions" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fsql%2Fdeleting-post-revisions%2F&amp;title=Deleting+Post+Revisions" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fsql%2Fdeleting-post-revisions%2F&amp;title=Deleting+Post+Revisions', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fsql%2Fdeleting-post-revisions%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fsql%2Fdeleting-post-revisions%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fsql%2Fdeleting-post-revisions%2F&amp;title=Deleting+Post+Revisions" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fsql%2Fdeleting-post-revisions%2F&amp;title=Deleting+Post+Revisions" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
<a href="http://twitthis.com/twit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fsql%2Fdeleting-post-revisions%2F" rel="nofollow" title="Twit This"><img src="http://www.navycs.com/images/twitter.png" width="16" height="16" alt="[Twitter]" /></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://technogearophilia.jonolan.net/coding-scripting/sql/deleting-post-revisions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>l33t Cakes</title>
		<link>http://technogearophilia.jonolan.net/humor/l33t-cakes/</link>
		<comments>http://technogearophilia.jonolan.net/humor/l33t-cakes/#comments</comments>
		<pubDate>Sat, 11 Sep 2010 10:43:46 +0000</pubDate>
		<dc:creator>jonolan</dc:creator>
				<category><![CDATA[Coding & Scripting]]></category>
		<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://technogearophilia.jonolan.net/?p=483</guid>
		<description><![CDATA[<p style="text-align: center;"><a href="http://wedinator.com/2010/05/14/funny-wedding-photos-i-love-these-nerds/"><img class="aligncenter" title="Funny Wedding Photos - I Love These Nerds" src="http://wedinator.files.wordpress.com/2010/05/129182261151446408.jpg" alt="Funny Wedding Photos - I Love These Nerds" width="467" height="700" /></a></p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://wedinator.com/2010/05/14/funny-wedding-photos-i-love-these-nerds/"><img class="aligncenter" title="Funny Wedding Photos - I Love These Nerds" src="http://wedinator.files.wordpress.com/2010/05/129182261151446408.jpg" alt="Funny Wedding Photos - I Love These Nerds" width="467" height="700" /></a></p>

<div class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fl33t-cakes%2F&amp;title=l33t+Cakes" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fl33t-cakes%2F&amp;title=l33t+Cakes" title="Digg This Story"><img src="http://cdn1.diggstatic.com/img/favicon.a015f25c.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fl33t-cakes%2F&amp;title=l33t+Cakes" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fl33t-cakes%2F&amp;title=l33t+Cakes" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fl33t-cakes%2F&amp;title=l33t+Cakes', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fl33t-cakes%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fl33t-cakes%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fl33t-cakes%2F&amp;title=l33t+Cakes" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fl33t-cakes%2F&amp;title=l33t+Cakes" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
<a href="http://twitthis.com/twit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fl33t-cakes%2F" rel="nofollow" title="Twit This"><img src="http://www.navycs.com/images/twitter.png" width="16" height="16" alt="[Twitter]" /></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://technogearophilia.jonolan.net/humor/l33t-cakes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OG: Social Plugins</title>
		<link>http://technogearophilia.jonolan.net/coding-scripting/og-social-plugins/</link>
		<comments>http://technogearophilia.jonolan.net/coding-scripting/og-social-plugins/#comments</comments>
		<pubDate>Sat, 15 May 2010 13:55:58 +0000</pubDate>
		<dc:creator>jonolan</dc:creator>
				<category><![CDATA[Coding & Scripting]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Tech Buzz]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Graph]]></category>
		<category><![CDATA[Semantic Web]]></category>

		<guid isPermaLink="false">http://technogearophilia.jonolan.net/?p=431</guid>
		<description><![CDATA[<a href="http://technogearophilia.jonolan.net/wp-content/uploads/2010/05/open-graph-protocol-logo.png"><img class="left-image" title="Open Graph Protocol - A New Attempt at the Semantic Web" src="http://technogearophilia.jonolan.net/wp-content/uploads/2010/05/open-graph-protocol-logo-150x150.png" alt="Facebook's Open Graph Protocol" width="150" height="150" /></a>Recently Facebook released a platform, the <a href="http://technogearophilia.jonolan.net/coding-scripting/open-graph-protocol/" target="_self">Open Graph Protocol</a>, which allows websites and  applications to share information about users in order to tailor offers,  features and services to each one’s interests and tastes.

It enables any  web page to become an object in a social graph that can plot users’  activities and to function much as if it was a Facebook page.

The Facebook Developers' first integration features are called <a title="Facebook - Developers - Social Plugins" href="http://developers.facebook.com/plugins" target="_blank">Social Plugins</a>. This is currently a set of eight (8) plugins which can easily be added to any web page or application in order to connect it more closely to Facebook, offer a set of  features from Facebook, and take advantage of the Semantic Web that Facebook is developing.]]></description>
			<content:encoded><![CDATA[<p><a href="http://technogearophilia.jonolan.net/wp-content/uploads/2010/05/open-graph-protocol-logo.png"><img class="left-image" title="Open Graph Protocol - A New Attempt at the Semantic Web" src="http://technogearophilia.jonolan.net/wp-content/uploads/2010/05/open-graph-protocol-logo-150x150.png" alt="Facebook's Open Graph Protocol" width="150" height="150" /></a>Recently Facebook released a platform, the <a href="http://technogearophilia.jonolan.net/coding-scripting/open-graph-protocol/" target="_self">Open Graph Protocol</a>, which allows websites and  applications to share information about users in order to tailor offers,  features and services to each one’s interests and tastes.</p>
<p>It enables any  web page to become an object in a social graph that can plot users’  activities and to function much as if it was a Facebook page.</p>
<p>The Facebook Developers&#8217; first integration features are called <a title="Facebook - Developers - Social Plugins" href="http://developers.facebook.com/plugins" target="_blank">Social Plugins</a>. This is currently a set of eight (8) plugins which can easily be added to any web page or application in order to connect it more closely to Facebook, offer a set of  features from Facebook, and take advantage of the Semantic Web that Facebook is developing.</p>
<ul>
<li><strong><a title="Facebook - Developers - Social Plugins - like button" href="http://developers.facebook.com/docs/reference/plugins/like" target="_blank">Like  Button</a></strong>:<br />
Show a “Like” button on your site which replaces the older &#8220;Fan&#8221; button. The is currently most commonly used Social Plugin.</li>
<li><strong><a title="Facebook - Developers - Social Plugins - recommendations" href="http://developers.facebook.com/docs/reference/plugins/recommendations" target="_blank">Recommendations</a>:</strong><br />
Show users personalized suggestions for pages on your site they might like based upon their history as recorded via the Open Graph Protocol and API.</li>
<li><strong><a title="Facebook - Developers - Social Plugins - login with faces" href="http://developers.facebook.com/docs/reference/plugins/login" target="_blank">Login  with Faces</a>:</strong><br />
Allow the users to sign up to your site with their Facebook account. it also shows a list of the user’s friends who have also signed up for your site.</li>
<li><strong><a href="http://developers.facebook.com/docs/reference/plugins/comments">Comments</a>:</strong><br />
Allow users to comment on your site. The comments will also be posted back to the users Facebook wall.</li>
<li><strong><a title="Facebook - Developers - Social Plugins - activity feed" href="http://developers.facebook.com/docs/reference/plugins/activity" target="_blank">Activity  Feed</a>:</strong><br />
shows users what their friends are doing on your site through likes and comments.</li>
<li><strong><a title="Facebook - Developers - Social Plugins - like box" href="http://developers.facebook.com/docs/reference/plugins/like-box" target="_blank">Like  Box</a>:</strong><br />
This is previously known as the Fan box.</li>
<li><strong><a title="Facebook - Developers - Social Plugins - facepile" href="http://developers.facebook.com/docs/reference/plugins/facepile" target="_blank">Facepile</a></strong><strong>:</strong><br />
Shows profile pictures of the user’s friends who have already signed up for your site.</li>
<li><strong><a title="Facebook - Developers - Social Plugins - live stream" href="http://developers.facebook.com/docs/reference/plugins/live-stream" target="_blank">Live  Stream</a>:</strong><br />
Lets your users share activity and comments in real-time as they interact during a live event.</li>
</ul>
<p>These social plugins allow website developers to create websites that have all or most of the social media functions of Facebook pages. In theory this would not only drive more traffic to Open Graph enabled websites, but also reduce the &#8220;bounce rate&#8221; by enabling greater interaction with the sites in question.</p>

<div class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fog-social-plugins%2F&amp;title=OG%3A+Social+Plugins" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fog-social-plugins%2F&amp;title=OG%3A+Social+Plugins" title="Digg This Story"><img src="http://cdn1.diggstatic.com/img/favicon.a015f25c.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fog-social-plugins%2F&amp;title=OG%3A+Social+Plugins" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fog-social-plugins%2F&amp;title=OG%3A+Social+Plugins" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fog-social-plugins%2F&amp;title=OG%3A+Social+Plugins', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fog-social-plugins%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fog-social-plugins%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fog-social-plugins%2F&amp;title=OG%3A+Social+Plugins" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fog-social-plugins%2F&amp;title=OG%3A+Social+Plugins" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
<a href="http://twitthis.com/twit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fog-social-plugins%2F" rel="nofollow" title="Twit This"><img src="http://www.navycs.com/images/twitter.png" width="16" height="16" alt="[Twitter]" /></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://technogearophilia.jonolan.net/coding-scripting/og-social-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Graph Protocol</title>
		<link>http://technogearophilia.jonolan.net/coding-scripting/open-graph-protocol/</link>
		<comments>http://technogearophilia.jonolan.net/coding-scripting/open-graph-protocol/#comments</comments>
		<pubDate>Tue, 11 May 2010 23:43:30 +0000</pubDate>
		<dc:creator>jonolan</dc:creator>
				<category><![CDATA[Coding & Scripting]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Tech Buzz]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Open Graph]]></category>
		<category><![CDATA[Protocols]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://technogearophilia.jonolan.net/?p=325</guid>
		<description><![CDATA[<img class="left-image" title="Open Graph Protocol - A New Attempt at the Semantic Web" src="http://technogearophilia.jonolan.net/wp-content/uploads/2010/05/open-graph-protocol-logo-150x150.png" alt="Facebook's Open Graph Protocol" width="150" height="150" />Recently Facebook created a platform that allows websites and applications to share information about users in order to tailor offers, features and services to each one’s interests and tastes - <em>even if that individual has never visited the site before</em>. It enables any web page to become an object in a social graph that can plot users' activities.

It is called the Open Graph Protocol.]]></description>
			<content:encoded><![CDATA[<p><img class="left-image" title="Open Graph Protocol - A New Attempt at the Semantic Web" src="http://technogearophilia.jonolan.net/wp-content/uploads/2010/05/open-graph-protocol-logo-150x150.png" alt="Facebook's Open Graph Protocol" width="150" height="150" />Recently Facebook created a platform that allows websites and applications to share information about users in order to tailor offers, features and services to each one’s interests and tastes &#8211; <em>even if that individual has never visited the site before</em>. It enables any web page to become an object in a social graph that can plot users&#8217; activities.</p>
<p>It is called the Open Graph Protocol.</p>
<p>From the <a title="Facebook - After f8: Implementing the Open Graph Protocol around the Web" href="http://developers.facebook.com/blog/post/381" target="_blank">Facebook Developers</a>:</p>
<blockquote><p>We <a href="http://developers.facebook.com/blog/post/379" target="_blank">shared an  update</a> last week about the products launched at <a href="http://www.facebook.com/f8" target="_blank">f8</a> and that over 50,000 websites  have already implemented the new social plugins to become more  personalized. We created the <a href="http://opengraphprotocol.org/" target="_blank">Open  Graph protocol</a> in support of social plugins as part of our efforts  to help realize the vision of the Open Graph.</p>
<p>Any website can implement the Open Graph protocol. It allows any web  page to become a rich object in any social graph, making it easy to find  what people are liking across the Web &#8212; from a movie to a blog. To  start integrating the Open Graph protocol into your Web pages, read <a href="http://developers.facebook.com/docs/opengraph" target="_blank">our documentation</a>.</p></blockquote>
<p>The Open Graph Protocol is essentially a replacement for- and an extension of <a title="Mashable - Facebook to Kill Facebook Connect" href="http://mashable.com/2010/04/21/facebook-kills-facebook-connect/" target="_blank">Facebook Connect</a> that makes it easier to share information.</p>
<p>Facebook has based the first version of the Open Graph Protocol on Resource Description Framework (<a title="W3C Working Group - RDFa Primer Bridging the Human and Data Webs - W3C Working Group Note - 14 October 2008" href="http://www.w3.org/TR/xhtml-rdfa-primer/" target="_blank">RDFa)</a> produced jointly by the W3C <a title="W3c - Semantic Web Deployment Working Group" href="http://www.w3.org/2006/07/SWD/" target="_blank">Semantic  Web     Deployment Working Group</a> and     the W3C <a title="W3C - XHTML2 Working Group" href="http://www.w3.org/MarkUp/" target="_blank">XHTML2 Working Group</a> in 2008. As such it based upon adding extended META tags to web pages and HTTP-based applications.</p>
<p style="padding-left: 30px;"><strong>Define the XML Namespace</strong></p>
<p style="text-align: left; color: #2b1e0e; padding-left: 60px;">&lt;html xmlns:og=&#8221;http://opengraphprotocol.org/schema/&#8221;<br />
xmlns:fb=&#8221;http://www.facebook.com/2008/fbml&#8221;&gt;</p>
<p style="padding-left: 30px;"><strong>Define the Node</strong></p>
<p style="text-align: left; color: #2b1e0e; padding-left: 60px;">&lt;meta property=&#8221;og:title&#8221; content=&#8221;[TITLE]&#8220;/&gt;<br />
&lt;meta property=&#8221;og:type&#8221; content=&#8221;[TYPE]&#8220;/&gt;<br />
&lt;meta property=&#8221;og:site_name&#8221; content=&#8221;SITE NAME&#8221; /&gt;<br />
&lt;meta property=&#8221;og:url&#8221; content=&#8221;[URL]&#8220;/&gt;<br />
&lt;meta property=&#8221;og:image&#8221; content=&#8221;[IMAGE URL]&#8220;/&gt;<br />
&lt;meta property=&#8221;og:description&#8221; content=&#8221;[DESCRIPTION]&#8220;/&gt;</p>
<p>Initially this will enable, through use of Facebook&#8217;s new <a title="Facebook - Developers - Social plugins" href="http://developers.facebook.com/plugins" target="_blank">Social Plugins</a> users interact with websites and have their interactions posted to their live streams / walls on Facebook. In addition to this the Open Graph Protocol allows Facebook to categorize that interaction for the purpose of delivering more targeted ad on the users&#8217; Facebook pages.</p>
<p>Later, but not too much later, many other sites will be able to utilize the <a title="Facebook - Developers - Graph API" href="http://developers.facebook.com/docs/api" target="_blank">Graph API</a> to harvest this data for similar purposes, turning Facebook into the online identity management hub for its more than 400 million active users, 50% of whom login to Facebook every day.</p>

<div class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fopen-graph-protocol%2F&amp;title=Open+Graph+Protocol" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fopen-graph-protocol%2F&amp;title=Open+Graph+Protocol" title="Digg This Story"><img src="http://cdn1.diggstatic.com/img/favicon.a015f25c.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fopen-graph-protocol%2F&amp;title=Open+Graph+Protocol" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fopen-graph-protocol%2F&amp;title=Open+Graph+Protocol" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fopen-graph-protocol%2F&amp;title=Open+Graph+Protocol', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fopen-graph-protocol%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fopen-graph-protocol%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fopen-graph-protocol%2F&amp;title=Open+Graph+Protocol" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fopen-graph-protocol%2F&amp;title=Open+Graph+Protocol" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
<a href="http://twitthis.com/twit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fcoding-scripting%2Fopen-graph-protocol%2F" rel="nofollow" title="Twit This"><img src="http://www.navycs.com/images/twitter.png" width="16" height="16" alt="[Twitter]" /></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://technogearophilia.jonolan.net/coding-scripting/open-graph-protocol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Bourne Solution</title>
		<link>http://technogearophilia.jonolan.net/humor/the-bourne-solution/</link>
		<comments>http://technogearophilia.jonolan.net/humor/the-bourne-solution/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 17:51:24 +0000</pubDate>
		<dc:creator>jonolan</dc:creator>
				<category><![CDATA[Coding & Scripting]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Unix & Linux]]></category>
		<category><![CDATA[Al-Qaeda]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Iraq]]></category>
		<category><![CDATA[Osama Bin Laden]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Shell Scripts]]></category>
		<category><![CDATA[Taliban]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[War On Terror]]></category>

		<guid isPermaLink="false">http://technogearophilia.jonolan.net/?p=22</guid>
		<description><![CDATA[One of my wives, Eve aka jmochagrrl , sent me this solution to the US' ongoing war on terror and terrorism, specifically the dangers arising out of the Middle-east.]]></description>
			<content:encoded><![CDATA[<p> <img src='http://technogearophilia.jonolan.net/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' />  We&#8217;ve all learned by now that you can do almost anything faster, easier and better with computers.  Perhaps the War on Terror can be approached the same way. Of course, you&#8217;ll need need to understand the Unix command line and shell scripting to achieve the best results&#8230;</p>
<p>One of my wives, Eve aka jmochagrrl, sent me this solution to the US&#8217; ongoing war on terror and terrorism, specifically the dangers arising out of the Middle-east.</p>
<h3>The War On Terror</h3>
<p><em>As viewed from the Bourne shell</em></p>
<blockquote style="font: 10pt arial;"><p>$ cd /middle_east<br />
$ ls<br />
Afghanistan  Iraq     Libya       Saudi_Arabia  UAE<br />
Algeria    Israel   Morocco     Sudan         Yemen<br />
Bahrain      Jordan   Oman        Syria<br />
Egypt        Kuwait   Palestine   Tunisia<br />
Iran         Lebanon  Qatar       Turkey</p>
<p>$ cd Afghanistan<br />
$ ls<br />
bin  Taliban<br />
$ rm Taliban<br />
rm: Taliban is a directory<br />
$ cd Taliban<br />
$ ls<br />
soldiers<br />
$ rm soldiers<br />
$ cd ..<br />
$ rmdir Taliban<br />
rmdir: directory &#8220;Taliban&#8221;: Directory not empty<br />
$ cd Taliban<br />
$ ls -a<br />
.            ..           .insurgents<br />
$ chown -R USA .*<br />
chown: .insurgents: Not owner<br />
$ cd ..<br />
$ su<br />
Password: *******<br />
# mv Taliban /tmp<br />
# exit<br />
$ ls<br />
bin<br />
$ cd bin<br />
$ ls<br />
laden<br />
$ cd ..<br />
$ rm -r bin/laden<br />
bin/laden: No such file or directory<br />
$ find / -name laden<br />
$<br />
$ su<br />
Password: *******<br />
# mv bin /tmp<br />
# exit<br />
$ pwd<br />
/middle_east/Afghanistan<br />
$ cd /opt/UN<br />
$ ln -s /Bad_Guys/Al_Qaeda /middle_east/Iraq/.<br />
ln: cannot create /middle_east/Iraq/Al_Qaeda:<br />
Permission denied<br />
$ su<br />
Password:*******<br />
# ln -s /Bad_Guys/Al_Qaeda /middle_east/Iraq/.<br />
# cd /middle_east/Iraq/Al_Qaeda<br />
Al_Qaeda: does not exist<br />
# rm /middle_east/Iraq/Al_Qaeda<br />
# mkfile 100g /middle_east/Iraq/Al_Qaeda<br />
mkfile: No space left on device<br />
# rm /middle_east/Iraq/Al_Qaeda<br />
# cd /opt/Coalition/Willing<br />
# mkfile 1b /middle_east/Iraq/Al_Qaeda<br />
# chown -R USA:Proof /middle_east/Iraq/Al_Qaeda<br />
#exit<br />
$ cd /middle_east/Iraq<br />
$ ls<br />
saddam<br />
$ ls<br />
saddam<br />
$ ls<br />
saddam<br />
$ ls -a<br />
.            ..           saddam<br />
$ find / -name [Ww][Mm][Dd]<br />
/Korea/North/wMd<br />
$ wall Propaganda.txt<br />
Broadcast Message from USA (pts/1) on USS_Abraham_Lincoln Th May 1st<br />
Mission Accomplished!<br />
$ rm saddam<br />
saddam: No such file or directory<br />
$ find / -name saddam<br />
/var/opt/dictators/spiderhole/saddam<br />
$ wall NewsWorthy.txt<br />
Broadcast Message from USA (pts/1) on Time.Magazine Sat Dec 13<br />
We Got Him!<br />
$ mv /var/opt/dictators/spiderhole/saddam /opt/jail<br />
$ cd /opt/USA<br />
$ cp -Rp Democracy /middle_east/Iraq<br />
$ cd /middle_east/Iraq/Democracy<br />
$ ./install<br />
Install Error: Install failed.  See install_log for details.<br />
$ more install_log<br />
Installed failed!<br />
Prerequisite packages missing<br />
Conflicting package Wahhabism found in /midde_east/Saudi_Arabia<br />
Packages Church and State must be installed separately<br />
File System /PeakOil nearing capacity<br />
Please read the install guide to properly plan your installation.<br />
$</p></blockquote>
<p>Eve got this from <a title="ThinGuy's S Word Blog - A mostly 100% sort-of-semi-technical blog by Thin Guy. Mostly." href="http://blogs.sun.com/ThinGuy/" target="_blank">The S Word Blog</a> over at Sun Microsystems.</p>
<p>Of course there are still some issues with the &#8220;operating system&#8221; used in the above example; as has been pointed out, everything in <span class="highlight" style="font: 10pt arial;">/bin</span> <em>should</em> be &#8220;executable.&#8221;</p>
<p>Also note that this must be done from the Bourne shell. Using the slowly deprecated Bourne Again shell ($bash) will accomplish the goals faster, but may result in the destruction of all files in <span class="highlight" style="font: 10pt arial;">/middle-east</span>.</p>

<div class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fthe-bourne-solution%2F&amp;title=The+Bourne+Solution" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fthe-bourne-solution%2F&amp;title=The+Bourne+Solution" title="Digg This Story"><img src="http://cdn1.diggstatic.com/img/favicon.a015f25c.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fthe-bourne-solution%2F&amp;title=The+Bourne+Solution" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fthe-bourne-solution%2F&amp;title=The+Bourne+Solution" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fthe-bourne-solution%2F&amp;title=The+Bourne+Solution', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fthe-bourne-solution%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fthe-bourne-solution%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fthe-bourne-solution%2F&amp;title=The+Bourne+Solution" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fthe-bourne-solution%2F&amp;title=The+Bourne+Solution" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
<a href="http://twitthis.com/twit?url=http%3A%2F%2Ftechnogearophilia.jonolan.net%2Fhumor%2Fthe-bourne-solution%2F" rel="nofollow" title="Twit This"><img src="http://www.navycs.com/images/twitter.png" width="16" height="16" alt="[Twitter]" /></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://technogearophilia.jonolan.net/humor/the-bourne-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

