Kevin Lynagh
Kevin Lynagh
There should be a default writer for `serialization` that throws errors when it encounters unknown prototypes. To implement this, the default constructor table needs to have writers for all of...
When trying to write to a register, I'm getting a size mismatch. ```zig HW.tim3.cr1.write(.{ .cen = .enabled }); ``` gives the error: ``` ./src/hw/stm32f0x0.zig:29:39: error: destination type 'u32' has size...
Currently merge only projects attributes from hiccup to the DOM---that'll overwrite any existing attributes, but it doesn't clear out attributes that aren't in the Hiccup representation.
If you compile ``` clojure [:div {:style {:left 14}}] ``` the browser will reject the left style property because it has no units. Should Singult automatically append "px" in cases...
Rather than walk everything all the time when merging, since everything is data-driven it may be faster to hash the vectors representing each element, attach that to the live DOM...
@brentonashworth, you got any new ClojureScript architectural tricks up your sleeves for a humble todo app?
@cmeiklejohn, a todo list for the holidays? Could be the killer app for Shafty: https://github.com/cmeiklejohn/shafty
Thanks for all of the work you've put into this library --- it's awesome to have such a well-written codebase to use and learn from. Are there any books, papers,...
First, let me say that I'm extremely excited about having automatic differentiation like this in Rust --- thank you for your hard work on everything! I'm trying to compile from...