Re: Transitive spec generation

2018-03-03 Thread James Gatannah
In case anyone was wondering, it looks like this is probably a known issue: https://dev.clojure.org/jira/browse/CLJ-2079 On Wednesday, February 28, 2018 at 12:05:31 AM UTC-6, James Gatannah wrote: > > > > On Tuesday, February 27, 2018 at 12:45:26 AM UTC-6, Didier wrote: >> >> Don't fully

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

2018-03-03 Thread Sean Corfield
You can use rlwrap with telnet but it’s a bit of a pain to deal with getting back out of the session. I’ve found the following works: rlwrap -q ^Q telnet 127.0.0.1 This sets up control-q as a quote character so when you’re ready to exit the session you can do ^Q ^] q

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

2018-03-03 Thread Timothy Baldridge
Sadly NREPL isn't a REPL it's a RPC protocol transport for remote controlling a Clojure instance. You might look into rebel: although I'm not sure how well that plays with remote terminals. https://github.com/bhauman/rebel-readline. Also look into doing some of this with readline. Perhaps you

Re: [ANN] clj 1.9.0.358

2018-03-03 Thread Alex Miller
Those scripts should not be used directly - they depend on two stages of variable replacement and other external files before they are packaged. Linux installation scripts are found on the getting started page at https://clojure.org/guides/getting_started -- You received this message because

Re: [ANN] clj 1.9.0.358

2018-03-03 Thread Rostislav Svoboda
@linux_users_not_using_the_bash_shell: clj & clojure are bash scripts and are to be found in https://github.com/clojure/brew-install.git 2018-03-03 15:27 GMT+01:00 Alex Miller : > A new version of the Clojure tools (clj, clojure) is now available (see >

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

Re: Why does the `def-` not exist?

2018-03-03 Thread Alex Miller
> ^:private is the stale and sleazy co-conspirator of another blunt instrument, > the whole-ns :use. It’s also useful for anything that uses the var meta to show you only public vars in an ns, such as dir, ns-publics, etc. those are all useful and would affect your repl experience even if you

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

Re: Why does the `def-` not exist?

2018-03-03 Thread Matching Socks
^:private is the stale and sleazy co-conspirator of another blunt instrument, the whole-ns :use. Besides relegating inner-workings to a separate ns: You can gracefully omit a function from auto-generated docs by putting its description in a comment instead of a docstring. It would, likewise,

[ANN] clj 1.9.0.358

2018-03-03 Thread Alex Miller
A new version of the Clojure tools (clj, clojure) is now available (see https://clojure.org/guides/getting_started). Just some bug fixes in this version: * FIX linux-install - use mkdir -p to ensure parent dirs are created * FIX brew install - move man page installation from formula to

ANN: denisovan 0.1.0 - A core.matrix backend for neanderthal.

2018-03-03 Thread Christian Weilbach
Hi, I would like to announce the first release of denisovan. https://github.com/cailuno/denisovan "This library provides a core.matrix implementation for neanderthal. The main focus of this library is to map neanderthal's high performance BLAS routines to core.matrix protocols as closely as

Re: Loop causing OutOfMemoryError: GC overhead limit exceeded ?

2018-03-03 Thread Aditya Athalye
On Saturday, March 3, 2018 at 1:39:23 PM UTC+5:30, Aditya Athalye wrote: > > On Friday, March 2, 2018 at 9:58:35 PM UTC+5:30, Rob Nikander wrote: >> >> >> >> On Friday, March 2, 2018 at 12:48:28 AM UTC-5, Daniel wrote: >>> >>> How do you know this code is causing the error? Unless this is all your

Re: Loop causing OutOfMemoryError: GC overhead limit exceeded ?

2018-03-03 Thread Aditya Athalye
On Friday, March 2, 2018 at 9:58:35 PM UTC+5:30, Rob Nikander wrote: > > > > On Friday, March 2, 2018 at 12:48:28 AM UTC-5, Daniel wrote: >> >> How do you know this code is causing the error? Unless this is all your >> code does, descriptions of the error suggest the memory leak might be >>