Haskell is an advanced functional programming language, featuring strong static typing, lazy evaluation, extensive parallelism and concurrency support, and unique abstraction capabilities.

learn more… | top users | synonyms | haskell jobs

17
votes
0answers
237 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 ...
14
votes
0answers
277 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 ...
11
votes
0answers
126 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 ...
7
votes
0answers
166 views

How to define a tree-like DAG in Haskell

How do you define a directed acyclic graph (DAG) (of strings) (with one root) best in Haskell? I especially need to apply the following two functions on this data structure as fast as possible: ...
7
votes
0answers
75 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 -- -- >>> ...
6
votes
0answers
113 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
155 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
473 views

Haskell Cabal: “package indirectly depends on multiple versions of the same package”

After clearing out all of my cabal installed packages, I ran this following session: $ cabal update Downloading the latest package list from hackage.haskell.org james@bast:~/.cabal/packages$ cabal ...
6
votes
0answers
394 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
127 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
236 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 ...
5
votes
0answers
227 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
174 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
400 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
135 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
103 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
101 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
73 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
147 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
169 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
130 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
220 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
287 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
128 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 ...
4
votes
0answers
214 views

Using queryString in a Request to build a url in http-conduit

I'm following http-conduit Synopsis, Suppose the request url is: http://example.com/?q1=v1 Using req <- liftIO $ parseURL $ "http://example.com?q1=v1", the request works. However, I'd like to ...
3
votes
0answers
60 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: ...
3
votes
0answers
42 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
84 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
98 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
133 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
95 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
124 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
73 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
76 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?
3
votes
0answers
86 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
99 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
88 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
84 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
204 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
126 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
102 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
101 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
187 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 ...
3
votes
0answers
79 views

Why is main executable busy when calling external executable with Shelly.Background

I am trying to write a program with Shelly to compile Delphi projects in parallel. I thought the program would be blocked while waiting for the Delphi compilers to return. But my program starts to max ...
3
votes
0answers
230 views

Why does putting this liftIO in a function work, but calling directly doesnt?

I am seeing some weird behavior involving monad instances. I am writing a snap application and in one of my handlers, it won't compile unless I make a function. Calling withManager directly in my ...
3
votes
0answers
301 views

Why Does Asynchronous UDP Datagram Haskell Server Have Packet Loss?

I am sending simple UDP packets to this Haskell server. For a source of packets I use a plain text file generated by "aspell -l en dump master". However, any list of over 120,000 messages should work. ...
3
votes
0answers
188 views

Haskell curl missing content on status 401

I have some problems with the curl haskell library in the latest version 1.3.7. Some example in Haskell: module CurlTest where import Network.Curl url = "http://www.example.com/private/" opts = ...
3
votes
0answers
317 views

Linking c++ dll with Haskell-Platform on Windows, outputs 'undefined reference'

I am a Haskell enthusiast and have got stuck upon compiling my little Haskell program on Windows. My program uses the iconv package, which in turn uses the foreign library written in c/c++. To make ...
3
votes
0answers
96 views

Why does it show a white window in Haskell / Fungen?

I'm using Fungen to create a game in Haskell, and I run it without problems in my pc with Windows XP. The problem is when I try to make it run in another PC. I've tried running it in other 3 PCs with ...
3
votes
0answers
580 views

Haskell executable linking with static library written in C++ got `undefined reference`

I've create a static library: // foo.h extern "C" { int foo (const char* arg0, int arg1); } // foo.cpp #include "foo.h" // implementation of foo This block of code was compiled to foo.o and ...

1 2 3 4 5