TIL: How to copy html in JavaScript
await navigator.clipboard.write([
new ClipboardItem({
["text/plain"]: new Blob([element.innerText], { type: "text/plain" }),
["text/html"]: new Blob([element.innerHTML], { type: "text/html" }),
}),
]);
">
TIL: How to copy html in JavaScript
await navigator.clipboard.write([
new ClipboardItem({
["text/plain"]: new Blob([element.innerText], { type: "text/plain" }),
["text/html"]: new Blob([element.innerHTML], { type: "text/html" }),
}),
]);
First: Enable IP forwarding
sudo tailscale up --advertise-exit-node
π€―
The reason for this issue is that MacOS 13 ships with OpenSSH_9.0p1 which has disabled RSA signatures on SHA-1 hash algorithms. If upgrading OpenSSH on the server and/or regenerating your SSH key isnβt an option you can workaround this issue by adding the following to your
~/.ssh/config file