Re: [Haskell-cafe] good lightweight web-framework like sinatra?

2012-03-23 Thread Mark Wotton
On Fri, Mar 23, 2012 at 10:37 AM, Conrad Parker con...@metadecks.orgwrote: On 23 March 2012 04:55, Mark Wotton mwot...@gmail.com wrote: Try Miku. https://github.com/nfjinjing/miku some oddnesses around redefining (-) (I guess Jinjing Wang doesn't like the way $ looks?) but you don't

Re: [Haskell-cafe] good lightweight web-framework like sinatra?

2012-03-22 Thread Mark Wotton
Try Miku. https://github.com/nfjinjing/miku some oddnesses around redefining (-) (I guess Jinjing Wang doesn't like the way $ looks?) but you don't need to import the Air.Light stuff. Otherwise more or less a straight port of sinatra, and you can run it on heroku... mark On Wed, Mar 21, 2012

Re: [Haskell-cafe] community server hasktags learned recursing into directories

2011-02-06 Thread Mark Wotton
On Sat, Feb 5, 2011 at 6:43 AM, Ivan Lazar Miljenovic ivan.miljeno...@gmail.com wrote: On 5 February 2011 10:14, Luke Palmer lrpal...@gmail.com wrote: I host all my modules on github.  It is a very supportive environment for spontaneous collaborative development.  c.h.o is a nice place, but

Re: [Haskell-cafe] ANNOUNCE: haskell-src-meta 0.1.0

2010-08-18 Thread Mark Wotton
Nice work, Ben - good to see someone's going to take it on in a slightly less half-arsed way than I was :) cheers mark On Thu, Aug 19, 2010 at 12:43 PM, Ben Millwood hask...@benmachine.co.uk wrote: Hello cafe, The haskell-src-meta package was originally written by Matt Morrow, to provide a

Re: [Haskell-cafe] Re: Handling absent maintainers

2010-08-04 Thread Mark Wotton
On Wed, Aug 4, 2010 at 1:36 AM, Ben Millwood hask...@benmachine.co.uk wrote: On Sun, Jul 18, 2010 at 3:02 AM, Mark Wotton mwot...@gmail.com wrote: I've uploaded haskell-src-meta-mwotton, using the development version. It seems to work fine for my applications. It's a bit of a hack, but I

Re: [Haskell-cafe] Re: Handling absent maintainers

2010-08-04 Thread Mark Wotton
On Thu, Aug 5, 2010 at 1:29 PM, Ivan Lazar Miljenovic ivan.miljeno...@gmail.com wrote: On 5 August 2010 13:23, Mark Wotton mwot...@gmail.com wrote: Might it be possible to enable multiple maintainers on packages, each of whom can upload new versions? As far as I can tell, that's not currently

Re: [Haskell-cafe] Handling absent maintainers

2010-07-24 Thread Mark Wotton
a precedence over the Hackage. On 16.07.10 03:54, Mark Wotton wrote: 2. run my own hackage server and tell my users to use that instead. -- Best regards,  Roman Beslik. -- A UNIX signature isn't a return address, it's the ASCII equivalent of a black velvet clown painting. It's a rectangle

Re: [Haskell-cafe] build and use ghc's rts without a full unregistered ghc port?

2010-07-24 Thread Mark Wotton
can't speak as to how difficult it is to get GHC built unregisterised, but you might want to consider JHC if you don't need to use a lot of Hackage. It compiles to C without a special RTS needed, which might make it a lot easier. mark On Sat, Jul 24, 2010 at 8:45 PM, Korcan Hussein

Re: [Haskell-cafe] cabal, Setup.lhs example

2010-07-22 Thread Mark Wotton
On Fri, Jul 23, 2010 at 12:33 PM, wren ng thornton w...@freegeek.org wrote: Magnus Therning wrote: On Thu, Jul 22, 2010 at 11:52, Ross Paterson r...@soi.city.ac.uk wrote: On Thu, Jul 22, 2010 at 11:31:21AM +0100, Magnus Therning wrote: On Thu, Jul 22, 2010 at 10:59, Ross Paterson

[Haskell-cafe] Re: Handling absent maintainers

2010-07-17 Thread Mark Wotton
On Fri, Jul 16, 2010 at 10:54 AM, Mark Wotton mwot...@gmail.com wrote: Hello all, I've recently had problems with haskell-src-meta. While it's a great package, it doesn't currently compile on GHC 6.12, and Matt Morrow doesn't seem to be around to push the version that does to Hackage. Our

[Haskell-cafe] Handling absent maintainers

2010-07-15 Thread Mark Wotton
Hello all, I've recently had problems with haskell-src-meta. While it's a great package, it doesn't currently compile on GHC 6.12, and Matt Morrow doesn't seem to be around to push the version that does to Hackage. Our one-world approach with cabal seems to discourage forking as a casual act, so

Re: [Haskell-cafe] Handling absent maintainers

2010-07-15 Thread Mark Wotton
On Fri, Jul 16, 2010 at 11:49 AM, Jason Dagit da...@codersbase.com wrote: On Thu, Jul 15, 2010 at 5:54 PM, Mark Wotton mwot...@gmail.com wrote: Ideally, I'd like to be able to say something like cabal install my-hacked-package --as original-package - are there fundamental reasons

Re: [Haskell-cafe] Proposal: Australian Hackathon

2010-03-16 Thread Mark Wotton
Chart working; Alex Mason is interested in this) * Various graph-related project (graphviz, generic graph class, etc.; this assumes someone else apart from me cares about this stuff) * Hubris if Mark Wotton comes along I'm keen. Would be be elated to have some help on Hubris, but happy to hack

