Re: maven error : "Could not find metadata XXX/maven-metadata.xml in local"

2015-02-04 Thread Chunseok Lee
Thank you very much. It fixed the issue. Anyway, it seems strange. (In https://clojars.org/repo/mies-om/lein-template/, there is no XXX-clojars.xml file.) 2015년 2월 5일 목요일 오전 8시 55분 39초 UTC+9, Sean Corfield 님의 말: > > On Feb 4, 2015, at 3:29 PM, Chunseok Lee > > wrote: > > Now, I am behind a pr

Re: maven error : "Could not find metadata XXX/maven-metadata.xml in local"

2015-02-04 Thread Sean Corfield
On Feb 4, 2015, at 3:29 PM, Chunseok Lee wrote: > Now, I am behind a proxy. Due to some Java related issue even with http_proxy > setting, I manually download the mies-om's jars, pom and maven-metadata.xml > into my local .m2/repository as follows When I created a mies-om project, here's what

maven error : "Could not find metadata XXX/maven-metadata.xml in local"

2015-02-04 Thread Chunseok Lee
Hello, Clojure I have a problem when creating project using lein. I tried create a new mies-om project as follows : twoflower@twoflowe:~/usr/dev/clojure_project$ lein new mies-om helloom Failed to resolve version for mies-om:lein-template:jar:RELEASE: Could not find metadata mies-om:lein-templ

Re: ANN: vim-cljfmt: a vim plugin for cljfmt, the Clojure formatting tool

2015-02-04 Thread W. David Jarvis
I'm not sure - I wasn't aware of vim-codefmt until now. I'll take a look at it tonight and see about providing hooks into it. On Wednesday, February 4, 2015 at 2:51:37 PM UTC-8, Magnus Therning wrote: > > On Wed, Feb 04, 2015 at 09:07:34AM -0800, W. David Jarvis wrote: > > Today I'm open sourcin

Re: ANN: vim-cljfmt: a vim plugin for cljfmt, the Clojure formatting tool

2015-02-04 Thread Magnus Therning
On Wed, Feb 04, 2015 at 09:07:34AM -0800, W. David Jarvis wrote: > Today I'm open sourcing vim-cljfmt > (https://github.com/venantius/vim-cljfmt). As the name implies, it's a vim > plugin for weavejester's cljfmt, intended to fit into the vim developer's > workflow much as gofmt does, with a Buf

Re: ANN: vim-cljfmt: a vim plugin for cljfmt, the Clojure formatting tool

2015-02-04 Thread W. David Jarvis
Interesting - I'm not sure what that would look like but I'd love to see what you come up with. I've got a few different vim plugins along these lines that I'm working on so I'd be interested in comparing notes at some point. On Wednesday, February 4, 2015 at 12:28:33 PM UTC-8, Bozhidar Batsov

Re: ANN: vim-cljfmt: a vim plugin for cljfmt, the Clojure formatting tool

2015-02-04 Thread Bozhidar Batsov
Nice! I think it'd be a good idea to wrap cljfmt in a nREPL middleware that we can use from both CIDER and fireplace (and possibly other editors). I might look into adding this to cider-nrepl. On 4 February 2015 at 19:07, W. David Jarvis wrote: > Today I'm open sourcing vim-cljfmt ( > https://g

ANN: vim-cljfmt: a vim plugin for cljfmt, the Clojure formatting tool

2015-02-04 Thread W. David Jarvis
Today I'm open sourcing vim-cljfmt (https://github.com/venantius/vim-cljfmt). As the name implies, it's a vim plugin for weavejester's cljfmt, intended to fit into the vim developer's workflow much as gofmt does, with a BufWritePre hook to format your code on write. It leverages Fireplace.vim's

Re: which are the pros and cons between stuartsierra/component and prismatic/graph?

2015-02-04 Thread Ben Mabey
On 2/4/15 5:46 AM, Juan A. Ruz wrote: Hi guys! Can anyone give some insight on the features or downsides of choosing component vs graph libs? Or maybe explain the advantages of using defrecords instead of plain fns? The two are not mutually exclusive. We use both to manage our system's lif

Re: which are the pros and cons between stuartsierra/component and prismatic/graph?

2015-02-04 Thread Shantanu Kumar
On Wednesday, 4 February 2015 19:36:58 UTC+5:30, tbc++ wrote: > > Most of the time, if you are using a component like system, you'll also > want some level of polymorphism as well. This is what the defrecord > approach enables, it not only provides dependency injection, but also > provides a t

Re: which are the pros and cons between stuartsierra/component and prismatic/graph?

2015-02-04 Thread Timothy Baldridge
Most of the time, if you are using a component like system, you'll also want some level of polymorphism as well. This is what the defrecord approach enables, it not only provides dependency injection, but also provides a type that calls to that component can dispatch against. In testing it's then q

Re: which are the pros and cons between stuartsierra/component and prismatic/graph?

2015-02-04 Thread Shantanu Kumar
On Wednesday, 4 February 2015 18:26:43 UTC+5:30, Lucas Bradstreet wrote: > > Component is more for managing state, whereas graph is for structuring > computation. All I can really tell you is that after using component I am > never going back (at least in Clojure). > With Prismatic graph you c

Re: which are the pros and cons between stuartsierra/component and prismatic/graph?

2015-02-04 Thread Colin Yates
You might also want to consider prismatic schema if you are evaluating your tool stack. I too would condone component, and the various component compatible libs that have sprung up. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this grou

Re: ANN: Clojure-Miniprofiler, a web application profiling tool

2015-02-04 Thread tcrayford
Ack, minor date error there. I've been running Clojure Miniprofiler in production since July 2014, and it's proved both very stable, and extremely useful. On Wednesday, 4 February 2015 13:16:43 UTC, tcrayford wrote: > > Clojure Miniprofiler is a simple, but effective profiling tool for your > w

ANN: Clojure-Miniprofiler, a web application profiling tool

2015-02-04 Thread tcrayford
Clojure Miniprofiler is a simple, but effective profiling tool for your web application. It tells you what is slow about a web page both in production (for admins only), and in development, as you load the page. It's a port of the original .Net library to Clojure, utilizing the JavaScript and

Re: which are the pros and cons between stuartsierra/component and prismatic/graph?

2015-02-04 Thread Lucas Bradstreet
Component is more for managing state, whereas graph is for structuring computation. All I can really tell you is that after using component I am never going back (at least in Clojure). Lucas > On 4 Feb 2015, at 20:46, Juan A. Ruz wrote: > > Hi guys! > > Can anyone give some insight on the fe

which are the pros and cons between stuartsierra/component and prismatic/graph?

2015-02-04 Thread Juan A. Ruz
Hi guys! Can anyone give some insight on the features or downsides of choosing component vs graph libs? Or maybe explain the advantages of using defrecords instead of plain fns? thanks in advance! Juan -- You received this message because you are subscribed to the Google Groups "Clojure" gro

Re: Rationale behind the naming and semantics for agents.

2015-02-04 Thread Justin Smith
Thanks, "not widely used" - so I guess it is totally unrelated to "multi agent systems"? http://en.wikipedia.org/wiki/Multi-agent_system On Wednesday, February 4, 2015 at 4:00:51 AM UTC-8, Gary Verhaegen wrote: > > They are different from actors because Rich is "unenthusiastic about > actors". I

Re: Rationale behind the naming and semantics for agents.

2015-02-04 Thread Gary Verhaegen
They are different from actors because Rich is "unenthusiastic about actors". I'm not sure there is any single piece of reference where he himself describes exactly why he does not like actors, but here is a guess. Actors have one very desirable property: they encapsulate some state, and the actor