51
2
submitted 8 months ago by jaror@kbin.social to c/haskell@kbin.social

Jezen Thomas is co-founder and CTO of Supercede, a company applying Haskell in the reinsurance industry. In this episode, Jezen, Wouter and Joachim talk about his experience using Haskell in industry, growing a diverse and remote team of developers, and starting a company to create your own Haskell job.

52
1
submitted 8 months ago by jaror@kbin.social to c/haskell@kbin.social

PSA: Since GHC 9.8 you can enable optimisations in GHCi

https://stackoverflow.com/a/77895561/15207568

#haskell

53
3
submitted 8 months ago by jaror@kbin.social to c/haskell@kbin.social

Dear Haskellers, The GHC Steering Committee is seeking nominations for new members. The committee scrutinizes, debates and eventually decides to accept or reject proposals to change the language or major features supported by GHC...

54
2
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

News about the Haskell programming language from 2024-01-25.

55
2
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

On behalf of the Haskell.org committee, I’m pleased to announce the results of the Summer of Haskell 2023. Many impressive and valuable contributions were made to the Haskell ecosystem which I’m excited to share with you in this post...

56
3
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

Hi Friends of Haskell, It is our pleasure to announce that ZuriHac 2024 will take place Saturday 8 June - Monday 10 June 2024 as a physical event at the Rapperswil-Jona campus of the OST Eastern Switzerland University of Applied Sciences. The focus of ZuriHac is being a community event and hackathon, but we will also have some exciting keynotes from Ningning Xie, Alex McLean, Ivan Perez and Mary Sheeran. In addition to that, there will be some more hands-on content: Well-Typed will host a work...

57
1
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

I recently merged linear let- and where-bindings in GHC. Which means that we’ll have these in GHC 9.10, which is cause for celebration for me. Though they are much overdue, so maybe I should instead apologise to you.

Anyway, I thought I’d take the opportunity to discuss some of GHC’s inner workings and how they explain some of the features of linear types in Haskell. We’ll be discussing a frequently asked question: why can’t Ur be a newtype? And some new questions such as: why must linear let-bindings have a !? But first…

58
2
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

News about the Haskell programming language from 2024-01-18.

59
3
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

Sometimes, for example when working with type-level lists, you have to compute with constraints. For example, you might want to say that a constraint holds for all types in a type-level list. In this episode, we will explore this special case of type-level programming in Haskell. We will also revisit type class aliases and take a closer look at exactly how and why they work.

60
3
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

Today, Matthías and Joachim are interviewing Moritz Angermann. Moritz knew he wanted to use Haskell before he knew Haskell, fixed cross-compilation as his first GHC contribution. We'll talk more about cross-compilation to Windows and mobile platforms, why Template Haskell is the cause of most headaches, why you should be careful if your sister calls and tells you to cabal install a package, and finally how we can reduce the fear of new GHC releases, by improving stability.

61
1
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

News about the Haskell programming language from 2024-01-11.

62
3
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

Consider a Haskell thread trying to read from a TMVar:

x <- atomically $ takeTMVar v

If the TMVar is currently empty and there are no other threads that could write to the TMVar, then this thread will never be able to make progress. The GHC runtime detects such situations, and this call to atomically will throw a BlockedIndefinitelyOnSTM exception, rendered as

thread blocked indefinitely in an STM transaction

Occasionally, however, the runtime will throw this exception even when progress is possible.

63
2
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

Avi Press gave an excellent talk at Scale By the Bay 2023 about difficulties using Haskell at a startup. He mentions that even experienced Haskellers don’t always know how to use fundamental parts of the language. In particular,

even experienced Haskell engineers aren’t always going to know whether to foldl or foldr.

In this article I’ll deduce a firm rule that allows you to make the correct choice...

64
2
submitted 9 months ago by kleidukos@kbin.social to c/haskell@kbin.social

