owenRiddy
owenRiddy
The Quickstart proved misleading (https://github.com/cgrand/enlive/issues/154) and didn't adequately signal that the word resource meant a *Java resource*. It looks a lot like a file path. This PR improves the exception...
I can't figure out why following the quickstart guide is giving me an error. This may be a bug. ``` /enlive % tree . ├── deps.edn ├── main.clj └── templates...
## Expected behavior Say I have this code (which is a test case developed from a stacktrace in Spectre which does similar things but more reasonably): ``` (defmacro d []...
As discussed in Issue #20. I took it as a hint and implemented this by stripping metadata rather than introducing new syntax. This PR also sneaks in more hinting when...
Hi! This addresses closed Issue #14. `{:clj-kondo/config '{:lint-as {com.rpl.proxy-plus/proxy+ clojure.core/proxy}}}` was suggested as a linter hint. This hint is incorrect since the syntax of `proxy+` is different from `proxy`. To...
Not used anywhere, but untidy. Seen while linting.
Hi again. I have detected a tricky edge case. I'm don't know Java very well, so bear with me if I get something wrong here: ``` public class TestBaseClass3{ public...
It can be frustrating to work out what type signatures are available. It'd be helpful to include a list of options on errors (demo: https://github.com/owenRiddy/proxy-plus-minus/blob/main/src/proxy_plus_minus/core.clj#L122). What this looks like using...
G'Day! There is a concerning bug in `seesaw.table`. It makes extensive use of `proxy-super` which is [not thread safe](https://clojure.atlassian.net/browse/CLJ-2201). This bug can cause the proxied methods (ie, the Clojure implementations...
Hey! I was looking for a filesystem watch library and found this one. The README suggested using `[clojure-watch "LATEST"]` - but I like version locking dependencies so I used `[clojure-watch...