<?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>Mindstab.net &#187; Wordpress Archives  &#8211; Mindstab.net</title>
	<atom:link href="http://www.mindstab.net/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mindstab.net</link>
	<description>Various projects and musings</description>
	<lastBuildDate>Tue, 27 Mar 2012 16:53:59 +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>links for 2011-03-14</title>
		<link>http://www.mindstab.net/links-20110314/</link>
		<comments>http://www.mindstab.net/links-20110314/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 04:37:36 +0000</pubDate>
		<dc:creator>Dan Ballard</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.mindstab.net/?p=908</guid>
		<description><![CDATA[WordPress SEO &#8211; The Definitive Guide &#8211; Yoast A good guide to SEO for wordpress. Pagination section slightly dated, checkout wp-paginate now (tags: wordpress, seo) how to use GitHub effectively for your project A good review of a small team using git and github for their entire software process and how to do it (tags: [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://yoast.com/articles/wordpress-seo/">WordPress SEO &#8211; The Definitive Guide &#8211; Yoast</a><br />
A good guide to SEO for wordpress.  Pagination section slightly dated, checkout wp-paginate now<br />
(tags: wordpress, seo)</li>
<li><a href="http://lumberjaph.net/dancer/2011/03/06/how_to_use_github_effectively_for_your_project.html">how to use GitHub effectively for your project</a><br />
A good review of a small team using git and github for their entire software process and how to do it<br />
(tags: git, workflow)</li>
<li><a href="http://michaelochurch.wordpress.com/2011/01/30/yes-rich-kids-already-won-the-career-game-heres-why/">Yes, rich kids already won the career game. Here’s why. « Michael O.Church</a><br />
An interesting paper on how socio-economic backgrounds can strongly affect career potential<br />
(tags: Social, Capital, economic)
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mindstab.net/links-20110314/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New wordpress toys</title>
		<link>http://www.mindstab.net/new-wordpress-toys/</link>
		<comments>http://www.mindstab.net/new-wordpress-toys/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 19:26:35 +0000</pubDate>
		<dc:creator>Dan Ballard</dc:creator>
				<category><![CDATA[Posts]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.mindstab.net/wordpress/archives/251</guid>
		<description><![CDATA[After visiting Brian Carper&#8217;s Blog for an interesting discussion on CLOS vs Ruby I noticed how slick the site looked. There was some slick wordpress magic going on too, he had a neat tag cloud in his side and that I&#8217;ve been seeing pop up in all sorts of places, but also, and quite impressively, [...]]]></description>
			<content:encoded><![CDATA[<p>After visiting <a href="http://briancarper.net/">Brian Carper&#8217;s Blog</a> for an interesting discussion on <a href="http://briancarper.net/2007/12/20/clos-vs-ruby/">CLOS vs Ruby</a> I noticed how slick the site looked.  There was some slick wordpress magic going on too, he had a neat tag cloud in his side and that I&#8217;ve been seeing pop up in all sorts of places, but also, and quite impressively, he had a syntax highlighter for code he posted.  Quite cool.  </p>
<p>So I did some Googleling and found out if I upgraded to wordpress 2.3.1 I&#8217;d automatically get tagging and the tag cloud because it was new and now integrated in wordpress (previously achieved through 3rd party plugins) so I did that.  I then converted all my categories into tags, a process that had a minor glitch in that it created a tag for my default category but then wouldn&#8217;t import from it (thus destroying it) because it was the default.  Once I had changed defaults, it wouldn&#8217;t import from it because the tag already existed. I had to install a 3rd party plugin to delete the empty tag so I could import into it again (and I had to comment out some error code in the plugin because it wasn&#8217;t letting me delete the tag for some reason).</p>
<p>Then I found <a href="http://ideathinking.com/wiki/index.php/WordPress:CodeHighlighterPlugin">CodeHilighter</a> for wordpress, exactly what I was looking for.  So lets give that a test.</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">def</span> helloworld<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>:
  <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;Hello world, from Python&quot;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="lisp" style="font-family:monospace;"><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> hello-world <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
  <span style="color: #66cc66;">&#40;</span>format t <span style="color: #ff0000;">&quot;Hello world, from Lisp&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>Cool.  So thanks for Brain&#8217;s kick ass blog for pushing me to go look at some new and fun wordpress toys.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindstab.net/new-wordpress-toys/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

