e my ignorance, but which one is the first famous Clojure app?
Regards,
BG
--
Baishampayan Ghose
oCricket.com
http://oCricket.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to t
called
``create-timing-map'' ?
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to clojure@
misspellings,
> errors, etc., post 'em here. Comments as well.
The code page http://intensivesystems.net/tutorials/code/monads_101.clj
is giving a 404 :)
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--~--~-~--~~~---~--~~
You received this message b
Phil Hagelberg wrote:
> I'm proud to announce that the "Functional Programming with Clojure"
> PeepCode screencast has just been published:
Wow! This is awesome. I bought it right-away!
Thanks.
Regards,
BG
--
Baishampayan Ghose
--~--~-~--~~
something completely
wrong?
TIA.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to clojure@googlegroup
or Clojure" t)
(add-to-list 'auto-mode-alist '("\\.clj$" . clojure-mode))
(defun lisp-enable-paredit-hook ()
(paredit-mode 1))
(add-hook 'clojure-mode-hook 'lisp-enable-paredit-hook)
(defun sbcl ()
"Starts sbcl in Slime"
(interactive)
(sl
me :)
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, sen
d)
>
>
> I don't know what your clojure binary looks like, but is the code for
> these functions on your Java classpath?
Yes they are in the classpath. I can 'use' clojure.contrib fine. But
when I do a M-. on any of the functions, I get an error on the mini-buffe
de)
(eval-after-load 'clojure-mode '(clojure-slime-config))
(autoload 'clojure-mode "clojure-mode" "A major mode for Clojure" t)
(add-to-list 'auto-mode-alist '("\\.clj$" . clojure-mode))
(defun lisp-enable-paredit-hook
))
There is re-gsub in clojure-contrib.str-utils.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to clojur
.contrib functions work fine.
But it still doesn't work for Clojure's internal functions in, say, core.clj
Any idea how to get that to work?
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--~--~-~--~~~---~--~~
You received this message because you are subs
nity.
Cheers!
BG
--
Baishampayan Ghose
oCricket.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send
ar file with both .class & .clj files?
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to clojure@google
load-path))
(require 'clojure-mode)
(setq clojure-src-root clj-root)
(eval-after-load 'clojure-mode '(clojure-slime-config))
(autoload 'clojure-mode "clojure-mode" "A major mode for Clojure" t)
(add-to-list 'auto-mode-alist '("\\.c
ot;." . utf-8))
Yes. That line screwed up everything for me. I removed it and everything
is working fine now.
Now I need to find out why that line was causing the problem.
Thanks a lot Stephen & Phil. You guys (as well as the Clojure community)
made my day.
Regards,
BG
--
Baishampayan
" way of doing
> this in a slime setup where swank-clojure sets up the classpath?
You can append you classpath to swank-clojure-extra-classpaths after
clojure-slime-config has been called.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--~--~-~--~~~---~--
Chris Dean wrote:
> For now I'm using hand written scripts that launch under screen. And
> that works for us.
Would be great if you share those scripts with us.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
finally{
-Var.popThreadBindings();
-}
}
});
}
Any clues?
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
y's
swank-clojure fixed the problem.
For the time being I will stick to his swank-clojure, with switch back
when it gets merged upstream.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
r
> is there a more sensible one?
In the SLIME REPL, press , (comma) and then type 'quit' and press Enter.
That'd close your REPL gracefully after which you can exit Emacs by
pressing C-x C-c.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
nd doesn't exist anymore.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
> http://tech.slashdot.org/story/09/05/29/1711203/Java-Gets-New-Garbage-Collector-But-Only-If-You-Buy-Support?from=rss
Who cares? There are many classy JVM implementations from third
parties like IBM.
BG
--
Baishampayan Ghose
oCricket.com
http://oCricket.
oing this with Ruby right now, but no in parallel.
This seems to be an ideal use-case for Clojure Agents
http://clojure.org/agents
Try it out and share the code :)
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
Stuart Sierra wrote:
> Join us Tuesday, June 9 from 7:00-9:00 for Stuart Sierra's
> presentation:
Will there be any video recording?
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
-meetings
> We'll try to get something lighter than a 3GB mpeg soon.
Watched the video. Highly impressive!
Thanks.
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
r me and
any help will be appreciated.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
unity rocks.
Now to get down to implementing the plan.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
t that Clojure runs on the JVM and has direct access to Java
libs helped the case.
He, being a fairly intelligent and pragmatic man, accepted my logic.
Thanks a bunch guys.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
ce! :-)
>
> (so, you hiring?)
We are hiring; but do you live in Mumbai, India? :)
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
tting used to
> this syntax.
Use a parenthesis aware editor and let the editor manage those for you.
You will be in deep trouble if you are counting and managing the
parenthesis manually :)
Otherwise, Clojure (like all Lisps) has very minimal syntax.
Regards,
BG
--
Baishampayan Ghose
make Hibernate less verbose).
I would like to know how you have solved similar problems.
Is Hibernate useful? Is managing a bunch of XML config files a necessary
evil?
Any help will be appreciated.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
t; http://github.com/duelinmarkers/clj-record/tree/master
>
> which is inspired by rail's ActiveRecord.
How mature are they? Do they work well with PostgreSQL? Apparently,
ClojureQL doesn't.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
g out the code, dependencies are concerned?
A sample directory structure would help.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
esh Emacs, it bails out
because swank-clojure-extra-vm-args is not defined at that stage. I
fixed that by running the SLIME repl once before running the
clojure-project function.
2. After that, it still fails to work as it remains stuck at the
"Polling /tmp/slime.634..." stage.
Any point
* Dependencies all unpacked together under target/dependency/
>
> Since I use the same conventions for every single project, I never have
> to change my classpath.
Another question. Where do I put the clojure & clojure-contrib JAR files?
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
me to just put the JAR files somewhere and get them
added to the classpath?
Thanks in advance.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
; (require 'clojure-mode)
I was not talking about the Clojure JAR. I wanted a nice way to use
external library JARs along with the clojure-project function which Phil
has written.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
gain.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
anged to the
latest known value of fibs.
In case of (take 5 fibs), these are the steps in which the values are
calculated:
[0 1] -> [0 1]
[0 1] + (map + [0 1] [1]) -> [0 1 1]
[0 1] + (map + [0 1 1] [1 1]) -> [0 1 1 2]
[0 1] + (map + [0 1 1 2] [1 1 2]) -> [0 1 1 2 3]
And so on.
This is
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
) (44 30) (23 37) (21 23) (23
> 25) (25 39) (27 25) (46 32) (25 39) (28 30) (30 44) (34 32) (31 33) (44
> 46) (46 32) (33 31) (38 24))
> user=>
Can you kindly attach the code that you used to test?
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
g to solve the Github Contest problem -
http://contest.github.com/ and not really trying to write a Git client
in Clojure :)
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
ter which re-indents the code nicely (while conforming to some
spec); something similar to GNU Indent[1]?
Regards,
BG
[1] http://www.gnu.org/software/indent/
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
ty to Clojure
and other Lisps.
Moreover, when you use a decent Lisp-aware editor parentheses usually
vanish in thin air. All you care about then is the indentation.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
more seriously on it... I think I can keep the conciseness of loop (in
> typical cases) while also having the extensibility and power of
> iterate.
+1 for a Clojure port of Iterate; it's a fantastic library.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
ne for me:
(def vect1 [1 2 3 4])
(count vect1)
(* (count vect1) 5)
Are you sure you used def and now defn while defining vect1?
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
anguage where mutation
is discouraged. Whenever you see yourself mutating things, you should
double check the code.
def is for top-level variable declarations only. You can use let for
lexical bindings, that too when required.
Have fun :)
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
ncrete example.
Just the inputs and the output would do.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
Abhishek Reddy wrote:
> The semicolon character opens a single-line comment in Clojure (as is
> traditional in lisp languages). It's like // in Java.
Off topic:
Abhishek, so have you switched from CL to Clojure now? ;)
Anyway, have loads of fun. I am.
Regards,
BG
--
Baisham
s.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
to the community.
>
> Any feedback, pointers to other libraries or suggestions will be
> greatly appreciated.
Very good work, Kyle! I haven't looked at the code yet, but the docs
indicate that it's a very nice library indeed.
It will be very useful for us.
Thanks.
Regards,
BG
ntime will also be
appreciated.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
rked! Many thanks Stu.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
d the community. Clojure has proved to be an
awesome programming environment already, and I am sure it will only get
better this year :)
Regards,
BG
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
?
I looked at the code but I am not sure about the exact way to do it. I
can probably use straight Java interop, but I would rather use the
contrib lib.
Thanks in advance.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
signature.asc
Description: OpenPGP digital signature
king", I think it's
prudent to mention now that Clojure is a dynamically typed programming
language where types are checked at run-time and not compile time.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--
You received this message because you are subscribed to the Google
Groups
Even though Clojure is hosted on the JVM, it has a completely different
ancestry; it is more different that similar to Java.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to thi
here.
>
> Is there a place where I can get a list of all new features and
> changes compared to 1.0?
http://github.com/richhickey/clojure/blob/1.1.x/changes.txt
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--
You received this message because you are subscribed to the Google
Groups
e speak up if you've noticed otherwise, but that's my understanding.
Well, the jars never existed for me since I started using Leiningen
recently. I want to migrate our project to Leiningen but I can't since
Compojure still depends on a non-existent clojure package.
Is it too hard to
and want your blog to be syndicated on Plane Clojure please send
me the link to your blog's Atom/RSS feed and I will happily put you on
the Planet.
If you have any suggestion/objection/bug report, feel free to contact me.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--
You received
Phil,
> Would be even better if it were implemented in Clojure though. =)
That's on the anvil. I will do it when I get some time. For now, we will
have to do with Python :)
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--
You received this message because you are subscribed to th
th Common Lisp. I would appreciate a
solution to this too.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from n
to stdout on a case by case basis (using the repl).
Unfortunately I am not familiar with Java logging facilities and would
appreciate some help with this.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--
You received this message because you are subscribed to the Google
Groups "Clojure&
and 1.3 has been made obsolete.
I tried using 1.2.14 because 1.2.15 was bringing in a truck load of
dependencies.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, sen
ample usage of promise/deliver.
Regards,
BG
--
Baishampayan Ghose
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient w
--
Baishampayan Ghose
oCricket.com
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your
first post.
To unsubs
Mike,
Finally, can anyone recommend a good free common lisp implementation
that runs well with slime / emacs under Windows?
SBCL is excellent. So is Clozure CL.
Regards,
BG
--
Baishampayan Ghose
--
You received this message because you are subscribed to the Google
Groups "Clojure&q
Wilson MacGyver wrote:
Looks like I'll be doing a talk on clojure next week at the local java
user group.
Any recommendations on slides I can steal? :)
Feel free to use mine -
http://www.slideshare.net/zaph0d/introduction-to-clojure
Regards,
BG
--
Baishampayan Ghose
oCricket.com
-
nd, docs,
> etc?
> - Same for par-edit
Macro-expand, evaluation, M-. etc. all work like a charm. The debugger
is not as advanced as in CL, but does the job fine. I use Clojure +
SLIME + Paredit daily and it's a charm.
Regards,
BG
--
Baishampayan Ghose
oCricket.com
http://oCricket.
gratulations! I hope there will be an English translation one day.
The book cover is awesome; really like the design and the main font.
Keep it up!
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--
You received this message because you are subscribed to the Google
Groups "Clojure" grou
t documentation starting from getting started with
Clojure to examples of different library functions.
We could use content from the Wikibooks project to get started, but we
will need to organise and maintain the content a bit better.
What do you people think?
Regards,
BG
--
Baishampayan
and have included a notice with a link to the
canonical instructions.
Thanks,
BG
--
Baishampayan Ghose
oCricket.com
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that
week. Feedback welcome!
Nice work! By the way, which Emacs mode do you have installed which
shows the WPM count?
Regards,
BG
--
Baishampayan Ghose
oCricket.com
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this gro
ent on how that affects the Clojure STM (if at
all)?
Regards,
BG
--
Baishampayan Ghose
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated
value of :body is supposed to be a vector, we can destructure
it further into head and body.
You can do the same kind of destructuring in a let form too.
I hope I was able to explain it to you. I agree, the examples were
pretty lame :)
Regards,
BG
--
Baishampayan Ghose
--
You received this messa
ups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For
On Sat, Jun 29, 2013 at 4:37 PM, Peter Taoussanis wrote:
> I honestly feel like I'm witnessing history being made.
We all are.
-BG
--
Baishampayan Ghose
b.ghose at gmail.com
--
--
You received this message because you are subscribed to the Google
Groups "Clojure" grou
Pick http-kit, create a uberjar with lein and deploy via Upstart etc. It
works like a charm. Jetty is quite good too. ~BG
Sent from phone. Please excuse brevity.
On 29 Jun 2013 20:17, "Ravindra Jaju" wrote:
> I want to deploy a small web app - serving mostly static content. I'm
> using Luminus (
this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
--
Baishampayan Ghose
b.ghose at gmail.com
--
--
You received this message because you are subscribed
message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
--
{:header (update-in metadata [:headers] reformat-headers) :payload
> (String. payload)})
>dest))
>
>
> On Saturday, June 29, 2013 8:12:26 PM UTC-5, Baishampayan Ghose wrote:
>>
>> This should work. What does headers look like? Sometimes the #(...)
>> reader form can
t; {:header metadata :payload (String. payload)})
>dest))
>
> but it still prints it out to the file with #.
> Did I miss something?
>
> On Saturday, June 29, 2013 8:14:49 PM UTC-5, Baishampayan Ghose wrote:
>>
>> Adding a method to the `print-dup` multim
ur version I get:
>
> :headers
>#=(java.util.HashMap. {"pluginKey"
> #=(com.rabbitmq.client.impl.LongStringHelper$ByteArrayLongString.
> "PLUGIN2")})
>
> what I think I needs to be able to read it back in is:
>
> :headers {"pluginKey" "PLU
uot;)})
>
> what I think I needs to be able to read it back in is:
>
> :headers {"pluginKey" "PLUGIN2"}
>
> On Saturday, June 29, 2013 8:41:16 PM UTC-5, Baishampayan Ghose wrote:
>>
>> Does this work?
>>
>> ;; do the defmethod e
>
>
> On Saturday, June 29, 2013 8:57:31 PM UTC-5, Baishampayan Ghose wrote:
>>
>> This form, by the way is readable. Not sure why the print-dup
>> extension is not working though... ~BG
>>
>> On Sun, Jun 30, 2013 at 7:18 AM, Dave Kincaid wrote:
>> &
Cool! ~BG
On Sun, Jun 30, 2013 at 7:49 AM, Dave Kincaid wrote:
> That works perfectly! Thank you again very much.
>
>
> On Saturday, June 29, 2013 9:01:32 PM UTC-5, Baishampayan Ghose wrote:
>>
>> By the way, there is also the print-method multimethod which might
>
ure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
ess
> surprising.
>
>
> On Mon, Jul 1, 2013 at 11:21 AM, Baishampayan Ghose wrote:
>
>> Hi,
>>
>> What you need is called an anaphoric macro (via symbol capture).
>> Clojure makes it hard to do a symbol capture in macros since it
>> qualifies all symbols aut
p/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more opti
ot; group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
--
Baishampayan Ghose
b.ghose at gmail.com
--
--
You received this mess
nt with your
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
s message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
e Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
--
Baishampayan Ghose
b.ghose at gmai
t; group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
--
Baishampayan Ghose
b.ghose at gmail.com
--
--
You received this message
ition (URL => route), while Route
> One does only URL generation (route => URL)
>
> Thanks!
>
>
> On Tue, Aug 13, 2013 at 7:12 PM, Baishampayan Ghose
> wrote:
>>
>> Curious, how does it differ from Clout? ~BG
>>
>> On Tue, Aug 13, 2013 at 9:38 PM
gan: https://github.com/clojurewerkz/balagan
>
> Basically, you can run predicate-based queries on your data and apply
> transformations.
> Check it out, maybe it helps
>
> On Tuesday, May 29, 2012 2:23:30 PM UTC+2, Baishampayan Ghose wrote:
>>
>> Great feedb
group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to clojure+u...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>> -Mohit Thatte
&g
andle it then will go with `metadata` approach :)
>
> On Friday, May 29, 2015 at 8:53:11 PM UTC+5:30, Baishampayan Ghose wrote:
>>
>> Shalaka,
>>
>> This is a really interesting conversation :-) However, I'd insist that
>> you ditch eval or any sort of
1 - 100 of 418 matches
Mail list logo