a question about binding

2009-02-01 Thread Eric
I recently wrote on my blog that using #' was a good way to make sure that you get the function definition you want despite the symbol being rebound within a let. For instance: (let [list 10] (#'list 1 2 3)) => (1 2 3) cgrand responded (here: http://www.reddit.com/r/programming/comments/7tn

Re: a question about binding

2009-02-01 Thread Eric
Thanks so much! --~--~-~--~~~---~--~~ 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 email to clojure+unsubscr...@googl

Re: Directed Graphs for Contrib

2009-02-23 Thread Eric
On Feb 23, 6:38 pm, Jeffrey Straszheim wrote: > Well, right now I'm just handling directed graphs, and basically treating > nodes as integer indexes, with a simple formula from index to adjacency list > of nodes. > I would actually like to see an implementation that more closely resembles the

Re: What is Clojure NOT good for?

2009-03-06 Thread Eric
>- Writing small utility programs, as it requires certain things to > be installed properly (For example using "java -serever" with the > correct JVM). For example I can't see myself deploying small utility > application at work written with Clojure, as it would make people > screaming, why th

Bug in parallel.clj (and fix)

2009-07-31 Thread Eric
I tried to import clojure.parallel today and it didn't work. It couldn't find forkjoin.ParallelArray So I went hunting for it and it doesn't exist. There is a extra166y.ParallelArray. In fact, all of the names imported were in extra166y. So I changed the line in parallel to reflect that. (im

Re: Transient Data Structures

2009-08-05 Thread Eric
ions are rewritten using transients? I can't wait. Are hashmaps next? I can think of a few places in my code that would definitely benefit from them. Eric --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clo

Re: Zelkova: Elm-style FRP for Clojure and ClojureScript

2014-12-06 Thread eric
n static flow graphs. It's like programming without 1st class functions, you don't get very far. eric On Monday, October 20, 2014 11:56:45 AM UTC+11, James MacAulay wrote: > > I've just published an FRP library based on Elm[1]: > > https://github.com/jamesmacaulay/

Re: Zelkova: Elm-style FRP for Clojure and ClojureScript

2014-12-06 Thread eric
Any "real things" that have been achieved that you'd want to highlight? I'd be interested in porting them to Clojure, possibly using Zelkova, as an exercise in FRP coding. On Sunday, December 7, 2014 12:29:19 PM UTC+11, raould wrote: > > > From what I understand it's conceptually not ready for a

Re: Zelkova: Elm-style FRP for Clojure and ClojureScript

2014-12-06 Thread eric
/promise-stream > I decided to read Evan Czaplicki's 2012 thesis on Elm to understand that > different perspective better, and the more I understood it the more > compelling I found that approach. I had a very similar experience with the > paper as Eric Normand recently described

Example in Joy of Clojure, 2nd edition (MEAP)

2014-02-15 Thread Eric
lly since ~'key is defined in the parameter list, so that it would anyway hide any external var. Could someone please help me understand this? Thank you in advance, Eric -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this

Re: Example in Joy of Clojure, 2nd edition (MEAP)

2014-02-15 Thread Eric
Hi Jan, OK, I get it, thanks a lot for your quick answer. Eric Le samedi 15 février 2014 17:49:57 UTC+1, Jan Herich a écrit : > Hello Eric, > > You can rewrite this functionality with key# and r# instead of ~'key and > ~'r and it would work just as well, > it&#x

reactive programming for UIs and other use cases

2012-07-26 Thread eric
For those that don't read the "Clojure Dev" Google group, there is a good discussion on reactive programminggoing on right now. The motivator is UIs in ClojureScript but the same concerns should apply to other UIs or entirel

Re: [EMAIL PROTECTED]

2008-10-22 Thread Eric
comes Clojure. I look forward to working on Clojure. Eric On Oct 21, 11:38 am, Dustin Withers <[EMAIL PROTECTED]> wrote: > Rich, > > I just wanted to thank you for your presentation at Lisp50. The > excitement that was created from your presentation was amazing. I > bel

Re: [EMAIL PROTECTED]

2008-10-22 Thread Eric
about Clojure. And the older Lisp guys were feeling the buzz of excitement. I felt that they passed the baton. Good luck. Eric On Oct 21, 11:38 am, Dustin Withers <[EMAIL PROTECTED]> wrote: > Rich, > > I just wanted to thank you for your presentation at Lisp50. The > excitemen

