[Haskell-cafe] When the gauge depends on what it measures

2013-02-14 Thread Alexander Bernauer
Hi, I am currently working on benchmarking the pretty library. Pretty itself has no non-trivial dependencies. But criterion and language-c, which I use to perform the benchmarks, directly and/or indirectly depend on pretty. Everything is configured in one Cabal file via library and benchmark

[Haskell-cafe] package-inplace is shadowed by package package-hexstring

2013-02-04 Thread Alexander Bernauer
I fix this? Greetings, Alex From 913a4510523dac316ace5d35909f65c95e694153 Mon Sep 17 00:00:00 2001 From: Alexander Bernauer a...@copton.net Date: Sat, 2 Feb 2013 21:16:48 +0100 Subject: [PATCH 1/2] hello world setup --- bench/Bench.hs | 14 ++ pretty.cabal | 13 - 2

Re: [Haskell-cafe] ANN: hgdbmi 0.2, GDB Machine Interface

2013-01-23 Thread Alexander Bernauer
On Sat, Jan 19, 2013 at 1:14 PM, Daniel Trstenjak daniel.trsten...@gmail.com wrote: Yes, I still think that having separate modules can be beneficial, also for the ease of reference. I thought of putting all of your modules under the version indicating module. Thank you, Daniel. I will

Re: [Haskell-cafe] ANN: hgdbmi 0.2, GDB Machine Interface

2013-01-18 Thread Alexander Bernauer
Hi Daniel thank you for your feedback. On Fri, Jan 18, 2013 at 11:22 AM, Daniel Trstenjak daniel.trsten...@gmail.com wrote: Looking at the function names: have you got a c programming background? Instead of using these prefixes you could put the functions into separate modules. Although I do

[Haskell-cafe] ANN: hgdbmi 0.2, GDB Machine Interface

2013-01-17 Thread Alexander Bernauer
Hi I am happy to announce the second release of hgdbmi, a Haskell implementation of the GDB Machine Interface. The Machine Interface is a machine-readable variant of the stdin/stdout-based interface of the GNU debugger. With hgdbmi you can control the execution of a GDB instance to drive

Re: [Haskell-cafe] Build regressions due to GHC 7.6

2012-08-30 Thread Alexander Bernauer
Hi I agree that automatic code migration can solve this issue in large parts. The Python folks have done this to mitigate the transition from version 2 to version 3 [1]. On Thu, Aug 30, 2012 at 03:03:05PM +0200, Alexander Kjeldaas wrote: perl -ni -e 'print unless /import Prelude hiding

Re: [Haskell-cafe] strict version of Haskell - does it exist?

2012-01-30 Thread Alexander Bernauer
On Sun, Jan 29, 2012 at 11:25:09PM +0100, Ertugrul Söylemez wrote: First of all, /learning/ to optimize Haskell can be difficult. The optimizing itself is actually fairly easy in my experience, once you understand how the language works. Given the fact that you have obviously mastered the

Re: [Haskell-cafe] Poll: Do you want a mascot?

2011-11-23 Thread Alexander Bernauer
Yes PS: Why not using Doodle for the poll? signature.asc Description: Digital signature ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] A Mascot

2011-11-17 Thread Alexander Bernauer
On Tue, Nov 15, 2011 at 08:18:04PM -0800, John Meacham wrote: People tend to concentrate on the lambda which cooresponds to the functional aspect of haskell when designing logos. Not nearly enough attention is paid to the other striking feature, the laziness. If we want to emphasize the

Re: [Haskell-cafe] Organizing big repository

2011-11-01 Thread Alexander Bernauer
Hi On Thu, Oct 27, 2011 at 08:02:58PM +0300, Konstantin Litvinenko wrote: Having program 'foo' depends on lib 'bar' I want to edit some files in 'bar' than build 'foo' and get 'bar' rebuilt and 'foo' rebuilt/relink. How can I do this? I use cabal-dev [1] along with the react tool [2]. The