.
>
> Also, I thought that clojure.contrib.datalog worked for SQL queries...
> That would be even better ;)
>
> On Monday, June 25, 2012 1:50:19 PM UTC+2, Niels van Klaveren wrote:
>>
>> You can use the Datomic datalog implementation to query Clojure
>> collect
This combination of Sublime -text & -REPL looks pretty useful, with little
extra configuration (except that decommenting part :) ).
When I have the REPL launched, when returning values I get a lot of lines
with BS..BS sequences. Any idea how to get rid of those ?
On Monday, June 25, 2012 4:09:00
In the new Counterclockwise 9.0, just clicking the 'play' button should be
enough to start a REPL and load the the current clj file if it has the
focus.
On Monday, July 2, 2012 10:24:38 AM UTC+2, omer wrote:
>
> hi, i'm new to clojure and i keep running in to this error!
> i'm using eclipse in w
I haven't got much experience with large scale Clojure environments, but I
do know something from managing a lot of JVM production environments. The
biggest lesson is: All applications behave differently, usually more so in
type of application than JVM language used. No hard and fast rules can b
Interesting settings Sam,
I'm curious about this one:
"-XX:MaxTenuringThreshold=0" ; Makes the full NewSize available to every
NewGC
; cycle, and reduces the pause time by not
; evaluating tenured objects. Technically,
You might try the sonatype snapshot repository, there's a recent core.logic
snapshot build on there.
Add
:repositories {"sonatype-snapshots"
"https://oss.sonatype.org/content/repositories/snapshots/"}
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/core.logic "0.7.
You seriously think the lack of Leiningen is an advantage ?
On Thursday, August 16, 2012 3:00:50 PM UTC+2, Sean Neilan wrote:
>
> Hey All,
>
> ClojurePY is actually quite amazing. It has none of the complexities with
> libraries and projects like Clojure and is suitable for crunching data
> (be
>
> With pip/easy_install and virtual_env, there's really not much of a point.
> Would lein-py be nice? Yeah, but it's hardly a show-stopper.
>
To me, maintaining / distributing (virtual) python environments, even in a
small (but mixed) organisation, is more of a hassle than plonking in a few
A lot of these implementation details bleed out into everyday language use,
let alone using platform libraries. I agree with Sean on that.
On Thursday, August 16, 2012 7:29:34 PM UTC+2, Luc wrote:
>
> Clojure is Clojure, Java and how much of the core of the is written in it
> is an implementatio
The criticism towards Lein is totally uncalled for, it's small, simple,
lightweight and for the JVM it's a great clojure-centric way to gather and
manage dependencies. Yes, there's lots of options, but for simple projects,
you're done with a few lines of configuration. No-one could say it doesn'
>
> This seems to be a common misconception (and I'm not exactly sure why).
> Clojure-py is a complete "from scratch" re-implementation of Clojure in
> Python
>
Didn't know that, that's pretty cool. You taking the effort to do it is
even more impressive.
> I'm going to stop here and say tha
There's several different options, best read up on the differences between
these differences in the docstrings:
(remove (set b) a)
(clojure.set/difference (set b) (set a))
(last (clojure.data/diff a b))
On Wednesday, September 26, 2012 10:46:57 AM UTC+2, Alex Shabanov wrote:
>
> Good day,
>
>
Clojure already has something like this, it's called datalog. Datomic has
an implementation that can be used to query it's database as well as most
collections. There's also another datalog implementation which has it's own
persistent database. An opportunity that's still open would be a datalog
You might want to use the -XX:+UseCompressedOops JVM option to compress the
JVM object pointer size in 64 bits.
On Wednesday, October 3, 2012 9:17:21 PM UTC+2, Thomas wrote:
>
> try and use a 32bit JVM. I found that a 64bit JVM uses almost twice as
> much memory. YMMV
>
> Thomas
>
--
You recei
If it is a memory / gc problem, the easiest way to spot it is writing a gc
log.
Add the following parameters to your JVM parameters:
-Xloggc:D:/log/myGClog.log
-XX:+PrintGCDetails
Then, use a GC log viewer to keep a look on the logs (by refreshing or tail
refresh) with a GC log viewer. These
(take 5 (range))
Many happy return values, Rich !
On Wednesday, October 17, 2012 3:53:55 AM UTC+2, Rich Hickey wrote:
>
> I released Clojure 5 years ago today. It's been a terrific ride so far.
>
> Thanks to everyone who contributes to making Clojure, and its community,
> great.
>
> Rich
--
That's why Jim mentions if-let and when-let in combination with some, they
both detect if results are nil.
On Sunday, December 2, 2012 10:11:24 PM UTC+1, Ben wrote:
>
> On Sun, Dec 2, 2012 at 12:48 PM, Jim - FooBar();
> >
> wrote:
> > Its perfectly fine to use some as a predicate as far as I k
It's a feature of the REPLy NREPL client. See
https://github.com/trptcolin/reply/blob/master/src/clj/reply/initialization.clj
how it works so you can emulate it.
On Tuesday, December 18, 2012 5:10:00 AM UTC+1, Karim A. Nassar wrote:
>
> When using nrepl in emacs (cdoc ) emits:
>
> CompilerExcep
I wonder if this couldn't have been better implemented as nrepl middleware.
On Tuesday, December 18, 2012 10:34:01 AM UTC+1, Niels van Klaveren wrote:
>
> It's a feature of the REPLy NREPL client. See
> https://github.com/trptcolin/reply/blob/master/src/clj/reply/initiali
101 - 119 of 119 matches
Mail list logo