[JOB] Clojure Developer | Presien | Sydney

2019-10-17 Thread Thomas Sesselmann
Hi Everyone, We're hiring a Clojure developer for our AI startup based in Sydney. We're using object detection and machine learning to improve worker safety on construction sites and we need a hand building out our Dashboard and Analytics platform which is forked from Metabase

Re: How can I do something like (= (class ds) next.jdbc.connection) ??

2019-10-17 Thread Sean Corfield
You should :require the namespaces, not try to :import things. (ns your.namespace (:require [next.jdbc :as jdbc])) I suggest you start off by working through https://cljdoc.org/d/seancorfield/next.jdbc/1.0.9/doc/getting-started The ds binding that you have will satisfy this check (instance?

Re: A Concise Guide to Getting Started with Clojure on Windows

2019-10-17 Thread Brandon R
Hi Alex! That would be great actually. I'll read over that and see about getting in on there. Brandon On Thu, Oct 17, 2019 at 7:05 PM Alex Miller wrote: > We'd be happy to host a guide like this on clojure.org if you're > interested... > > https://clojure.org/community/contributing_site > >

Re: A Concise Guide to Getting Started with Clojure on Windows

2019-10-17 Thread Alex Miller
We'd be happy to host a guide like this on clojure.org if you're interested... https://clojure.org/community/contributing_site Alex On Thursday, October 17, 2019 at 7:47:03 PM UTC-5, Brandon R wrote: > > Hello Clojure friends, > > I wrote this guide for a friend, and it's something I wish I

How can I do something like (= (class ds) next.jdbc.connection) ??

2019-10-17 Thread Laws
If I do this: (class ds) I see: next.jdbc.connection$url_PLUS_etc$reify__555 Is there anyway I can match against this? I'd like a runtime check to know that the code really does have a database connection. Imagine code like this: (if (= next.jdbc.connection (class ds)) (println "its

A Concise Guide to Getting Started with Clojure on Windows

2019-10-17 Thread Brandon R
Hello Clojure friends, I wrote this guide for a friend, and it's something I wish I had when I was starting. This guide focuses on Windows, VS Code, and Calva, though much of it would be useful to non-Windows users as well. Beginner resources have come a long way since I started, but there can