Re: How to restrict the number of test with stest/check

2018-03-07 Thread Chris Shellenbarger
Alex, When I attempt to specify :num-tests, ie: (stest/check `do-something {:clojure.spec.test.check/opts {:num-tests 10}}) It usually seems to work, but sometimes I can see code executing far more than the number of tests I've specified. This appears to be correlated to when it finds a

Re: Developing in Clojure with Emacs: Mastering the Keyboard

2018-03-04 Thread Chris Shellenbarger
ackage-pinned-packages > '(seq . "melpa-stable") t) > (add-to-list 'package-pinned-packages > '(clojure-mode . "melpa-stable") t) > > And in your customizations/setup-clojure.el you have to fix the minibuffer > documentaion as follows: >

Re: Developing in Clojure with Emacs: Mastering the Keyboard

2018-03-04 Thread Chris Shellenbarger
ed they are > not great, but they do cover a lot of ground and are reasonably up-to-date. > > On 3 March 2018 at 23:11, Chris Shellenbarger > wrote: > >> I spent the last week learning and using Emacs and CIDER for Clojure >> Development. >> >> I've sta

Re: Any better client then telnet for connecting to a socket repl server?

2018-03-03 Thread Chris Shellenbarger
Can you use NREPL? https://github.com/clojure/tools.nrepl This seems to be what most tools that provide a REPL are built on top of (Cursive, CIDER, etc). On Friday, March 2, 2018 at 7:49:45 PM UTC-6, Didier wrote: > > I want to connect to a Clojure socket repl server, but telnet is a really

Developing in Clojure with Emacs: Mastering the Keyboard

2018-03-03 Thread Chris Shellenbarger
I spent the last week learning and using Emacs and CIDER for Clojure Development. I've started to write up a lot of the lessons I've learned from doing so in the hopes that it will help some other people who attempt something similar. Anyway, if you're interested in getting started with Emacs a

Key Lesson: Building CloudRepo With Clojure

2018-02-20 Thread Chris Shellenbarger
I struggled for a long time with Clojure and experiencing some of the power that I had heard about form others. I realize now that it was because I had been so ingrained in the OO paradigm that I wasn't coding in the way that Clojure wanted me to. Anyway, I've since overcome that and now that

Re: java interop help for beginner calling java class

2014-03-29 Thread Chris Shellenbarger
Did you move it to the corresponding directory structure? So, com.example.mystuff would need a directory hierarchy like com/example/mystuff. The mystuff directory is where you need to put your java files that are in the com.example.mystuff package. -- You received this message because you ar