|
ghc socket weirdness
|
| |
FreeBSD/7.0 amd64: GHCi, version 6.8.2: [link] :? for help Loading package base ... linking ... done. Prelude> :module +Network Prelude Network> listenOn $ PortNumber 8765 Loading package parsec-2.1.0.0 ... linking ... done. Loading package network-2.1.0.0 ... linking ... done.... more »
|
|
[Off-topic] Loss of humour
|
| |
...Are you perhaps thinking of the "Quotes of the Week" section in the Haskell Weekly News? Back issues seem to be at [link] if you want to check. -johnnnnnn ______________________________ _________________ Haskell-Cafe mailing list Haskell-C...@haskell.org [link]... more »
|
|
Haskell Weekly News: Issue 78 - July 23, 2008
|
| |
------------------------------ ------------------------------ --------------- Haskell Weekly News [link] Issue 78 - July 23, 2008 ------------------------------ ------------------------------ --------------- Welcome to issue 78 of HWN, a newsletter covering developments in the... more »
|
|
Literate program implementing text editor
|
| |
Hi all, I wanted to embark on a Haskell program that implements a simple text editor. Before doing so, however, I thought that I should ask: Does anyone know of a literate Haskell program already in existence that does the job? Eric M. ______________________________ _________________ Haskell-Cafe mailing list... more »
|
|
InterleavableIO
|
| |
Hello, I've done a package based on the Jules Bean's e-mail [1] to Haskell-Café, with a more generalized implementation. In the original version, you could use InterleavableIO with StateT Int IO (), but not with StateT Int (ReaderT Char IO) (). In this version, this is possible. The package, interleavableIO, is available at [2]. I've also... more »
|
|
More fun with micro-benchmarks and optimizations. (GHC vs Perl)
|
| |
I have the need to regularly write tiny programs that analyze output logs. The output logs don't have a consistent formatting so I typically choose Perl for these tasks. The latest instance of having to write such a program was simple enough I figured I'd try my hand at using Haskell instead. The short... more »
|
|
ANN: Hayoo! beta 0.2
|
| |
Hello, we are pleased to announce the second beta release of Hayoo!, a Haskell API search engine providing advanced features like suggestions, find-as-you-type, fuzzy queries and much more. Visit Hayoo! here: [link] The major change is the inclusion of all packages available on Hackage, i.e.... more »
|
|
ANN: list-extras 0.1.0
|
| |
hello all~ I'm pleased to announce the initial version of list-extras, a home for common not-so-common list functions. There are many simple but non-trivial functions for lists which Data.List lacks. Typically we write a version and include it in a larger project or store it in a local source tree for personal jobs. But... more »
|
|
BLAS Solve Example
|
| |
I'm stuck on something that I thought would be easy. I have a matrix and a vector. ...Can I use one of the haskell libraries to solve that system? My goal is to automate some tedium on small exercises from the Linear Algebra text by Jim Heffron.
|
|
|