Björn Ebbinghaus

Results 45 comments of Björn Ebbinghaus

Hey @kordano tested it locally with a database of mine (Unfortunately I can't publish it). I was thinking about an automated test for this?

@kordano Hm.. Maybe the `:max-eid` should be ensured on connect? What do you think?

@jsmassa Maybe this should be part of some kind of explicit migration system? ```clojure (let [conf ...] (d.migration/migrate! conf) (d/connect conf)) ``` I don't know if this is feasible, as...

Just looking into the code... This could mean some larger changes... or... a hacky solution. In Datomic an entity can have many idents. This doesn't play well with how the...

Aliases in Datomic are just idents that point to the same attribute entity. Meaning with attribute refs active, aliases should already work. Is the long-term plan with Datahike to only...

Anything new about this? I have a namespace which lights up like a Christmas tree because of this.

First (I assume, you already did that, but for completeness) You can open the context action menu on any symbol. (Alt/Option+Enter) And select "Resolve XXX as..." ![image](https://user-images.githubusercontent.com/2965273/150567021-7a9b19b3-6226-4d26-9c19-01be51d957b8.png) Here you can...

This code reads the configs recursively and emits XML for Cursive. ```clojure (require '[clojure.xml :as xml] '[clojure.edn :as edn]) (defn get-lint-as "Returns the :lint-as map from a config. Follows config-paths...

I looked at the regex. There are more issues: - `0b101010` is not a valid Clojure number. You would write: `2r101010`. - Similar, octals are not written with `0o` prefix....

@jnak Any progress on this one?