gpg --export your_address@example.net > my_key.pub
The file can then be shared to other people.
| ((document, limit) => { | |
| const data = Array.from(document.querySelectorAll('*')) | |
| .map((el) => ({zIndex: Number(getComputedStyle(el).zIndex), element: el })) | |
| .filter(({ zIndex }) => !isNaN(zIndex)) | |
| .sort((r1, r2) => r2.zIndex - r1.zIndex) | |
| .slice(0, limit); | |
| console.table(data); | |
| })(document, 50); |
#まず見るべき
以下のURLは、常に更新されているコンテンツです。