Fork me on GitHub
#announcements
<
2019-04-15
>
borkdude10:04:15

New release of clj-kondo. Java method arity checking and more: https://github.com/borkdude/clj-kondo/releases/tag/v2019.04.15-alpha

parrot 12
jumar10:04:58

Any ETA when flycheck-clj-kondo will be available in MELPA?

borkdude10:04:20

Unfortunately that’s not up to me, but to the MELPA maintainers

plexus11:04:16

Heart of Clojure tickets are finally available. €79 early bird, €99 regular https://mailchi.mp/2601f54499b6/tickets-available-announcing-our-sponsors

❤️ 44
4
borkdude11:04:02

@U07FP7QJ0 Is the ticket refundable until some limited time frame before the conf? I’d like to come but not entirely sure about my schedule in August yet

borkdude11:04:15

(ClojureD and ClojuTRE have this option)

plexus11:04:19

Tickets are not refundable, but they can be transferred to someone else.

borkdude11:04:30

That’s cool too. Thanks.

eval202017:04:36

ohmyclj v0.4 - generate/dev/test/run Clojure scripts. https://gitlab.com/eval/ohmyclj/tree/master#ohmyclj Quick Intro Given the executable script hello_world.clj:

#!/usr/bin/env ohmyclj
"DEPS='clj-time=0.15.1'"

(ns user
  (:require [clj-time.core :as t]))

(defn -main [& args]
  (println (str "Hello, " (nth args 0 "World") "! Time is now " (t/now))))

(ns test
  (:require [clojure.test :refer [deftest is testing are]]
            [user]))

(deftest main-test
  (is (some? (user/-main "Foo")) "FIXME"))
ohmyclj allows you to: - run it: ./hello_world.clj Clojurians (e.g. Hello, Clojurians! Time is now 2019-04-15T14:47:27.235Z) - try it: ohmyclj repl hello_world.clj (iterate quickly with helper-functions like (reload)) - test it: ohmyclj test hello_world.clj Try it yourself: ohmyclj new > hello_word.clj

metal 24
👏 8
parrot 12