Pat Burroughs

Results 29 comments of Pat Burroughs

Since the mailing list appears to be closed to new users, I took a look through the WebKit bugtracker. D'you think this might be related?: https://bugs.webkit.org/show_bug.cgi?id=119734

There is also the `typing` [IRCv3 client tag spec](https://ircv3.net/specs/client-tags/typing), which has been sitting in draft basically unmodified since 2017 (see ircv3/ircv3-specifications#319 and ircv3/ircv3-specifications#348).

The proper way to do this is with [ANSI true color escapes](https://gist.github.com/XVilka/8346728). If you'd like to gracefully fall back when true colours are requested but the escape is not available,...

With this, can we also include a context sub-menu from tab grouping extensions, thus providing a satisfactory solution to #36 without needing to completely integrate tab grouping?

Errors, shmerrors — mixed content can be a massive security risk and I would rather get an error (and either avoid or whitelist that site) rather than not be able...

> That was not your original issue. Browsers already block scripts from non-encrypted connections for content pulled from encrypted connections: a script `http://example.com/script.js` pulled from within `https://example.com/index.html` will not be...

I think perhaps the main contention here comes from the fact that you're using the same method name to turn an `Option` into a `Result` that you use to add...

I'd be very happy with it, I've run into the same verbosity issue many times, and the ability to quickly and conveniently say "This why `None` is an error" is...

Erm... your output is using `println!()`, so of course it's going to have a terminal newline. Notably, `serde_json::to_string_pretty()` does *not* emit a terminal newline, which is the exact opposite of...

Least surprising to me is to *not* have a terminal newline. The various "pretty-printers" I'm familiar with in Rust do not emit them; nor does, say, [Python's `pprint` module](https://docs.python.org/3/library/pprint.html) —...