Re: [Haskell-cafe] What is the difference between runhaskell and compile?

2012-07-16 Thread Lars Viklund
7;t free. It might be a very good idea to take those off-list. -- Lars Viklund | z...@acc.umu.se ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] In Haskell, because of the fine layers of abstraction that are possible, it pays to hone one's critical thinking skills.

2012-03-17 Thread Lars Viklund
ed and _working_ guidelines (no top posting, replies in-line, body contains all information). -- Lars Viklund | z...@acc.umu.se ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Data import from octave / text file

2011-06-15 Thread Lars Viklund
x27;lines', 'words' and 'read' to split the input into a list of lines, split each line into a list of words, and finally use read to go from word to Double. -- Lars Viklund | z...@acc.umu.se ___ Haskell-Cafe mailing list Hask

Re: [Haskell-cafe] tplot and splot - analyst's swiss army knifes for visualizing log files

2011-01-04 Thread Lars Viklund
cmail to sort into mailboxes with is a few gigs, out of which 1.5 gigabytes is taken up by mailing list archives. Not everyone uses gmail, you know, particularly as their threading support is abysmal. -- Lars Viklund | z...@acc.umu.se ___ Haskell-Cafe ma

Re: [Haskell-cafe] tplot and splot - analyst's swiss army knifes for visualizing log files

2011-01-03 Thread Lars Viklund
n not attaching large files? I'd rather not have a sizeable chunk of my mail store consumed by files I am completely uninterested in. As for storing files online, I'm sure that there's download hosting services that do not require any signing in, like say a

Re: [Haskell-cafe] Character encoding?

2010-12-26 Thread Lars Viklund
On Sun, Dec 26, 2010 at 08:04:41AM -0800, michael rice wrote: > How are characters encoded? A Char is a type that holds a single Unicode codepoint from one of the 17 planes. As a codepoint is just a number without any defined representation, it doesn't have an 'encoding'. --

Re: [Haskell-cafe] Re: Unix emulation

2010-08-23 Thread Lars Viklund
noticed is that you seem to get a git source tree for free when installing, as well as a spurious sdl-config binary. http://code.google.com/p/msysgit/ -- Lars Viklund | z...@acc.umu.se ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.

Re: [Haskell-cafe] Preview the new haddock look and take a short survey

2010-08-09 Thread Lars Viklund
.org/doc/libs/1_43_0/libs/serialization/doc/index.html [2] http://www.open-std.org/jtc1/sc22/open/n2356/ -- Lars Viklund | z...@acc.umu.se ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] whine and solution about programmers not respecting documentations

2010-06-28 Thread Lars Viklund
like launching NetHack. -- Lars Viklund | z...@acc.umu.se ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Re: Installing ghc in an OpenSolaris Zone

2010-05-04 Thread Lars Viklund
ad up about them in the past. -- Lars Viklund | z...@acc.umu.se ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Re: Installing ghc in an OpenSolaris Zone

2010-04-29 Thread Lars Viklund
fix to configure: A Solaris zone is a mechanism similar to FreeBSD jails and (somewhat like) a chroot. It's a separate virtual world, with its own network interfaces, filesystem, etc. [1] http://en.wikipedia.org/wiki/Solaris_Containers -

Re: [Haskell-cafe] problem getting cabal-install to work on CentOS 5.2

2010-04-14 Thread Lars Viklund
g in /tmp. I would suspect that you have SELinux to thank for this. It has a lovely tendency to have lots of fun policies about what can be done where, by who, and on files with particular labels. -- Lars Viklund | z...@acc.umu.se ___ Haskell-Cafe mai

Re: [Haskell-cafe] Re: Cabal dependency hell

2010-03-12 Thread Lars Viklund
On Thu, Mar 11, 2010 at 08:54:15AM -0800, Rogan Creswick wrote: > (c) fix the unpacked version, and increment the version number by > adding a new level of detail (so, 3.1.0 becomes 3.1.0.1). This > version number never leaves my system -- it only exists to keep my > cabal/ghc-pkg consistent! A

Re: [Haskell-cafe] Re: Re[2]: Threading and FFI

2010-02-21 Thread Lars Viklund
On 02/21/2010 09:51 PM, Ben Franksen wrote: Yves Parès wrote: Just one last remark: when I moved all my OpenGL calls from the main thread to an unbound thread. I thought it'd not work -- because I assumed I would have to launch it in a bound thread -- and however it went right... You were just

Re: [Haskell-cafe] Two GET HTTP requests

2010-02-07 Thread Lars Viklund
igned memory accesses. Unlike the x86 which silently and expensively fixes any misaligned accesses, sane processors kick and scream, resulting in a bus error. Such things tend to happen quite often when development of a software mainly takes place on x86 family chips, and are revealed when s

Re: [Haskell-cafe] Re: ANN: bindings-DSL 1.0.4 (Category: FFI)

2010-01-28 Thread Lars Viklund
expect that one would see stdcall used outside inherently native headers like the Windows ones, DirectX, etc. -- Lars Viklund | z...@acc.umu.se ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] ANN: bindings-DSL 1.0.4 (Category: FFI)

2010-01-28 Thread Lars Viklund
issed for now is a #ccall equivalence for "stdcall" functions, I hacked one up myself and called it #stdcall, but it would be nice to have in the package proper if possible. Keep up the good work, -- Lars Viklund | z...@acc.umu.se ___ Hask

Re: [Haskell-cafe] Haskell Platform + gtk2hs

2009-06-29 Thread Lars Viklund
c99c22386af4ac%40mail.gmail.com&forum_name=gtk2hs-devel [2] http://code.haskell.org/~pgavin/gtk2hs-0.10.1/gtk2hs-0.10.1-win32-installer.exe -- Lars Viklund | z...@acc.umu.se | 070-310 47 07 ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.h

Re: [Haskell-cafe] Maybe a, The Rationale

2008-05-10 Thread Lars Viklund
C++, which provides a lovely Maybe-like class template called "optional". [1] http://www.boost.org/doc/libs/1_35_0/libs/optional/doc/html/index.html -- Lars Viklund | [EMAIL PROTECTED] | 070-310 47 07 ___ Haskell-Cafe mailing list Haskell-Caf

Re: [Haskell-cafe] IO () and IO [()]

2008-03-10 Thread Lars Viklund
he way, as a consequence can you possibly get IO (()) or IO ([()]) > and are these all different from each other? Note that there exists mapM_ which discards the return values. mapM_ :: (Monad m) => (a -> m b) -> [a] -> m () -- Lars Viklund | [EMAIL PROTECTED] __

Re: [Haskell-cafe] Starting Haskell with a web application

2008-03-06 Thread Lars Viklund
the rest of WASH, I have no idea since I had no need for it. -- Lars Viklund | [EMAIL PROTECTED] ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe