Colin Jones

Results 17 issues of Colin Jones

This allows folks to write migrations in TypeScript, with a setup like the following: - A file `migrations/tsnode.js` containing a require-able module: ```javascript require("ts-node/register") module.exports = () => {} ```...

This is _a_ fix for #3 - potentially the wrong one, but bumping riddley can't hurt, right? The actual issue: `letfn` isn't having its locals registered as part of the...

When attempting to use `cobra-cli init` in a project that uses Go 1.18's new workspace mode, I hit what looks like a JSON unmarshaling error (`Error: invalid character '{' after...

Doing the following gives me unexpected results: ``` clojure (save {:kind "user" :name "Colin"}) (println "before:" (count (find-by-kind "user"))) (delete-by-kind "foobar") (println "after:" (count (find-by-kind "user"))) ;; output: ; before:...

My understanding of `shift`/`reset` is that the innermost `reset` delimits the continuation capture. But the README issue that @skatenerd opened shows that a `shift` inside a nested `reset` appears to...

I was taking a look at this library to talk about in the chapter of my macros book on control flow - cool stuff! I added a new test ns...

@cursiveclojure is running into some issues where the use of `memoize` in leiningen-core means that, for instance, dependencies don't get re-computed if you change profiles. Worst-case, it would be nice...

Enhancement

What if we could provide some sort of verbose option that allowed users to see every task and alias invocation, along with the profiles active at the time?

Enhancement

In an implementation we recently inherited, and also in every other selectmenu implementation I've found using `` tags, the select-replacing elements are not included in the tab order on the...

bug
needs_feedback
help_wanted

In a recent change, `lein trampoline run` failed, but the test suite didn't catch it (😿) because the nrepl integration spec currently [attaches to an nREPL server that's spun up...