Re: roll call of production use?

2009-11-23 Thread David Brown
On Mon, Nov 23, 2009 at 03:00:16PM -0800, Raoul Duke wrote: >i'd be interested to hear who has successfully used clojure in >production. i know of some, as some folks have been vocal; any other >interesting-but-so-far-silent uses people'd be willing to fess up >about? I've thrown together a small

Re: roll call of production use?

2009-11-23 Thread Wojciech Kaczmarek
On Tue, Nov 24, 2009 at 00:00, Raoul Duke wrote: > hi, > > i'd be interested to hear who has successfully used clojure in > production. i know of some, as some folks have been vocal; any other > interesting-but-so-far-silent uses people'd be willing to fess up > about? > > many thanks. I use Cloj

Re: roll call of production use?

2009-11-23 Thread Phlex
> i'd be interested to hear who has successfully used clojure in > production. Hello, 1- We have this license server, used to control the use of a professional software (this one written using delphi). This was tested with thousands of simutaneous connections, and has been working with no hicc

Re: roll call of production use?

2009-11-23 Thread John Harrop
On Mon, Nov 23, 2009 at 8:35 PM, Phlex wrote: > > > i'd be interested to hear who has successfully used clojure in > > production. > > Hello, > > 1- We have this license server, used to control the use of a > professional software (this one written using delphi). What are the ethics of using an

Re: roll call of production use?

2009-11-23 Thread Richard Newman
> 1- We have this license server, used to control the use of a > professional software (this one written using delphi). > > What are the ethics of using an open source product like Clojure to > implement DRM restrictions for some other product? Seems there might > be something a bit iffy there

Re: roll call of production use?

2009-11-23 Thread Phlex
> 1- We have this license server, used to control the use of a > professional software (this one written using delphi). > > > What are the ethics of using an open source product like Clojure to > implement DRM restrictions for some other product? Seems there might > be something a bit if

Re: roll call of production use?

2009-11-23 Thread mbrodersen
I use an internal DSL (Domain Specific Language) in Clojure to generate C++ and C# code. Cheers Morten On Nov 24, 10:00 am, Raoul Duke wrote: > hi, > > i'd be interested to hear who has successfully used clojure in > production. i know of some, as some folks have been vocal; any other > interes

Re: roll call of production use?

2009-11-23 Thread John Harrop
On Mon, Nov 23, 2009 at 9:47 PM, Richard Newman wrote: > 1- We have this license server, used to control the use of a >> professional software (this one written using delphi). > > > What are the ethics of using an open source product like Clojure to > implement DRM restrictions for some other pro

Re: roll call of production use?

2009-11-24 Thread Robert Campbell
I've deployed two small mashup apps which combine OpenCalais and our content repository to annotate documents with metadata (named entities, relationships, etc) and expose the results over the web. Good experiences all around, including with the clojure-http-client and saxon wrapper libs + Compojur

Re: roll call of production use?

