Projects

Here are some of the projects I work on. A more comprehensive list is available on my github accout.

RSSQueue.com

RSSQueue is a service that lets you create and curate RSS/podcast feeds that can be synced to tablets or phones. This lets you create a “watch it later” list with content that is automatically downloaded, even to iOS devices where one usually cannot simply download e.g. a video file for later watching.

Circus Escape

A simple iPhone platform game where the aim is to get as far as possible on a unicycle while avoiding obstacles.

Circus Escape screenshot

Circus Escape screenshot

vim-cute-python

A python syntax file for Vim that uses the new “conceal” feature in Vim 7.3 to display unicode characters for some Python operators and built-in functions, turning the following:

    map (lambda x: x, [1,2,3])

    def foo(e, a):
        if e in [1,2,3] and not a:
            return math.sqrt(math.pi)
        else:
            return sum([1,2,3])

into

    map (λ x: x, [1,2,3])

    def foo(e, a):
        if e ∈ [1,2,3] ∧ ¬a:
            return √(π)
        else:
            return ∑([1,2,3])

SimpleEA

A simple framework for writing evolutionary algorithms in Haskell.

GTD Guide: GTD in 15 minutes

A pragmatic guide to the “Getting Things Done” framework. Written in Markdown.

Vi input mode for the Kate editor

A vim-like, modal input mode for the Kate editor part used in the Kate editor, Kdevelop, the Kile LaTeX editor and various other programs.

This started as a Google Summer of Code project in 2008 and I have maintained it since. I mentored Svyatoslav Kuzmich that worked on the project as a GSoC student in 2011 and Vegard Øye who worked on it in 2012.