Christian Pekeler

Results 13 comments of Christian Pekeler

Thanks Josh!

As suggested by @refset on [https://clojurians-log.clojureverse.org/crux/2021-04-19 ](https://webcache.googleusercontent.com/search?q=cache:ODOMg1hluPQJ:https://clojurians-log.clojureverse.org/crux/2021-04-19), setting env vars to disable libgcrypt can be a workaround. ``` $ CRUX_DISABLE_LIBGCRYPT=true CRUX_ENABLE_BYTEUTILS_SHA1=true clj -Sdeps '{:deps {org.clojure/clojure {:mvn/version "1.10.3"} pro.juxt.crux/crux-core {:mvn/version "1.18.0"}...

Could the underlying reason be that crux.hash.jnr is loading _any_ version of the crypto library instead of a specific one? See https://github.com/cl-plus-ssl/cl-plus-ssl/pull/115 for more info.

> underlying reason be that crux.hash.jnr is loading any version of the crypto library yes, looks like it: ```Clojure (for [p ["java.vendor" "java.version" "os.name" "os.version"]] (System/getProperty p)) ;; Oracle Corporation,...

I'm also very interested in this. Having just recently used [socket.io](http://socket.io) on my [mtr.guru side project](http://mtr.guru), I really appreciate the simplicity of it and would love to be able to...

@baslr that'd be too limited for me. My clients need certain key/values from a filtered join which wouldn't be doable with your suggestion.

Seems to be the while loop in `add(sched, name, min, max, inc)`, called by addRange, parse, parseExpr. https://github.com/bunkat/later/blob/master/src/parse/cron.js#L103

+1 on consistency -1 on defaulting to AM/PM

Yea, this is broken. Weekdays in Cron are 0 SUN 1 MON 2 TUE 3 WED 4 THU 5 FRI 6 SAT 7 SUN Later's internal representation of weekdays are:...

The implementation is correct for the popular Vixie cron. http://crontab.org: > The day of a command's execution can be specified by > two fields -- day of month, and day...