<?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>Kartar.Net &#187; FOSS</title>
	<atom:link href="http://www.kartar.net/tag/foss/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kartar.net</link>
	<description>the truth about a man lies in what he hides</description>
	<lastBuildDate>Fri, 30 Jul 2010 00:25:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Installing pandoc on Fedora 10</title>
		<link>http://www.kartar.net/2009/07/installing-pandoc-on-fedora-10cabal/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=installing-pandoc-on-fedora-10cabal</link>
		<comments>http://www.kartar.net/2009/07/installing-pandoc-on-fedora-10cabal/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 05:04:12 +0000</pubDate>
		<dc:creator>kartar</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[puppet]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[pandoc]]></category>

		<guid isPermaLink="false">http://www.kartar.net/?p=1855</guid>
		<description><![CDATA[I&#8217;ve been using pandoc to convert stuff &#8211; mostly Restructured Text &#8211; to Markdown as part of a wiki migration. The pandoc site has instructions for installing on a bunch of operating systems but none RHEL/CentOS/Fedora-like. This is a quick set of instructions for Fedora that should work for similar distros. First, install the Haskell [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using <a title="Pandoc" href="http://johnmacfarlane.net/pandoc/" target="_blank">pandoc</a> to convert stuff &#8211; mostly <a title="Restructured text" href="http://docutils.sourceforge.net/rst.html" target="_blank">Restructured Text</a> &#8211; to <a title="Markdown" href="http://daringfireball.net/projects/markdown/" target="_blank">Markdown</a> as part of a wiki migration.  The <a href="http://www.kartar.net/tag/pandoc/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pandoc">pandoc</a> site has instructions for installing <a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">on</a> a bunch of operating systems but none RHEL/CentOS/Fedora-like.</p>
<p>This <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> a quick set of instructions for Fedora that should work for similar distros.</p>
<p>First, install the Haskell compiler and Cabal (yet another pear/cpan/rubygems like plug-in loader/manager).</p>
<p><code>$ sudo yum install ghc cabal-install<br />
</code><br />
Update the Cabal data store and install the plug-ins <a href="http://www.kartar.net/tag/pandoc/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pandoc">pandoc</a> requires, <code>utf8-string</code> and <code>zip-archive</code>.</p>
<p><code>$ sudo cabal update<br />
$ sudo cabal install zip-archive utf8-string</code></p>
<p>Now you can either use Cabal to install <a href="http://www.kartar.net/tag/pandoc/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pandoc">pandoc</a> itself:</p>
<p><code>$ sudo cabal install <a href="http://www.kartar.net/tag/pandoc/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pandoc">pandoc</a><br />
</code><br />
Or you can download the source and compile it yourself.</p>
<p><code>$ cd /tmp<br />
$ wget http://<a href="http://www.kartar.net/tag/pandoc/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pandoc">pandoc</a>.googlecode.com/files/<a href="http://www.kartar.net/tag/pandoc/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pandoc">pandoc</a>-1.2.tar.gz<br />
$ tar -zxf <a href="http://www.kartar.net/tag/pandoc/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pandoc">pandoc</a>-1.2.tar.gz<br />
$ cd <a href="http://www.kartar.net/tag/pandoc/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pandoc">pandoc</a>-1.2</code></p>
<p>Now you need to edit the <code><a href="http://www.kartar.net/tag/pandoc/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pandoc">pandoc</a>.cabal</code> file and remove:</p>
<p><code>Executable hsmarkdown<br />
Hs-Source-Dirs:     src<br />
Main-<a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">Is</a>:            hsmarkdown.hs<br />
Ghc-Options:        -Wall -threaded<br />
Ghc-Prof-Options:   -auto-all<br />
Extensions:         CPP, TemplateHaskell<br />
if flag(wrappers)<br />
Buildable:      True<br />
else<br />
Buildable:      False</code></p>
<p>From the bottom of the <code><a href="http://www.kartar.net/tag/pandoc/" class="st_tag internal_tag" rel="tag" title="Posts tagged with pandoc">pandoc</a>.cabal</code> file.</p>
<p>Next, run make.</p>
<p><code>$ CABALOPTS=--user make<br />
</code><br />
And finally, if the make works, install the tool:</p>
<p><code>$ sudo make install</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kartar.net/2009/07/installing-pandoc-on-fedora-10cabal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux.conf.au 2010 &#8211; Call for Papers opens</title>
		<link>http://www.kartar.net/2009/06/linux-conf-au-2010-call-for-papers-opens/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=linux-conf-au-2010-call-for-papers-opens</link>
		<comments>http://www.kartar.net/2009/06/linux-conf-au-2010-call-for-papers-opens/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 04:18:40 +0000</pubDate>
		<dc:creator>kartar</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[LCA]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[FOSS]]></category>

		<guid isPermaLink="false">http://www.kartar.net/?p=1851</guid>
		<description><![CDATA[The linux.conf.au (LCA) 2010 call for papers is now open! Woot! Woot! etc, etc. Next year&#8217;s LCA is on from Monday 18 January 2010 to Saturday 23 January 2010 in sunny downtown Wellington, New Zealand. Speaking as a former organiser (AKA LCA Ghost) I think, in an entirely unbiased way, that it is the best [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.lca2010.org.nz">linux.conf.au (LCA) 2010</a> call for papers <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> now open!  Woot! Woot! etc, etc.</p>
<p>Next year&#8217;s LCA <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> <a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">on</a> from Monday 18 January 2010 to Saturday 23 January 2010 in sunny downtown Wellington, New Zealand.</p>
<p>Speaking as a former organiser (AKA LCA Ghost) I think, in an entirely unbiased way, that it <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> the best Linux/FOSS conference in the world.  It covers everything from hardcore kernel hacking to community discussions and legal issues.  The best people come, the social events rock and the event <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> always well organised and friendly.</p>
<p>The CFP has opened today and closes <a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">on</a> the 24th of July, 2009 and its general blurb <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a>:</p>
<p><i><br />
The LCA2010 Papers Committee <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> looking for a broad range of papers spanning everything from programming and software to desktop and userspace to community, government and education but there <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> one essential:</p>
<p>The core of your paper must relate to <a href="http://www.kartar.net/tag/open-source/" class="st_tag internal_tag" rel="tag" title="Posts tagged with open source">open source</a> in some way, i.e., if it&#8217;s a paper about software then the software has to be licensed under an <a href="http://www.kartar.net/tag/open-source/" class="st_tag internal_tag" rel="tag" title="Posts tagged with open source">Open Source</a> license.</p>
<p>The LCA2010 Papers Committee welcome proposals for Papers <a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">on</a> the following topics:</p>
<p>* Kernel and system topics such as filesystems and embedded devices<br />
* Networking topics such as peer to peer networking, or tuning a TCP/IP stack<br />
* Desktop topics such as office and productivity applications, mobile devices, peripherals, crypto &#038; security and viruses and other malware<br />
* Server topics such as clusters and other supercomputers, databases and grid computing<br />
* Systems administration topics such as maintaining large numbers of machines and disaster recovery<br />
* Programming topics such as software engineering practices and test driven development<br />
* Free Software and Free Culture topics, including licencing and Free and Open approaches outside software<br />
* Free Software usage topics, including home, IT, education, manufacturing, research and government usage.</p>
<p>Most presentations and tutorials will be technical in nature, but proposals for presentations <a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">on</a> other aspects of Free Software and Free Culture, such as educational and cultural aspects are welcome.</p>
<p>LCA2010 <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> pleased to invite proposals for three types of papers:</p>
<p>* Presentation &#8211;  45 minutes<br />
* Tutorials &#8211; 1 hour and 45 minutes (short)<br />
* Tutorials &#8211; 3 hours and 30 minutes (long)</p>
<p>Presentations are 45 minute slots (including questions) that are typically a one-way lecture from you to the audience &#8211; the typical conference presentation.  These form the bulk of the available conference slots.</p>
<p>Tutorials are either 1 hour and 45 minutes, or 3 hours and 30 minutes in length, and work best when they are interactive or hands-<a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">on</a> in nature.  Tutorials are expected to have a specific learning outcome for attendees.</p>
<p>To increase the number of people that can view your talk, LCA2010 may video the talks and make them publicly available after LCA2010. When submitting your proposal you will be asked whether materials relating to your paper can be released under a Creative Commons ShareALike License.<br />
</i></p>
<p>In conclusion &#8211; <a href="http://www.lca2010.org.nz/programme/papers_info">submit a paper</a> &#8211; you won&#8217;t regret it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kartar.net/2009/06/linux-conf-au-2010-call-for-papers-opens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Nagios fork &#8211; responses</title>
		<link>http://www.kartar.net/2009/05/the-nagios-fork-responses/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=the-nagios-fork-responses</link>
		<comments>http://www.kartar.net/2009/05/the-nagios-fork-responses/#comments</comments>
		<pubDate>Wed, 13 May 2009 14:49:13 +0000</pubDate>
		<dc:creator>kartar</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[fork]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Nagios]]></category>

		<guid isPermaLink="false">http://www.kartar.net/?p=1782</guid>
		<description><![CDATA[In a previous post I mentioned that the Nagios project had grown a fork.  I also mentioned that there might be dirty deeds linked to the rationale of the fork. Ethan Galstad, Nagios&#8217; developer, has responded to events with a post on the Nagios blog.  It&#8217;s a bit of a mixed bag of a response [...]]]></description>
			<content:encoded><![CDATA[<p>In a previous <a title="Nagios project is forked… Hello ICINGA" href="http://www.kartar.net/2009/05/nagios-project-is-forked-hello-icinga/" target="_self">post</a> I mentioned that the <a title="Nagios" href="http://www.nagios.org/" target="_blank">Nagios</a> project had grown a fork.  I also mentioned that there might be dirty deeds linked to the rationale of the fork. Ethan Galstad, <a href="http://www.kartar.net/tag/nagios/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Nagios">Nagios</a>&#8217; developer, has responded to events with <a title="Nagios - A Fork In The Road" href="http://community.nagios.org/2009/05/11/nagios-a-fork-in-the-road/">a post on the Nagios blog</a>.  It&#8217;s a bit of a mixed bag of a response and it left me a little underwhelmed and a little confused.</p>
<p><a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">On</a> one hand, Galstad welcomes the fork as a sign that the community <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> alive and well.  <a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">On</a> the other hand, he then links it to some potential changes in the way <a href="http://www.kartar.net/tag/nagios/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Nagios">Nagios</a> <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> developed &#8211; basically <a title="The Future of Nagios" href="http://community.nagios.org/2009/05/11/the-future-of-nagios-where-do-we-go-from-here/" target="_blank">more openness and communications</a>.  I was left feeling a little like &#8220;well a fork shouldn&#8217;t have made you notice this &#8211; the communtity has been telling you this for years&#8221;.</p>
<p>He also posed the question, one I have seen quite a bit during the evolution of forks, &#8220;But&#8230; if you wanted to be different/new things/forks/change why didn&#8217;t you ask?&#8221;  To my mind they did ask &#8211; as did other members of the community &#8211; when they and others sought a more open and collaborative approach to <a href="http://www.kartar.net/tag/nagios/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Nagios">Nagios</a> development.  Perhaps, albeit a little presumptive, the answer to that question <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a>  &#8220;they didn&#8217;t ask because they didn&#8217;t think they&#8217;d get an answer&#8221;.</p>
<p>The <a title="ICINGA" href="http://www.icinga.org/" target="_blank">ICINGA project</a>, however, hasn&#8217;t really launched yet &#8211; no code has been released.  So we&#8221;ll have to wait and see how the new project evolves from here and whether changes occur to the parent project as a result of the fork.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kartar.net/2009/05/the-nagios-fork-responses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nagios project is forked&#8230; Hello ICINGA</title>
		<link>http://www.kartar.net/2009/05/nagios-project-is-forked-hello-icinga/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=nagios-project-is-forked-hello-icinga</link>
		<comments>http://www.kartar.net/2009/05/nagios-project-is-forked-hello-icinga/#comments</comments>
		<pubDate>Thu, 07 May 2009 13:46:35 +0000</pubDate>
		<dc:creator>kartar</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[fork]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Nagios]]></category>

		<guid isPermaLink="false">http://www.kartar.net/2009/05/nagios-project-is-forked-hello-icinga/</guid>
		<description><![CDATA[The Nagios project has been forked. This will probably come as a surprise to a lot of people but I wasn&#8217;t overly shocked. To be honest I am surprised it took this long to happen. Nagios has always been a one man show &#8211; Ethan Galstad tightly controls its development and lifecycle. Whilst licensed as [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.nagios.org">Nagios</a> project has been <a href="http://www.icinga.org/why-a-fork/">forked</a>.  This will probably come as a surprise to a lot of people but I wasn&#8217;t overly shocked.  To be honest I am surprised it took this long to happen.  <a href="http://www.kartar.net/tag/nagios/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Nagios">Nagios</a> has always been a one man show &#8211; Ethan Galstad tightly controls its development and lifecycle.  Whilst licensed as <a href="http://www.kartar.net/tag/open-source/" class="st_tag internal_tag" rel="tag" title="Posts tagged with open source">open source</a> the project (outside of the <a href="http://www.kartar.net/tag/nagios/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Nagios">Nagios</a> Plugins) was largely architected, coded and run by Ethan with only a small number of user-contributed patches being applied.  In fact I am not even sure anyone other than Ethan has commit rights to the <a href="http://www.kartar.net/tag/nagios/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Nagios">Nagios</a> core.</p>
<p>I&#8217;ll be interested to see how the ICINGA (a Zulu word meaning ‘it looks for’, ‘it browses’, ‘it examines’) expands and grows and whether it does attract members of the <a href="http://www.kartar.net/tag/nagios/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Nagios">Nagios</a> community.</p>
<p>P.S.  Apparently there <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> drama around the fork &#8211; j&#8217;accuse stuff around a commercial company that uses <a href="http://www.kartar.net/tag/nagios/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Nagios">Nagios</a> &#8211; so it may be that the fork isn&#8217;t altruistic. Time will tell.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kartar.net/2009/05/nagios-project-is-forked-hello-icinga/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On Posting</title>
		<link>http://www.kartar.net/2008/06/on-posting/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=on-posting</link>
		<comments>http://www.kartar.net/2008/06/on-posting/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>kartar</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[puppet]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[is]]></category>
		<category><![CDATA[on]]></category>
		<category><![CDATA[reductive]]></category>
		<category><![CDATA[reductivelabs]]></category>
		<category><![CDATA[Ruth]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I haven't really done more than lurked in the blogsphere for the last 6-12 months.  I don't think I've commented more than a dozen times (excluding today where I went nuts - the recent tit-for-tat bullying revenge movie extravaganza has prompted some comments) on anyone's blog.  <a href="http://lineofcontempt.blogspot.com">Ruth</a> is the same - she has been a infrequent poster of late also - though she has less excuse than me - she camps with laptop on lap on my couch and should post every night.  Unless of course she's not funny anymore.  Yep.  That'll be it.  Not funny anymore.  *Note to self - be on guard for retaliation tonight*.

Instead I do a lot of Twittering and IRC.  Oh and work.  Work has left little time to blog too.  Some paid work but mostly FOSS work.  Which I probably shouldn't call "work" but sometimes feels like it is - truth be told I feel like a walking, talking support centre some days.  And I cut a lot less actual code than I'd like but rather shuffle tickets and triage things.  But I have recently migrated a ticketing system for <a href="puppet.reductivelabs.com">Puppet</a> from Trac to <a href="http://www.redmine.org">Redmine</a> - which I am fairly chuffed about and that is already making life much easier.

All in all I find the Twitter system of 140 characters updates a much smaller morsel to swallow rather than epic blog posts.  Not that I wrote an awful lot of those.  But I have decided to make some effort and try to blog at least once or twice a week.  I don't particularly care about readership - that was never this blog's intent - but I do feel like the journaling/diary element of it has been lost lately as I meander along doing other things.  A lot of things in my life I'd like to be taking note of for future posterity (my own future posterity - I am sure no one else cares :) ) have been happening.

So first piece of news - another book in the offing/maybe/possibly - lots of issues around it and not feeling overly motivated but it's a distinct possibility.  A more Linux focussed title this time around - or perhaps more accurately back to my roots. :)
]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t really done more than lurked in the blogsphere for the last 6-12 months.  I don&#8217;t think I&#8217;ve commented more than a dozen times (excluding today where I went nuts &#8211; the recent tit-for-tat bullying revenge movie extravaganza has prompted some comments) <a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">on</a> anyone&#8217;s blog.  <a href="http://lineofcontempt.blogspot.com">Ruth</a> <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> the same &#8211; she has been a infrequent poster of late also &#8211; though she has less excuse than me &#8211; she camps with laptop <a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">on</a> lap <a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">on</a> my couch and should post every night.  Unless of course she&#8217;s not funny anymore.  Yep.  That&#8217;ll be it.  Not funny anymore.  *Note to self &#8211; be <a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">on</a> guard for retaliation tonight*.</p>
<p>Instead I do a lot of Twittering and <a href="http://www.kartar.net/tag/irc/" class="st_tag internal_tag" rel="tag" title="Posts tagged with irc">IRC</a>.  Oh and work.  Work has left little time to blog too.  Some paid work but mostly FOSS work.  Which I probably shouldn&#8217;t call &#8220;work&#8221; but sometimes feels like it <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> &#8211; truth be told I feel like a walking, talking support centre some days.  And I cut a lot less actual code than I&#8217;d like but rather shuffle tickets and triage things.  But I have recently migrated a ticketing system for <a href="puppet.reductivelabs.com">Puppet</a> from Trac to <a href="http://www.redmine.org">Redmine</a> &#8211; which I am fairly chuffed about and that <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> already making life much easier.</p>
<p>All in all I find the Twitter system of 140 characters updates a much smaller morsel to swallow rather than epic blog posts.  Not that I wrote an awful lot of those.  But I have decided to make some effort and try to blog at least once or twice a week.  I don&#8217;t particularly care about readership &#8211; that was never this blog&#8217;s intent &#8211; but I do feel like the journaling/diary element of it has been lost lately as I meander along doing other things.  A lot of things in my life I&#8217;d like to be taking note of for future posterity (my own future posterity &#8211; I am sure no one else cares <img src='http://www.kartar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) have been happening.</p>
<p>So first piece of news &#8211; another book in the offing/maybe/possibly &#8211; lots of issues around it and not feeling overly motivated but it&#8217;s a distinct possibility.  A more Linux focussed title this time around &#8211; or perhaps more accurately back to my roots. <img src='http://www.kartar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kartar.net/2008/06/on-posting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello Drupal</title>
		<link>http://www.kartar.net/2008/04/hello-drupal/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=hello-drupal</link>
		<comments>http://www.kartar.net/2008/04/hello-drupal/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>kartar</dc:creator>
				<category><![CDATA[book]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[is]]></category>
		<category><![CDATA[on]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[war]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[So after many, many years (5 at least!) my blog is moving away from Expression Engine to Drupal.  There are a number of reasons for this but briefly they are:

1.  The “Book” content type.  I am a writer and I am thinking my next book will be authored between a bunch of us online.  Drupal offers the ability to do that and export the resulting content as DocBook. I had a look to see if EE could do this but I don’t have the time to develop something.

2.  My preference is generally open source software - I sit on the executive council of Linux Australia - and I don’t see EE as truly FOSS.  Drupal makes me feel intellectually more comfortable.

3.  The ease of theme application - I don’t have to design or tweak HTML/CSS anymore.  (well only a little)

Now I get the annoying feeling though that I will end up tweaking PHP in a few places but *shrugs* it's all good learning. :)]]></description>
			<content:encoded><![CDATA[<p>So after many, many years (5 at least!) my blog <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> moving away from Expression Engine to Drupal.  There are a number of reasons for this but briefly they are:</p>
<p>1.  The “Book” content <a href="http://www.kartar.net/tag/type/" class="st_tag internal_tag" rel="tag" title="Posts tagged with type">type</a>.  I am a writer and I am thinking my next book will be authored between a bunch of us online.  Drupal offers the ability to do that and export the resulting content as DocBook. I had a look to see if EE could do this but I don’t have the time to develop something.</p>
<p>2.  My preference <a href="http://www.kartar.net/tag/is/" class="st_tag internal_tag" rel="tag" title="Posts tagged with is">is</a> generally <a href="http://www.kartar.net/tag/open-source/" class="st_tag internal_tag" rel="tag" title="Posts tagged with open source">open source</a> software &#8211; I sit <a href="http://www.kartar.net/tag/on/" class="st_tag internal_tag" rel="tag" title="Posts tagged with on">on</a> the executive council of Linux Australia &#8211; and I don’t see EE as truly FOSS.  Drupal makes me feel intellectually more comfortable.</p>
<p>3.  The ease of theme application &#8211; I don’t have to design or tweak HTML/CSS anymore.  (well only a little)</p>
<p>Now I get the annoying feeling though that I will end up tweaking PHP in a few places but *shrugs* it&#8217;s all good learning. <img src='http://www.kartar.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kartar.net/2008/04/hello-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
