<?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>FeralBlog &#187; Movable Type</title>
	<atom:link href="http://feralboy.com/category/movable-type/feed/" rel="self" type="application/rss+xml" />
	<link>http://feralboy.com</link>
	<description></description>
	<lastBuildDate>Fri, 20 Jun 2008 04:09:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
		<item>
		<title>Doing your entire site in Movable Type</title>
		<link>http://feralboy.com/2003/07/16/doing-your-entire-site-in-movable-type/</link>
		<comments>http://feralboy.com/2003/07/16/doing-your-entire-site-in-movable-type/#comments</comments>
		<pubDate>Wed, 16 Jul 2003 15:10:51 +0000</pubDate>
		<dc:creator>mattcomroe</dc:creator>
				<category><![CDATA[Movable Type]]></category>

		<guid isPermaLink="false">http://feralboy.com/?p=482</guid>
		<description><![CDATA[Two great articles out this week about managing your entire site through MT. One article from Matt Haughey, and another one from Brad Choate. Matt&#8217;s article discusses a few approaches to using MT(Movable Type) to manage an entire site&#8217;s content, one using index templates to generate static content, and (even more interestingly) using MT(Movable Type) [...]]]></description>
			<content:encoded><![CDATA[	<p>Two great articles out this week about managing your entire site through <a href="http://movabletype.org/" title="Movable Type">MT</a>.  One article from <a href="http://a.wholelottanothing.org/">Matt Haughey</a>, and another one from <a href="http://bradchoate.com/">Brad Choate</a>.</p>
	<p><a href="http://a.wholelottanothing.org/features.blah/entry/007162">Matt&#8217;s article</a> discusses a few approaches to using MT(Movable Type) to manage an entire site&#8217;s content, one using index templates to generate static content, and (even more interestingly) using MT(Movable Type) as a a lightweight database.  As long as you can capture a page&#8217;s data in six data columns, you&#8217;re all set.</p>
	<p><a href="http://bradchoate.com/past/001656.php">Brad&#8217;s solution</a> is a little more complex, and involves using categories to determine file structure, but seems to be worth the effort, because each page corresponds to a entry in MT(Movable Type), which means that each page can be searched on, can have comments/trackbacks, and can even use <a href="http://bradchoate.com/past/001653.php" title="Textile 2 beta">Textile</a> and/or <a href="http://daringfireball.net/projects/smartypants/">SmartyPants</a> formatting for the content of the pages.</p>
	<p>The only problem with doing this at all is, for me, a purely practical one.  Every time I want to change permissions on a folder, I need to contact my <a href="http://www.alentus.com/">web host</a>, which is slightly annoying.  I really should just tell them to open up the necessary permissions for my entire site, which would mean I could get to updating some of the <a href="http://feralboy.com/">amazingly</a> <a href="http://feralboy.com/peeps/">stale</a> <a href="http://feralboy.com/play/">sections</a> of my site.</p>
	<p><strong>Update:</strong> <a href="http://stopdesign.com/">Doug Bowman</a> has also <a href="http://www.stopdesign.com/log/2003/07/16/rebuilding_a_portfolio.html">written up</a> his non-standard use of MT(Movable Type) to redo his <a href="http://www.stopdesign.com/portfolio/">portfolio page</a>.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://feralboy.com/2003/07/16/doing-your-entire-site-in-movable-type/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitehack</title>
		<link>http://feralboy.com/2003/07/02/sitehack/</link>
		<comments>http://feralboy.com/2003/07/02/sitehack/#comments</comments>
		<pubDate>Wed, 02 Jul 2003 23:17:56 +0000</pubDate>
		<dc:creator>mattcomroe</dc:creator>
				<category><![CDATA[Movable Type]]></category>
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://feralboy.com/?p=491</guid>
		<description><![CDATA[Taking a cue from Douglas Bowman&#8217;s current move to MT(Movable Type), I figured out how to remove the ugly &#8220;default.aspx&#8221; from all my PermaLinks and archive links. The trick was a little inline C#, turning this: into this: &#60;code&#62;&#60;&#37; Response.Write(Regex.Replace(&#34;&#34;,&#34;default.aspx&#34;,&#34;&#34;)); &#37;&#62;&#60;/code&#62; Nerdy, but cool. I like to be able to hide the implementation details (i.e. [...]]]></description>
			<content:encoded><![CDATA[	<p>Taking a cue from <a href="http://stopdesign.com/">Douglas Bowman</a>&#8217;s <a href="http://stopdesign.com/log/2003/07/01/redirection_complete.html#comments">current move to MT(Movable Type)</a>, I figured out how to remove the ugly &#8220;default.aspx&#8221; from all my PermaLinks and archive links.</p>
	<p>The trick was a little inline C#, turning this:</p>
<code></code>
	<p>into this:</p>
	<p> &#60;code&#62;&#60;&#37; Response.Write(Regex.Replace(&#34;&#34;,&#34;default.aspx&#34;,&#34;&#34;)); &#37;&#62;&#60;/code&#62; </p>
	<p>Nerdy, but cool.  I like to be able to hide the implementation details (i.e. if I&#8217;m running PHP, <acronym title="Active Service Pages">ASP</acronym>, ASP.Net, etc.) from my users.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://feralboy.com/2003/07/02/sitehack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Tweaks</title>
		<link>http://feralboy.com/2003/04/15/site-tweaks/</link>
		<comments>http://feralboy.com/2003/04/15/site-tweaks/#comments</comments>
		<pubDate>Tue, 15 Apr 2003 21:51:37 +0000</pubDate>
		<dc:creator>mattcomroe</dc:creator>
				<category><![CDATA[BlogShares]]></category>
		<category><![CDATA[Movable Type]]></category>
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://feralboy.com/?p=556</guid>
		<description><![CDATA[Couple of minor changes to the site. As further proof of my slavish devotion to keeping track of my BlogShares status, I&#8217;ve put a &#8220;BlogShares&#8221; item in the side navigation, which pulls data from the BlogShares site using David Reynes&#8217;s nifty MTBlogShares plugin. Right now it&#8217;s showing my weblog&#8217;s current value, P/E ratio, and my [...]]]></description>
			<content:encoded><![CDATA[	<p>Couple of minor changes to the site.</p>
	<ul>
		<li>As further proof of my <a href="http://feralboy.com/log/archives/000202/">slavish devotion</a> to keeping track of my <a href="http://www.blogshares.com/" title="BlogShares home">BlogShares</a> status, I&#8217;ve put a &#8220;BlogShares&#8221; item in the side navigation, which pulls data from the BlogShares site using <a href="http://www.rayners.org/">David Reynes</a>&#8217;s nifty <a href="http://www.rayners.org/archives/000215.php">MTBlogShares</a> plugin.  Right now it&#8217;s showing my weblog&#8217;s current value, P/E ratio, and my portfolio value.</li>
		<li>I put the <a href="http://www.kryogenix.org/code/browser/nicetitle/" title="Nice Titles page">Nice Titles</a> enhancement on my page (in my mind I keep hearing Sean Connery from <a href="http://www.rockim.com/videos.php" title="Link to some SNL videos">Celebrity Jeopardy</a> saying &#8220;Nice Titties!&#8221;), which gives the fancy popup highlight over links with titles if you&#8217;re using a &#8220;good&#8221; browser.</li>
		<li>I added a description for the weblog under the title.  It&#8217;s lame.  Any suggestions as far as what i should change it to?</li>
	</ul>

 ]]></content:encoded>
			<wfw:commentRss>http://feralboy.com/2003/04/15/site-tweaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Information Overload</title>
		<link>http://feralboy.com/2003/04/09/information-overload/</link>
		<comments>http://feralboy.com/2003/04/09/information-overload/#comments</comments>
		<pubDate>Wed, 09 Apr 2003 20:46:45 +0000</pubDate>
		<dc:creator>mattcomroe</dc:creator>
				<category><![CDATA[Matt's Boring Life]]></category>
		<category><![CDATA[Movable Type]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://feralboy.com/?p=559</guid>
		<description><![CDATA[My adventures with SharpReader continue. First off, my sister has created a LiveJournal feed out of my own site&#8217;s RSS feed. It almost looks like I have an LJ(LiveJournal) account and everything. I&#8217;ve added a few more feeds of interest, and now I feel like I&#8217;m in control of a huge flow of information. It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[	<p>My <a href="http://feralboy.com/log/archives/000199/">adventures </a>with <a href="http://www.hutteman.com/weblog/2003/04/06.html">SharpReader</a> continue.  First off, my <a href="http://www.livejournal.com/users/fuzzyfruit/">sister</a> has created a <a href="http://www.livejournal.com/users/feralblog/">LiveJournal feed</a> out of my own site&#8217;s <a href="http://feralboy.com/index.rdf"><acronym title="Rich Site Summary">RSS</acronym></a> feed.  It <a href="http://www.livejournal.com/users/feralblog/3872.html">almost looks</a> like I have an LJ(LiveJournal) account and everything.</p>
	<p>I&#8217;ve added a few more feeds of interest, and now I feel like I&#8217;m in control of a huge flow of information.  It&#8217;s nearly overwhelming, it&#8217;s so huge.  I sort of feel like <a href="http://us.imdb.com/Name?Pantoliano,%20Joe">Joey Pants</a> in <a href="http://whatisthematrix.com/">The Matrix</a>, &#8220;<a href="http://us.imdb.com/Quotes?0133093">I don&#8217;t even see the code anymore</a>;  all I see now is blonde, brunette, redhead&#8230;&#8221;  The auto-refresh goes off every 1/2 hour, the little systray icon goes yellow, and I have new items to look through.  It&#8217;s sort of like <a href="http://www.tivo.com">TiVo</a> for the &#8216;Net.</p>
	<p>I&#8217;ve also been trying, over the last few days, to bring some of my music collection into work.  It&#8217;s a decent amount of work;  running through existing mp3 folders with <a href="http://www.softpointer.com/tr.htm" title="mp3 tagging software">Tag&#038;Rename</a>, making sure the folder/file names are short enough to fit on a cd, and getting them burned and in.  (As an aside, my next car stereo head unit will definitely have to be able to <a href="http://www.crutchfield.com/cgi-bin/ISEO-rgbtcspd/ProdGroup.asp?g=62700">play burned mp3s</a>.)  I also downloaded and (ahem) <a href="http://www.theonion.com/onion3913/oil_wells_liberated.html"><em>liberated</em> </a>a copy of <a href="http://forteinc.com">Forte Agent</a> newsreader, so I could start plucking &#8220;backup&#8221; copies of tunes from <a href="http://www.mp3-faq.org/">A.B.S.M.*</a>.</p>
	<p>I see <a href="http://diveintomark.org/">Mark Pilgrim</a> has released his site&#8217;s <a href="http://diveintomark.org/archives/2003/04/09/movable_type_templates_tutorial.html">MT(Movable Type) templates</a>.  Some of them definitely look worth copying, especially the one for the <a href="http://diveintomark.org/archives/2003/01/">full-page calendar</a>.</p>
	<p>I would also like to state why my new job rocks so far:</p>
	<ul>
		<li>I don&#8217;t have to do timesheets.</li>
	</ul>
	<ul>
		<li>I don&#8217;t even have a phone on my desk (well, it&#8217;s not really a desk, it&#8217;s a door balanced on two low filing cabinets).  Keeps the interruptions way, way down when people can&#8217;t call you and disturb you.  Heck, I didn&#8217;t even get my email set up until about a week after I started.</li>
	</ul>

 ]]></content:encoded>
			<wfw:commentRss>http://feralboy.com/2003/04/09/information-overload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Templates</title>
		<link>http://feralboy.com/2003/03/06/changing-templates/</link>
		<comments>http://feralboy.com/2003/03/06/changing-templates/#comments</comments>
		<pubDate>Thu, 06 Mar 2003 23:57:17 +0000</pubDate>
		<dc:creator>mattcomroe</dc:creator>
				<category><![CDATA[Movable Type]]></category>

		<guid isPermaLink="false">http://feralboy.com/?p=585</guid>
		<description><![CDATA[As I&#8217;m bringing in all my Blogger content, it&#8217;s taking awhile to move all my entries into categories. I still wanted to have the nice link to the category archives at the bottom of posts that have it, and amazingly there&#8217;s no conditional tag as part of MT. So, had to find one&#8230; very nifty [...]]]></description>
			<content:encoded><![CDATA[	<p>As I&#8217;m bringing in all my <a href="http://www.blogger.com">Blogger</a> content, it&#8217;s taking awhile to move all my entries into categories.  I still wanted to have the nice link to the category archives at the bottom of posts that have it, and amazingly there&#8217;s no conditional tag as part of <a href="http://movabletype.org">MT</a>.  So, had to find one&#8230; very nifty little plugin at <a href="http://www.bradchoate.com/">Brad Choate&#8217;s site</a>, <a href="http://www.bradchoate.com/past/mtifempty.php">IFEmpty</a>, which lets you check for the existence (or non-existence) of any <a href="http://movabletype.org">MT</a> variable, and execute other code based on that.  I&#8217;m really starting to like this whole huge MT community thing.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://feralboy.com/2003/03/06/changing-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Weblog (or, change is A Good Thing&#8482;)</title>
		<link>http://feralboy.com/2003/03/05/new-weblog-or-change-is-a-good-thing/</link>
		<comments>http://feralboy.com/2003/03/05/new-weblog-or-change-is-a-good-thing/#comments</comments>
		<pubDate>Wed, 05 Mar 2003 21:37:38 +0000</pubDate>
		<dc:creator>mattcomroe</dc:creator>
				<category><![CDATA[Movable Type]]></category>
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://feralboy.com/?p=586</guid>
		<description><![CDATA[OK, so after one too many Blogger posts getting eaten, I&#8217;ve decided to give MT a whirl. So far I already love it; much more flexible archiving, categorization, built-in comments, EASY importing of my Blogger content, etc. I have a bunch of maintenence to do&#8230; need to pick up the DB-driven elements from my other [...]]]></description>
			<content:encoded><![CDATA[	<p>OK, so after one too many <a href="http://www.blogger.com">Blogger</a> posts getting eaten, I&#8217;ve decided to give <a href="http://www.movabletype.org">MT</a> a whirl.  So far I already love it;  much more flexible archiving, categorization, built-in comments, EASY importing of my Blogger content, etc.</p>
	<p>I have a bunch of maintenence to do&#8230; need to pick up the DB-driven elements from my other blog and get them in here, but that won&#8217;t be a problem.  I&#8217;ll need to also go back and fix all the links that referenced Blogger archive pages, as well as starting to do some categorization.  Also, I&#8217;ll probably be putting the style back to roughly what it was before, but this style here is a nice temporary filler.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://feralboy.com/2003/03/05/new-weblog-or-change-is-a-good-thing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

