Unanswered Questions
285 questions with no upvoted or accepted answers
23votes
0answers
447views
Mucheck - a mutation analysis tool for Haskell programs
We have been working on a mutation analysis tool for Haskell tests called MuCheck. It accepts any Haskell source file, and a function name to mutate, applies a defined set of mutation operators on it, ...
19votes
0answers
222views
Timeoutable computations module
Defines a simple module for timeoutable computations, with the ability to returnarbitrary intermediary results on timeout or the final value otherwise. It also allows default return values. The ...
16votes
0answers
3kviews
Realtime concurrent Haskell MIDI buffer
Problem BackgroundMIDI is a serial representation of control signals to a sound generator. Typically, a noteOn message initiates the attack phase of a sound at a given pitch. The note will ...
7votes
0answers
99views
Feedback on LZSS implementation
Recently, I've been trying to get back into Haskell, so I tried coding up a LZSS implementation. I realize this is much more easily implemented imperatively, but I wanted to challenge myself. The last ...
7votes
0answers
137views
Agent-based Immutable Map
I am in the process of removing the last few pieces of mutable state from an F#-based distributed system. Some of the remaining mutable state is a ...
7votes
0answers
564views
A* Algorithm in F#
Inspired by this post I looked up A* on wikipedia and went on with my own implementation as seen below where I try to mimic the pseudocode on Wikipedia but in a recursive manner. I would like any ...
CommunityBot
- 1
7votes
0answers
4kviews
React Native - Rendering different scenes based on application state
I am usingreact-native-router-flux to organize the routes for my application. Using Firebase, I am able to call ...
7votes
1answer
186views
BingWallpapers: Fetches and applies the image of the day from Bing as the wallpaper
I have written a small desktop program nabeelomer/BingWallpapers in Haskell. This is my first time writing Haskell.I was wondering how I can make the code use more functional programming features/...
CommunityBot
- 1
6votes
0answers
68views
React state management design pattern new approach thoughts
Hey people on the internet!I do not know where to share my new npm package so I am asking you do you know of a good place to share my package?Also I would really appreciate if you take a look on it ...
6votes
0answers
106views
FRP: Processing task lists
I recently heard about functional reactive programming and thought it was rather interesting. Therefore, I started out with writing a simple program which processes a list of tasks.(In this example, ...
6votes
0answers
660views
Website using Persistent, Blaze-html, and Scotty
I know that mylet configFilePath = Prelude.head args is unsafe and was wondering how I could handle it better. My deployment almost always has a file at ...
6votes
0answers
464views
Implementing recursive filters with Haskell/Repa
I recently learned Haskell, and I am trying to apply it to the code I use in order to get a feeling for the language.I really like the Repa library since I manipulate a lot of multi-dimensional data....
6votes
1answer
197views
GitHub API client
Here is my Haskell program designed to list all of my GitHub repos along with their descriptions and languages via the GitHub JSON APIs:...
5votes
0answers
65views
Compute a Working Capital Loan
This code takes a list of EBITDA amounts (for a hypothetical business), and computes a loan that would fund that business with working capital in periods of loss. When the business has positive EBITDA ...
5votes
0answers
182views
Hutton cipher implemented using recursive functions
Is there a way to rewrite these last 2 recursive functions with fewer arguments (preferably 2) while keeping them recursive?The entire code can be seen here: https://github.com/GirkovArpa/hutton-...


