Re: [Haskell-cafe] ANNOUNCE: io-streams 1.0.0.0

2013-03-06 Thread Alfredo Di Napoli
As I've already said on Reddit, awesome job guys. From the little I've seen the API is very lean and easy, so I'm really looking forward to playing with it and helping you with it as well :) Bye, Alfredo ___ Haskell-Cafe mailing list

[Haskell-cafe] ANNOUNCE: http-streams 0.3.1.0

2013-03-06 Thread Andrew Cowie
Hey, I'd like to announce the initial release of http-streams, an HTTP client library using the Snap Framework's io-streams library to handle the streaming I/O. I blogged about it the background and API design here:

[Haskell-cafe] Country names and language names

2013-03-06 Thread Obscaenvs
Hi! I am working on an app in Yesod that craves I18N. A problem I've come across there is giving correct country and language names based on currently selected language. So far, I've used the Yesod I18N message approach, but a lot of hand coding is involved. The iso3166-country-codes [1] package

[Haskell-cafe] ANNOUNCE: Start Ajhc project with forking jhc.

2013-03-06 Thread Kiwamu Okabe
Hi all. I am a user of jhc Haskell compiler. Jhc can compile Haskell code to micro arch such as Cortex-M3. I have written LED blinking demo for Cortex-M3 with jhc. Very fun! https://github.com/ajhc/demo-cortex-m3 http://www.youtube.com/watch?v=3R9sogReVHg And I created many patches for jhc.

Re: [Haskell-cafe] Country names and language names

2013-03-06 Thread Henk-Jan van Tuyl
On Wed, 06 Mar 2013 12:38:11 +0100, Obscaenvs obscae...@gmail.com wrote: : : The iso3166-country-codes [1] package at Hackage by Jon Fairbairn provides a start in the right direction, but an obvious improvement upon it would be to have a function or map that takes an ISO 639 code and an ISO

[Haskell-cafe] Commercial Users of Functional Programming: Call for tutorials

2013-03-06 Thread Simon Thompson
Commercial Users of Functional Programming Call for tutorials Commercial Users of Functional Programming (CUFP) is an annual meeting co-located with the International Conference on Functional Programming which this year will take place in Boston, MA, USA on 22-24 September 2013. CUFP aims to

Re: [Haskell-cafe] ANNOUNCE: Start Ajhc project with forking jhc.

2013-03-06 Thread Renzo Carbonara
On Wed, Mar 6, 2013 at 9:51 AM, Kiwamu Okabe kiw...@debian.or.jp wrote: Jhc can compile Haskell code to micro arch such as Cortex-M3. I have written LED blinking demo for Cortex-M3 with jhc. This is exciting! I wasn't aware that Jhc targeted such devices. Then, I have decided to fork jhc,

Re: [Haskell-cafe] ANNOUNCE: Start Ajhc project with forking jhc.

2013-03-06 Thread Don Stewart
Very cool! On Mar 6, 2013 12:53 PM, Kiwamu Okabe kiw...@debian.or.jp wrote: Hi all. I am a user of jhc Haskell compiler. Jhc can compile Haskell code to micro arch such as Cortex-M3. I have written LED blinking demo for Cortex-M3 with jhc. Very fun!

Re: [Haskell-cafe] Country names and language names

2013-03-06 Thread Obscaenvs
Thanks for the input -- both items. f Le 2013-03-06 14:20, Henk-Jan van Tuyl a écrit : On Wed, 06 Mar 2013 12:38:11 +0100, Obscaenvs obscae...@gmail.com wrote: : : The iso3166-country-codes [1] package at Hackage by Jon Fairbairn provides a start in the right direction, but an obvious

Re: [Haskell-cafe] Country names and language names

2013-03-06 Thread Henk-Jan van Tuyl
On Wed, 06 Mar 2013 20:53:57 +0100, Obscaenvs obscae...@gmail.com wrote: Thanks for the input -- both items. f Do not forget that country names can change; e.g. the Netherlands Antilles were split up in 2010. This might cause problems if you store country codes in a database. If you simply

Re: [Haskell-cafe] ANNOUNCE: Start Ajhc project with forking jhc.

2013-03-06 Thread John Meacham
What is the cortex m3 board you are experimenting with? looks like it could be a Maple Mini https://www.sparkfun.com/products/11280 ? if so, getting it in 20k of ram is quite impressive :) I only tested against larger ARM processors such as tablets/cell phones. John On Wed, Mar 6, 2013 at

[Haskell-cafe] GSOC application level

2013-03-06 Thread Mateusz Kowalczyk
Greetings, It seems that the Haskell community consistently participates in the Google Summer of Code project. I (and probably many others) am interested in taking part in one of such projects but I have a question in regards to the expertise. I know that this year's projects aren't up yet but by

[Haskell-cafe] Haskell Weekly News: Issue 261

2013-03-06 Thread Daniel Santa Cruz
Welcome to issue 261 of the HWN, an issue covering crowd-sourced bits of information about Haskell from around the web. This issue covers the week of February 24 to March 02, 2013. Quotes of the Week * EvilMachine: I always picture some poor mutant guy whose every body part looks alike

Re: [Haskell-cafe] GSOC application level

2013-03-06 Thread Johan Tibell
Hi Mateusz, On Wed, Mar 6, 2013 at 4:58 PM, Mateusz Kowalczyk fuuze...@fuuzetsu.co.ukwrote: Can someone that has been around for a bit longer comment on what level of experience with Haskell and underlying concepts is usually expected from candidates? Are applications discarded simply based

Re: [Haskell-cafe] ANNOUNCE: Start Ajhc project with forking jhc.

2013-03-06 Thread Kiwamu Okabe
Hi John. On Thu, Mar 7, 2013 at 7:35 AM, John Meacham j...@repetae.net wrote: What is the cortex m3 board you are experimenting with? looks like it could be a Maple Mini https://www.sparkfun.com/products/11280 ? Now I am testing STM32 F3 Discovery.

Re: [Haskell-cafe] GSOC application level

2013-03-06 Thread Chris Smith
Mateusz Kowalczyk fuuze...@fuuzetsu.co.uk wrote: I know that this year's projects aren't up yet Just to clarify, there isn't an official list of projects for you to choose from. The project that you purpose is entirely up to you. There is a list of recommendations at

Re: [Haskell-cafe] Announce: Leksah 0.13.2.0 (still a bit experimental)

2013-03-06 Thread Hamish Mackenzie
I am not able to reproduce this on my Ubuntu 12.10 VM. What version of GHC are you using? Do you have anything in your ~/.ghci file? What command are you running? Does putStrLn Hello World work? What is the active .cabal project? The GHCi interface is sensitive to changes in the way GHCi formats

Re: [Haskell-cafe] Country names and language names

2013-03-06 Thread Henk-Jan van Tuyl
On Wed, 06 Mar 2013 23:26:01 +0100, Henk-Jan van Tuyl hjgt...@chello.nl wrote: someone lives, from a menu. Something like this: map isCurrentlyExisting listOfAllCountriesThatEverExisted That should be filter isCurrentlyExisting listOfAllCountriesThatEverExisted of course. Regards,