In Part 1 of this series, I had something basic up and running: an Elm front-end talking to a Haskell back-end. The next step is to get some persistence out of the back-end. We need Haskell to talk to a database. The tutorial I was following went with a simple Sqlite interface, but I wanted … Continue reading To The Helm – Part 2
Category: Haskell
To The Helm – Part 1
Now that I've gotten my feet wet with both Haskell and Elm, I want to try and put them together. I'm just going to try something simple. Let's make a standard task list app. Note: You can find the code for this post here. I found a series of blog posts of somebody trying something … Continue reading To The Helm – Part 1
Haskelly Fizzbuzz
The code for this example can be found here. Once I've gotten a basic environment working (as outlined in my previous post), I like to go through a simple exercise to make sure I understand the basics of writing code and tests. I like the classic fizz buzz game as good first exercise. Plus, it gives … Continue reading Haskelly Fizzbuzz
Haskelling It Up
I wanted to get started on a Haskell project, and I thought it would be a really good idea to get set up with all the amenities I've become accustomed to when working on a software project. So here's what I like to have: Automated build system Automated testing system Syntax highlighting and syntax checking/linting … Continue reading Haskelling It Up