Re: Clojure Code Analysis Tools

2008-12-02 Thread Thorsen Eric
as wellsince I'm very interested in having a IntelliJ plugin :) Eric On Dec 2, 2008, at 9:31 AM, Peter Wolf wrote: > > Thanks, I strongly agree. > > I just emailed curious.attempt.bunny to join forces. Curious, are you > out there? > > P > > > > [EMAI

Re: import doesn't work when jar was loaded with add-classpath ?

2008-12-13 Thread Eric Sessoms
Did you ever get this resolved? I just had the same thing start happening to me today, after not experiencing any problems with it as recently as yesterday. (What changed? I tried to install swank. Nuking swank did not fix the problem, tho.) Step by step: (add-classpath ...) ; seems to work, b

Re: Blogging About Clojure?

2008-12-19 Thread Eric Lavigne
>> I host my blog on Dreamhost, and it works great for static files, though >> if you're looking to host actual clojure apps DH won't cut it. > > Yeah, Java hosting seems like rather tricky business, since you > basically need dedicated RAM. I've heard slicehost is very good and > reasonably pric

macro trouble

2009-01-01 Thread Eric Tschetter
eptionInInitializerError (NO_SOURCE_FILE:0) user=> (tracefn 'poor-mans-multiply) java.lang.Exception: Second argument to def must be a Symbol (NO_SOURCE_FILE:370) user=> (poor-mans-multiply 3 4) 12 user=> What am I doing wrong? --Eric Tschetter --~--~-~--~~~---

Re: macro trouble

2009-01-02 Thread Eric Tschetter
verify tracing. > And finally you might find this useful: > http://groups.google.com/group/clojure/browse_frm/thread/3ea8777880231e18/6fd1b352ac1a6744?lnk=gst&q=trace#6fd1b352ac1a6744 I looked at the trace.clj in clojure.contrib and it looks like it will resolve my current wants for t

Re: macro trouble

2009-01-02 Thread Eric Tschetter
on new line? Or is there some other reason to choose prn over >> println? > > 1:6 user=> (println "foo") > foo > nil > 1:7 user=> (prn "foo") > "foo" > nil > 1:8 user=> (println \space) > > nil > 1:9 user=> (prn \space) &

broken link http://clojure.org/api#condp

2009-01-04 Thread Eric Lavigne
At http://clojure.org/macros, condp is listed as one of the branching macros, but its link is broken. -- Education is what survives when what has been learned has been forgotten. - B. F. Skinner --~--~-~--~~~---~--~~ You received this message

Re: pre newbie entrance

2009-01-10 Thread Eric Lavigne
> > > Concretely, this would mean following the "Getting Started" > instructions on clojure.org. Then seeing what there is to see . . . I > assume some sort of command line for doing "REPL" will come up as it > says? > Yes, "Getting Started" will show you how to start the REPL. I think that's nea

Re: non recursive impl in presence of persistence?

2009-01-10 Thread Eric Lavigne
> > > I have no idea how to iteratively mess with it since everything is > persistent. Ok, like, say it's a list of lists and I am going to be > merging the lists, like Tarjan's mergesort from some book from > college. > Sorting is done much more easily with recursion than with iteration. However

Re: non recursive impl in presence of persistence?

2009-01-11 Thread Eric Lavigne
ing with the flow, but the language is flexible enough to work the way you want. Just define the operations that you like to use. Also, you have access to Java libraries, which have mutable collections. > > > On Jan 11, 1:27 am, "Eric Lavigne" wrote: > > > I have no i

Re: list merge help

2009-01-11 Thread Eric Lavigne
> > > this seemed like a clean, nice way to merge to sorted lists into one > sorted list. I'm not getting clojure syntax, it seems: > > > (defn listmerge [l1 l2] > (let [l1first (first l1) l2first (first l2)] >(if (= l1first nil) l2) >(if (= l2first nil) l1) >(if (< l1first l2first) >

Re: non recursive impl in presence of persistence?

2009-01-11 Thread Eric Lavigne
> > > This gets to my question perfectly. Why is your code "my-list > (rest (rest my-list)) " legal? > I wouldn't have even thought to try that because, in essence, you are > changing my-list. I mean, I know how persistence works. You are just > reassigning what you think of as the start of my-l

Re: non recursive impl in presence of persistence?

2009-01-11 Thread Eric Lavigne
> > i see that "my-list (rest (rest my-list))" is in a let section. That > seems like the scope would mean we are talking about a different my- > list. > Yes, it is a new my-list with a smaller scope. I didn't search for the expression (rest (rest my-list)) before my earlier response. --~--~---

Re: SLIME: trouble with java.lang.OutOfMemoryError

2009-01-11 Thread Eric Lavigne
> > > Incidentally, if you want a language with an editor built in, why not > look at Smalltalk? I vaguely recall that was a big part of the > original language concept. I haven't ever played with it myself, but > the most popular current flavour seems to be Squeak: > http://www.squeak.org/ > Sm

Re: when performance matters

2009-01-13 Thread Eric Lavigne
> > > > There's also the (in)famous language benchmark > > site:http://shootout.alioth.debian.org/ > > This is primarily what I was going on. I realize no > benchmarking approach is going to be perfect, but > this attempt doesn't seem too bad. Is there any > reason to be particularly sceptical ab

Re: (newbie) running clojure app without repl

2009-01-15 Thread Eric Lavigne
> > > Hi! > I've had no experience in Lisp or clojure before. I've only worked > with Java and Ruby, so this question may seem stupid. Is there any way > to run a clojure app without REPL? > > For example something like: clojure my_app.clj > Something like this: java-cpclojure.jar:my_app_

Re: Clojure for Games/Simluation/Art (Optimization in Clojure)

2009-01-27 Thread Eric Lavigne
> > > The technique was first described by Craig Reynolds in the 1980s and has > since then made it's way into many contemporary games. The algorithm is > interesting in that it's fairly computationally intensive. Each boid's > motion is determined by calculating it's distance from every other bo

Fwd: Patch: universal main() with repl/script/compile

2009-02-09 Thread Thorsen Eric
For some reason I could not reply to the original thread... Begin forwarded message: > From: "Stephen C. Gilardi" > Date: February 6, 2009 12:49:34 PM EST > To: Eric Thorsen > Subject: Re: Patch: universal main() with repl/script/compile > > Hi Eric, > >>

Using ensure in dosync - IllegalStateException: No transaction running

2009-02-10 Thread Eric Lavigne
The way I understand it, "transaction running" means that the code is executing inside a dosync block. So this should work: (def account1 (ref 1000)) (def account2 (ref 2000)) (dosync (map ensure [account1 account2])) However, I get the following error: java.lang.IllegalStateException: No tra

Re: Using ensure in dosync - IllegalStateException: No transaction running

2009-02-10 Thread Eric Lavigne
> > > Why can't I use ensure inside of a dosync block? Is there another way to >> perform a transaction? >> > > You can, but "map" is lazy. It's not being evaluated within the dosync. One > way to fix the code is to force map to evaluate within the dosync using > "dorun": > >(dosync (dorun

VerifyError overrides final method / forwarding interface calls to multimethods

2009-02-19 Thread Eric Thorsen
do all kinds of shenanigans to handle various cases (like the cell renderer) where a call to a multi-method would be so much cleaner (IMO). I really just wanted to create a stub class for this 1x. The above was not bad since it was just 1 function. Anyone else doing similar things

Re: VerifyError overrides final method / forwarding interface calls to multimethods

2009-02-19 Thread Eric Thorsen
Thanks for this. I was steered fowards proxy-super and was all set. On Feb 19, 11:19 am, Chouser wrote: > On Thu, Feb 19, 2009 at 9:09 AM, Eric Thorsen wrote: > > > In some cases, the Java classes give you an interface where you have > > to do all kinds of shenanigans to ha

Re: Mathy operations on non-numerics (was "Adding" strings)

2009-02-26 Thread Eric Tschetter
t non-math behavior by default is the way to go... Btw, if you are implementing a date library, I would strongly recommend looking at Joda Time. You could probably just write some clojure wrappers for the library and be done with it (of course, that would require that the Joda Time jar be on

Some help for tool builders...

2009-03-13 Thread Eric Thorsen
I come across some functions in clojure/core that are really useful in tool building but often are private. Is it possible to make these public? spread assert-args sigs libspec? root-resource root-directory Let me know and I'll submit a patch. Thanks,

Re: Help with the dot operator special form

2009-03-22 Thread Eric Tschetter
unInTransaction does in fact take > Callable, and fn's are Callable.  Any thoughts? I haven't double checked the clojure code, but it looks like you are trying to call a static method, not an instance method, and that is what is

Re: doseq vs. map

2009-04-03 Thread Eric Tschetter
> Thanks for the response everyone!  I was able to get it working.  If I > understand what everyone is saying, the following statement is true: > > In Clojure, laziness is the rule not the exception. Rather than that, I'd say that you are thinking about map wrong (hope that doesn't come across as

Re: The Game Loop ... the Clojure way?

2009-04-03 Thread Eric Tschetter
));should this be send-off? why? (send-off animator counter-animation 0)) Will do the same thing but every run will start from 0 (rather than re-defining the global counter variable every time). Eric Tschetter On Fri, Apr 3, 2009 at 8:05 PM, Curran Kelleher wrote: > > Hi all, > > I

New release of the enclojure plugin is up.

2009-04-06 Thread Eric Thorsen
February. For more information, please see: http://enclojure.wikispaces.com Plugin can be downloaded at: http://code.google.com/p/enclojure-nb-clojure-plugin/downloads/list Feedback welcome! Eric Eric Thorsen ThorTech Solutions www.thortech-solutions.com (914) 302-7638 [work] (914) 302-7641 [fax] (914

Re: DISCUSS: clojure.contrib.java-utils/as-str

2009-04-08 Thread Eric Tschetter
Might I suggest (defn as-str ([] "") ([& args] (apply str (map #(if (instance? clojure.lang.Named %) (name %) %) args))) --Eric Tschetter On Wed, Apr 8, 2009 at 8:19 PM, Stephen C. Gilardi wrote: > > On Apr 8, 2009, at 8:13 PM, Stuart Halloway wrote: > >

Re: DISCUSS: clojure.contrib.java-utils/as-str

2009-04-10 Thread Eric Tschetter
times to use apply2 in a defn or defmacro for as-str, but kept on getting weird exceptions. I'm probably just tired and doing something wrong, so I'll just leave it at that for now... Perhaps apply needs to be revisited? --Eric Tschetter On Thu, Apr 9, 2009 at 6:49 AM, Stephen C. Gilardi

Re: DISCUSS: clojure.contrib.java-utils/as-str

2009-04-10 Thread Eric Tschetter
That makes sense. On Fri, Apr 10, 2009 at 6:16 AM, Stephen C. Gilardi wrote: > > On Apr 10, 2009, at 3:55 AM, Eric Tschetter wrote: > >> Sure enough, I get the same results >> >> user=> (defn as-str >> [& args] >> (apply str (map #(if (in

HTTP clients in clojure

2009-05-06 Thread Eric Tschetter
brary? --Eric Tschetter --~--~-~--~~~---~--~~ 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 email to c

Interest in creating a NYC Clojure user group?

2009-06-04 Thread Eric Thorsen
meet up in Manhattan once a month to discuss all things Clojure. My company is in Westchester but I can _probably_ get some space (depending on how many of us there are) to meet. Eric --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Clojure STM not serializable

2009-06-18 Thread Eric Willigers
every ref that is read, or using a single ref to switch to a new immutable data structure (as opposed to implementing mutable data structures using numerous refs). Regards, Eric. P.S. I'm aware Oracle and PostgreSQL similarly have non-serializable transactions. (def a (ref 0)) (def

Re: Clojure STM not serializable

2009-06-19 Thread Eric Willigers
On Jun 18, 9:35 pm, Rich Hickey wrote: > http://clojure.org/refs > > point #8: > > "If a constraint on the validity of a value of a Ref that is being   > changed depends upon the simultaneous value of a Ref that is not being   > changed, that second Ref can be protected from modification by calli

Re: Making a jar where the "main" class in manifest is from gen-class

2009-06-19 Thread Eric Willigers
On Jun 20, 3:42 am, "Stephen C. Gilardi" wrote: > One important need filled by gen-class is exactly this case: you need   > a class with a name you can specify completely and use elsewhere. > > > I need to enter the Main class in a jar's Manifest, and was wondering > > how you guys have done it.

Re: Clojure only (in-memory) database / locking granularity

2009-07-01 Thread Eric Willigers
On Jul 1, 1:02 am, Chouser wrote: > On Tue, Jun 30, 2009 at 8:37 AM, Rowdy Rednose wrote: > > > Would it be easy to implement an in-memory database in clojure that > > allows concurrent access? > > > It sounds pretty easy, as most of the features are already provided by > > Clojure. I'm not sur

NYC Clojure Users Group

2009-07-03 Thread Eric Thorsen
forward to meeting you! Eric --~--~-~--~~~---~--~~ 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

Re: How to achieve indirection?

2009-07-16 Thread Eric Tschetter
e function to the data like John/Adrian mentioned --Eric Tschetter --~--~-~--~~~---~--~~ 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

Fwd: maven source dir(s) for clojure/pom.xml and clojure-contrib/pom.xml

2009-08-14 Thread Thorsen Eric
I posted the message below on the dev group but did not get a response and thought perhaps the folks who handled the maven support were over here. Thanks, Eric Begin forwarded message: > From: Eric Thorsen > Date: July 2, 2009 10:32:36 PM EDT > To: Clojure Dev > Subject: mave

New release of Enclojure for Netbeans is up.

2009-08-25 Thread Eric Thorsen
more info. Thanks again to everyone who has provided guidance and feedback! Eric Eric Thorsen --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@g

Namespace/class visibility in eval

2009-09-22 Thread Eric Tschetter
I'm trying to create an HTTP server that is essentially a clojure REPL with some integration into some classes on the server's classpath. I've got something working, but I noticed some things that made me realize I don't quite understand the scope of namespaces/imports in clojure when eval'ing. I

New Release for Enclojure plugin - 2009-09-22

2009-09-22 Thread Eric Thorsen
://github.com/EricThorsen/enclojure/downloads This release was primarily focused on bug fixes particularly on Ubuntu and Windows with a few enhancements to completion. Thanks again to everyone who has provided guidance and feedback! Eric git log

Re: New Release for Enclojure plugin - 2009-09-22

2009-09-23 Thread Eric Thorsen
I updated the plugin on the Netbeans plugin portal and have submitted it for verification. I believe once it has passed verification it will show up in the catalog. Thanks! Eric On Sep 22, 9:21 pm, Wilson MacGyver wrote: > any chance the enclojure plugin can be made available to downl

Re: Namespace/class visibility in eval

2009-09-24 Thread Eric Tschetter
or CPU DoS on the box running this server will just mean that the server needs to be restarted). All I have to do is be able to clamp down the ways in which someone can access local file system/sockets and things are good. --Eric --~--~-~--~~~---~--~~ You rec

Re: Getting REPL transcript

2009-10-02 Thread Thorsen Eric
enclojure.plugin.netbeans library are not reliant on anything but java and clojure (no Netbeans). Eric On Sep 23, 2009, at 1:09 PM, John Harrop wrote: > On Wed, Sep 23, 2009 at 1:05 PM, Fogus wrote: > If you're running it with JLine, then the transcript is usually stored &g

The Enclojure REPL System (It's not just for Netbeans!)

2009-10-09 Thread Thorsen Eric
e not been able to put this stuff in clojure.contrib as there are dependancies on some other libraries. If there is a story for a "clojure.contrib with deps" I would happily contribute the code base there. Thanks and happy REPLing! Eric Eric Thorsen ThorTech Solutions www.thortec

Re: The Enclojure REPL System (It's not just for Netbeans!)

2009-10-09 Thread Eric Thorsen
with what you are doing in Eclipse, not relevant or perhaps the feature set of the Eclipse REPL has functionality that could/should be added? Very interested in your feedback! Eric On Oct 9, 9:43 am, Laurent PETIT wrote: > Eric, thanks for sharing this ! > > I hope I'll have time

Re: The Enclojure REPL System (It's not just for Netbeans!)

2009-10-13 Thread Thorsen Eric
On Oct 9, 2009, at 5:30 PM, Laurent PETIT wrote: > Hi Eric, > > 2009/10/9 Eric Thorsen > > Laurent, > In the code analysis section of the article: > http://www.enclojure.org/The+Enclojure+REPLs+%28Not+just+for+Netbeans%21%29#ExampleCodeAnalysis > It points you

New release of Enclojure for Netbeans is up - enclojure-plugin-2009-11-3.nbm

2009-11-03 Thread Eric Thorsen
fixes #16 Added context menu for loaded selected clojure source files. > Added test dirs to projects. > Fixed a completion bug where the context was getting confused in some cases > causing no symbols to be suggested at all. > Author Eric Thor: Fixed a completion bug when there was n

Re: Clojure analysis

2009-12-17 Thread Eric Lavigne
> Given that list of languages, I'd suggest taking a look at Eiffel. > ... > It's the source of the function pre/post condition facilities that Clojure > has. I did not know that Clojure functions supported Eiffel-style pre/post conditions. Where can I read more about this? -- You received this

Re: Clojure analysis

2009-12-17 Thread Eric Lavigne
I was still using 1.0. This is a good incentive to upgrade :-) On Fri, Dec 18, 2009 at 12:22 AM, Sean Devlin wrote: > It's new in 1.1.  Go here: > > http://clojure.org/special_forms#toc7 > > And read the "Since 1.1" section. > > On Dec 17, 11:58 pm, Eric Lav

First meeting of the NYC Clojure Users Group is scheduled

2010-01-08 Thread Thorsen Eric
lendar/12228936/?a=fd_new_rsvp_multi_tl Thanks, Eric Eric Thorsen (914) 804-4954 [cell] -- 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

Re: newbie swank clojure emacs

2010-01-10 Thread Eric Lavigne
Since you are using Windows, you may find Clojure Box easier to install. http://clojure.bighugh.com/ I followed the riddell.us/.../slime_swank.html tutorial yesterday, and can confirm that it works well for Ubuntu. On Sun, Jan 10, 2010 at 5:58 AM, brian wrote: > > Hi, > > I'm trying to follow

Re: Has anyone got the Enclojure NetBeans plugin working with clojure 1.1?

2010-01-10 Thread Eric Thorsen
I use several different builds (clojure platforms for the plugin) and do not have any problems. I'd be happy to get you past any issues if you want to give it another shot in the future. Eric On Sun, Jan 10, 2010 at 2:55 PM, Marmaduke wrote: > I did a fresh install of Netbeans, a

Swing unit testing

2010-01-12 Thread Eric Thorsen
Anyone have any recommendation/experience for a unit testing library for testing swing components? Thanks! Eric -- 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 post

Re: Swing unit testing

2010-01-12 Thread Eric Thorsen
I saw this. I'll give it a try. Thanks, Eric On Jan 12, 10:06 am, Roger Gilliar wrote: > Hi, > > we use Jemmy for this purpose (https://jemmy.dev.java.net/) > > Regards >    Roger -- You received this message because you are subscribed to the Google Groups "Clo

NYC Clojure Users Group Meeting for Jan 28th - I reserved a bigger space!

2010-01-14 Thread Eric Thorsen
nuary 28, 2010 6:30 PM Where: NYC Seminar and Conference Center 71 West 23rd Street NY, NY 10010 1-866-807-1114 Looking forward to seeing you there. Thanks, Eric -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send e

Re: I'm going to teach Clojure at university - suggestions/comments?

2010-01-14 Thread Eric Lavigne
>> The issue that is >> particularly interesting to me to explore is how alien Clojure is to >> Java programmers, what are subjective and objective causes, and how >> hard is to overcome each of the identified issues. > > This sounds very interesting. I try to explain the point of lisp to > java pr

Re: Clojure Newbie projects on github?

2010-01-17 Thread Eric Lavigne
If you're looking for fun and practice, you could fork this wari game and try adding a computer player. http://ericlavigne.net:8054/ http://github.com/ericlavigne/island-wari On Sat, Jan 16, 2010 at 11:02 PM, Tchalvak wrote: > Anyone have some suggestions for active clojure projects to watch/ge

Re: Leiningen plugin: run

2010-01-23 Thread Eric Lavigne
> Is Leiningen a Linux-only tool? No, but Linux is much better supported than Windows right now. See this page: http://github.com/technomancy/leiningen The last question in the FAQ on that page is: Q: What about Windows? A: Try the bin/lein.bat script. Note that Windows support i

Re: Leiningen plugin: run

2010-01-23 Thread Eric Lavigne
>> Is Leiningen a Linux-only tool? > > No, but Linux is much better supported than Windows right now. See this page: > >     http://github.com/technomancy/leiningen > > The last question in the FAQ on that page is: > >     Q: What about Windows? >     A: Try the bin/lein.bat script. Note that Windo

Re: Jython interop

2010-01-24 Thread Eric Lavigne
> I was wondering if anyone has tried somehow calling Jython functions > from within Clojure, and how you went about doing this if so.  I have > not used Jython, but I would imagine the Jython interpreter can be > invoked in the same way as any other java code, and Python programs > can be run with

Re: Sessions for Ring

2010-02-03 Thread Eric Lavigne
> Currently we have two possible designs: > > Design 1: > The session is stored as an mutable atom map in (request :session). To > update the session, use the standard Clojure swap! function, e.g. > > Design 2: > The session is an immutable map in (request :session). To update the > session, add th

Clojure Jobs in White Plains, NY

2010-02-04 Thread Eric Thorsen
ThorTech Solutions is seeking exceptional developers to join our team. The work will be primarily on a new product, predominantly written in Clojure. If you are a passionate individual who is self directed but thrives in a team environment and team results, has experience with several of the foll

Clojure NYC Users Group looking for speakers!

2010-02-11 Thread Eric Thorsen
e any suggestions for getting speakers, etc. For more information see: http://www.meetup.com/Clojure-NYC/ Thanks! Eric -- 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

Re: Clojure Jobs in White Plains, NY (incorrect email in the previous post)

2010-02-16 Thread Eric Thorsen
Thanks for catching that! care...@thortech-solutions.com On Feb 7, 5:18 am, Michael Kohl wrote: > On Thu, Feb 4, 2010 at 10:29 PM, Eric Thorsen wrote: > > ThorTech Solutions > > care...@thotech-solutions.com > > Is the missing 'r' in the mail address a kind o

Visual Studio plugin

2010-03-08 Thread Eric Thorsen
Is there/is anyone working on/is anyone interested in working on a Visual Studio plugin for a Clojure REPL for clojureCLR? My company might be interested in sponsoring this work. Thanks! eric -- You received this message because you are subscribed to the Google Groups "Clojure" grou

Re: Visual Studio plugin

2010-03-10 Thread Eric Thorsen
plugin know about Clojure files. Syntax highlighting, completion, folding, etc. 3. Debugger support Eric On Mar 9, 1:47 pm, mmwaikar wrote: > Forgot to ask the below mentioned questions earlier - > > Which version of Visual Studio are you targeting - 2008 or 2010? > Do you have a deve

NYC Clojure Users Group - need someone to do a brief tutorial for our next meetup

2010-03-11 Thread Eric Thorsen
. Thanks! Eric -- 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 unsubscribe from this g

clojure and clojure-contrib jars built with the 1.5 jdk

2010-03-21 Thread Eric Thorsen
where? Thanks! Eric -- 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 unsubscribe from this gr

Re: clojure and clojure-contrib jars built with the 1.5 jdk

2010-03-21 Thread Eric Thorsen
I figured as much. The issue for me is the Netbeans plugin must have 1.5 java and I was hoping to get these from a repo. I suppose I can build the 1.5 versions and publish them (somewhere). I'll look into this. Thanks, Eric On Mar 21, 8:50 pm, Stuart Sierra wrote: > No, but you ca

Re: clojure and clojure-contrib jars built with the 1.5 jdk

2010-03-22 Thread Eric Thorsen
I'll try this out since I'm stuck and wanted to get out of the business of building my own versions of clojure/-contrib (hence the move to maven). What do other projects do that have maven repos with similar contraints? Are there separate entries in the repo? On Mar 22, 3:53 pm, Rich Hickey wrot

Re: clojure and clojure-contrib jars built with the 1.5 jdk

2010-03-23 Thread Eric Thorsen
was built with which is where I saw the 1.6 reference for clojure-contrib. Having the target=1.5 property set for the clojure-contrib build might get me where I need to be. I just have not had a chance to try it yet. Thanks, Eric On Mar 23, 8:06 am, Alex Osborne wrote: > Hi Eric, > > E

Re: ANN: labrepl, making Clojure more accessible

2010-03-28 Thread Eric Thorsen
d they are up and running. I'm testing on windows and Ubuntu and hope to have this up in the next day or so. Eric On Tue, Mar 23, 2010 at 10:13 AM, Stuart Halloway wrote: > The labrepl project (http://github.com/relevance/labrepl) is a tutorial > environment for learning Clojure. It

New release of Enclojure is up (v1.1) with the labrepl included as a sample project.

2010-03-31 Thread Eric Thorsen
le of short "getting started" videos up in the next week or so as well. Eric -- 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

Re: towards definitive "getting started" assistance

2010-04-01 Thread Eric Thorsen
Once I update the getting started stuff for Enclojure, I'll put a link on the Assembla site. Thanks Stu! On Tue, Mar 30, 2010 at 1:12 PM, Stuart Halloway wrote: > The labrepl now has much better "getting started" instructions, thanks to > everyone who pitched in. But this begs the question: Why h

Re: dump html with clojure

2010-05-13 Thread Eric Schulte
y hardware? Best -- Eric Nurullah Akkaya writes: > Since you don't need coordination or keep some sort of state, IMHO > future is better suited for this. > Following gist is my take, it first reads the file that contains the > list of URLs to be downloaded then splits the list int

Re: dump html with clojure

2010-05-13 Thread Eric Schulte
f (/ (count urls) 2) | first-half (future (dorun (pmap scrape (take half urls | second-half (future (dorun (pmap scrape (drop half urls] | (deref first-half) (deref second-half) | (println (- (.getTime (Date.)) start))) | 2863 | nil | scraper> ` Thanks -

Re: Which git version for cells?

2010-05-17 Thread Eric Schulte
[ring "0.2.0"]] :dev-dependencies [[leiningen/lein-swank "1.0.0-SNAPSHOT"]]) --8<---cut here---end--->8--- Best -- Eric Steven Devijver writes: > I'm experimenting with cells in clojure and am currently using the > "laz

Re: promoting contrib.string to clojure, feedback requested

2010-05-26 Thread Eric Schulte
Mark Engelberg writes: > If you're developing a trio, like ltrim, trim, rtrim, wouldn't it be > better to call them triml, trim, trimr so that they show up next to > each other in the alphabetized documentation? +1 for modifiers at the end Let's not forget those of us who search for functions u

Verify errors - has clojure/contrib officially moved the java 1.6?

2010-05-30 Thread Eric Thorsen
ich I hope is soon) as it will be a 1.6 app but for the time being, the 1.2 features are out of my reach if these assets are built with the jdk 1.6 compiler. Is that the story for the 1.2 release? Thanks, Eric -- You received this message because you are subscribed to the Google Groups "

Re: Clojure in production

2013-06-11 Thread Eric MacAdie
OT, but, personally, I look forward to a world free of Javascript. On Tue, Jun 11, 2013 at 4:38 AM, Bruce Durling wrote: > Hey! > > Oh, and we use clojure for all of our stuff at Mastodon C that isn't > html or javascript and I think the javascript's days are numbered. > > cheers, > Bruce > > --

Re: In what OS do you code?

2013-06-16 Thread Eric MacAdie
OT: Is there a way to download OpenJDK directly? It looks like the download page only has directions on using package managers. Perhaps I missed a link somewhere. - Eric MacAdie On Sat, Jun 15, 2013 at 8:59 PM, John Gabriele wrote: > On Saturday, June 15, 2013 9:40:13 PM UTC-4, Korny wr

[ANN] LispCast Introduction to Clojure Videos

2013-09-13 Thread Eric Normand
:) and ends with data-driven programming. The point is to show how powerful programming with data can be. At the moment, I am selling them for $12 with no DRM. The price may increase soon on advice from several people. Enjoy! Eric -- -- You received this message because you are subscribed to

Re: Who's using Clojure?

2015-03-21 Thread Eric Richmond
We're using Clojure in production @ Indaba Music to power conversesamplelibrary.com -Eric On Tuesday, April 19, 2011 at 10:38:14 AM UTC-4, Damien wrote: > > Hi Everyone, > > I'm on a mission: introducing Clojure in my company, which is a big > consulting company like m

  1   2   3   4   >