Re: Is Caribou Dormant ?

2015-02-26 Thread Sébastien Orban
The way Clojure allow us to re use discrete component, rather than to have them integrated from the get go(or getting integrated via various hack), explain partially why there's no huge following to create a framework of this kind. Luminus is a nice example - a start point to understand this, as

Re: Is Caribou Dormant ?

2015-02-26 Thread Mark Engelberg
I hope Caribou is not dormant. It seems like a powerful tool for building a content management system, and although I haven't personally needed it yet, I really like knowing that something like it is available in Clojure for building that common class of web sites quickly. On Thu, Feb 26, 2015 at

Re: Is Caribou Dormant ?

2015-02-26 Thread gvim
On 26/02/2015 09:59, Sébastien Orban wrote: The way Clojure allow us to re use discrete component, rather than to have them integrated from the get go(or getting integrated via various hack), explain partially why there's no huge following to create a framework of this kind. Luminus is a nice exa

Re: Is Caribou Dormant ?

2015-02-26 Thread Geraldo Lopes de Souza
puzzler, I've liked the idea. I'm giving it at shot. It would be nice if anyone could share the pitffalls, caveats found on this tool. Regards, Geraldo Lopes de Souza On Thursday, February 26, 2015 at 7:28:58 AM UTC-3, puzzler wrote: > > I hope Caribou is not dormant. It seems like a powerf

Multi-project Set-up

2015-02-26 Thread Timur
Hi all, I'm trying to create a multi-project set-up using checkouts. My problem is the checked out project contains a dependency which is not satisfied by the project which checks it out. Consequently, I receive a FileNotFound exception. Do you have suggestions to solve this problem? Thanks

How do I depend on clojure 1.7.0-master-SNAPSHOT?

2015-02-26 Thread Michael Griffiths
Hi all, I have the following in my project.clj: :dependencies [[org.clojure/clojure "1.7.0-master-SNAPSHOT"]] :repositories [["snapshots" "https://oss.sonatype.org/content/repositories/snapshots";]] but am getting this error: Could not find artifact org.clojure:clojure:jar:1.7.0-master-SN

[no subject]

2015-02-26 Thread Cecil Westerhof
At the moment I have the following code: (str "" "" "" "Quote" "Author" "") But I want to make it more generic: the th lines should be data-driven. There is a headers variable and when this contains: '(:quote "Quote" :author "Author") Then the

Re:

2015-02-26 Thread Timothy Baldridge
I normally either do something like this: (apply str (concat ["a" "b"] (map name :c :d) ["e" "f"])) Or use java's StringBuilder, it's a mutable black box, but appending is pretty efficient, and doesn't involve the creation of a ton of seqs l

Re:

2015-02-26 Thread Colin Yates
Hi Cecil - have you looked at hiccup? On 26 February 2015 at 19:39, Cecil Westerhof wrote: > At the moment I have the following code: > (str "" > " "style='font-family:Arial; font-size:16px; margin: > 10px;width:100%'>" > "" > "Quote" > "Author" >

Re:

2015-02-26 Thread Cecil Westerhof
2015-02-26 20:45 GMT+01:00 Timothy Baldridge : > I normally either do something like this: > > (apply str (concat ["a" "b"] > (map name :c :d) > ["e" "f"])) > ​That gives: IllegalArgumentException Don't know how to create ISeq from: cloj

Re:

2015-02-26 Thread Cecil Westerhof
2015-02-26 20:46 GMT+01:00 Colin Yates : > Hi Cecil - have you looked at hiccup? > ​Not yet.​ On 26 February 2015 at 19:39, Cecil Westerhof > wrote: > > At the moment I have the following code: > > (str "" > > " > "style='font-family:Arial; font-size:16px; margin: > > 10p

cascalog and java 1.7

2015-02-26 Thread Sunil S Nandihalli
Hi Everybody, I have been meaning to try cascalog for a while now looking at its powerful query language. But today when I was trying to play with it I am getting some errors and when I go back cascalog readme page it says cascalog runs only with java 1.6 . Is it just that the readme is outdated o

Re:

2015-02-26 Thread Cecil Westerhof
2015-02-26 20:39 GMT+01:00 Cecil Westerhof : > > At the moment I have the following code: > (str "" > " "style='font-family:Arial; font-size:16px; margin: > 10px;width:100%'>" > "" > "Quote" > "Author" > "") > > But I want to make it more g

Re: How do I depend on clojure 1.7.0-master-SNAPSHOT?

2015-02-26 Thread Andy Fingerhut
One way to get 1.7.0-master-SNAPSHOT into your local Maven repo in your $HOME/.m2 directory is to do these commands to build it yourself and install it there: # First command creates a clojure directory, and subdirectories beneath that. git clone git://github.com/clojure/clojure.git cd clojure # m

Re:

2015-02-26 Thread Colin Yates
I mention it because it is a very elegant solution to the problem of constructing html in clojure. An equivalent of your code would be something like: (html (html5 [:table {:border: 1 :cellpadding :10 :style {:font-family "Arial" :font-size "16px" :margin "10px" :width "100%"}} [:tr

Re: How do I depend on clojure 1.7.0-master-SNAPSHOT?

2015-02-26 Thread Sean Corfield
On Feb 26, 2015, at 11:21 AM, Michael Griffiths wrote: > I have the following in my project.clj: > > :dependencies [[org.clojure/clojure "1.7.0-master-SNAPSHOT"]] > :repositories [["snapshots" > "https://oss.sonatype.org/content/repositories/snapshots";]] The only difference between my pro

[ANN] Specter: a library for deep introspection and transformation of nested data

2015-02-26 Thread Nathan Marz
It's been far too long since I've open sourced anything, so today I'm happy to open source a small library that I use extremely heavily: https://github.com/nathanmarz/specter Specter lets you write code like this: user> (select [ALL :a even?] [{:a 1} {:a 2} {:a 4} {:a 3}]) [2 4] us

Multi-project Set-up

2015-02-26 Thread Eldar Gabdullin
Go to your checked out project and run "lein install" there. -- 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 fi

Re: Is Caribou Dormant ?

2015-02-26 Thread Sven Richter
Hi, Please have a look at: https://github.com/sveri/closp/ and tell me what you are missing. You might as well open feature / pull requests and I will consider adding them. Best Regards, Sven Am Donnerstag, 26. Februar 2015 05:22:57 UTC+1 schrieb g vim: > > Caribou was Clojure's Rails so I'm s