Re: [Haskell-cafe] 7th Ghent Functional Programming Group meeting on Tuesday, April 26

2011-04-02 Thread oliver mueller
sounds like an interesting program... you should think about making the talks available later for those who can not attend. br, oliver On Apr 1, 7:20 pm, Jasper Van der Jeugt jasper...@gmail.com wrote: Dear all, We are very glad to announce an exciting program for the 7th meeting of the Ghent

Re: [Haskell-cafe] DSL for task dependencies

2011-03-31 Thread oliver mueller
thanks for pointing out the openshake implementation. when i remember correctly neil mitchell mentioned s.th. at the haskell implementors workshop about making shake available sometimes later. it's a bit sad to see that shake is completely off the table since it really looked good. after all...a

Re: [Haskell-cafe] CURL and upload a file

2011-03-30 Thread oliver mueller
i had a very similar problem recently. thanks for posting the curl- based solution. if you are interested in a haskell-only version (at least without curl), check out https://github.com/marcmo/andSync/blob/master/test/Upload.hs the most of the code came from cabal since they have code to upload

Re: [Haskell-cafe] threading question for ghc 7.0.2

2011-03-25 Thread oliver mueller
out the correct approach that is portable (Mac/Linux/Windows) since i need to deploy to all those platforms. oliver On Mar 24, 11:19 am, Gregory Collins g...@gregorycollins.net wrote: On Thu, Mar 24, 2011 at 9:53 AM, oliver mueller oliver.muel...@gmail.com wrote: if anybody knows of a better

Re: [Haskell-cafe] threading question for ghc 7.0.2

2011-03-24 Thread oliver mueller
trying to solve. and strange to me that my initial solution seemed to be working just fine on ghc 6.x.x. if anybody knows of a better way please let me know! code is again at https://gist.github.com/882770 (including the little 'yield' in line 74) cheers, oliver On Mar 23, 11:47 am, Oliver Mueller

[Haskell-cafe] threading question for ghc 7.0.2

2011-03-23 Thread Oliver Mueller
hello, i'm a bit lost here so i hope s.o. can help me here: seems i have a problem in my code when compiled with ghc-7.0.2: what i try to do: serverside: -listen on a socket and reply to requests client-side: -send a request to that server -wait for a response (with a timeout) any ideas on how i