Last active
April 2, 2022 16:41
-
-
Save zyansheep/c43e76836e875a5238ac42abfa510648 to your computer and use it in GitHub Desktop.
Monero Design
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="refresh" content="300000">{{/* Refresh every 5 minutes */}} | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <p>Keep this page open, this will send image updates to reddit</p> | |
| <script> | |
| setInterval(() => { | |
| window.parent.postMessage({ | |
| design: "test" | |
| }, '*') | |
| console.log("sending...") | |
| }, 1000) | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment