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
// This script will remove all Interests and Advertisers from your Facebook profile | |
// | |
// Instructions | |
// | |
// Go to: https://www.facebook.com/ads/preferences/ | |
// | |
// Open the browser console | |
// | |
// Paste the following code into the console and execute it |
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
<?php | |
function crawl_page($url, $depth = 5) | |
{ | |
static $seen = array(); | |
if (isset($seen[$url]) || $depth === 0) { | |
return; | |
} | |
$seen[$url] = true; |