Haskell Weekly

Newsletter

Issue 84 2017-12-07

Subscribe now! We'll never send you spam. You can also follow our feed. Read more issues in the archives.

Welcome to another issue of Haskell Weekly! Haskell is a safe, purely functional programming language with a fast, concurrent runtime. This is a weekly summary of what’s going on in its community.

Featured

  • Stack 1.6.1

    Stack, a cross-platform program for developing Haskell projects, released version 1.6.1.

  • Reflecting on Haskell in 2017

    Haskell has had a great year and 2017 was defined by vast quantities of new code, including 14,000 new Haskell projects on Github. The amount of writing this year was voluminous and my list of interesting work is eight times as large as last year.

  • Stack and nightly breakage

    I’m sure a number of readers have already seen something about the situation around Stack and Stackage Nightly/GHC 8.2. I tried to clarify how this happened on the relevant Github issue, plus the GHC Trac ticket, but thought I’d reshare as a blog post for others who are interested.

  • Pure functional validation in a nutshell

    Why should you care about typed, functional programming? The data validation example sort of makes the point on its own: if you care about validating the data that users input into your forms, why shouldn’t you care just as much about the data that gets input into your functions?

  • 1 year of Haskell

    This week marks the one year anniversary of Monday Morning Haskell! I’ve written an awful lot in the past year.

  • Making two garbage collectors be good neighbors (using linear types)

    When two garbaged-collected languages share references to the same values, each garbage collector (GC) needs to be careful to not collect these values while the other language has references to them.

  • MOBA item optimization in Haskell

    I love MOBAs, and I love Haskell. Since Paragon is my current go-to game, I wanted to determine the cards to buy to maximize my damage per second.

  • Req 1.0.0, HTTP client, and streaming

    This post is about changes in req-1.0.0, some details of how http-client works, in particular how it streams response bodies. Even if you do not want to use req for some reason, I hope the post still may be interesting.

  • Receipts printer photo booth

    Several days of struggle didn’t yield much for capturing the video stream from a webcam. A few proof of concept libraries, not updated in years, are no match for the Python ones, which proves again that what matters is not really how “good” a programming language is, but its ecosystem!

  • Finding bugs in Haskell code by proving it

    We have used hs-to-coq on various examples, as described in our CPP’18 paper, but it is high-time to use it for real.

Jobs

  • Confer Health seeking Software Engineer in Boston

    We’re a small, world-class team combining Silicon Valley urgency with East Coast science. We just closed a large Series A led by one of Silicon Valley’s best investors and we’re looking to add a third person to our software team, so come work with us!

Are you looking to hire a Haskell developer? If so, advertise with us!

In brief

Package of the week

This week’s package of the week is Warp, a fast, light-weight web server for WAI applications.

Call for participation