Re: [Haskell] ANN: Portackage - a hackage portal

2012-04-27 Thread Christoph Breitkopf
Hi Andrew,

this already looks great. So here's my wish-list, in case you have too much
time on yours hands ;-)

On Fri, Apr 27, 2012 at 7:16 AM,  wrote:

> it's probably best if a click on a specific target, say the actual name of
> the package, sends you to the hackage entry instead of a click anywhere on
> the row.  I find myself clicking on the page by accident and it sending me
> off to some random hackage entry.
>

And make the homepage URL into a link - clicking on that address and
finding oneself on hackage is confusing.

Quality/popularity indicators (I'm aware that some of these are real work
and better provided by hackage itself):
- used by how many other packages (number of edges to that package in the
dependency graph of all packages)
- haddock coverage, test coverage, etc.
- like, +1, whatnot button
- link to issue tracker, if there is one

Chris
___
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell


[Haskell] ANNOUNCE: IntervalMap-0.2.0

2012-01-02 Thread Christoph Breitkopf
ANNOUNCE: IntervalMap-0.2.0

An implementation of maps from intervals to values. The key intervals may
overlap, and the implementation supports an efficient stabbing query.

It offers most of the functions in Data.Map, but Interval k instead of just
k as the key type.
In addition, there are functions specific to maps of intervals, for example
to search for all keys containing a given point or contained in a given
interval.

The implementation is a red-black tree augmented with the maximum upper
bound of all keys.

Home page: http://www.chr-breitkopf.de/comp/IntervalMap/
Hackage: http://hackage.haskell.org/package/IntervalMap-0.2.0

This is the first release, and I'm sure that there are many holes to fix.
Please don't hesitate to report even minor quibbles.

Regards,

Chris
___
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell