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
package main | |
import ( | |
"fmt" | |
"time" | |
"math/rand" | |
) | |
const tries int = 1000000 |
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
// ==UserScript== | |
// @name Just remove Facebook ads | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Just remove Facebook ads (aka "sponsored posts") | |
// @author palisir | |
// @match https://www.facebook.com/* | |
// @icon https://www.google.com/s2/favicons?domain=facebook.com | |
// @grant none | |
// ==/UserScript== |