Justin Tirrell

Results 15 issues of Justin Tirrell

Hi In clojurescript, `rgb-hexstr` and the other functions that could return a hexstr don't work: ```clojure (color/rgb-hexstr (color/create-color "blue")) ;;=> "#%06X" ``` This is due to this line: https://github.com/jolby/colors/blob/30607e456cb7e80bc5b58f04b59505db92ae728e/src/com/evocomputing/colors.cljc#L401 Google...

Out of the box, in a fresh clojurescript repl, I get the following error: ```(hipo/create [:div "a"] {:force-compilation? true})``` ```Error: Failed to compile``` Coming from this line of code: https://github.com/jeluard/hipo/blob/master/src/hipo/compiler.clj#L177

Cool little library. The examples in the readme and examples directory don't work with version `0.0.4` which is the dependency given in the readme. The readme and `simple.clj` examples throw...

As discussed on the lambdaisland channel of the clojurians slack (https://clojurians.slack.com/archives/C1DV21X9P/p1643329544995089) > I'm trying to replicate this in regal using a backrefernce to match any 3 or more of the...

enhancement
help wanted

### What version of Datahike are you using? io.replikativ/datahike {:mvn/version "0.6.1539"} ### What version of Java are you using? 17 ### What operating system are you using? Ubuntu ### What...

bug
triage

Not a high priority issue but I hit this and figured I would log it here. I believe `*print-length*` defaults to nil in clojure, but some of the print methods...

When I started using convex from clojure, it occurred to me that it would be nice to be able to easily turn my active clojure repl into a convex repl....

enhancement

Example: the `algoStrategy` property in `com.ib.client.Order` is a string internally but has setters for both a string and the `com.ib.client.Types$AlgoStrategy` enum, but that enum contains a subset of the valid...

Currently Iboga uses its own "dispatch mechanism", as seen [here](https://github.com/jjttjj/iboga/blob/4074360234160f80973435212436daa3badf6f48/src/iboga/core.clj#L25). Essentially it just keeps a big map in an atom of qualified keywords to maps of functionality implemented for that...

question

Currently qualified keywords are used internally. They are needed for spec, and I thought I might be able to take advantage of being able to dispatch on a globally unique...

question