Skip to content

Instantly share code, notes, and snippets.

View netjunki's full-sized avatar

Benjamin Lau netjunki

View GitHub Profile
@netjunki
netjunki / minexmr_dollars.js
Created September 11, 2020 01:54
minexmr value in dollars userscript
// ==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==
@netjunki
netjunki / pagesample.txt
Last active January 8, 2018 00:24
Multiline IWikiSyntaxProvider
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.
##
@netjunki
netjunki / trigger-remove-bug.sh
Created February 3, 2017 16:15
Demonstrate bug when removing a trigger in terraform 0.8.5
cat - > main.tf <<"EOF"
resource "null_resource" "test" {
triggers {
run_every_time = "${uuid()}"
}
provisioner "local-exec" {
command = "echo this is a test"
}
}
EOF