[Haskell-cafe] compiler management for Haskell a la RVM?

2010-03-16 Thread Mark Wotton
RVM (at http://rvm.beginrescueend.com) is a rather nice tool for managing multiple ruby installations - it gives support for switching between ruby environments (similar to gcc_select and friends), and also exporting lists of packages so that you can easily bring up a given set of gems in

Re: [Haskell-cafe] Compiling a shared library on MacOS X

2010-01-04 Thread Mark Wotton
There's a patch for it in GHC HEAD by Stephen Blackheath and me, and an accompanying patch for Cabal. http://hackage.haskell.org/trac/ghc/ticket/3550 http://hackage.haskell.org/trac/hackage/ticket/591 has the details. mark On Mon, Jan 4, 2010 at 10:36 AM, Ivan Miljenovic

Re: [Haskell-cafe] Re: Libraries for Commercial Users

2009-10-11 Thread Mark Wotton
On 11/10/2009, at 8:11 AM, Don Stewart wrote: brad.larsen: With this hypothetical ``import foreign jvm'' mechanism, what would the be type of imported Java stuff? Would it all be done in IO? The more I think about it, the trickier it seems. Beside the purity mismatch of Haskell and Java,

[Haskell-cafe] killer app sought

2009-10-03 Thread Mark Wotton
Hi, I've been writing a little binding from Ruby to Haskell called Hubris (http://github.com/mwotton/Hubris ) which I think has some potential both for making Haskell web apps easier to write, and also for bringing the more adventurous Ruby programmers into the Haskell community. Code-wise

Re: [Haskell-cafe] killer app sought

2009-10-03 Thread Mark Wotton
On 04/10/2009, at 4:22 PM, James Britt wrote: Mark Wotton wrote: So, I'm asking you guys. What are some really nice Haskell libraries or apps that could benefit from being shown off in one of the plethora of slick, mature web frameworks that exist in Ruby? Manuel Chakravarty

Re: [Haskell-cafe] Cal, Clojure, Groovy, Haskell, OCaml, etc.

2009-09-28 Thread Mark Wotton
If there's an Example section, it might actually be a good idea to include it on the package's hackage page, too. From a usability point of view, CPAN is much more helpful than the relatively spartan hackage description - if you're looking for a particular set of functionality, being able to

Re: [Haskell-cafe] Do I have this right? Remembering Memoization!

2009-09-13 Thread Mark Wotton
On 14/09/2009, at 9:28 AM, Casey Hawthorne wrote: Do I have this right? Remembering Memoization! For some applications, a lot of state does not to be saved, since initialization functions can be called early, and these functions will remember - (memoize) their results when called again,

Re: [Haskell-cafe] Can GHC produce dylib on MacOSX/Intel?

2009-09-02 Thread Mark Wotton
On 02/09/2009, at 8:09 PM, Pavel Perikov wrote: Is it possible? Is it possible with binary distribution? My understanding: It was possible with ghc 6.8. It's not with 6.10. Duncan's managed to get it going at some point on Linux (I assume) with GHC HEAD

Re: [Haskell-cafe] Slow IO?

2009-09-01 Thread Mark Wotton
On 02/09/2009, at 2:26 PM, Eugene Kirpichov wrote: I've got a Centrino Duo 2000 (I'm on a notebook), Ubuntu 9.04 and ghc 6.10.2. However, we have not set up on what exact input file we're using :) I'm using one where it is written 1000 3 and then 1000 lines of 9 follow.

Re: [Haskell-cafe] Examples

2009-08-09 Thread Mark Wotton
On 10/08/2009, at 9:29 AM, John D. Ramsdell wrote: Usually I include the example program in the package, but make its compilation conditional using a Cabal flag like buildExamples. But then the binaries generated from the example program get installed. I think the poster wants to share the

Re: [Haskell-cafe] haskell embedded

2009-08-08 Thread Mark Wotton
On 09/08/2009, at 11:24 AM, Kevin Smith wrote: Hello, Could someone point me in the the direction of any references for using Haskell as an embedded language in an application. Xmonad seems to come to mind because the configuration files are written using Haskell. Any other information

Re: [Haskell-cafe] A typeclass for Data.Map etc?

2009-02-19 Thread Mark Wotton
On Thu, Feb 19, 2009 at 9:51 PM, Eugene Kirpichov ekirpic...@gmail.com wrote: Greetings, Is there a typeclass for mappings with a Data.Map-like interface, with stuff like: empty, insert, insertWithKey, unionWith etc. ? And, probably, a similar typeclass for mutable mappings like

Re: [Haskell-cafe] Can this be done?

2009-02-11 Thread Mark Wotton
On Thu, Feb 12, 2009 at 12:41 AM, Cristiano Paris cristiano.pa...@gmail.com wrote: On Wed, Feb 11, 2009 at 2:30 PM, Peter Verswyvelen bugf...@gmail.com wrote: I haven't looked at the details, but I think this is what a library like Reactive from Conal Elliott could do, but as far as I

Haskell problem

2002-02-20 Thread Mark Wotton
Hi, I'm trying out some combinatorial parsers, and I ran into a slightly inelegant construction. To parse a sequence of things, we have a function like pThen3 :: (a-b-c-d) - Parser a - Parser b - Parser c - Parser d pThen3 combine p1 p2 p3 toks = [(combine v1 v2 v3, toks3) | (v1,