6
votes
Any Real-World Experience Using Software Transactional Memory?
I participated in the hobbyist development of the BitTorrent client in Haskell (named conjure). It uses STM quite heavily to coordinate different threads (1 per peer + 1 for storage management + 1 …
3
votes
How would one share data between a parent and forked child process in Haskell?
Better yet, use Software Transactional Memory - that is, TVars and TChannels.
Will recommend the same book, different chapter: …
0
votes
Haskell IO and closing files
The explanation is rather long to be included here. Forgive me for dispensing a short tip only: you need to read about "semi-closed file handles" and "unsafePerformIO".
In short - this beha …
3
votes
6
votes
Creative uses of monads
Read series of articles on monads used to model probability and probabilistic processes here : …
1
vote
is it possible to print all reductions in Haskell - using WinHugs?
Believe me, you dont want to go this way.
Set (and order) of reductions used in each particular case would depend on particular language implementation (hugs could do it one way, ghci - in …
1
vote
Haskell REST/GDATA API library
According to "cabal list", there is no such thing among libraries on Hackage. Sad, but true.
…
4
votes
How to reduce memory usage in a Haskell app?
Lists are not the best datastructure for this type of code (with lots of (++), and (last)). You loose a lot of time constucting and deconstructing lists. I'd use Data.Sequence or arrays, a …
3
votes
Have you used Quickcheck in a real project
I've used it quite a lot, mostly in straighforward manner, chiefly for testing protocol and parser implementations.
However, here is less trivial bit from my personal experience: …
0
votes
In Haskell how do you extract strings from an XML document?
FWIW, HXT seems like overkill where a simple TagSoup will do :)
…
2
votes
What is a good way to debug haskell code?
As a side note, be aware that Debug.trace will NOT be your friend when debugging multithreaded programs.
Testing is the way to go in the long run.
…
8
votes
Making small haskell executables?
GHC is statically linking everything (except libraries used by runtime itself, which are linked dynamically).
In the old ages, GHC linked the whole (hsakell) library in as soon as you've u …
1
vote
Jquery like selector in Haskell
Take a look at the Xtract module from the HaXml. There is a command-line tool of the same name there to test it out.
…
6
votes
A Gentler Introduction to Functional Programming
Use "Write yourself a Scheme interpreter (in Haskell) in 48 hours" - this way you'll learn …
2
votes
Unable to have full-screen in Mac’s Xmonad
exec is a shell built-in. If you insists on using it with sudo, you should do something like:
sudo bash -c "exec ...."
But that is pretty much pointless, if you us …
