Joe Taber
Joe Taber
It seems images are all over the place. I'm seeing: * extensions.media.content where attrs.medium = 'image' or attrs.type = 'image/*' ([gmail blog](https://feeds.feedburner.com/OfficialGmailBlog) another example of surrounding the author name with...
Not to rain on anyone's parade, but I haven't seen this stated yet... There is a cross-contamination security risk from hosting multiple applications in different paths on a single domain,...
Sure, this comes down to basic browser security protocols like the [Same-origin policy](https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy) and [CORS](https://developer.mozilla.org/en-US/docs/Glossary/CORS). An example attack would be an application in a different directory is exploited (e.g. fails...
How does mullvad do it?
https://tailscale.com/kb/1103/exit-nodes/?tab=linux ``` tailscale up --exit-node= ``` With that resolved, we still need to figure out how to get the wireguard public keys of the tailscale nodes with permission to access...
Very interesting, thanks for sharing sosnik. https://github.com/mullvad/mullvad-wg.sh/blob/main/mullvad-wg.sh#L59 ```bash curl -sSL https://api.mullvad.net/wg -d account="$ACCOUNT" --data-urlencode pubkey="$(wg pubkey
> Just to clarify, you need to export public keys Thanks for the correction, please excuse my typo. --- I'll relax my stance a bit here, it seems perfectly reasonable...
Live.View looks pretty interesting and broadly similar to what htmx does. From a glance the major difference may be the simplicity of the server side: htmx doesn't have any system...
On a scale of "make it work, make it right, make it fast", this issue is on the "make it fast" side, and may reasonably be prioritized below #48 which...
Have you experimented with the [`htmx.config.useTemplateFragments` configuration setting](https://htmx.org/docs/#config)? HTMX works by taking the text http response, turning it into a brand new document, then inspecting it to pull nodes out...