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
// ==UserScript== | |
// @name minexmr value in dollars | |
// @namespace http://minexmr.com/ | |
// @version 0.1 | |
// @description do a lookup of the current usd price of monero andd inject it into the minexmr.com worker stats | |
// @author Ben "netjunki" Lau | |
// @match https://minexmr.com/ | |
// @grant none | |
// ==/UserScript== |
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
This is a page with ##just hidden## spoiler. <- This works correctly and on the page displays without the surrounding ## | |
== '''__Header2__''' == | |
Trying to replicate an issue found on another page. | |
The below content doesn't work correctly and the ## are shown. | |
## |
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
cat - > main.tf <<"EOF" | |
resource "null_resource" "test" { | |
triggers { | |
run_every_time = "${uuid()}" | |
} | |
provisioner "local-exec" { | |
command = "echo this is a test" | |
} | |
} | |
EOF |