It adds a button to google search result, then ask you for a website and browse all result pages to find the position of this website in google.
TODO:
- use the URL un get rather than localstorage => enable multiple tabs
var insultes = [ | |
'méchant', | |
'coco', | |
'bachibouzouk', | |
'débile' | |
]; | |
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
// ==UserScript== | |
// @name struggle.js | |
// @namespace lexoyo | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
function sleep(milliseconds) { | |
var start = new Date().getTime(); | |
for (var i = 0; i < 1e7; i++) { |
// ==UserScript== | |
// @name reload X times | |
// @namespace secretmedia | |
// @include * | |
// @version 0.3 | |
// @description reload X times | |
// @author me lexoyo | |
// @grant none | |
// ==/UserScript== |
// ==UserScript== | |
// @name private-facebook | |
// @namespace lexoyo.user.scripts | |
// @description cleanup facebook as you go | |
// @version 1.0.0 | |
// @grant none | |
// @include https://www.facebook.com* | |
// @run-at document-end | |
// ==/UserScript== |
<div id="mapdiv"></div> | |
<style> | |
#mapdiv { | |
width: 1000px; | |
height: 1000px; | |
} | |
</style> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/openlayers/2.11/OpenLayers.js"></script> | |
<script> | |
map = new OpenLayers.Map("mapdiv"); |
/* | |
* For more information how you can configurate this file | |
* See https://github.com/MichMich/MagicMirror#configuration | |
* | |
*/ | |
var config = { | |
port: 8080, | |
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses | |
// or add a specific IPv4 of 192.168.1.5 : |
var rover = { | |
directions : {"N" , "S" , "E" , "W"}; | |
default : "N"; | |
function turnLeft(rover){ | |
console.log("turnLeft was called"); | |
} | |
function turnRight(rover){ | |
console.log("turnRight was called") |
while true; do curl -sSf https://preprod.silex.me/ > /dev/null ; sleep 2; done |