ash
ash
Nice! My wrapper script is now available on GitHub, if you want to test with that: https://github.com/anowlcalledjosh/uberw3m You should be able to use something like this in a presentation header:...
Right, I had time to install Stack and test your PR; I made some changes to my wrapper script, and now it works perfectly for me. I've not tested in...
I edited the builtin google_popup rule to handle the new google and youtube popups; I removed the OPEN_OPTIONS method and added a DO_CONSENT method to press the "accept all"/"reject all"...
this would also fix e.g. [rnix's docs](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#rnix) saying that root_dir defaults to "vim's starting directory" when in fact it's `util.find_git_ancestor(fname) or vim.loop.os_homedir()`, which is very much not the same thing
I got that error recently on the first rebuild after a garbage-collection; I wonder if that's related.
this seems like it's going to be a substantially bigger problem in the future: per https://github.com/greshake/i3status-rust/blob/master/NEWS.md#i3status-rust-0307, "In the future `block = "..."` will be required to be the first field...
> You can set `tarball-ttl = 0` in your `nix.conf` if you don't want caching. But I don't think that should be the default, since it would make almost every...
this is still an issue in warp v0.2023.03.14.08.03.stable_01, which makes it effectively unusable for me. "you can't autocomplete a filename" is a pretty core feature to break.
This would be really nice for parsing e.g. dates from HTML forms, where an empty `` (or any empty ``) results in the empty string.
@deckar01 I ended up using the following on my schemas: ```python @pre_load def allow_null_dates(self, item): item["date"] = item["date"] or None item["enddate"] = item["enddate"] or None ``` Having to copy-paste subclasses...