Re: [ClojureScript] Re: ANN: ClojureScript 1.7.145

2015-10-13 Thread Daniel Compton
I should mention, not all usages of c.string/replace will break :), but it does change the behaviour when using a function as the replacement value. You can see more details at CLJS-1304 . On Wed, Oct 14, 2015 at 5:10 PM Daniel Compton <

Re: [ClojureScript] Re: ANN: ClojureScript 1.7.145

2015-10-13 Thread Daniel Compton
Hi folks Just wanted to mention that "CLJS-1304: c.string/replace differs from Clojure" is a breaking change. It was first introduced in 1.7.58, but that was marked as pre-release, 1.7.145 is the first stable version with the patch. It affected us through cljs-time

Re: Advice on dynamic "real time" queries

2015-10-13 Thread Daniel Compton
Hi Keegan I'm working on *exactly this* at the moment with the team at Day8. While we don't have any public code to share at this time, feel free to contact me off-list and I can chat with you more about it. On Wed, Oct 14, 2015 at 4:06 AM keegan myers wrote: > I have

Re: Ted Dziuba: The S in REST

2015-10-13 Thread James Reeves
On 13 October 2015 at 09:49, Patrick Kristiansen wrote: > > Has anyone read and given any thoughts to the ideas about immutability and > REST by Ted Dizuba here: > > http://teddziuba.github.io/2014/08/18/the-s-in-rest/ > > Has anyone done anything resembling this? I think the

Ted Dziuba: The S in REST

2015-10-13 Thread Patrick Kristiansen
Hi everyone Has anyone read and given any thoughts to the ideas about immutability and REST by Ted Dizuba here: http://teddziuba.github.io/2014/08/18/the-s-in-rest/ Has anyone done anything resembling this? I think the ideas sounds intriguing. Best regards, Patrick -- You received this

[ANN] Clojure 1.8.0-beta1

2015-10-13 Thread Alex Miller
Clojure 1.8.0-beta1 is now available. Try it via - Download: https://repo1.maven.org/maven2/org/clojure/clojure/1.8.0-beta1 - Leiningen: [org.clojure/clojure "1.8.0-beta1"] Below is a list of the other changes included in beta1. See the full change log here:

Re: Writing Friendlier Clojure

2015-10-13 Thread gianluca torta
Hi, "Whenever you notice this pattern, you can probably turn to one of the > threading macros instead." > > that would fly in the face of being more declarative; when we start to > put in explicit ordering, instead of leaving it as just relationships, > that can be bad. of course it can also

[off topic] Leiningen Lives?

2015-10-13 Thread Gregg Reynolds
FYI http://www.cnn.com/2015/10/13/asia/australia-desert-hunter-survival-ants/ -- 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

ANN: ClojureScript 1.7.145

2015-10-13 Thread David Nolen
ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript Leiningen dependency information: [org.clojure/clojurescript "1.7.145"] This release updates the Google Closure Compiler dependency and includes many

Advice on dynamic "real time" queries

2015-10-13 Thread keegan myers
I have been working on a project to transform an in house rails application into a distributed SAAS solution. As with many rails apps it began as a simple crud interface, but inevitably became unsuitably complex and slow. At this point the application has almost become a feature complete ERP

Re: [ANN] Clojure 1.8.0-beta1

2015-10-13 Thread Lars Rune Nøstdal
Just a heads up that http://dev.clojure.org/jira/browse/CLJ-1809 is still a problem. A lot of Clojure code fails to compile now. I hope this will be fixed before 1.8 final is out. On Tuesday, October 13, 2015 at 4:01:06 PM UTC+2, Alex Miller wrote: > > Clojure 1.8.0-beta1 is now available. > >

Re: [ANN] Clojure 1.8.0-beta1

