aatree release 0.3.2--Lazy Nesting

2015-10-09 Thread William la Forge
The aatree project provides fully compatible alternatives to Clojure sorted-map and vector, with several extensions: - AAVector supports add/drop at any point using addn and dropn. - AAMap implements Reversible, Counted, Indexed and Sorted - CountedSequence implements Counted and do not use

Re: [ANN] Yesql 0.5.1 Released.

2015-10-09 Thread Michael Blume
The simple answer is https://clojure.github.io/clojure/javadoc/clojure/java/api/package-summary.html But since Yesql works by producing Clojure vars in a namespace, doing *everything* from Java sounds painful -- you'd probably want to sneak in like one Clojure file with a bunch of defquery stateme

Re: [ANN] Yesql 0.5.1 Released.

2015-10-09 Thread Charles Harvey III
Here's another crazy question... How would I use this from Java? Seriously though. I might be forced to use Java on my next project but I really like Yesql over MyBatis (the closest thing in Java Land). Has anyone done it before and can show a small example? I don't want to give up my .sql file

Re: CIDER package not present in emacs 24.5

2015-10-09 Thread Artur Malabarba
The steps are detailed here on the Readme . Basically, you need to add Melpa to your package repositories first: (require 'package) (add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/

Re: Clojure in Action, Second Edition

2015-10-09 Thread BarreisR
I agree. Dana petak, 9. listopada 2015. u 12:34:45 UTC+2, korisnik Mark N. napisao je: > > The first edition was a tremendous help when I was first learning Clojure. > Glad to see there's an update. > > On Wed, Oct 7, 2015 at 5:16 PM, BarreisR > > wrote: > >> New and very useful book by author

Re: How to do functional programming

2015-10-09 Thread Sean Corfield
On 10/9/15, 2:13 AM, "Colin Yates" wrote: >Coming from many years of ‘Java Enterprise Applications’ (e.g. Spring, >Hibernate and if you were feeling adventurous maybe free marker instead of JSP >- h.) this was a wonderful breath of fresh air for me. Thank you for starting my Friday off wi

CIDER package not present in emacs 24.5

2015-10-09 Thread amrita tomar
Hi guys, I have installed emacs 24.5 from http://ftp.gnu.org/gnu/emacs/windows/ but when I'm trying to install cider package it is not present in the package list. I have installed leiningen 2.5.3 which is working fine . Please suggest me any solution. Thanks in advance -- You received this

Re: ANN: Clojure High Performance Programming

2015-10-09 Thread Renee Pereira
Hi Clojure Programmers, Review copies available for this book. Limited copies!! Hurry!! Email me at ren...@packtpub.com if anyone is interested. Amazon.com account is a must. Regards, Renee Pereira. Packt Publishing On Thursday, November 21, 2013 at 5:21:45 AM UTC+5:30, Shantanu Kumar wrote: >

Re: How does one print the stacktrace from slingshot?

2015-10-09 Thread Lawrence Krubner
Thank you. On Friday, October 9, 2015 at 6:16:23 AM UTC-4, Marc O'Morain wrote: > > If you pass (:throwable &throw-context) as an arg before the string it > will print the stack trace: > > (timbre/log :trace (:throwable &throw-context) "the true stack trace: ") > > > > > On Fri, Oct 9, 2015 a

Re: How to do functional programming

2015-10-09 Thread Mark Nutter
Neal Ford has a good talk on "Functional Thinking" https://www.youtube.com/watch?v=7aYS9PcAITQ On Fri, Oct 9, 2015 at 5:13 AM, Colin Yates wrote: > he he. > > Coming from many years of ‘Java Enterprise Applications’ (e.g. Spring, > Hibernate and if you were feeling adventurous maybe free marker

Re: Clojure in Action, Second Edition

2015-10-09 Thread Mark Nutter
The first edition was a tremendous help when I was first learning Clojure. Glad to see there's an update. On Wed, Oct 7, 2015 at 5:16 PM, BarreisR wrote: > New and very useful book by author Amit Rathore. > https://www.manning.com/books/clojure-in-action-second-edition > > -- > You received this

Re: How does one print the stacktrace from slingshot?

2015-10-09 Thread Marc O'Morain
If you pass (:throwable &throw-context) as an arg before the string it will print the stack trace: (timbre/log :trace (:throwable &throw-context)  "the true stack trace: ") On Fri, Oct 9, 2015 at 11:00 AM, Lawrence Krubner wrote: > I'm trying to use Slingshot. I would like to print the stac

Re: How does one print the stacktrace from slingshot?

2015-10-09 Thread Lawrence Krubner
Ah, not enough sleep. I was catching it a lower level and re throwing it in a form that tripped me up. Got rid of low level catch and did: (timbre/log :trace " the true stack trace: " (stack/parse-exception (:throwable &throw-context))) using clj-stacktrace and all is good. On Frid

How does one print the stacktrace from slingshot?

2015-10-09 Thread Lawrence Krubner
I'm trying to use Slingshot. I would like to print the stacktrace. If I do: (timbre/log :trace " the stack trace via slingshot-support " (slingshot-support/stack-trace)) I get: the stack trace via slingshot-support [Ljava.lang.StackTraceElement;@72ee66cd How do I get what is in

Re: How to do functional programming

2015-10-09 Thread Colin Yates
he he. Coming from many years of ‘Java Enterprise Applications’ (e.g. Spring, Hibernate and if you were feeling adventurous maybe free marker instead of JSP - h.) this was a wonderful breath of fresh air for me. https://www.coursera.org/course/proglang looks great as well. > On 9 Oct 2015