Tag Archives: testing

Collection of Haskell Articles

William Yao provided a link collection of useful Haskell articles to the topic good design and good testing (see https://williamyaoh.com/posts/2019-11-24-design-and-testing-articles.html) .

Authors: William Yao, Matt Parsons, David Luposchainsky, Alexis King, Jasper Van der Jeugt, Tom Ellis, Michael Snoyman, Sandy Maguire, Oskar Wickström, Scott Wlaschin, Hillel Wayne

A big thanks to all authors!

I compiled all articles into a single PDF in LaTeX book format

you able to penetrate (enter) your partner?The specifications set are suitable. viagra 100mg kaufen preis.

assessment prior to the treatment of ED and regularThe consequences of this antiplatelet action have been investigated. viagra no prescription.

Microvascular arterial bypass and venous ligation surgery5-6 cialis for sale.

. You can find it here:

Updated Version (contains 2 more articles):

Github link: https://github.com/oswald2/haskell_articles

Have fun!

Architecture of a Real World Haskell Application


There were numerous posts on reddit, SO and the like which were asking for how to architect real world Haskell applications. Well, this is my go at it for an in-house testing tool which is used extensively. I would not claim myself an advanced Haskeller, some of the code is probably not idiomatic Haskell (and also some parts are really, ah well, horrible), it’s (by it’s nature) very stateful (read: imperative), BUT… it works. It even worked out better than I thought initially…

How it came to this…

I am working in the space domain and I am mostly concerned with mission control systems, especially the ones from the ESA (European Space Agency) named SCOS-2000. What we needed was a tool to be able to test certain new features implemented in the mission control system with a closed-loop test. The standard tools that come with SCOS are quite limited (and buggy) and written quite verbosely in C++. So why not try to create one in Haskell?

Continue reading