Kevin van Rooijen
Kevin van Rooijen
I'm trying to create a new function / lambda purely through bytecode (no actual Python code). I can't really find an example on how to do this. The bytecode I...
Currently, the following syntax does not produce the expected output: ```clojure [:div.baz {:class [:foo]} bar] ``` Expected: ```clojure bar ``` Actual: ```clojure bar ```
- [x] Feature request. ## Feature request ## Currently the scaling metdata is not usable for pixel art, since smoothing is enabled by default. Instead you'd want to use the...
When a process joins a group and then immediately publishes in that group, the newly joined process doesn't receive the message. For example: ```` elixir Swarm.join(:test, self()) Swarm.publish(:test, :ping) #...
Is it in any way possible to "subscribe" to a Swarm registered process? Similar to Gprocs [gproc_monitor:subscribe](https://github.com/uwiger/gproc/blob/master/doc/gproc_monitor.md). I want a process to be notified when a name becomes registered /...
## TODO - [x] Setup Github actions - [x] Update version to 0.0.2-SNAPSHOT - [x] https://github.com/kwrooijen/gungnir/issues/34
```clojure [:map {:has-many {:app/clients {:model :client}}} [:app/id {:primary-key true} uuid?] [:app/name [:string {:min 1}]]] [:map {:belongs-to {:client/app-id {:model :app}}} [:client/id {:primary-key true} uuid?] [:client/app-id uuid?]] (-> (q/select :app/*) (q/all! :app))...
```clojure (-> (q/select :%count.*) (q/from :app) (q/all!)) ;; ERROR: {:type :malli.core/invalid-schema, :data {:schema nil}} ``` The reason this breaks is because the default row builder expects rows to be returned...
Collection of things that still need to be documented. query.md - [ ] gungnir.query.insert! - [ ] gungnir.query.update!
Currently Gungnir assumes all primary keys are generated through postgres. There should be an option to create it ourselves (in the case of `save!` Gungnir update, instead of insert). Maybe...