2009-11-24 Thread Jay Fields
DRW (http://drw.com) uses Clojure for several production applications. Cheers, Jay On 23 Nov, 17:00, Raoul Duke wrote: > hi, > > i'd be interested to hear who has successfully used clojure in > production. i know of some, as some folks have been vocal; any other > interesting-but-so-far-silent u

Re: roll call of production use?

2009-11-24 Thread Meikel Brandmeyer
Hi, On Nov 24, 6:06 am, John Harrop wrote: > Oh, I have no problem with making money by using open source software, when > it's done in the manner that companies like Red Hat do it. It's the use to > lock down some piece of proprietary software even more than it already is > that seems, at the v

Re: roll call of production use?

2009-11-24 Thread John Harrop
On Tue, Nov 24, 2009 at 1:04 AM, Meikel Brandmeyer wrote: > Hi, > > On Nov 24, 6:06 am, John Harrop wrote: > > > Oh, I have no problem with making money by using open source software, > when > > it's done in the manner that companies like Red Hat do it. It's the use > to > > lock down some piece

Re: roll call of production use?

2009-11-24 Thread Rich Hickey
On Nov 23, 9:47 pm, Richard Newman wrote: > Anyway, apologies for possibly starting a "closed-source is evil"   > debate. Let's hope it fizzles. Yes, please, let's end this here. Any further non-Clojure content on this thread might be moderated. Thanks, Rich -- You received this message be

Re: roll call of production use?

2009-11-24 Thread RandyHudson
On Nov 24, 11:30 am, John Harrop wrote: > There's a Clojure or a Java library for generating pdf? Apache FOP is an XSL-FO processor than can generate PDF documents. I've heard good things about iText, a Java library for generating or modifying PDF docs. -- You received this message because y

Re: roll call of production use?

2009-11-24 Thread Meikel Brandmeyer
Hi, Am 24.11.2009 um 17:30 schrieb John Harrop: There's a Clojure or a Java library for generating pdf? I use enlive to generate a HTML version with CSS of the report. This is turned by virtue of flying saucer and iText into PDF. At least that is the plan. Whether it will work satisfactor

Re: roll call of production use?

2009-11-24 Thread Anniepoo
At my workplace (University of Houston, dept. of Health and Human Performance) Clojure is our primary language for interacting with our virtual world presence in Second Life. We have an automated lesson path building system currently in production, and several other projects in various states. aut

Re: roll call of production use?

2009-11-24 Thread Adrian Cuthbertson
For a data analysis/reporting application, I use colt for some matrix processing, joda time for period calculations, jfreechart to generate charts, an adaptation clj-html to create some dynamic html, also now some StringTemplate templates to bring in and manipulate static content and finally all th

Re: roll call of production use?

2009-11-24 Thread eyeris
I used clojure to write an application that interpolates SQL results (from clojureql) into Excel spreadsheets (using Java interop to Apache's POI lib). I have a two users putting this to use for their project progress reporting. On Nov 23, 5:00 pm, Raoul Duke wrote: > hi, > > i'd be interested t

Re: roll call of production use?

2009-11-24 Thread Daniel Simms
-- Daniel Simms On Nov 24, 2009, at 22:23, Adrian Cuthbertson wrote: > The other spin-off of this is that using the repl, one is able to > really explore the api's of these big libraries dynamically and get to > know them much more intimately than when doing static compilation/run > cycles as

Re: roll call of production use?

2009-11-25 Thread Stefan Kamphausen
Hi, we replaced a command line interface for an internal, mission-critical application with a custom Clojure-REPL. It is used for administrative tasks as well as testing. Cheers, Stefan -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to thi

Re: roll call of production use?

2009-11-27 Thread John Harrop
We're maintaining a large database of tagged images and had a need to perform "fuzzy search" of the database. The existing search tool takes exact queries only. So it was necessary to hack up a little tool to sit between the query source and the engine and transform the query into a "fuzzy query".

Re: roll call of production use?

2009-11-29 Thread Joel Westerberg
I have written a production web app with compojure. It was a very nice experience. First project I have pulled of totally TDD and the functional aspect of clojure really makes tests so much easier and more truthful, although there sometimes seems to sneak in some exceptions I didn't expect from the

Re: roll call of production use?

2009-11-30 Thread prhlava
Hello, > i'd be interested to hear who has successfully used clojure in > production. i know of some, as some folks have been vocal; any other > interesting-but-so-far-silent uses people'd be willing to fess up > about? I have done a smallish project (mainly to stop my friend doing some monkey w

Re: roll call of production use?

2009-12-01 Thread Jamie
On Nov 23, 5:00 pm, Raoul Duke wrote: > i'd be interested to hear who has successfully used clojure in > production. i know of some, as some folks have been vocal; any other > interesting-but-so-far-silent uses people'd be willing to fess up > about? Our real-world use reported here: http://

Re: roll call of production use?

2009-12-01 Thread Luc Préfontaine
> On Nov 23, 5:00 pm, Raoul Duke wrote: > > > i'd be interested to hear who has successfully used clojure in > > production. i know of some, as some folks have been vocal; any other > > interesting-but-so-far-silent uses people'd be willing to fess up > > about? > > Our real-world use reporte

Re: roll call of production use?

2009-12-01 Thread Luc Préfontaine
> On Nov 23, 5:00 pm, Raoul Duke wrote: > > > i'd be interested to hear who has successfully used clojure in > > production. i know of some, as some folks have been vocal; any other > > interesting-but-so-far-silent uses people'd be willing to fess up > > about? http://www.infoq.com/news/2009/0

Re: roll call of production use?

2009-12-01 Thread Daniel Werner
On Dec 1, 5:20 pm, Luc Préfontaine wrote: > http://www.infoq.com/news/2009/01/clojure_production Slightly off-topic: What prompted you to choose ActiveMQ over other popular message bus systems like RabbitMQ? Was it the ease of operability with Clojure/ Java, or are there other strong factors? -

Re: roll call of production use?

2009-12-01 Thread Luc Préfontaine
We picked one that met our minimal requirements... our prototype was in Java however and that probably biased the choice a bit. But for us it's an intermediate step. We need a more flexible solution. We will keep ActiveMQ in the picture to link different clusters (or an alternative) but for intra