Skip to content

Instantly share code, notes, and snippets.

@shaneog
shaneog / fb-ad-clean.js
Last active October 30, 2023 20:42
Clean Facebook Ad Preferences
// 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
@ScottPhillips
ScottPhillips / simple-php-crawler.php
Created June 30, 2012 23:41
Simple PHP Crawleer
<?php
function crawl_page($url, $depth = 5)
{
static $seen = array();
if (isset($seen[$url]) || $depth === 0) {
return;
}
$seen[$url] = true;