[Haskell-cafe] Need advice: Haskell in Web Client

2012-01-30 Thread dokondr
**Bardur Arantsson wrote: >On 01/26/2012 11:16 AM, dokondr wrote: >> Ideally, I would be happy to be able to write in Haskell a complete >> front-end / GUI, so it could be compiled to different back-ends: Javascript >> to run in the Browser and also a standalone app. >> In Python world this is alre

Re: [Haskell-cafe] Need advice: Haskell in Web Client

2012-01-26 Thread Bardur Arantsson
On 01/26/2012 11:16 AM, dokondr wrote: On Thu, Jan 19, 2012 at 1:37 AM, Dag Odenhallwrote: On Tue, 2012-01-17 at 22:05 +0300, dokondr wrote: I prefer using Turing complete PL to program web client, like the one used in GWT (Java) or Cappuccino (Objective-J). http://cappuccino.org/learn/ I

Re: [Haskell-cafe] Need advice: Haskell in Web Client

2012-01-26 Thread dokondr
On Thu, Jan 19, 2012 at 1:37 AM, Dag Odenhall wrote: > > On Tue, 2012-01-17 at 22:05 +0300, dokondr wrote: > > > > I prefer using Turing complete PL to program web client, like the one > used > > in GWT (Java) or Cappuccino (Objective-J). http://cappuccino.org/learn/ > > In this case you /almost/

Re: [Haskell-cafe] Need advice: Haskell in Web Client

2012-01-18 Thread Dag Odenhall
On Tue, 2012-01-17 at 22:05 +0300, dokondr wrote: > On Tue, Jan 17, 2012 at 6:42 PM, John Lenz wrote: > > > > > HTML5 Canvas is great for charts. If you go this route you might as well > > use a library which draws charts for you instead of writing all this code > > yourself. > > > > Personally,

Re: [Haskell-cafe] Need advice: Haskell in Web Client

2012-01-18 Thread Johannes Waldmann
dokondr gmail.com> writes: > It would be great if I could write Web client code in pure Haskell [...] not exactly Haskell, but you may want to have a look at OPA http://opalang.org/ the idea is that you write all of the application in one (statically typed, functional) language and the framew

Re: [Haskell-cafe] Need advice: Haskell in Web Client

2012-01-18 Thread dokondr
On Wed, Jan 18, 2012 at 10:47 AM, John Lenz wrote: > > > I don't see a great need of developing something like GWT for haskell, > since we already have good support for all sorts of existing tools that > span more than just haskell, like extjs, yui, and jqueryui. > Haskell makes my work doable i

Re: [Haskell-cafe] Need advice: Haskell in Web Client

2012-01-17 Thread dokondr
On Tue, Jan 17, 2012 at 6:42 PM, John Lenz wrote: > > HTML5 Canvas is great for charts. If you go this route you might as well > use a library which draws charts for you instead of writing all this code > yourself. > > Personally, I use extjs version 4 which has some amazing charts, but there >

Re: [Haskell-cafe] Need advice: Haskell in Web Client

2012-01-17 Thread Rogan Creswick
On Tue, Jan 17, 2012 at 3:07 AM, C K Kashyap wrote: > > Perhaps HTML5's canvas element would meet your requirement. There a few JS > chart implementation for HTML5 floating on the internet. The Google Charting API *might* be sufficient: http://code.google.com/apis/chart/ --Rogan > Regards, > K

Re: [Haskell-cafe] Need advice: Haskell in Web Client

2012-01-17 Thread C K Kashyap
On Tue, Jan 17, 2012 at 4:19 PM, dokondr wrote: > Hi all, > I hope to use Haskell for graphics (charts) programming in Web client. > > My current implementation in brief: > Server side, Haskell modules: > 1) collecting various statistics from Twitter > 2) generating text data for Gnuplot (http://

[Haskell-cafe] Need advice: Haskell in Web Client

2012-01-17 Thread dokondr
Hi all, I hope to use Haskell for graphics (charts) programming in Web client. My current implementation in brief: Server side, Haskell modules: 1) collecting various statistics from Twitter 2) generating text data for Gnuplot (http://www.gnuplot.info/) 3) Gnuplot creates png files with charts We