- Install Tampermonkey extension for your browser
- Copy the code from the Riddle.js file
- Go to the Tampermonkey dashboard and click on the
[+]
button to create a new UserScript - Paste the code
- Make sure the script is not Enabled
- Go to the Stuff page where the poll is running
- Get the option you want to select
- Change the
desiredOption
variable
This file contains 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
Verifying I am +rafacontreras on my passcard. https://onename.com/rafacontreras |
This file contains 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
Set-ExplorerOptions -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
Enable-PSRemoting -Force | |
Enable-RemoteDesktop | |
cinst IIS-WebServerRole -source windowsfeatures | |
cinst IIS-WebServer -source windowsfeatures | |
cinst IIS-HttpRedirect -source windowsfeatures |
This file contains 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 { | |
font-family: sans-serif; | |
-ms-text-size-adjust: 100%; | |
-webkit-text-size-adjust: 100% | |
} | |
article, | |
aside, | |
details, | |
figcaption, |
This file contains 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
/* eslint-disable no-var */ | |
var path = require('path'); | |
var autoprefixer = require('autoprefixer'); | |
const MATCH_ALL_NON_RELATIVE_IMPORTS = /^\w.*$/i; | |
module.exports = [{ | |
output: { | |
filename: '[name].js', | |
library: 'atrium-react-plugin-beta', |
This file contains 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
const getStuffInOrder = (array) => { | |
const results = []; | |
const failed = []; | |
array | |
.reduce( | |
(chain, item) => | |
chain.then(() => | |
promiseFunction(item) | |
.then((data) => { | |
if (data) { |
This file contains 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
javascript:(function()%7Bvar%20select2%20%3D%20%7B%0A%20%20js%3A%20%22https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fselect2%2F4.0.13%2Fjs%2Fselect2.min.js%22%2C%0A%20%20css%3A%0A%20%20%20%20%22https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fselect2%2F4.0.13%2Fcss%2Fselect2.min.css%22%2C%0A%20%20jquery%3A%20%22https%3A%2F%2Fcdnjs.cloudflare.com%2Fajax%2Flibs%2Fjquery%2F3.6.0%2Fjquery.min.js%22%2C%0A%20%20fuse%3A%20%22https%3A%2F%2Fcdn.jsdelivr.net%2Fnpm%2Ffuse.js%2Fdist%2Ffuse.js%22%0A%7D%3B%0A%0Afunction%20matchCustom(params%2C%20data)%20%7B%0A%20%20if%20(jQuery.trim(params.term)%20%3D%3D%3D%20%22%22)%20%7B%0A%20%20%20%20return%20data%3B%0A%20%20%7D%0A%20%20if%20(typeof%20data.text%20%3D%3D%3D%20%22undefined%22)%20%7B%0A%20%20%20%20return%20null%3B%0A%20%20%7D%0A%20%20var%20text%20%3D%20data.text.trim()%3B%0A%20%20var%20term%20%3D%20params.term.trim()%3B%0A%20%20var%20array%20%3D%20%5B%7B%20text%3A%20text%20%7D%5D%3B%0A%20%20var%20fuse%20%3D%20new%20Fuse(array%2C%20%7B%0A%20%20%20%20keys%3A%20%5B%22te |
This file contains 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
[ | |
{ | |
"name": "Turkey", | |
"change": 563, | |
"flag": "🇹🇷", | |
"code": "TR", | |
"initial": 11.86, | |
"final": 78.62, | |
"difference": 66.76 | |
}, |