2015-10-13 Thread Gary Trakhman
Since upgrading our maven-based project, I'm seeing a new warning: Reflection warning, clojure/pprint/pretty_writer.clj:419:12 - call to method write can't be resolved (target class is unknown). Once I connect with cider, I check *warn-on-reflection* and it is false. On Tue, Oct 13, 2015 at

Re: tools.analyzer help

2015-10-13 Thread Gregg Reynolds
On Mon, Oct 12, 2015 at 7:27 AM, benedek fazekas wrote: > hi Gregg, > > I am not aware of any extensive documentation apart from the qiuckref and > the readmes. However can point you to two projects using tools.analyzer > extensively: >

Re: [ANN] Clojure 1.8.0-beta1

2015-10-13 Thread Alex Miller
The reflection warning is from the pprint ticket - code changed from when the patch was created and applied. We will get that in the next beta. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: [ANN] Clojure 1.8.0-beta1

2015-10-13 Thread Alex Miller
CLJ-1809 will be addressed before 1.8 final. -- 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

Hiragana with clojure + instaparse

2015-10-13 Thread francis . stephan09
A very small Clojure program to convert latin character string to hiragana. Uses Instaparse Just a way to say my enthusiasm with Clojure, so simple and powerful... And my deep impression with Instaparse, which looks great. https://github.com/francisstephan/hiragana -- You received this message

Re: Ted Dziuba: The S in REST

2015-10-13 Thread Raoul Duke
The thought that came to my mind when reading it was something like, "Hasn't anybody heard of MVCC?" -- 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

Re: ANN: ClojureScript 1.7.145

2015-10-13 Thread Nathan B
On Tuesday, October 13, 2015 at 8:02:07 AM UTC-7, David Nolen wrote: > ClojureScript, the Clojure compiler that emits JavaScript source code. > > > README and source code: https://github.com/clojure/clojurescript > > > Leiningen dependency information: > > >     [org.clojure/clojurescript

Re: tools.analyzer help

2015-10-13 Thread Nicola Mometto
Hi Gregg, tools.analyzer (specifically tools.analyzer.jvm) doesn't do any evaluation of the forms by default if you're using the `analyze` function, however there's an `analyze+eval` function that will do that if you need. Note that t.a.jvm is a *clojure* analyzer that will only be able to

IoT Clojure Opportunity

2015-10-13 Thread Matt Masciocchi
Hello Everyone, I'm currently working for an exciting IoT start-up looking for a Sr.SW Engineer (server side). After countless Emails, InMails and phone calls, my team and I have come to realize that finding a qualified, expert Clojure Engineer is quite a task! If you work with Clojure in a

Re: [ClojureScript] Re: ANN: ClojureScript 1.7.145

2015-10-13 Thread David Nolen
It's an innocuous warning from badly annotated code from the Google Closure Library. Annoying but not important. We'll probably cut a followup release with a bumped GCL dependency once it's clear there are not more pressing problems. David On Tue, Oct 13, 2015 at 3:58 PM, Nathan B

Re: Library suggestions requested for clojure-toolbox.com

2015-10-13 Thread Josh Tilles
James, I've provided a bit more information than you requested because I figured mailing list readers might find the extra details useful. - durable-queue - URL: https://github.com/Factual/durable-queue - GitHub description: “a disk-backed queue for clojure” - Categories:

Re: Library suggestions requested for clojure-toolbox.com

2015-10-13 Thread Josh Tilles
Also, you may want to replace MidjeDoc with Hydrox . On Tuesday, October 13, 2015 at 6:32:50 PM UTC-4, Josh Tilles wrote: > > James, I've provided a bit more information than you requested because I > figured mailing list readers might find the extra details

Inspecting the Call Stack on Recursive Calls

2015-10-13 Thread Jeremiah Via
Hi all, I was curious to know if it is at all possible to determine how many times a function has been recursively called by inspecting the callstack. Given this code snippet: (defn ignored? [classname] (let [ignored #{"callers" "dbg" "clojure.lang" "swank" "nrepl" "eval"}] (some