Jon Nyman
Jon Nyman
There is no environment variable `HOME` in windows. So, this fails `vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"`. This is the solution: ```lua local home = os.getenv("HOME") if (home == nil) then...
With `hx-on` added it would be nice to do something like [apline does by lifting the event listener to the window](https://alpinejs.dev/directives/on#window). This would allow events that are not a parent...
When I validate my schema it isn't failing when I put in different casing. **Schema:** ```json { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": {}, "id": "http://example.com/example.json", "properties": { "clientCode": { "id":...
When connecting an `input` element I wrap the tag in a `span` and this causes the `input` element to be attached again in an infinite loop. A temporary fix to...
I have a json-schema that calls custom refs. This is pretty simple to introduce. All that is needed is to have an optional parameter to `toMongooseSchema` for `refSchemas`. I then...
I've been wondering for a while how to make HTMZ useful. But then I came across the ideas of data-star and figured out that I could have the back end...