<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>in propria persona &#187; BackType</title>
	<atom:link href="http://inpropriapersona.com/tag/backtype/feed/" rel="self" type="application/rss+xml" />
	<link>http://inpropriapersona.com</link>
	<description>Law + tech + history, from a JD/PhD graduate student in the history of science.</description>
	<lastBuildDate>Fri, 09 Dec 2011 20:57:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Making a personal site more dynamic</title>
		<link>http://inpropriapersona.com/2009/12/making-a-personal-site-more-dynamic/</link>
		<comments>http://inpropriapersona.com/2009/12/making-a-personal-site-more-dynamic/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 16:35:20 +0000</pubDate>
		<dc:creator>krisnelson</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[recommendations]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[BackType]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Plaxo]]></category>
		<category><![CDATA[recommended]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.inpropriapersona.com/?p=1087</guid>
		<description><![CDATA[As part of a recent attempt to update my personal information online, I decided to update my personal site to better reflect my current activities and background. As part of my content update, I ideally wanted my site to be more dynamic, so that I did not need to touch it very often, yet to still have it be more up-to-date and fresh. My idea was to rely on updates I would make to other sites anyway, and to leverage those updates to drive my personal site too.]]></description>
			<content:encoded><![CDATA[<p><a href="http://static.inpropriapersona.com/wp-content/uploads/2009/12/krisnelson.png"><img class="alignright size-thumbnail wp-image-1149" title="Thumbnail of krisnelson.org" src="http://static.inpropriapersona.com/wp-content/uploads/2009/12/krisnelson-150x150.png" alt="" /></a>As part of a recent attempt to update my personal information online, I decided to update <a href="http://krisnelson.org">my personal site</a> to better reflect my current activities and background. (Keeping your online profiles updated is an important part of managing your Web presence, and I combined this effort with an update to <a href="http://linkedin.com">Linkedin</a>, <a href="http://plaxo.com">Plaxo</a>, my <a href="http://www.google.com/profiles">Google Profile</a>, and so on).</p>
<p>As part of my content update, I ideally wanted my site to be more dynamic, so that I did not need to touch it very often, yet to still have it be more up-to-date and fresh. My idea was to rely on updates I would make to other sites anyway, and to leverage those updates to drive my personal site too. While I could have relied on widgets and simple Javascript, this kind of material is not picked up by search engines, and did not allow enough design flexibility for my taste. Thus, I chose to switch to <a href="http://php.net/">PHP</a> and code things by hand, but sticking to simple approaches (<a href="http://en.wikipedia.org/wiki/RSS">RSS</a>, for example, or straightforward <a href="http://en.wikipedia.org/wiki/Api">APIs</a> — I may once have been a professional coder, but these days I’m looking for simplicity first).</p>
<p>Here are the areas I focused on first on <a href="http://krisnelson.org">my main page</a>:</p>
<h4>About</h4>
<p><a href="http://static.inpropriapersona.com/wp-content/uploads/2009/12/krisnelson-about11.jpg" class="broken_link" rel="nofollow"><img class="alignleft size-thumbnail wp-image-1107" title="krisnelson.org - About" src="http://static.inpropriapersona.com/wp-content/uploads/2009/12/krisnelson-about-150x150.jpg" alt="" /></a>This section I maintain locally for now, because the kind of language I’m using is adapted specifically for this combination of personal and professional site. I considered pulling it from other profile sites, such as Linkedin or my Google Profile, but the APIs were either too complex (for my purposes) or non-existent. On the other hand, the miniature about section at the bottom-right of the page is pulled dynamically from an unexpected source: <a href="http://www.goodreads.com">Goodreads</a>, which has a simple and effective API that makes this easy. (You’ll need to create an account with Goodreads, and <a href="http://www.goodreads.com/api">request a key</a>.)</p>
<p>To accomplish this with PHP, look at <a href="http://php.net/manual/en/book.simplexml.php">SimpleXML</a>. Use it something like this:</p>
<p>[sourcecode language=“php”]<br />
$data = file_get_contents($url);<br />
$profile = simplexml_load_string($data);<br />
<!--?<span class="hiddenSpellError" pre=""-->php echo $profile-&gt;user-&gt;about ?&gt;<br />
[/sourcecode]</p>
<h4>My Updates</h4>
<p>I pull these from <a href="http://www.twitter.com">Twitter</a>, using a simplified version of the <a href="http://twitter.com/goodies/">Twitter-provided Javascript widget</a> (although the API is quite straightforward too).</p>
<p>[sourcecode language=“html”]<br />
<script type="text/javascript">// <![CDATA[
src</span>="http://twitter.com/javascripts/blogger.js" type="text/javascript">
// ]]&gt;</script><br />
<script type="text/javascript">// <![CDATA[
src</span>="http://twitter.com/statuses/user_timeline/YOURTWITTERNAME.json?callback=twitterCallback2&#038;count=6" type="text/javascript">
// ]]&gt;</script><br />
[/sourcecode]</p>
<h4>Featured Posts</h4>
<p><a href="http://static.inpropriapersona.com/wp-content/uploads/2009/12/krisnelson-featured1.jpg" class="broken_link" rel="nofollow"><img class="size-thumbnail wp-image-1108 alignright" title="krisnelson.org - Featured Posts" src="http://static.inpropriapersona.com/wp-content/uploads/2009/12/krisnelson-featured-150x150.jpg" alt="" /></a>These come from the most recent posts on <a href="http://www.inpropriapersona.com">in propria persona</a>, and are pulled in via RSS feeds (using PHP and <a href="http://simplepie.org/">SimplePie</a>). Other highlighted stories on my main page are put on there manually for now, although I have considered pulling from the RSS feed that <a href="http://www.ssrn.com/">SSRN</a> provides on articles I put there. The basic code for RSS processing looks like this:</p>
<p>[sourcecode language=“php”]<br />
$feed = new SimplePie(‘http://www.inpropriapersona.com/feed/’);<br />
$feed-&gt;handle_content_type();<br />
<!--?<span class="hiddenSpellError" pre=""-->php foreach ($feed-&gt;get_items() as $item): ?&gt;</p>
<ul>
<li><a href="&lt;?&lt;span class=" class="broken_link" rel="nofollow">php echo $item-&gt;get_permalink(); ?&gt;”&gt;<!--?php echo $item--->get_title(); ?&gt;</a></li>
</ul>
<p><!--?php <span class="hiddenSpellError" pre="php "-->endforeach; ?&gt;<br />
[/sourcecode]</p>
<h4>My Comments</h4>
<p><a href="http://www.backtype.com">BackType</a> scours the Web for comments I make on blogs, and provides them to me in an easy-to-use RSS feed. You’ll need to create an account there, then use the RSS feed they provide just like I used the RSS feed to display articles from my blog.</p>
<h4>Reading</h4>
<p><a href="http://static.inpropriapersona.com/wp-content/uploads/2009/12/krisnelson-reading1.jpg" class="broken_link" rel="nofollow"><img class="alignleft size-thumbnail wp-image-1109" title="krisnelson.org - Reading" src="http://static.inpropriapersona.com/wp-content/uploads/2009/12/krisnelson-reading-150x142.jpg" alt="" /></a><a href="http://www.goodreads.com">Goodreads</a> provides a a nice, and simple, RSS feed to show the books on a particular “shelf” (Goodreads was far easier to pull from than any other similar site) — the links go to <a href="http://books.google.com/books">Google Books</a> in order to access the “preview” functionality Google offers. The code is similar to this:</p>
<p>[sourcecode language=“php”]<br />
$goodreads = new SimplePie(‘GOODREADS RSS URL’);<br />
$goodreads-&gt;handle_content_type();<br />
foreach ($goodreads-&gt;get_items() as $item):<br />
$image = $item-&gt;get_item_tags(”, ‘book_small_image_url’); $image = $image[0][’data’];<br />
[/sourcecode]</p>
<h4>Publications</h4>
<p>My <a href="http://krisnelson.org/pubs.php" class="broken_link" rel="nofollow">publications page</a> has a few of the same sections that my main page has, but emphasizes the list of articles and materials I’ve published (either online or in print journals). This list — the core of the page — is pulled from an RSS feed that originates with <a href="http://www.refworks.com">RefWorks</a>, an online citation management service from ProQuest. The management interface isn’t pretty, but the service works well for creating and managing bibliographies for academic papers. Thus, since I’ll use the service anyway, why not leverage it for this purpose too?</p>
<h4>Final Thoughts</h4>
<div style="float: right;"><a href="http://friendfeed.com/krisnelson"><img style="border: 0;" src="http://friendfeed.com/embed/widget/krisnelson/v-3/num-1/format-png/width-200" alt="View my FriendFeed" /></a></div>
<p>The specific approach I’ve taken here obviously requires some technical knowledge. Still, the idea of keeping your site more dynamic and up-to-date can be incorporated into virtually any site, using tools like <a href="http://www.google.com/webmasters/gadgets/">Google Gadgets</a> or widgets from sites like <a href="http://www.twitter.com">Twitter</a> or <a href="http://www.friendfeed.com">FriendFeed</a>. Even more simply, you may choose to simple update your site in small ways on a regular basis. Alternatively, some people have chosen to use sites like <a href="http://www.posterous.com">Posterous</a> or <a href="http://www.tumblr.com">Tumblr</a> to centralize their personal site in a easy-to-update, miniature blog.</p>
<p>The goal is to give your personal site a more active, engaging feel that encourages visitors seeking information about you to respond positively to your Web presence.</p>
]]></content:encoded>
			<wfw:commentRss>http://inpropriapersona.com/2009/12/making-a-personal-site-more-dynamic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Current Top 5 Favorite WordPress Plugins</title>
		<link>http://inpropriapersona.com/2009/06/my-current-top-5-favorite-wordpress-plugins/</link>
		<comments>http://inpropriapersona.com/2009/06/my-current-top-5-favorite-wordpress-plugins/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 19:30:31 +0000</pubDate>
		<dc:creator>krisnelson</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[recommendations]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[BackType]]></category>
		<category><![CDATA[Digg]]></category>
		<category><![CDATA[IntenseDebate]]></category>
		<category><![CDATA[StumbleUpon]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP Super Cache]]></category>
		<category><![CDATA[Zemanta]]></category>

		<guid isPermaLink="false">http://www.inpropriapersona.com/?p=512</guid>
		<description><![CDATA[There are many, many WordPress plugins out there. Here are my top recommendations for the blogging lawyer/law student.]]></description>
			<content:encoded><![CDATA[<p>There are many, many <a class="zem_slink" title="WordPress" rel="homepage" href="http://wordpress.org">WordPress</a> plugins out there (WordPress has instructions on <a href="http://codex.wordpress.org/Managing_Plugins">how to install plugins</a>). Here are my top recommendations for the blogging lawyer/law student:</p>
<p><strong>1. <a class="zem_slink" title="BackType" rel="homepage" href="http://www.backtype.com/">BackType Connect</a> / <a class="zem_slink" title="IntenseDebate" rel="homepage" href="http://intensedebate.com">IntenseDebate</a></strong> — BackType incorporates <a class="zem_slink" title="Twitter" rel="homepage" href="http://twitter.com">Twitter</a> mentions into your comment stream.</p>
<div style="margin: 1em; display: block;">
<div>
<div style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignleft" style="width: 265px;">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/company/backtype"><img title="Image representing BackType as depicted in Cru..." src="http://www.crunchbase.com/assets/images/resized/0002/3718/23718v1-max-450x450.jpg" alt="Image representing BackType as depicted in Cru..." height="78" width="255"></a></dt>
</dl>
</div>
</div>
</div>
</div>
<p>It unfortunately is not yet compatible with another favorite plugin of mine called <a class="zem_slink" title="IntenseDebate" rel="homepage" href="http://intensedebate.com">IntenseDebate</a>, which adds comment threading and other useful tools to the default comment functionality in WordPress. It can also synchronize with the basic WordPress system, so it is easy to turn on and off.</p>
<div style="margin: 1em; display: block;">
<div>
<div style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 160px;">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/company/intensedebate"><img title="Image representing IntenseDebate as depicted i..." src="http://www.crunchbase.com/assets/images/resized/0000/4126/4126v3-max-450x450.png" alt="Image representing IntenseDebate as depicted i..." height="51" width="150"></a></dt>
</dl>
</div>
</div>
</div>
</div>
<p><strong>2. <a href="http://wordpress.org/extend/plugins/db-cache/">DB Cache</a> + <a href="http://wordpress.org/extend/plugins/hyper-cache/">Hyper Cache</a></strong> — DB Cache speeds up database access by caching common queries. Hyper Cache makes static versions of Web pages (like <a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a>, but I’ve found it more focused and streamlined in its approach). The combination excels at reducing server resource consumption and serving the maximum number of visitors with the minimum resource use.</p>
<div style="margin: 1em; display: block;">
<div>
<div style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignleft" style="width: 220px;">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/product/twitter"><img title="Image representing Twitter as depicted in Crun..." src="http://www.crunchbase.com/assets/images/resized/0000/2755/2755v2-max-450x450.png" alt="Image representing Twitter as depicted in Crun..." height="49" width="210"></a></dt>
</dl>
</div>
</div>
</div>
</div>
<p><strong>3. <a href="http://wordpress.org/extend/plugins/tweetable/">Tweetable</a></strong> — Automatically sends your new postings to <a href="http://twitter.com/">Twitter</a>, with the nice bonus of adding your blog name to each post. So, for example, my postings say “via in propria persona.” It also integrates Twitter into your WordPress dashboard, allowing you to easily Tweet from within WordPress.</p>
<p><strong>4. <a href="http://wordpress.org/extend/plugins/wp-greet-box/">WP Greetbox</a></strong> — Adds a message automatically to the top of your postings to encourage visitors to subscribe, Stumble, etc. Visitors from <a class="zem_slink" title="Digg" rel="homepage" href="http://www.digg.com">Digg</a> get an encouragement to “Digg this,” those from <a class="zem_slink" title="StumbleUpon" rel="homepage" href="http://www.stumbleupon.com/">StumbleUpon</a> to “Stumble this,” etc.</p>
<div style="margin: 1em; display: block;">
<div>
<div style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 216px;">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/company/zemanta"><img title="Image representing Zemanta as depicted in Crun..." src="http://www.crunchbase.com/assets/images/resized/0001/6433/16433v1-max-450x450.png" alt="Image representing Zemanta as depicted in Crun..." height="73" width="206"></a></dt>
</dl>
</div>
</div>
</div>
</div>
<p><strong>5. <a class="zem_slink" title="Zemanta" rel="homepage" href="http://www.zemanta.com">Zemanta</a></strong> — While not perfect, this is a must-have plugin that makes it easy to add contextual information to your postings: pictures,  tags, and related links.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.readwriteweb.com/archives/backtype_connect_plugs_in_to_wordpress.php"> Backtype Connect Plugs in to WordPress </a> (readwriteweb.com)</li>
<li class="zemanta-article-ul-li"><a href="http://dbzer0.com/blog/of-wordpress-caches-and-fast-phps">Of WordPress Caches and Fast PHPs</a> (dbzer0.com)</li>
<li class="zemanta-article-ul-li"><a href="http://openmode.ca/2009/02/recommended-wordpress-plugins-for-new-bloggers/" class="broken_link" rel="nofollow">Recommended WordPress Plugins For New Bloggers</a> (openmode.ca)</li>
<li class="zemanta-article-ul-li"><a href="http://www.smtusa.com/blog/posts/Top-Five-Wordpress-Plugins.html"> Top Five WordPress Plugins </a> (smtusa.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.blogherald.com/2009/04/27/5-wordpress-plugins-i-never-blog-without/"> 5 WordPress Plugins I Never Blog Without </a> (blogherald.com)</li>
</ul>
<div style="margin-top: 10px; height: 15px;" class="zemanta-pixie"><img style="border: medium none ; float: right;" class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=b8972b26-0283-47d6-8ab0-5d096bf4800a"><span class="zem-script pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://inpropriapersona.com/2009/06/my-current-top-5-favorite-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 638/704 objects using apc
Content Delivery Network via static.inpropriapersona.com

Served from: inpropriapersona.com @ 2012-02-08 19:26:13 -->
