Re: Anyone Worked with NW.js and ClojureScript

2015-04-09 Thread Ed Babcock
Hey, I've been working on some projects to help with ClojureScript on NW.js and mobile platforms. The main one is browserific: https://github.com/greenyouse/browserific Right now, it's just a lein plugin + template but there should be an interop library within a few weeks. It uses a new feature

Poland - Poznań - i am looking people who are coding in Clojure to share experience

2015-04-09 Thread Krzysztof Władyka
Hello, I am learning Clojure. I watched Clojure Inside Out, read many atricles, half Programming Clojure (2nd edition), started reading The Joy of Clojure. I am really fascinate about this technology and idea behind that. I see it's good choice. *I am looking team / people in Poland - Poznań

Re: Generating .clj files with content

2015-04-09 Thread Devin Walters
To Leon's point above, that looks like: 12345678910111213 (require '[clojure.pprint :as pp]) (pp/with-pprint-dispatch pp/code-dispatch (pp/pprint (read-string "(defn foo [xs] (apply str (reverse (str (apply + (for [y (filter (fn [x] (= x 1)) xs)] (inc y)))"))) => nil (defn foo [xs]

Re: Generating .clj files with content

2015-04-09 Thread Leon Grapenthin
You can use https://clojure.github.io/clojure/clojure.pprint-api.html#clojure.pprint/with-pprint-dispatch with https://clojure.github.io/clojure/clojure.pprint-api.html#clojure.pprint/code-dispatch to achieve that. On Wednesday, April 8, 2015 at 8:14:02 PM UTC+2, Sven Richter wrote: > > Hi,

Re: [ANN] Clojure Applied: From Practice to Practitioner

2015-04-09 Thread Alex Miller
I have bought and read most of them and they are all fine choices - I would not steer you away from any of them. :) I started with "Programming Clojure" (Pragmatic) by Halloway and Bedra, but then that's all there was at that point! I also really like both "Clojure Programming" by Emerick, Car

Which could be the best clojure alternative to replace play framework?

2015-04-09 Thread Juan A. Ruz @tangrammer
Hi guys, just looking for possible (and hopefully experienced) directions to replace Play Framework and its popular Akka support that as the doc page states : "Akka provides a better platform to build correct concurrent and scalable appl

Re: [ANN] Clojure Applied: From Practice to Practitioner

2015-04-09 Thread Dan Young
Awesome thanx! Picked up a copy yesterday and looking fwd to the weekend! Regards, Dano On Wednesday, April 8, 2015 at 7:27:58 AM UTC-6, Alex Miller wrote: > > Hey all, > > I'm very happy to announce that Clojure Applied is now available in beta: > > https://pragprog.com/book/vmclojeco/clojure-

Re: [ANN] Clojure Applied: From Practice to Practitioner

2015-04-09 Thread Bozhidar Batsov
IMO "Clojure Programming" is the best intro book (although it's a bit outdated). "Clojure for the Brave and the True" is great as well, but it's not yet completely finished (ETA June). On 9 April 2015 at 18:57, Derek Koziol wrote: > What do you recommend as "fine introductory books" to get mysel

Re: [ANN] Clojure Applied: From Practice to Practitioner

2015-04-09 Thread Derek Koziol
What do you recommend as "fine introductory books" to get myself at the level needed for this book? I have very little experience with functional programming and Clojure. On Wednesday, April 8, 2015 at 9:27:58 AM UTC-4, Alex Miller wrote: > > Hey all, > > I'm very happy to announce that Clojure

Re: Delivering HTML documentation to end-users via uberjar

2015-04-09 Thread Jeremy Heiler
On Thu, Apr 9, 2015 at 3:41 AM, henrik42 wrote: > Hi, > > I'd like to ship my app *incl. documentation* as an uberjar to end-users > and give them access to the docs via HTTP. > I plan to use codox/marginalia/markdown-clj to produce the HTML in lein > build and then build the uberjar incl. the ge

Re: How to to watch changed files and run tests again automatic

2015-04-09 Thread Juvenn Woo
Hi Denis, there's lein-auto plugin can do that. — Sent from Mailbox On Thu, Apr 9, 2015 at 9:55 PM, Denis L wrote: > I use Rspec/Guard to watch changed files and automatic run test for for > Ruby/Rails application. > How can I repeat similar scenario for Clojure-app? > -- > You received thi

Re: How to to watch changed files and run tests again automatic

2015-04-09 Thread Colin Yates
Lein-test-refresh works well On 9 Apr 2015 14:55, "Denis L" wrote: > I use Rspec/Guard to watch changed files and automatic run test for for > Ruby/Rails application. > How can I repeat similar scenario for Clojure-app? > > -- > You received this message because you are subscribed to the Google >

How to to watch changed files and run tests again automatic

2015-04-09 Thread Denis L
I use Rspec/Guard to watch changed files and automatic run test for for Ruby/Rails application. How can I repeat similar scenario for Clojure-app? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegrou

Delivering HTML documentation to end-users via uberjar

2015-04-09 Thread henrik42
Hi, I'd like to ship my app *incl. documentation* as an uberjar to end-users and give them access to the docs via HTTP. I plan to use codox/marginalia/markdown-clj to produce the HTML in lein build and then build the uberjar incl. the generated HTML. The app will have a CLI but as a plus I'd li