Kent Gruber
Kent Gruber
👋 Hello @lordsonfernando, PRs are welcome!
👋 Hello @BlackthornYugen, @jpgpi250! Thank you for bringing* this up. I don't think either of you are doing anything wrong, it's just confusing. DoH information can be accessed in _two_...
This may be partially related to https://github.com/rubysec/bundler-audit/pull/182
Looking at Chrome's [developer documentation](https://developer.chrome.com/docs/extensions/reference/api/webRequest): > [!NOTE] > As of Manifest V3, the `webRequestBlocking` permission is no longer available for most extensions. Consider [`declarativeNetRequest`](https://developer.chrome.com/docs/extensions/reference/api/declarativeNetRequest), which enables use of the [declarativeNetRequest...
There's also the concept of "[dynamic rules](https://developer.chrome.com/docs/extensions/reference/api/declarativeNetRequest#method-updateDynamicRules)" to consider.
@joshporter1 The streaming API is supported with [`shodanz`](https://github.com/picatz/shodanz) > I realize this is *several* years later. But, someone had to do something sometime. ## Example Usage ```ruby require 'shodanz' client...
Looking into what it would take to implement this, it looks like `mailto:` is added here: https://github.com/charmbracelet/glamour/blob/ea723982eb373d291a33ad726b06f3e729713037/ansi/elements.go#L229-L231 We can add additional options for the ANSI renderer's [context](https://github.com/charmbracelet/glamour/blob/ea723982eb373d291a33ad726b06f3e729713037/ansi/context.go#L11) here: https://github.com/charmbracelet/glamour/blob/ea723982eb373d291a33ad726b06f3e729713037/ansi/renderer.go#L17-L23
One day soon.
This is an unfortunate error from `github.com/creack/pty`, which doesn't seem to support Windows: https://github.com/charmbracelet/vhs/blob/1d202a46b770170420a3c29983d8cd5b0d43d0d6/record.go#L72-L75 https://github.com/creack/pty/blob/0d412c9fbeb14954aa65830dcfdb84005cd0cd96/doc.go#L11
I spent a little bit of time investigating a POC. Though, to be clear, we would certainly want to have a design document before doing this realistically. Thankfully, I was...