This file contains hidden or 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
| license: gpl-3.0 |
This file contains hidden or 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
| #!/usr/bin/python -tt | |
| # MIT licensed by Abraham Williams - http://abrah.am | |
| # Pulls your Facebook friends likes and interest and finds who you have the most in common with. | |
| import urllib, json, sys | |
| graph_url = 'https://graph.facebook.com/' | |
| def print_intersect_count(access_token): | |
| tally = {} |
This file contains hidden or 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 | |
| // License: ISC | |
| // Example, hit http://scrape.singpolyma.net/fb.php?id=singpolyma | |
| require 'std_rss_out.php'; // http://github.com/singpolyma/xoxotools/blob/master/std_rss_out.php | |
| function get($u) { | |
| $curl = curl_init($u); | |
| curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 [email protected]'); |