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
// Run this on a subreddit to upvote everything!! | |
var simulateClick = function (elem) { | |
console.log('upvoted...'); | |
var evt = new MouseEvent('click', { | |
bubbles: true, | |
cancelable: true, | |
view: window | |
}); | |
var canceled = !elem.dispatchEvent(evt); |
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
// Run this on followers tab (e.g /_followers) | |
// Scroll the page to get many | |
var simulateClick = function (elem) { | |
console.log('clicking'); | |
var evt = new MouseEvent('click', { | |
bubbles: true, | |
cancelable: true, | |
view: window | |
}); |
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
/* | |
You should inherit from StandardToken or, for a token like you would want to | |
deploy in something like Mist, see HumanStandardToken.sol. | |
(This implements ONLY the standard functions and NOTHING else. | |
If you deploy this, you won't have anything useful.) | |
Implements ERC 20 Token standard: https://github.com/ethereum/EIPs/issues/20 | |
.*/ | |
pragma solidity ^0.4.9; |
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
0x494A3fD86bE098ea94Eb7eCafFcE409866eEcc1c |
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 Q1 and Q2 differences on forcast | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Shows the differences on forcasts for Q1 Q2 | |
// @author Tom Whitbread | |
// @match http://www.tradingeconomics.com/forecast/currency | |
// @grant none | |
// ==/UserScript== |