Haskell is an advanced functional programming language, featuring strong static typing, lazy evaluation, extensive parallelism and concurrency support, and unique abstraction capabilities.
44
votes
0answers
1k views
Haskell Conduit: One processing conduit, 2 IO sources of the same type
In my GHC Haskell application utilizing stm, network-conduit and conduit, I have a strand for each socket which is forked automatically using runTCPServer. Strands can communicate with other strands ...
40
votes
0answers
610 views
Why does ghci desugar type lists and type families? Can this be selectively disabled?
I'm trying to make the types ghci displays for my libraries as intuitive as possible, but I'm running into a lot of difficulties when using more advanced type features.
Let's say I have this code in ...
32
votes
0answers
398 views
Multiple assignments to the same register in an RTL block with Kansas Lava
I'm having trouble understanding Kansas Lava's behaviour when an RTL block contains multiple assignments to the same register. Here's version number 1:
foo :: (Clock c, sig ~ Signal c)
=> sig ...
26
votes
0answers
220 views
How do I get text-icu working on Windows?
I was able to cabal install text-icu without errors. (I used --extra-lib-dirs and --extra-include-dirs to point to the lib and include directories in the binary distribution of icu4c.)
I was also ...
17
votes
0answers
269 views
Gnuplot in Haskell: don't enter gnuplot terminal
Using the gnuplot module, after I plot a graph I get put into the gnuplot console. Is there a way to stop this happening? I never use it, and it's annoying to have to type exit after closing each ...
12
votes
0answers
100 views
Haddock numbered list continuation
How to continue a numbered list with haddock documentation tool? The following lines in haddock
-- 1. First line.
--
-- 2. Second line with instructions to do something
--
-- >>> ...
9
votes
0answers
180 views
Writing efficient iterative loop for ST monad
go worker tail-recursive loop pattern seems to work very well for writing pure code. What would be the equivalent way to write that kind of loop for the ST monad? More specifically, I want to avoid ...
9
votes
0answers
232 views
It's not a monad, but what is it?
According to the Haskell wikibook, a Monad called m is a Functor with two additional operations:
unit :: a -> m a
join :: m (m a) -> m a
That's nice, but I have something slightly different. ...
6
votes
0answers
123 views
cmm call format for foreign primop (integer-gmp example)
I have been checking out integer-gmp source code to understand how foreign primops can be implemented in terms of cmm as documented on GHC Primops page. I am aware of techniques to implement them ...
6
votes
0answers
186 views
Haskell Cabal QuickCheck Integration
I've been trying to use cabal-install as a way to build and, more importantly, test my haskell projects, a bit alike to the way Maven is used in Java projects, mainly because it seems to be a good ...
6
votes
0answers
261 views
How to build a DSL for looking up fields from a record in Haskell
TL;DR: I need help figuring out how to generate code that will return one of a small number of data types (probably just Double and Bool) from various fields on disparate records.
Long form: Assuming ...
6
votes
0answers
407 views
Deciphering addC Code and carry
Okay, so I have this code in Haskell:
data Bigit = O | I deriving (Show,Eq)
add x y = reverse $ addC O (reverse x) (reverse y)
addC O [] [] = []
addC I [] [] = [I]
addC carry [] r = addC carry [O] ...
5
votes
0answers
71 views
Is it possible to match on PATCH requests in Happstack?
I was wondering if it is possible to match on PATCH requests in Happstack besides the fact that the Method datatype has no constructor for PATCH:
data Method
= GET | HEAD | POST | PUT | DELETE | ...
5
votes
0answers
134 views
System.Plugins loader seems to assume failure after seeing a failure once
I am currently working on a haskell program which takes a users input from a text box, then
compiles and loads it using the System.Plugins library in order to extract a picture to draw to the screen. ...
5
votes
0answers
241 views
How to get GHCi to load the opengl package under GHC 7.6.1 x86-64 Windows 7?
I can successfully build executables that link against OpenGL using GHC, however I cannot get the package to load into GHCi. This is definitely a regression for me because it works on 32-bit GHC (at ...
5
votes
0answers
177 views
Leksah: automatically build and/or reinstall dependencies when changed
I'm going to work on a project where I will need to work on both the dependencies and the dependent project at the same time. I have arranged it so that the dependencies lies in separate repos side by ...
5
votes
0answers
428 views
ZeroMQ examples for haskell aren't working
Poll-enabled example for Push-Pull is just hanging on launch while original works just fine.
Even simpler poller example hangs for a while and then starts to leaking memory like crazy.
It's all very ...
4
votes
0answers
129 views
Typed tuples and closures in Groovy
I've done a bit of programming and Haskell, and wanted to implement some Haskell list processing functions in Groovy. Below is an implementation of unfoldr. Basically A is the type of the resulting ...
4
votes
0answers
70 views
Cabal “Data Files” Not Being Copied
I'm trying to use the "data-files" mechanism, and stuff works fine except that the
relevant files are not copied into the share/ directory. e.g. my .cabal file looks like:
name: ...
4
votes
0answers
140 views
How to use createTransport?
I'm currently following Cloud-Haskell tutorial and is stuck at createTransport. It seems to me I'm only able to open a transport at 127.0.0.1 for server and can't open a transport for client to ...
4
votes
0answers
118 views
Persistent: CRUD TypeClass
I am trying to write a typeclass that simplifies writing a CRUD backend using persistent, aeson and scotty
Here is my idea:
runDB x = liftIO $ do info <- mysqlInfo
...
4
votes
0answers
120 views
Does Scala continuation plugin support nested shift?
I am going through the following Shift/Reset tutorial: http://www.is.ocha.ac.jp/~asai/cw2011tutorial/main-e.pdf.
I got pretty good results so far in translating the OchaCaml examples to Scala (all ...
4
votes
0answers
75 views
How can I check the client certificate using Snap
I know it's rarely used, but is it possible to access the client certificate in Snap?
If not, is it possible using a different web stack?
4
votes
0answers
84 views
Is there a function that transform from plain HTML to Hamlet structure?
I am starting to use the Yesod web framework. I have some already existing template HTML code that I would like to automatically translate to a Hamlet code structure. Is there a way to do this?
4
votes
0answers
158 views
Simpler alternative libs to Reactive? (Haskell)
I'm learning Haskell, and trying to write some event-driven programs.
The following code is from the tutorial: http://www.haskell.org/haskellwiki/OpenGLTutorial2
main = do
(progname,_) <- ...
4
votes
0answers
186 views
Excel Automation with haskell gives a seg fault
I can fire up excel with the following script. But in ghci (7.4.1) i have a segmentation fault when i run it.
I don't know where to search from now. I don't have this error if i remove the line
...
4
votes
0answers
144 views
Compile SDL with cabal in MinGW
I’m trying to install SDL within cabal for Haskell, in MinGW, but I got some problems. cabal can’t find the C library, and I don’t know why. Here some info:
I have downloaded both the dev and ...
4
votes
0answers
230 views
Using persistent from within a Conduit
First up, a simplified version of the task I want to accomplish: I have several large files (amounting to 30GB) that I want to prune for duplicate entries. To this end, I establish a database of ...
4
votes
0answers
306 views
Cabal Multiple Executables
I'm working on a website using Yesod I have the normal build running but I can't seem to populate my database reliably. I have a second haskell program that populates the database and I've added it to ...
4
votes
0answers
136 views
“cookbook” for converting from QuickCheck1 to QuickCheck2?
Is there a cookbook available for converting from QuickCheck1 to QuickCheck2?
As some examples, defaultConfig (replaced by Args) and trivial were removed and CoArbitrary introduced.
I did read the ...
3
votes
0answers
51 views
Installing OpenAL (or a similar package) on W7
I want to install OpenAL Haskell bindings for Windows. When I try cabal install alut I get:
Resolving dependencies...
Configuring OpenAL-1.4.0.2...
cabal: The package has a './configure' script. This ...
3
votes
0answers
112 views
How can you best offer a generic interface on bytestrings?
I'd like to offer a "user friendly" generic interface for a library I'm writing. It seems like the thing that ought to already exist, so I'd like to not reinvent the wheel.
At it's heart, the library ...
3
votes
0answers
78 views
cmdArgs bash completion
The cmdArgs package for Haskell provide command option parsing.
based on this page from the docs ...
3
votes
0answers
103 views
Yesod devel cpu overhead
Yesod development server "yesod devel" on my system(arch linux) uses more then 30%-50% cpu when idle (watching for changed files). I'm guessing it is polling info about changed files from disk? I read ...
3
votes
0answers
50 views
How can I log an entire HTTP request in WAI/scotty?
I currently run the middleware logStdoutDev from Network.Wai.Middleware.RequestLogger, but it only logs the path and the Accept header (possibly other headers too). I want to see the body of the POST ...
3
votes
0answers
105 views
Getting Haskell's hsenv to work on Ubuntu 13
I'm trying to get GHC working on Ubuntu. Did the following:
sudo apt-get install ghc
sudo apt-get install cabal-install
cabal update
cabal install hsenv
Then I tried to create a hsenv environment ...
3
votes
0answers
108 views
How best to type “Any monad transformer stack containing m”
I'd like to write the function
fixProxy :: (Monad m, Proxy p) => (b -> m b) -> b -> () -> p a' a () b m r
fixProxy f a () = runIdentityP $ do
v <- respond a
a' <- lift (f a)
...
3
votes
0answers
142 views
In Haskell, in Windows 7, can I read a file that is already write-locked by another program?
I have a 3rd party program that is running continuously, and is logging events in a text file. I want to write a small Haskell program that reads the text file while the other program is running and ...
3
votes
0answers
101 views
Haskell Scion project seems to have two different servers
I'm trying to setup Scion for Haskell development in Emacs.
I'm using original version of Scion from here:
https://github.com/nominolo/scion
My GHC is 7.4.2 and I'm under Ubuntu 12.04 / 13.04.
I ...
3
votes
0answers
145 views
OpenGL VBO's in Haskell
Basing on this post, I was trying to figure out how to use VBO's in Haskell. I tried to fill in the bits that were not covered there:
data Sprite = Sprite { spriteImage :: Image
...
3
votes
0answers
84 views
Haskell: http-wget hangs my program in windows
I've tried this on two computers. Here are my steps:
install wget on cygwin
cabal install http-wget
upgrade my PATH environment variable to include C:\cygwin\bin
open WinGHCi and type this:
From ...
3
votes
0answers
94 views
How can I decode a quotedprintable encoded String?
I'm writing a webmail app and need to decode Quotedprintable values in the emails header fields.
I've tried several decode functions from various packages on haskell, so far without luck.
How can I ...
3
votes
0answers
105 views
Yesod Persistence - Aggregate functions
I'm evaluating Yesod as a platform for writing a web-based accounting software for inhouse use. So far I'm impressed.
Modelling the entities to suit Persistent is pretty straight-forward, being able ...
3
votes
0answers
95 views
Is it possible to statically link a Haskell application on OS X?
I am fairly unfamiliar with static linking in any language, but I'm trying to statically link a Haskell program for usage on other macs. I've managed to statically link on Linux and confirm it to be ...
3
votes
0answers
86 views
Need help building libpandoc, Haskell + C and .NET bindings for Pandoc
I'd love to use Pandoc in a utility I'm writing (C# console app) and I found this bindings project on GitHub, libpandoc and by extension, it's .NET bindings project, libpandoc-dotnet.
I wish the ...
3
votes
0answers
228 views
yesod tutorial, nicEdit and a static gif-reference
Blog-example and the nicEditor on the tutorial on yesodweb work as they should. To learn something about yesod & scaffolding etc, I downloaded nicEdit, unzipped it, and put it into ...
3
votes
0answers
129 views
Yesod in-place editing widget
I'm interesting in creating a widget in Yesod with the following properties:
By default, it renders simply as some text "Title"
When moused-over, a small link "Edit this" appears on the upper-right ...
3
votes
0answers
110 views
Are there any interesting modules out there dealing with inverse images of functions?
I just found myself writing some code like the following:
import Prelude hiding (id, (.))
import Control.Category
import Control.Monad ((<=<))
-- | Intended law:
--
-- map forward . ...
3
votes
0answers
102 views
Resampling with Repa and Stencils
I wrote a simple image bilinear resampling algorithm with repa and since I need to use partitioned arrays to make it correct, I thought I would go whole hog and use stencils too and hopefully get ...
3
votes
0answers
190 views
Partially lift with liftIO
I'm trying to do something that's probably impossible. I have a type that is an instance of MonadIO. If you liftIO an IO action in a context where this type is the base monad of some transformer ...