Hello everyone, Two years ago I created get-tested, a tool that reads your cabal file, extracts the tested-with stanza and produces a test matrix for GitHub Actions. It has served me well to this day, but it also recently received a very useful contribution from @turion, who wrote a reusable Github Action for it! I am extremely grateful for this effort.

65
1
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

Some random thoughts after discussions at the FP Dag yesterday:

We need more learning resources based on pracitcal projects like https://learn-haskell.blog/, and the practical project should not be compiler related. Perhaps the Haskell School of Expression is also a good example of this but it is a bit outdated.

One objection to teaching Haskell through more practical Haskell projects is that it wouldn't show off the benefits if all you're working with I/O almost all of the time. I asked Jaap van der Woude who was sitting next to me - and is a fervent proponent of program design by calculation (e.g. as described in this book) - the question: "Could you calculate a game from its specification?" His immediate response was no, but later he did explain that he used to give students an assignment to specify the game Snake, which was already often too much for his students.

I'll have to try doing that exercise myself sometime. I still think that if we ever want to get to a future where we can write correct and reusable software, then we'll have to find a way to make it easier to formally specify our programs.

#haskell

66
1
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

News about the Haskell programming language from 2024-01-04.

67
2
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

In this edition of our “Haskell in Production” series we interview Jeroen Bransen from Chordify, an online platform, which turns any music or song into chords. Jeroen has been working at Chordify since 2016. We discussed how Chordify ensures the correctness of Haskell code and scalability of its codebase, which libraries they use in their work, and more.

68
2
submitted 9 months ago by jaror@kbin.social to c/haskell@kbin.social

In this episode, Andres and Matti talk to Mike Sperber, CEO of Active Group in Germany. They discuss how to successfully develop an application based on deep learning in Haskell, contrast learning by example with the German bureaucratic approach, and highlight the virtues of having fewer changes in the language.

69
1
submitted 10 months ago by jaror@kbin.social to c/haskell@kbin.social

News about the Haskell programming language from 2023-12-28.

70
2
submitted 10 months ago by jaror@kbin.social to c/haskell@kbin.social

News about the Haskell programming language from 2023-12-21.

71
3
submitted 10 months ago by jaror@kbin.social to c/haskell@kbin.social

A circular program is a program that depends on its own result. It may be surprising that this works at all, but laziness makes it possible if output becomes available sooner than it is required. In this final episode of 2023, which will be longer than usual (probably 45-60 minutes), we will take a look at several examples of circular programs: the classic yet somewhat contrived RepMin problem, the naming of bound variables in a lambda expression, and breadth-first labelling.

72
3
submitted 10 months ago by jaror@kbin.social to c/haskell@kbin.social

The Haskell Symposium is a two-day workshop co-located with the International Conference on Functional Programming (ICFP). In a previous blog post we discussed the Haskell Implementors’ Workshop (HIW), which is another Haskell-workshop co-located with ICFP, but unlike HIW, the Haskell Symposium is a scientific workshop with peer-reviewed papers.

This year Well-Typed presented one paper at the Haskell Symposium: Edsko de Vries presented the theory that underlies his new library for property based testing, called falsify...

73
3
submitted 10 months ago by jaror@kbin.social to c/haskell@kbin.social

Welcome to the comedy of errors that is our tale of four tumultuous, yet rewarding, years deploying Haskell in a production environment at Scarf...

74
1
submitted 10 months ago by jaror@kbin.social to c/haskell@kbin.social

In this episode, we are joined by Rebecca Skinner. She talks about her new book, Effective Haskell, which takes you from list manipulation to thunks to type-level programming. She also tells us about large scale industrial applications in Haskell, and how the architecture is shaped by the organization of the engineering teams.

75
1
submitted 10 months ago by jaror@kbin.social to c/haskell@kbin.social

News about the Haskell programming language from 2023-12-14.

view more: ‹ prev next ›

Haskell

8 readers
1 users here now

**The Haskell programming language community.** Daily news and info about all things Haskell related: practical stuff, theory, types, libraries, jobs, patches, releases, events and conferences and more... ### Links - Get Started with Haskell

founded 1 year ago