Alex Engelberg

Results 19 issues of Alex Engelberg

As far as I know, this shouldn't be allowed: ``` clojure (def my-collection [ x y]) ``` but there is not a specific rule anywhere that addresses this style.

My client code gets tripped up whenever a `wamp.error.no_such_procedure` is received, because it seems to always get null as both the array arguments and keyval arguments. Is this intended, because...

Replacing the cljs dependency in this project with `[org.clojure/clojurescript "1.8.40" :classifier "aot"]` and running `lein test-cljs` results in many weird warnings: ``` WARNING: Wrong number of args (3) passed to...

My understanding is that WAMP RPC supports not only array params but also [keyval params](https://github.com/tavendo/WAMP/blob/master/spec/basic.md#call-1), passed at the same time during an RPC call. It looks like only array params...

## Meta: When you say "no" to "would you like to set up your git project?", the `orb init` command currently fails. ## Current behavior: ``` $ circleci orb init...

bug
orb-dev-kit

## Expected behavior ```clojure (-> obj (cond-> pred1 (do-a-thing) pred2 (do-another-thing))) ``` ## Actual behavior ```clojure (-> obj (cond-> pred1 (do-a-thing) pred2 (do-another-thing))) ``` ## Environment & Version information ###...

When I try to convert a stream of byte arrays to a seq of byte arrays, it just returns back the original stream without doing any conversion. ```clojure user=> (require...

I'd expect any integer in the `` format in a FiniteAutomaton regex to parse that integer. But certain integers conflict with already-defined [operators](http://www.brics.dk/automaton/doc/index.html) and therefore cause the FiniteAutomaton constructor to...

regular

``` java FiniteAutomaton(".") ``` hangs indefinitely. Probably because `.` means _any_ character, and a FiniteAutomaton's alphabet is finite. Though I'd at least assume something like this would be returned: ```...

regular

ICF.regular() throws when I pass it an empty IntVar array: ``` clojure ArrayIndexOutOfBoundsException 0 org.chocosolver.solver.constraints.Propagator. (Propagator.java:140) ``` I assumed that if I passed in an empty array, the constraint would...

support
regular