James Reeves
James Reeves
This closes #40, though there are some rough edges in the implementation. First, timeout conditions don't have an associated parameter, so the name of the condition will just be the...
I often find myself needing state transitions based on a timeout. For example transitioning a "dash" to "idle" state after 0.1 seconds. Would you be interested in a patch for...
If an 0.10 module is used on a 0.11 project, the configuration fails on a `prep` assert that is hard to understand. We can add a better check with a...
It would be nice if there was a switch to allow subcommands in the `app parent:child` form, rather than `app parent child`. Heroku has made [an argument for using the...
Because clj-ns-browser is AOT-compiled, it contains class files for all its dependencies. These class files will override the source files of later dependencies, causing issues that are very hard to...
Puget represents namespaced maps as: #:foo {:x 1, :y 2} But Clojure's printer omits the space between the namespace and the map: #:foo{:x 1, :y 2} Puget should probably follow...
I haven't finished my investigation, but I wanted to confirm that this sort of thing shouldn't be happening. I have 8 threads, which all have the same queue object, and...
## Goal The goal would be to have a system where multiple components can be bundled together to denote common behavior. For example, it might be useful to group a...
I've noticed that deps-deploy uses `read-passphrase` when signing, but I think this should be optional (and perhaps not even the default), as GPG often has its own mechanisms for managing...
In the `hop.task` project, write a new task that will test all the files in `:test-paths`. [Eftest](https://github.com/weavejester/eftest) already does a lot of what we want, so we can add that...