Taylor Troesh
Taylor Troesh
Oh wow, this is a really good idea! I've been making a really sloppy example file [here](https://github.com/surprisetalk/elm-bulma/blob/master/src/Example.elm). If you'd like to expand it or replace it, I'd really appreciate the...
You may want to read [here](https://bulma.io/documentation/customize/) about generating custom CSS for Bulma. There are easy-to-use variables for changing grid-size, colors, etc. If that's not enough, feel free to reach out...
Thanks for the feedback! I agree that that's how it _should_ be, but unfortunately [the Bulma Hero docs](https://bulma.io/documentation/layout/hero/) don't specify an `"is-small"` class for `hero`. We have four `Size`s in...
Sorry I've been out of the loop! And thanks for the amazing work @JolandaNava ! I'm going to hold off on any decisions until I see what happens in the...
`Secure Keyboard Entry` doesn't help me. I'm facing all of @jammus's exact symptoms (without Nix). Hitting "Open new OS window" from the sidebar doesn't tile the new window. But running...
Whoa. Just discovered that if you have more than 5 kitty windows open on the same screen, it starts tiling correctly again.
Would the question mark operator work here? ``` id 2 . id = | x ? x==1 -> "one" | x -> "idk" ```
Yeah, `?` is an assert, that's why I think it fits kind of naturally there. Regarding symbols, one of my design goals of scrapscript is to actually have no alphabetic...
Love it! Great idea
This is super gross, but I created an `openapi_fix.js` file to patch the raw json output: ``` let data = ""; process.stdin.setEncoding("utf8"); process.stdin.on("data", (chunk) => { data += chunk; });...