Re: Suggestion needed for namespace management in modular clojure app

2011-10-10 Thread Vivek Khurana
On Sun, Oct 9, 2011 at 8:48 AM, Stephen Compall stephen.comp...@gmail.com wrote: On Fri, 2011-10-07 at 19:07 +0530, Vivek Khurana wrote: I would prefer to have a modules directory where each module will create a sub directory and all files in the module sub directory expose a single namespace

Suggestion needed for namespace management in modular clojure app

2011-10-07 Thread Vivek Khurana
Hi! I am working on a clojure app which needs to be modular. The module need to be pluggable. While I have figure out the pluggable part, I am facing issues with managing namespaces. I would prefer to have a modules directory where each module will create a sub directory and all files in the

error on compile

2011-10-07 Thread Vivek Khurana
Hi! When I try to compile a class from repl I am getting following error user= (compile 'xyz.modules.accounts.accounts) java.lang.ClassNotFoundException: clojure.contrib.json.Read_JSON_From (json.clj:167) I have tried searching the docs but I cant find clojure.contrib.json.Read_JSON_From

Re: The Last Programming Language

2011-07-20 Thread Vivek Khurana
On Wed, Jul 20, 2011 at 7:52 PM, daly d...@axiom-developer.org wrote: snip A justification of homoiconicisty is that programs == data. A clever soul named Von Neumann made the observation that machines were controlled by external commands (i.e. programs) to operate on things (i.e. data).

Re: following Rich's talk at NYC Clojure this Wednesday

2011-07-18 Thread Vivek Khurana
On Mon, Jul 18, 2011 at 9:28 PM, Stuart Halloway stuart.hallo...@gmail.com wrote: Several people have asked about access to Rich's upcoming talk this Wednesday night [1]. In order to make information available for those who are not present in NYC, we are planning to do the following: Please

Re: Anyone on Google+ yet?

2011-07-14 Thread Vivek Khurana
On Thu, Jul 14, 2011 at 10:42 PM, Claudia Doppioslash claudia.doppiosl...@gmail.com wrote: My Clojure circle is all set up but empty. My g+ is: http://gplus.to/gattoclaudia Please add link to your profile below. gplus.to/vivekk regards Vivek -- The hidden harmony is better than the

Re: Vagrant setup [was Re: Please stand firm against Steve Yegge's yes language push]

2011-07-09 Thread Vivek Khurana
On Fri, Jul 8, 2011 at 10:28 PM, Lee Spector lspec...@hampshire.edu wrote: On Jul 8, 2011, at 12:38 PM, Vivek Khurana wrote: That is still not as easy as python. Running VM is a bigger overhead... There are different kinds of overhead. If the installation and setup of the VM is simple

Re: Recommendation for Clojure Enterprise Development toolkit

2011-07-09 Thread Vivek Khurana
On Sat, Jul 9, 2011 at 1:59 PM, MarkH markhanif...@gmail.com wrote: As a tech lead or architect you should be fired for even suggesting to use Clojure as an enterprise greenfield.   Industry and academia is moving towards advanced type systems.  Nobody in industry seriously considers Clojure

Re: Recommendation for Clojure Enterprise Development toolkit

2011-07-09 Thread Vivek Khurana
On Sun, Jul 10, 2011 at 9:06 AM, Luc Prefontaine lprefonta...@softaddicts.ca wrote: Maybe we should create something better than SAP :) Not exactly better than SAP, but I am working on a business management framework based on clojure. regards Vivek -- The hidden harmony is better than the

Re: Please stand firm against Steve Yegge's yes language push

2011-07-08 Thread Vivek Khurana
On Fri, Jul 8, 2011 at 9:47 PM, Phil Hagelberg p...@hagelb.org wrote: Have you tried the Vagrant approach? It's a one-button Emacs/Clojure/Leiningen hacking VM setup[1]: https://github.com/Seajure/emacs-clojure-vagrant -Phil [1] - provided you have virtualbox. That is still not as easy

Re: Russ olsen's Clojure Book

2011-06-30 Thread Vivek Khurana
On Thu, Jun 30, 2011 at 12:10 PM, Sean Corfield seancorfi...@gmail.com wrote: On Wed, Jun 29, 2011 at 9:07 PM, Vivek Khurana hiddenharm...@gmail.com wrote:  Many of the design patterns as presented by Gang of Four and Martin Fowler are strictly OO based are suitable for only for OO based

Re: Russ olsen's Clojure Book

2011-06-29 Thread Vivek Khurana
On Thu, Jun 30, 2011 at 8:39 AM, flebber flebber.c...@gmail.com wrote: Just wanted to put a shout out to Russ Olsen to see what would be needed to get a Russ Olsen book on clojure to happen. I am reading design principles in Ruby and its a great read, I feel I am learning much moe than just

Callback functions

2011-05-23 Thread Vivek Khurana
Hi! I am building an application with menu callbacks. Based on the url request the application has to call a function. The function name and namespace is available as strings from database. The issue I am facing is, when I try to call the function using ns-resolve, I get an error saying No

Re: Callback functions

2011-05-23 Thread Vivek Khurana
On Mon, May 23, 2011 at 1:06 PM, Meikel Brandmeyer m...@kotka.de wrote: Hi, works for me. Did you call (require (symbol ns-name)) before the resolve call? Thanks I was using (:use) which was not working. regards Vivek -- The hidden harmony is better than the obvious!! -- You received

Re: Clojure ideas repository / todo list

2011-05-14 Thread Vivek Khurana
On Sun, May 15, 2011 at 2:47 AM, Islon Scherer islonsche...@gmail.com wrote: Is there anyplace people post ideas of libraries/frameworks/functions that would be nice to be implemented in clojure? Sometimes I want to help the community but I don't know what to do (an idea), what's already done

Re: Good choices for a NoSQL database with Clojure?

2011-03-26 Thread Vivek Khurana
On Sat, Mar 26, 2011 at 10:26 PM, Base basselh...@gmail.com wrote: hi All - Any recommendations on a NoSQL database to use with clojure?  I am experimenting if it will fit my project better than a SQL db and have no real experience with them. Strong clojure support is obviously important

Re: Monad Lessons

2011-03-09 Thread Vivek Khurana
On Thu, Mar 10, 2011 at 12:45 AM, jim jim.d...@gmail.com wrote: I gave a talk at CodePaLOUsa on monads and got some favorable feedback. So I thought I'd offer to do a live training session on monads using pretty much the same material, but at a shared REPL rather than with slides. How it

A question on distributed computing

2010-11-02 Thread Vivek Khurana
Hi! I am currently developing an application where I need to enforce certain policy on clojure code. My requirement is that code+data can be sent to a remote node and based on certain access control and config, one should be able to control whether the remote node is allowed to execute code or

Re: A question on distributed computing

2010-11-02 Thread Vivek Khurana
On Nov 2, 8:56 pm, Ken Wesson kwess...@gmail.com wrote: That seems impossible assuming you don't trust the software running on the other node. It is not impossible. There are projects by Cornell .University, jiff[1] and fabric[2] which have achieved the same. Jiff is modification of java

Re: Talk at QCon SP

2010-09-16 Thread Vivek Khurana
On Sep 14, 3:49 am, Pedro Teixeira pedr...@gmail.com wrote: Last night, I had the chance to talk about some of the technologies I've put together in a recent project. In particular, it's about mixing clojure + cqrs + event sourcing + cep. I made slides available

Re: Interest in Google Summer of Code 2010?

2010-02-14 Thread Vivek Khurana
On Feb 13, 8:19 pm, defn dev...@gmail.com wrote: Hello all, Is there any interest in GSoC 2010 for Clojure? I moved to clojure recently. I had been GSoC mentor twice and i have the t-shirt to prove it ;-) I am willing to be a co-mentor in case clojure is accepted in GSoC. I cant take up

Re: Interest in Google Summer of Code 2010?

2010-02-14 Thread Vivek Khurana
On Feb 13, 8:19 pm, defn dev...@gmail.com wrote: Hello all, Is there any interest in GSoC 2010 for Clojure? I posted a reply yesterday but for some reasons it has not appeared yet. So posting again. I had moved to Clojure recently. I had been GSoC mentor twice and I have the t-shirt to

Re: Interest in Google Summer of Code 2010?

2010-02-14 Thread Vivek Khurana
On Feb 14, 11:27 am, Vivek Khurana hiddenharm...@gmail.com wrote:  I had moved to Clojure recently. I had been GSoC mentor twice and I have the t-shirt to prove it ;-) . If clojure is accepted in GSoC, I will be happy to co-mentor some student. I cant be full blown mentor as I am only 4