This page lists a selection of software I have developed over the last 30 years. Some applications require a legacy Mac OS operating system to run, other software can be executed only using an outdated Java development environment. Probably none of my older software projects are of interest anymore these days. My newer software is published on GitHub and applications can be downloaded via Apple's app stores.
LispPad Go
2021
LispPad Go is a simple, lightweight, integrated development environment for developing and running Scheme code on iOS. Just like its macOS counterpart, LispPad Go utilizes LispKit for implementing its interpreter. It provides the following components:
- A fully integrated R7RS-compliant Scheme interpreter
- A console with a mobile read-eval-print loop
- A text editor supporting syntax highlighting, smart indentation, parenthesis matching, etc.
- Numerous libraries, native support for graphics, audio, etc.
The LispPad library reference manual documents all the core libraries.
Swift SQLiteExpress
2020
SQLiteExpress is a Swift library implementing a lightweight wrapper for the C API of SQLite3 on macOS and iOS. SQLiteExpress provides an object-oriented data model and a clear separation of errors from results and side-effects, using Swift programming paradigms throughout its implementation. SQLiteEpress maintains the programming protocol of the C API and does not provide any help in crafting SQL statements, e.g. in a type-safe manner.
Swift MarkdownKit
2019
Swift MarkdownKit is a framework for parsing text in Markdown format. The supported syntax is based on the CommonMark Markdown specification. Swift MarkdownKit defines an abstract syntax for Markdown, it provides a parser for parsing strings into abstract syntax trees, and comes with generators for creating HTML and attributed strings.
Swift CommandLineKit
2018
Swift CommandLineKit is a framework supporting the development of command-line tools in Swift on macOS and Linux. The framework supports managing command-line arguments, provides lightweight functions to deal with escape sequences, and defines an API for reading strings from the terminal.
LispPad
2017
LispPad is a simple, lightweight, integrated development environment for developing and running Scheme code on macOS. LispPad utilizes LispKit for implementing its interpreter. It provides the following components:
- A fully integrated R7RS-compliant Scheme interpreter (compiler and virtual machine)
- A console with a read-eval-print loop
- A text editor supporting syntax highlighting, smart indentation, parenthesis matching, page guides, etc.
The LispPad library reference manual documents all the core libraries.
Swift LispKit
2015
LispKit is is a framework for building Lisp-based extension and scripting languages for macOS applications. LispKit is fully implemented in the programming language Swift. LispKit implements a core language based on the R7RS (small) Scheme standard. It is extensible, allowing the inclusion of new native libraries, of new libraries written in Scheme, as well as custom modifications of the core environment consisting of a compiler, a virtual machine as well as core libraries.
So far, performance was not a priority in the development of LispKit. The LispKit compiler does not perform any code optimizations and the performance of the system is below state of the art Lisp and Scheme implementations.
So far, performance was not a priority in the development of LispKit. The LispKit compiler does not perform any code optimizations and the performance of the system is below state of the art Lisp and Scheme implementations.
Go ContainerKit
2012
ContainerKit aims at providing a comprehensive container class library for the Go programming language which allows programmers to make use of a broad range of container abstractions in a consistent fashion. The library design focuses on the following properties:
- Simplicity: The library is built on top of a small number of core concepts, to keep the learning curve for users as flat as possible.
- Consistency: The concepts are reused uniformly across the various container abstractions. This includes consistent usage of names, types, and method signatures.
- Expressiveness: Rich abstractions allow users to express processing logic in a concise, declarative fashion. The simplicity and consistency properties are important because they guarantee ease of use. Expressiveness is important because it promotes concise, readable client logic.
Keris
2003
Keris is an extension of the programming language Java which focuses on the development of extensible sofware. Keris introduces extensible modules as the basic building blocks of software. Software developed with Keris is closed in the sense that it can be executed, but it is open for future extensions. Such extensions are non-destructive: they do not require source code modifications and existing binaries persist. Keris was developed as a part of my PhD thesis between 2001 and 2004.
Funnel
2000
Funnel is a programming language that is conceptually based on functional nets. The Funnel compiler maps Funnel programs to an intermediate language which is then interpreted by a virtual machine. Funnel programs can access the full Java API through a rudimentary Java interface. This implementation is an experimental prototype.
Jaco
1998
Jaco is an extensible Java compiler. This software was part of my master's thesis at the University of Karlsruhe. Jaco is written in an extension of itself: Java + extensible algebraic types. It runs on all platforms for which a Java virtual machine is available. Jaco was written in 1997. Later on, Jaco has been used in a couple of projects at EPFL and the School of Computer and Information Science of the University of South Australia.
JavaParty
1996
JavaParty is an extension of Java with features that facilitate the development of distributed applications. It provides:
- Transparent Remote Objects: Although RMI seems to offer this, you really have to re-work your multi-threaded Java programs significantly before you can exploit the combined computing power of all your workstations with RMI. JavaParty programs are just a tiny step away from regular Java.
- Object Mobility: JavaParty objects are free to move from one node of the network to another. Object migration results in locality of access and therefore may hide network latency.
Pizzeria
1996
Pizzeria is a small integrated development environment for the Pizza programming language. Pizza is a superset of Java that incorporates three additional features: parametric polymorphism, first-class functions and algebraic data types with support for pattern matching. Pizzeria was the only free native Java IDE on Mac OS 9 for a long time (middle of the 90ies).
MacBPM
1993
Initially, MacBPM was intended to be a simple BPM (beats per minute) counter. I wrote it in 1989 in order to count the beats of my dance music CDs. From time to time, I added a database module for cataloging music tracks and a playlist compilation utility. MacBPM was mainly useful for DJs. Indeed, in the early 90ies, there have been a lot of users since there was no other comparable Mac program available. This is a Mac OS 9 application and given all digital DJing tools today, there is no need to port this to any modern operating system.
LiLa
1992
LiLa is a Lisp programming environment for Mac OS 9 with a built-in interpreter and compiler. I started working on this more than 20 years ago. The Mac OS version is actually a port of my former Amiga Lisp interpreter. I wrote LiLa in order to get experience with the implementation of functional programming languages. LiLa is completely written in Modula-2. This allowed me to include a lot of multi-purpose modules I wrote during my Amiga times (including long integers, complex numbers, a garbage collector, etc.). Although the system is not really fast, it was my Lisp interpreter of choice for a long time. This software has been linked from my homepage since 1993.