[ANN] How to structure Clojurescript apps for simplicity and testability

2018-11-22 Thread Oliver Hine
Hi everyone, I've recently published a blog post describing the techniques I have evolved over the last 3 years for writing Clojurescript applications. It started as an explanation of why I like to use re-frame but grew to encompass the idea of separation of data and representation (the HTML la

RE: [ANN] Clojure 1.10.0-beta8

2018-11-22 Thread Sean Corfield
In news that should surprise no one: our full test suite passes on Beta 8 (I meant to post that yesterday afternoon but got distracted). Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN An Architect's View -- http://corfield.org/ "If you're not annoying somebody, you're not really alive." -- Ma

Received fatal alert: protocol_version

2018-11-22 Thread lawrence . krubner
I've been away from Clojure for a year and I'm just coming back to it. I assume some of my dependencies are out of date. I'm working on a project that is 90% Java with a Clojure wrapper. I tried this: lein uber I got a "protocol version" error which seems to have something to do with a new lev

Re: Received fatal alert: protocol_version

2018-11-22 Thread lawrence . krubner
Saw a suggestion here: https://github.com/technomancy/leiningen/issues/2364 and tried it: LEIN_JVM_OPTS=-Dhttps.protocols=TLSv1.2 lein -U deps but got: Could not transfer artifact io.javalin:javalin:pom:2.4.0 from/to central (https://repo1.maven.org/maven2/): java.lang.RuntimeException: Unexp

Re: Received fatal alert: protocol_version

2018-11-22 Thread Andy Fingerhut
What are the outputs of 'java -version' and 'lein version' ? What OS? Some older versions of the JVM have older crypto certificates built into them, which newer versions may improve upon. Andy On Thu, Nov 22, 2018 at 12:42 PM wrote: > Saw a suggestion here: > > https://github.com/technomancy/

Re: Received fatal alert: protocol_version

2018-11-22 Thread lawrence . krubner
Okay, on my Macbook Pro, I fixed this problem by adding this to my .bash_profile: export JAVA_TOOL_OPTIONS="-Djavax.net.ssl.trustAnchors=$JAVA_HOME/jre/lib/security/cacerts -Djavax.net.ssl.trustStore=$JAVA_HOME/jre/lib/security/cacerts" On Thursday, November 22, 2018 at 3:37:31 PM UTC-5,