<?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>adraðblog &#187; Haskell</title>
	<atom:link href="http://adradh.org.uk/b/cat/haskell/feed/" rel="self" type="application/rss+xml" />
	<link>http://adradh.org.uk/b</link>
	<description>:: {- insert a pretend Haskell type here -}</description>
	<lastBuildDate>Thu, 03 Dec 2009 23:47:53 +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>More syntax highlighting</title>
		<link>http://adradh.org.uk/b/post/more-syntax-highlighting/</link>
		<comments>http://adradh.org.uk/b/post/more-syntax-highlighting/#comments</comments>
		<pubDate>Thu, 14 May 2009 09:16:10 +0000</pubDate>
		<dc:creator>Anders</dc:creator>
				<category><![CDATA[Haskell]]></category>
		<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://adradh.org.uk/b/?p=182</guid>
		<description><![CDATA[I can&#8217;t live without pretty colours in my editor so I threw together some Happy and Alex highlights. No indenting or anything like that because effort. (If you set autoindent, though, the indents leaking out from haskell.vim sometimes help a little, when they don&#8217;t do completely the wrong thing.) happy.vim alex.vim They&#8217;re both public domain, [...]]]></description>
		<wfw:commentRss>http://adradh.org.uk/b/post/more-syntax-highlighting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cabal.vim 0.1</title>
		<link>http://adradh.org.uk/b/post/cabal-vim-01/</link>
		<comments>http://adradh.org.uk/b/post/cabal-vim-01/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 17:18:39 +0000</pubDate>
		<dc:creator>Anders</dc:creator>
				<category><![CDATA[Haskell]]></category>
		<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://adradh.org.uk/b/?p=154</guid>
		<description><![CDATA[Since the last post, quite a lot of things have been added. Of course, most of them are so minor (fixing typos? Oh my!) that I didn&#8217;t bother posting about them. But there have been enough now that I might as well bullet point them up, for people who don&#8217;t feel like doing darcs changes. [...]]]></description>
		<wfw:commentRss>http://adradh.org.uk/b/post/cabal-vim-01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cabal-vim</title>
		<link>http://adradh.org.uk/b/post/cabal-vim/</link>
		<comments>http://adradh.org.uk/b/post/cabal-vim/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 18:52:20 +0000</pubDate>
		<dc:creator>Anders</dc:creator>
				<category><![CDATA[Haskell]]></category>
		<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://adradh.org.uk/b/?p=146</guid>
		<description><![CDATA[I apparently cannot get enough of Vimscript, so after someone on the Haskell-café list asked about it, I wrote a syntax mode for Cabal files. Hooray. (Hopefully no-one&#8217;s already written one&#8230;) Not much to it at the moment, though there is an attempt at automatic indenting, since that was the bit I was missing the [...]]]></description>
		<wfw:commentRss>http://adradh.org.uk/b/post/cabal-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slight updates to haskell.vim</title>
		<link>http://adradh.org.uk/b/post/slight-updates-to-haskellvim/</link>
		<comments>http://adradh.org.uk/b/post/slight-updates-to-haskellvim/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 20:32:05 +0000</pubDate>
		<dc:creator>Anders</dc:creator>
				<category><![CDATA[Haskell]]></category>
		<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://adradh.org.uk/b/?p=97</guid>
		<description><![CDATA[Since the Vim syntax file for Haskell was last updated, there have been a bunch of syntax extensions in GHC1, like rank-n types, arrow syntax, and allsorts. I decided to add a few of these. You can get it here. You might want to back up your old one; I&#8217;m pretty sure I haven&#8217;t broken [...]]]></description>
		<wfw:commentRss>http://adradh.org.uk/b/post/slight-updates-to-haskellvim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I just noticed something</title>
		<link>http://adradh.org.uk/b/post/i-just-noticed-something/</link>
		<comments>http://adradh.org.uk/b/post/i-just-noticed-something/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 05:52:57 +0000</pubDate>
		<dc:creator>Anders</dc:creator>
				<category><![CDATA[Haskell]]></category>

		<guid isPermaLink="false">http://adradh.org.uk/b/?p=71</guid>
		<description><![CDATA[The applicative functor instance for (r ->) is: instance Applicative &#40;&#40;-&#62;&#41; r&#41; where pure = const f &#60;*&#62; g = \x -&#62; f x &#40;g x&#41; Look familiar? Of course, I is missing, but it&#8217;s just pure &#60;*&#62; undefined1 (or id but that&#8217;s cheating) anyway. I dunno what implications this has, other than that you [...]]]></description>
		<wfw:commentRss>http://adradh.org.uk/b/post/i-just-noticed-something/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Applicative functors and actions</title>
		<link>http://adradh.org.uk/b/post/applicative-functors-and-actions/</link>
		<comments>http://adradh.org.uk/b/post/applicative-functors-and-actions/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 05:14:43 +0000</pubDate>
		<dc:creator>Anders</dc:creator>
				<category><![CDATA[Haskell]]></category>

		<guid isPermaLink="false">http://adradh.org.uk/b/?p=42</guid>
		<description><![CDATA[This is obvious and all, but it suddenly clicked why you can&#8217;t choose different paths inside of Applicative. What I mean is that things of this form aren&#8217;t possible: something = do p' &#60;- getABool if p then putStrLn &#34;it was true&#34; else putStrLn &#34;it wasn't&#34; However, I couldn&#8217;t think why. Well, the reason is [...]]]></description>
		<wfw:commentRss>http://adradh.org.uk/b/post/applicative-functors-and-actions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Still none for D though</title>
		<link>http://adradh.org.uk/b/post/qthaskell/</link>
		<comments>http://adradh.org.uk/b/post/qthaskell/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 22:06:09 +0000</pubDate>
		<dc:creator>Anders</dc:creator>
				<category><![CDATA[Haskell]]></category>

		<guid isPermaLink="false">http://adradh.org.uk/b/2008/01/18/qthaskell/</guid>
		<description><![CDATA[Oh, also, qtHaskell. :yaay: I&#8217;ve wanted this for so long (well, since I knew about Qt and Haskell, which I suppose isn&#8217;t that long), and, and, it&#8217;s exactly what I wanted! Except for the inexplicable lack of QProgressBar, but let&#8217;s not pick. PS. Advertising]]></description>
		<wfw:commentRss>http://adradh.org.uk/b/post/qthaskell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>They forgot M (monadine)</title>
		<link>http://adradh.org.uk/b/post/they-forgot-m-monadine/</link>
		<comments>http://adradh.org.uk/b/post/they-forgot-m-monadine/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 14:23:05 +0000</pubDate>
		<dc:creator>Anders</dc:creator>
				<category><![CDATA[Haskell]]></category>
		<category><![CDATA[FP]]></category>

		<guid isPermaLink="false">http://adradh.org.uk/b/2007/10/30/they-forgot-m-monadine/</guid>
		<description><![CDATA[http://www.icfpcontest.org/Endo.pdf Endo is an alien life form, belonging to the species of the Fuun. Endo needs your help! Earth’s environmental conditions can be harsh for a life form not properly adapted. Endo had the bad luck of being dropped on Earth by an Interstellar Garbage Collector. Both the life form and its faithful space ship [...]]]></description>
		<wfw:commentRss>http://adradh.org.uk/b/post/they-forgot-m-monadine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

