Daniel Compton
Daniel Compton
Many of my commits are not using spr. However, they still get commit-id appended to the commit message. Ideally I'd be able to not have any commit-ids in my commit...
I don't want to require approval before merging all PRs, but it's definitely helpful information to be able to see when running `git spr status`. Some PRs are small enough...
System/currentTimeMillis is not guaranteed to progress monotonically. NTP shifts, leap seconds, and manual system time changes can all cause elapsed time calculations to be incorrect if you use currentTimeMillis. nanoTime...
The README contains documentation for these parameters, this commit copies them from the README into the docstring.
We have a namespace like this: ```cljc (ns my.app.ns (:require [vlad.core :as vlad :refer [attr chain join present Validation]] #? (:cljs [goog.date.Interval :as Interval]) [clojure.string :as string] [cemerick.url :as url]))...
It would be handy to be able to trim any extra trailing newlines from the end of a file, so there is always just one final newline. I'm not sure...
We ran into a situation where code was pushed in a PR that wouldn't compile. However, `bin/eftest` counted 0 tests and no compile error was thrown, so it exited successfully...
This is not a very sophisticated build system, but it does get the ball rolling for adding testing for more of the projects. I had to include #85 in this...
What do you think about adding a page discussing core.async? I don't think I've seen any official documentation on usage. There is https://github.com/clojure/core.async/blob/master/examples/walkthrough.clj but I think some more documentation could...
It could be good to have a guide on using direct linking which: - Shows an example of how to set it up in a Leiningen and Boot application -...