[Haskell-cafe] Re: Shooting your self in the foot with Haskell

2008-10-02 Thread Joe Buehler
Arnar Birgisson wrote: > So it is a Heisenberg-bullet? I'm uncertain. -- Joe Buehler ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Re: haskell blas bindings: does iomatrix gemv transposing of matrix a?

2008-09-26 Thread Joe Buehler
Anatoly Yakovenko wrote: e = exp 1.0 sigmoid xx = 1.0 / (1 + (e ** (1.0 * xx))) That 1.0 * xx caught my eye. In case this was an oversight on your part: if you mean the usual sigmoid function, that should be 1.0 / (1 + (e ** (0.0 - x))). -- Joe Buehler

[Haskell-cafe] Re: Haskell on ARM (was Re: ANN: Topkata)

2008-07-22 Thread Joe Buehler
nslate the code generator for another processor into PA-RISC. -- Joe Buehler ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Re: I/O system brokenness with named pipes

2008-04-15 Thread Joe Buehler
John Goerzen wrote: So I have a need to write data to a POSIX named pipe (aka FIFO). Long story involving a command that doesn't have an option to read data from stdin, but can from a named pipe. How about /dev/stdin? -- Joe Buehler ___ Ha

[Haskell-cafe] Re: Code folding in Emacs

2008-01-14 Thread Joe Buehler
ode or perhaps the emacs manual. Joe Buehler ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

[Haskell-cafe] Re: How to do this in Haskell

2007-11-12 Thread Joe Buehler
ed instead in a Gtk2Hs application. A not-so-well-known feature of X11 is reparenting of windows. You should be able to take any X11 app and have it display in a window of your choice inside your app. So pick an HTML editor and integrate it into your app that

[Haskell-cafe] Re: Diagnosing stack overflow

2007-08-17 Thread Joe Buehler
untime do partial evaluation to keep the thunk size down or would that cause semantic breakage? Joe Buehler ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe