spiffytech
spiffytech
PR is up! #1629.
As another data point, HTMX [is working on](https://htmx.org/extensions/response-targets/) a very useful extension that uses numbers and asterisks in element attributes. Its usage looks like this: ```html Register! ``` It looks...
As a workaround, this seems to be doing the trick for me: ```ts app.use( "*", serveStatic({ root: myRoot }), ) .use( "*", serveStatic({ path: "index.html", root: myRoot }), ); ```
I thought about just asking for CSS to hide the favorites bar so I could display my own. That'd suit more use cases, but I'm not sure how I'd get...
It would be dynamic. I'm using the picker to apply emoji as content tags. I'd like to display favorites based on the tags presently attached to the user's data, including...
Yeah, that would take care of what I need. I like the second code snippet; it'd be easy to have SolidJS grab me a reference to the picker element.
I've been experiencing this for several months. This morning I reproduced it on a clean machine, upgrading from 0.31.5 to 0.32.0., on Debian 11. I'd only created one app on...
``` (ns my.types (:require [structural-typing.type :refer :all] [structural-typing.preds :as preds] [structural-typing.global-type :refer :all])) (defn get-type [field] (if (contains? #{"radio" "dropdown" "checkbox"} (:type field)) :MultiSelect (keyword (clojure.string/capitalize (:type field))) ) )...
What is the timeline of implementing the `date` operation? (I'm using the Json.NET serializer) If it won't be implemented soon, could you please raise a NotImplementedException for it (and the...